@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Fin Wobble Vertical */
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* -------------------------------- 
Primary style
-------------------------------- */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-size: 100%;
  font-family: "Open Sans", sans-serif;
  /*font-family: 'Lato', sans-serif;*/
  color: #030d18;
  background-color: #f0eee1;
}
a {
  color: #f5484a;
  text-decoration: none;
}
img {
  max-width: 100%;
}
/* -------------------------------- 
Modules - reusable parts of our design
-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}
.has-top-margin {
  /* this class is given - using jQuery - to the .cd-main-content following the .cd-secondary-nav when it becomes fixed */
}
@media only screen and (min-width: 1170px) {
  .has-top-margin {
    -webkit-animation: animate-margin-top 0.3s;
    -moz-animation: animate-margin-top 0.3s;
    animation: animate-margin-top 0.3s;
    margin-top: 70px;
  }
}
@-webkit-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@-moz-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
/* -------------------------------- 
Navigation
-------------------------------- */
.cd-header {
  position: absolute;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #181818;
  z-index: 3;
}
.cd-header #cd-logo a img{
  margin: auto;
  width: 190px;
}
#cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
#cd-logo img {
    display: block;
}

@media only screen and (min-width: 768px) {
  #cd-logo a img {
    width: 210px !important;
  }
}
@media only screen and (min-width: 1170px) {
  #cd-logo.is-hidden {
    /* assign a position fixed and move outside the viewport (on the left) */
    opacity: 0;
    position: fixed;
    left: -20%;
    margin-left: 0;
    -webkit-transition: left 0.3s, opacity 0.3s;
    -moz-transition: left 0.3s, opacity 0.3s;
    transition: left 0.3s, opacity 0.3s;
  }
  #cd-logo.is-hidden.slide-in {
    /* slide in when the secondary navigation gets fixed */
    left: 5%;
    opacity: 1;
  }
}
/* -------------------------------- 
Intro
-------------------------------- */
#cd-intro2{
  position: relative;
  height: 300px;
  background-size: cover;
  z-index: 2;
}
#cd-intro3{
  position: relative;
  height: 300px;
  background-size: cover;
  z-index: 2;
}

#cd-intro4{
  position: relative;
  height: 300px;
  background-size: cover;
  z-index: 2;
}

#cd-intro5 {
  position: relative;
  height: 300px;
  background-size: cover;
  z-index: 2;
}
#cd-intro2 #cd-intro-tagline,
#cd-intro3 #cd-intro-tagline,
#cd-intro4 #cd-intro-tagline,
#cd-intro5 #cd-intro-tagline {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
  padding-top: 120px;
}
#cd-intro2 h1,
#cd-intro3 h1,
#cd-intro4 h1,
#cd-intro5 h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .8);
}
@media only screen and (min-width: 768px) {
  #cd-intro2,
  #cd-intro3,
  #cd-intro4,
  #cd-intro5 {
    height: 400px;
  }
  #cd-intro2 #cd-intro-tagline,
  #cd-intro3 #cd-intro-tagline,
  #cd-intro4 #cd-intro-tagline,
  #cd-intro5 #cd-intro-tagline {
    padding-top: 160px;
  }
  #cd-intro2 h1,
  #cd-intro3 h1,
  #cd-intro4 h1,
  #cd-intro5 h1 {
    font-size: 40px;
    margin: auto;
    margin-bottom: 1rem;
    max-width: 650px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
  }
}
/*SLIDE*/
.slidepu{
  background-color: #2c2c2c !important;
  padding: 0 !important;
  margin: 0 !important;
}
.slidepu a{
  background: none !important;
}
.slidepu.carousel {
    height: 100vh;
}
.slidepu.carousel .item .info{
  position: absolute;
  width: 100%;
  top: 40vh;
  z-index: 3;
  left: 0;
  right: 0;
}
.slidepu.carousel .item .info .descripcion{
    text-align: center;
    position: relative;
}
.slidepu.carousel .item .opacidad{
  background-color: rgba(0, 45, 51, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}
.slidepu.carousel .item .info .descripcion .contenedor-info{
  color: #fff;
}
.slidepu.carousel .item .info .descripcion .contenedor-info .logotipo{
  max-width: 100%;
  height: 130px;
}
.slidepu.carousel .item .info .descripcion .contenedor-info h1{
  margin-bottom: 20px;
  text-transform: uppercase;
}
.slidepu.carousel .item .info .descripcion .contenedor-info .raya{
  background-color: #fff;
  margin-top: 20px;
  height: 2px;
}
.slidepu.carousel .item .info .descripcion .contenedor-info .raya .cuadro{
  background-color: #fff;
  width: 30px;
  height: 10px;
  margin: 0 auto;
  margin-top: -3px;
}
.slidepu.carousel .item .info .descripcion .contenedor-info p{
  text-align: center;
  font-size: 24px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  padding: 20px 15px 15px 15px;
}
.slidepu.carousel .item,
.slidepu.carousel .item.active,
.slidepu.carousel .carousel-inner {
    height: 100%;
}
.slidepu.carousel .fill {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev{
  width: 50px;
  height: 50px;
  margin-top: -25px;
  padding-top: 0;
  font-size: 30px;
}
.carousel-control .icon-next:before {
  content: '\203a';
  font-size: 90px;
}
.carousel-control .icon-prev:before {
  content: '\2039';
  font-size: 90px;
}
/*FIN SLIDE*/
@media only screen and (min-width: 1170px) {
  #cd-intro2,
  #cd-intro3,
  #cd-intro4,
  #cd-intro5 {
    height: 330px;
  }
  #cd-intro2 #cd-intro-tagline,
  #cd-intro3 #cd-intro-tagline,
  #cd-intro4 #cd-intro-tagline,
  #cd-intro5 #cd-intro-tagline {
    padding-top: 155px;
    padding-bottom: 6rem;
  }
}
.cd-btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1170px) {
  .cd-btn.is-hidden {
    /* assign a position fixed and move outside the viewport (on the right) */
    opacity: 0;
    position: fixed;
    right: -20%;
    top: 15px;
    padding: .8em 1.2em;
    margin: 14px 0 0;
    -webkit-transition: right 0.3s, opacity 0.3s;
    -moz-transition: right 0.3s, opacity 0.3s;
    transition: right 0.3s, opacity 0.3s;
  }
  .cd-btn.is-hidden:hover {
    /* assign a position fixed and move outside the viewport (on the right) */
    background-color: #fff;
    text-decoration: none;
    color: #0094ac;

  }
  .cd-btn.is-hidden.slide-in {
    /* slide in when the secondary nav gets fixed */
    right: 5%;
    opacity: 1;
  }
}
.cd-section {
  margin: 0 auto;
  padding: 2em 0;
}
.cd-section h2 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: .6em;
  font-weight: 700;
}
.cd-section p {
  line-height: 1.6;
}
@media only screen and (min-width: 1170px) {
  .cd-section {
    margin: 0 auto;
    padding: 4em 0;
  }
  .cd-section h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-section p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
/*css secciones*/

article{
  padding: 0;
  text-align: center;
  margin: 0 auto;
}
article .contenido-bienvenidos,
article .contenido-nosotros{
  background-color: #fff;
  padding: 0;
  text-align: center;
  margin: 6rem auto 40px auto;
}
article .contenido-bienvenidos .cont-titulos,
article .contenido-nosotros .cont-titulos{
  padding: 35px 0;
  margin: 0;
}
article .contenido-bienvenidos .cont-titulos h2,
article .contenido-nosotros .cont-titulos h2{
  overflow: hidden;
  /*color: #333333;*/
  color: #0094ac;
  font-size: 45px;
  font-weight: 300;
  max-width: 800px;
  margin: auto;
}
article .contenido-bienvenidos .cont-info{
  padding: 10px 0 10px 0;
  margin-bottom: 50px;
}
article .contenido-nosotros .cont-info{
  margin-bottom: 10px;
}
article .contenido-nosotros .cont-info2{
  padding: 0;
  border: 1px solid #ccc;
  border-bottom: none;
  margin: 35px 0 20px 0;
}
article .contenido-bienvenidos .cont-info h3{
  color: #333;
  font-size: 17px;
  line-height: 24px;
  margin: 30px auto;
  max-width: 90%;
  font-weight: 400;
  font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-info h3{
  color: #333;
  font-size: 17px;
  line-height: 28px;
  margin: 30px auto;
  text-align: left;
  font-weight: 500;
  font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-info2 .texto{
  padding: 0;
  border-bottom: 1px dashed #ccc;
}
article .contenido-nosotros .cont-info2 .texto h3{
  padding: 5px 0 0 15px;
  color: #333;
  font-size: 17px;
  line-height: 28px;
  margin: 0;
  text-align: left;
  font-weight: 500;
  font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-info2 .texto p{
  border-left: 1px solid #ccc;
  min-height: 35px;
  color: #666;
  line-height: 23px;
  padding: 5px 0 5px 15px;
  font-size: 16px;
  margin: 0 auto;
  text-align: left;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
article .contenido-bienvenidos .cont-info p{
  color: #000;
  line-height: 23px;
  font-size: 16px;
  margin: 5px 20px 5px 20px;
  /*max-width: 85%;*/
  text-align: left;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
article .contenido-bienvenidos .imagen img{
  background-color: #ccc;
  border: 4px solid #0094ac;
  border-radius: 50%;
  width: 250px;
  height: 250px;
}
article .contenido-nosotros .cont-info p{
  border-bottom: 1px dashed #ccc;
  color: #666;
  padding-bottom: 30px;
  line-height: 23px;
  font-size: 16px;
  margin: 0 auto;
  text-align: left;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
article .contenido-nosotros .cont-info .compartir-sociales,
article .contenido-nosotros .compartir-sociales{
  text-align: left;
  padding: 0;
  margin-top: 35px;
}
article .contenido-nosotros .cont-info .foto-noticia{
  padding: 0;
  margin-bottom: 35px;
}
article .contenido-nosotros .cont-info .noticias{
  margin-top: 35px;
}
article .contenido-nosotros .cont-info .noticias ul{
  list-style: none;
  padding: 0;
}
article .contenido-nosotros .cont-info .noticias ul li{
  background-color: #f2f2f2;
  border-bottom: 1px solid #fff;
  padding: 8px 0;
}
article .contenido-nosotros .cont-info .noticias ul a{
  text-decoration: none;
}
article .contenido-nosotros .cont-info .noticias ul a li{
  border: 1px solid #ccc;
  padding: 5px 0 5px 10px;
  color: #302e33;
  font-size: 17px;
  line-height: 24px;
  text-align: left;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
article .contenido-nosotros .cont-info .noticias ul a li:hover{
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  color: #0094ac;
}
article .contenido-nosotros .cont-info .volver,
article .contenido-nosotros .volver{
  margin-top: 35px;
  margin-right: 20px;
  margin-bottom: 40px;
  float: left;
  background-color: #0094ac;
  border: 1px solid #0094ac;
  color: #fff;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Open Sans', serif;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
article .contenido-nosotros .cont-info .volver:hover,
article .contenido-nosotros .volver:hover{
  color: #0094ac;
  background: #fff;
}
article .contenido-nosotros figure{
  /*margin: 35px 0 0 0;*/
}
article .contenido-nosotros figure img{
  width: 100%;
}
article .contenido-nosotros .mapa{
  margin-top: 35px;
}
article .contenido-nosotros .mapa p{
  color: #666;
  line-height: 23px;
  font-size: 16px;
  margin: 30px auto 0 auto;
  text-align: left;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
article .contenido-nosotros .mapa p i{
  font-size: 17px;
  color: #0094ac;
}
article .contenido-nosotros .mapa p span{
  color: #0094ac;
  padding: 0;
  line-height: 23px;
  font-size: 16px;
  margin: 30px auto 0 auto;
  text-align: left;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}
article .contenido-nosotros .cont-contacto{
  margin-top: 35px;
  padding: 0;
}
article .contenido-nosotros .cont-contacto form{
  padding: 0;
  margin-bottom: 40px;
}
article .contenido-nosotros .cont-contacto form p{
  padding: 5px 0 15px 15px;
    color: #333;
    font-size: 17px;
    line-height: 28px;
    margin: 0;
    text-align: left;
    font-weight: 500;
    font-family: 'Lora', serif;
}
article .contenido-nosotros .cont-contacto form .input{
  padding: 10px 20px;
  background-color: #f9f9f9;
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  color: #333;
  width: 100%;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 300;
  font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-contacto form .mensaje{
  padding: 10px 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #cbcbcb;
  color: #333;
  width: 100%;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 300;
  height: 230px;
  font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-contacto form .enviar{
  float: right;
  background-color: #0094ac;
  border: 1px solid #0094ac;
  color: #fff;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Open Sans', serif;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
article .contenido-nosotros .cont-contacto form .enviar:hover{
  color: #0094ac;
  background: #fff;
}
article .contenido-nosotros .cont-contacto .form{
  padding: 0 15px;
}
article .contenido-nosotros .cont-contacto .form .cont-form{
  border: 1px solid #ccc;
  padding: 0;
}
article .contenido-nosotros .cont-contacto .form .cont-form .compra{
  border-bottom: 1px solid #ccc;
  background-color: #f9f9f9;
  padding: 0;
  margin: 0;
}
article .contenido-nosotros .cont-contacto .form .cont-form .compra p{
  padding: 15px;
    color: #333;
    font-size: 21px;
    line-height: 28px;
    margin: 0;
    text-align: left;
    font-weight: 300;
    font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-contacto .form .cont-form .texto{
  border-bottom: 1px solid #ccc;
  margin: 0;
}
article .contenido-nosotros .cont-contacto .form .cont-form .texto h3{
  border-right: 1px solid #ccc;
  padding: 7px 0 7px 15px;
    color: #333;
    font-size: 21px;
    line-height: 28px;
    margin: 0;
    text-align: left;
    font-weight: 300;
    font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-contacto .form .cont-form .texto p{
  padding: 7px 0 7px 15px;
    color: #333;
    font-size: 18px;
    line-height: 25px;
    margin: 0;
    text-align: left;
    font-weight: 300;
    font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-contacto .form .cont-form .texto input{
  padding: 2px 0 2px 15px;
  border-radius: 3px;
  background-color: #f9f9f9;
  border: 1px solid #cbcbcb;
    color: #333;
    font-size: 18px;
    line-height: 25px;
    margin: 5px;
    text-align: left;
    font-weight: 300;
    font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-contacto .form .cont-form .eliminar{
  margin: 15px 0;
}
article .contenido-nosotros .cont-contacto .form .cont-form .eliminar a{
  border: none;
    float: left;
    background-color: #2a9e3c;
    padding: 8px 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Open Sans', sans-serif;

    -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
article .contenido-nosotros .cont-contacto .form .cont-form .eliminar a:hover{
  color: #ffcc33;
  text-decoration: none;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
article .contenido-nosotros .cont-contacto .totalcompra{
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
}
article .contenido-nosotros .cont-contacto .totalcompra{
  padding: 15px 0;
    color: #333;
    font-size: 18px;
    margin: 0;
    text-align: center;
    font-weight: 300;
    font-family: 'Open Sans', serif;
}
article .contenido-nosotros .cont-contacto .totalcompra span{
  padding: 15px 0 15px 10px;
    color: #2a9e3c;
    font-size: 21px;
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-family: 'Open Sans', serif;
}
.bg-cel{
  background-color: rgba(0,148,172,0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}
.cont-news{
  background: url(../img/news-background.jpg) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.cont-news .secciones{
  z-index: 1;
  margin: 0px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cont-news .secciones i{
  font-size: 56px; 
  color: #fff;
  margin-bottom: 2rem;
}
.cont-news h4{
  color: #fff;
  font-size: 45px;
  margin: 0 0 30px 0;
  font-weight: 300;
  font-family: 'Open Sans', serif;
}
.cont-news p{
  text-shadow: 2px 2px 2px rgb(0, 0, 0);
  color: #fff;
  font-size: 16px;
  max-width: 900px;
  margin: 15px auto 35px auto;
  font-weight: 300;
  font-family: 'Open Sans', serif;
}
.cont-news a{
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 15px 40px;
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  font-family: 'Open Sans', serif;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cont-news a:hover{
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  /* padding: 0.3em 2em 0.3em 1em; */
  border: 2px solid transparent;
}
.footer{
  background-color: #052d33;
  padding: 40px 0 0 0;
  margin: 0;
}
.footer .container-footer{
  padding-bottom: 4rem;
}
.footer .container-footer .contacto{
  margin: 0;
}
.footer .container-footer .contacto .contacto-pie{
  text-align: center;
}
.footer .container-footer .contacto .contacto-pie h4{
  display: block;
  color: #fff;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.footer .container-footer .contacto .contacto-pie a,
.footer .container-footer .contacto .contacto-pie p{
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  margin: 0;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.footer .container-footer .contacto .contacto-pie p i{
  font-size: 20px;
  color: #0094ac;
}
.footer .container-footer .contacto .contacto-pie p span{
  color: #0094ac;
  font-size: 14px;
  line-height: 21px;
  margin: 0;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .container-footer .contacto .contacto-pie .activo,
.footer .container-footer .contacto .contacto-pie a:hover,
.footer .container-footer .contacto .contacto-pie a:focus{
  color: #0094ac;
  text-decoration: none;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .container-footer .info{
  margin: 0 0 25px 0;
}
.footer .container-footer .info figure{
  margin-bottom: 25px;
}
.footer .container-footer .info figure img{
  width: 250px;
}
.footer .container-footer .info-pie{
  margin: 0;
  padding: 0;
}
.footer .container-footer .info-pie p{
  color: #fff;
  font-size: 14px;
  margin: 0;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.footer .container-footer .info-pie p span{
  color: #0094ac;
  font-size: 14px;
  margin: 0;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.footer .footer2{
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #0094ac;
}
.footer .footer2 .container-footer2{
  margin:0 auto;
  padding: 15px 0;
}
.footer .footer2 .container-footer2 p,
.footer .footer2 .container-footer2 a{
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin: 0;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer .footer2 .container-footer2 a:hover{
  color: #000;
  text-decoration: none;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fondo-dest{
  /*padding: 15px 0px 30px 0px;*/
  width: 100%;
  background-color: #f9f9f9;
  padding: 5rem 0 40px 0;
  margin: 0;
}
.fondo-dest .container-destacados{
  padding: 0;
  text-align: center;
}
.fondo-dest .container-destacados .cont_dest{
  margin: 0;
}
.fondo-dest .container-destacados .cont_dest .cont-titulos{
  padding-bottom: 25px;
}
.fondo-dest .container-destacados .cont_dest .cont-titulos h2{
  /*color: #333;*/
  /*font-size: 45px;*/
  font-weight: 300;
  font-family: 'Open Sans', serif;
}
.fondo-dest .container-destacados .cont_dest .cont-destacados{
  padding: 0;
}
.cont-marcas{
  border-top: 1px solid #f2f2f2;
}
.cont-marcas .marcas{
  padding: 0;
  margin: 0 auto 20px auto;
}
.cont-marcas .marcas h4{
  color: #333;
  margin-top: 20px;
  font-size: 45px;
  font-weight: 300;
  font-family: 'Open Sans', serif;
}
/*-----------------------------------*/
/***** lupa en la imagen y texto *****/
/*-----------------------------------*/
.grid{
  margin-bottom: 50px;
}
.grid figure {
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}
.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  width: 100%;
}
.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}
.grid figure figcaption{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
figure.effect-zoe figcaption {
  top: auto;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding:0;
  background: #0094ac;
  opacity: 0.8;
  color: #3c4a50;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}
figure.effect-zoe h2{
  margin-top: 20%;
}
figure.effect-zoe h2,
figure.effect-zoe p.icon-links a span::before {
  display: inline-block;
  padding: 8px 10px;
  font-family: 'feathericons';
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-eye::before {
  content: '\e000';
}
.icon-paper-clip::before {
  content: '\e001';
}
.icon-heart::before {
  content: '\e024';
}
figure.effect-zoe h2 {
  display: inline-block;
}
figure.effect-zoe:hover p.description {
  opacity: 1;
}
figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h2,
figure.effect-zoe:hover p.icon-links a {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
figure.effect-zoe:hover h2 {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
figure .destacada{
  width: 100%;
}
.grid .info-producto{
  border-top: 1px solid #fff;
  height: 210px;
  background-color: #fff;
  padding: 0 10px 40px 10px;
  text-align: center;
}
.grid .info-producto h4{
  overflow: hidden;
  color: #302e33;
  font-size: 21px;
  margin: 15px 0 0 0;
  height: 55px;
  line-height: 24px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.grid .info-producto p{
  overflow: hidden;
  color: #666;
  line-height: 23px;
  font-size: 16px;
  height: 80px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.info-producto .detalle{
  background-color: transparent;
  border: 1px solid #0094ac;
  color: #0094ac;
  padding: 10px 25px;
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  font-family: 'Open Sans', serif;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.info-producto .detalle:hover{
  border: 1px solid transparent;
  background-color: rgba(0,148,172,0.4);
  color: #fff;
}
.grid .mision{
  /*color: #302e33;*/
  color: #0094ac;
  font-size: 45px;
  line-height: 52px;
  margin: 0 auto 30px auto;
  text-align: left;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.grid .texto-mision{
  color: #666;
    line-height: 23px;
    font-size: 16px;
    margin: 0 auto 30px auto;
    text-align: left;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
}
.grid .foto-mision img{
  width: 100%;
}

/***** fin lupa en la imagen y texto *****/
/*---------------------------------------*/
/* inicio css galeria */
.caption{
  opacity: 0;
}
.demo{
  margin: 0 0 35px 0;
  position: relative;
}
.demo .gallery_demo{
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width:100%;
}
.demo .gallery_demo li{
  margin: 15px 1% 0 0;
  width: 24%;
  height: auto;
  display: inline-block;
  overflow: hidden;
  padding: 0;
}
.demo .gallery_demo li img{
  display: block;
  width: 100%;
  float: right;
}
#main_image{
  padding: 0;
  margin: 0 auto 20px auto;
  background:#fff;
}
#main_image img{
  width: 100%;
  margin: 0;
}
.galleria{
  list-style:none;
}
.galleria li{
  display: block;
  min-height: 70px;
  text-align: center;
  overflow: hidden;
}
.galleria li a{
  display:none
}
.galleria li div{
  position:absolute;
  display:none;
  top:0;
  left:180px
}
.galleria li div img{
  cursor:pointer;
  width: 100%;
}
.galleria li.active div img,
.galleria li.active div{
  display:block
}
.galleria li img.thumb{
  cursor:pointer;
  top:auto;
  left:auto;
  display:block;
  width:100% !important;
  height: auto !important;

}
.galleria li .caption{
  display:block;
  padding-top:.5em
}
.googlemaps {
  height: 450px;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
.googlemaps .bloque {
  bottom: 0px;
  color: #FFF;
  height: 450px;
  left: 0;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%;
}
.degazul {
  height: 4px;
  background: rgba(5,47,51,1);
  background: -moz-linear-gradient(left, rgba(5,47,51,1) 10%, rgba(0,149,172,1) 45%, rgba(0,149,172,1) 55%, rgba(5,47,51,1) 90%);
  background: -webkit-gradient(left top, right top, color-stop(10%, rgba(5,47,51,1)), color-stop(45%, rgba(0,149,172,1)), color-stop(55%, rgba(0,149,172,1)), color-stop(90%, rgba(5,47,51,1)));
  background: -webkit-linear-gradient(left, rgba(5,47,51,1) 10%, rgba(0,149,172,1) 45%, rgba(0,149,172,1) 55%, rgba(5,47,51,1) 90%);
  background: -o-linear-gradient(left, rgba(5,47,51,1) 10%, rgba(0,149,172,1) 45%, rgba(0,149,172,1) 55%, rgba(5,47,51,1) 90%);
  background: -ms-linear-gradient(left, rgba(5,47,51,1) 10%, rgba(0,149,172,1) 45%, rgba(0,149,172,1) 55%, rgba(5,47,51,1) 90%);
  background: linear-gradient(to right, rgba(5,47,51,1) 10%, rgba(0,149,172,1) 45%, rgba(0,149,172,1) 55%, rgba(5,47,51,1) 90%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#052f33', endColorstr='#052f33', GradientType=1 );
}
.aside-overlay {
  padding: 8rem 0;
}
.aside-overlay, .section-overlay {
  background-color: rgba(0,148,172,0.4);
}
.galeria{
  top: 20px;
  margin: 0 0 35px 0;
}
.galeria a{
  background: none;
}
.galeria a .imagen{
  font-size: 50px;
  color: #fff;
  padding-top: 300%;
}
.galeria .centrogaleria .item img{
  width: 100%;
}
h1,h2,h3{
  text-transform: uppercase;
}
.linea-separador{
  width: 50px;
  height: 3px;
  background-color: #0094ac;
  margin:20px 0 20px 20px;
}
.mx-auto{
  margin-right: auto!important;
  margin-left: auto!important;
}
.titulos{
  text-align: left; 
  margin-left: 20px; 
  margin-right: 20px; 
  margin-bottom: 15px; 
  font-weight: 300;
  font-size: 38px; 
  color: #0094ac;
}
.cont_dest figcaption{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cont_dest figcaption h2{
  margin: 0;
}


