/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  color: #7A7D87;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align:center;
}

a {color: #5AB5D1;text-decoration: none;}
h1 {font-family: 'Abel', sans-serif;font-size: 46px;line-height: 1.8;text-transform: uppercase;padding:50px 0 10px 0;}
  
h2, h3, h4{font-size: 20px;font-weight:600;letter-spacing:normal;text-transform:inherit;}

img, video {max-width: 100%;}

.izq{text-align:left;}
.justificado{text-align:justify;}
.cursiva{font-style:italic;}
.azul{color:#5AB5D1;}
.rojo{color:red;}
.blanco{color:white;}
.naranja{color:#f60;}
.sombra-texto{text-shadow: 0px 0px 4px #000;}

.padding-15w{padding:0 15%;}

.alerta-1{color:#F60; font-size: 12px;font-style:italic;}

.bg-amar{background:#FCB239;}
.bg-azul{background:#5AB5D1;}
.bg-azul-obs{background:#053866;}
.bg-gris-obs{background:#1b212c;}
.bg-gris-obs2{background:#0e141f;}
.bg-blanco{background:#fff;}
.bg-negro{background:#000;}
.bg-verde{background:#84DFCB;}
.bg-verde-85{background:rgba(90,181,209,0.85);}
.bg-1{background:url(../img/bg-services.jpg) center center fixed no-repeat}
.bg-3{background:url(../img/bg-3.jpg) left top no-repeat}


.boton{background:#599689;border:2px solid #599689;border-radius:10px;color:#fff;display:inline-block;font-size:16px;font-weight:400;margin:10px;padding:15px 20px;text-align:center;transition: all 0.3s linear;}
.boton:hover{background:transparent;border:2px solid #599689;color:#599689;transition: all 0.3s linear;}

/* -------------------------------- 

1. Auto-Hiding Navigation - Simple

-------------------------------- */
.cd-auto-hide-header {
  position: fixed;
  z-index: 6;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.cd-auto-hide-header::after {
  clear: both;
  content: "";
  display: block;
}
.cd-auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media only screen and (min-width: 1024px) {
  .cd-auto-hide-header {
    height: 80px;
  }
}

.cd-auto-hide-header .logo,
.cd-auto-hide-header .nav-trigger {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cd-auto-hide-header .logo {
  left: 5%;
}
.cd-auto-hide-header .logo a, .cd-auto-hide-header .logo img {
  display: block;
}

.cd-auto-hide-header .nav-trigger {
  /* vertically align its content */
  display: table;
  height: 100%;
  padding: 0 1em;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #25283D;
  font-weight: bold;
  right: 0;
  border-left: 1px solid #f2f2f2;
}
.cd-auto-hide-header .nav-trigger span {
  /* vertically align inside parent element */
  display: table-cell;
  vertical-align: middle;
}
.cd-auto-hide-header .nav-trigger em, .cd-auto-hide-header .nav-trigger em::after, .cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon */
  display: block;
  position: relative;
  height: 2px;
  width: 22px;
  background-color: #25283D;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.cd-auto-hide-header .nav-trigger em {
  /* this is the menu central line */
  margin: 6px auto 14px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}
.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger em::after {
  position: absolute;
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}
.cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon top line */
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.cd-auto-hide-header .nav-trigger em::after {
  /* this is the menu icon bottom line */
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
@media only screen and (min-width: 1024px) {
  .cd-auto-hide-header .nav-trigger {
    display: none;
  }
}

.cd-auto-hide-header.nav-open .nav-trigger em {
  /* transform menu icon into a 'X' icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-auto-hide-header.nav-open .nav-trigger em::before {
  /* rotate top line */
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cd-auto-hide-header.nav-open .nav-trigger em::after {
  /* rotate bottom line */
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-primary-nav {
  display: inline-block;
  float: right;
  height: 100%;
  padding-right: 5%;
}
.cd-primary-nav > ul {
  position: absolute;
  z-index: 9999;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: none;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.2);
}
.cd-primary-nav > ul a {
  /* target primary-nav links */
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  color: #25283D;
  font-size: 1.8rem;
  border-top: 1px solid #f2f2f2;
}
.cd-primary-nav > ul a:hover, .cd-primary-nav > ul a.active {
  color: #5AB5D1;
}
@media only screen and (min-width: 1024px) {
  .cd-primary-nav {
    /* vertically align its content */
    display: table;
  }
  .cd-primary-nav > ul {
    /* vertically align inside parent element */
    display: table-cell;
    vertical-align: middle;
    /* reset mobile style */
    position: relative;
    width: auto;
    top: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .cd-primary-nav > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-primary-nav > ul li {
    display: inline-block;
    float: left;
    margin-right: 1.5em;
  }
  .cd-primary-nav > ul li:last-of-type {
    margin-right: 0;
  }
  .cd-primary-nav > ul a {
    /* reset mobile style */
    height: auto;
    line-height: normal;
    padding: 0;
    border: none;
  }
}

.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
  /* 
  	show primary nav - mobile only 
  	:target is used to show navigation on no-js devices
  */
  display: block;
}
@media only screen and (min-width: 1024px) {
  .nav-open .cd-primary-nav ul,
  .cd-primary-nav ul:target {
    display: table-cell;
  }
}

/* -------------------------------- 

2. Auto-Hiding Navigation - with Sub Nav

-------------------------------- */
.cd-secondary-nav {
  position: relative;
  z-index: 99;
  clear: both;
  width: 100%;
  height: 30px;
  background-color: #212121;
  color:#fff;
  text-align:center;
  padding:8px;
  letter-spacing: 0.2em;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.cd-secondary-nav::after {
  /* gradient on the right - to indicate it's possible to scroll */
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 35px;
  background: transparent;
  pointer-events: none;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}
.cd-secondary-nav.nav-end::after {
  opacity: 0;
}
.cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
  height: 100%;
}
.cd-secondary-nav ul {
  /* enables a flex context for all its direct children */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cd-secondary-nav ul::after {
  clear: both;
  content: "";
  display: block;
}
.cd-secondary-nav li {
  display: inline-block;
  float: left;
  /* do not shrink - elements float on the right of the element */
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.cd-secondary-nav li:last-of-type {
  padding-right: 20px;
}
.cd-secondary-nav a {
  display: block;
  color: #ffffff;
  opacity: .6;
  line-height: 50px;
  padding: 0 1em;
}
.cd-secondary-nav a:hover, .cd-secondary-nav a.active {
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  .cd-secondary-nav {
    height: 30px;
    overflow: visible;
	letter-spacing: 0.6em;
  }
  .cd-secondary-nav ul {
    /* reset mobile style */
    display: block;
    text-align: center;
  }
  .cd-secondary-nav li {
    /* reset mobile style */
    float: none;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
  .cd-secondary-nav a {
    line-height: 70px;
  }
  .cd-secondary-nav a.active {
    box-shadow: inset 0 -3px #8F3985;
  }
}

/* -------------------------------- 

3. Auto-Hiding Navigation - with Sub Nav + Hero Image

-------------------------------- */
.cd-secondary-nav.fixed {
  position: fixed;
  top: 60px;
}
.cd-secondary-nav.slide-up {
  -webkit-transform: translateY(-60px);
      -ms-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media only screen and (min-width: 1024px) {
  .cd-secondary-nav.fixed {
    top: 80px;
    /* fixes a bug where nav and subnab move with a slight delay */
    box-shadow: 0 -6px 0 #25283D;
  }
  .cd-secondary-nav.slide-up {
    -webkit-transform: translateY(-80px);
        -ms-transform: translateY(-80px);
            transform: translateY(-80px);
  }
}

/* -------------------------------- 

Main content

-------------------------------- */
.cd-main-content {
  padding: 60px 0 0 0;
  overflow: hidden;
}
.cd-main-content.sub-nav {
  /* to be used if there is sub nav */
  padding-top: 110px;
}
.cd-main-content.sub-nav-hero {
  /* to be used if there is hero image + subnav */
  padding-top: 0;
}
.cd-main-content.sub-nav-hero.secondary-nav-fixed {
  margin-top: 50px;
}

@media only screen and (min-width: 1024px) {
  .cd-main-content {
    padding-top: 80px;
  }
  .cd-main-content.sub-nav {
    padding-top: 150px;
  }
  .cd-main-content.sub-nav-hero.secondary-nav-fixed {
    margin-top: 70px;
  }
  .cd-main-content p {
    font-size: 20px; line-height:30px;
  }
}

/*
	adjust the positioning of in-page links
	http://nicolasgallagher.com/jump-links-and-viewport-positioning/
*/
.cd-main-content.sub-nav :target::before,
.cd-main-content.sub-nav-hero :target::before {
  display: block;
  content: "";
  margin-top: -50px;
  height: 50px;
  visibility: hidden;
}
@media only screen and (min-width: 1024px) {
  .cd-main-content.sub-nav :target::before,
  .cd-main-content.sub-nav-hero :target::before {
    margin-top: -70px;
    height: 70px;
  }
}

/* -------------------------------- 

Intro Section   background: url(../img/cd-hero-background.jpg) no-repeat center center; background-size: cover;

-------------------------------- */
.cd-hero {
  /* vertically align its content */
  display: table;
  width: 100%;
  margin-top: 60px;
  height: 300px;
}
.cd-hero .cd-hero-content {
  /* vertically align inside parent element */
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cd-hero {
    height: 400px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-hero {
    height: 600px;
    margin-top: 80px;
  }
}
.cover{width:100%;margin-top:-100px;}
.cover img{width:100%;height:auto;}

.f100{width:100%;display:inline-block;margin:0;padding:100px 0;}
.f100 h2{color:#fff;font-size:18px;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;}

.cont-1a{width:245px;background:#fff; display:inline-block;vertical-align:top;}
.cont-1b{width:45%;background:#fff; display:inline-block;vertical-align:top;}
.cont-1b h1{text-align:left;padding:0;}

.cont-1{width:22%; color: ;display:inline-block;margin:20px 15px 50px 15px;vertical-align:top;}
.cont-1 h1{font-size:22px;font-weight:400;padding:10px 0;}
.cont-1-text{width:100%;padding:0 30px;}

.cont-2{width:40%; display:inline-block;margin:20px 15px 50px 15px;vertical-align:top;}
.titulo-t{width:100%;display:table;}
.titulo-c-i, .titulo-c{display:table-cell; vertical-align:middle;}
.titulo-c{color:#5AB5D1;font-family: 'Abel', sans-serif;font-size:32px;padding-left:10px;text-align:left;text-transform:uppercase;}
.titulo-c-i{width:80px;height:80px;}
.titulo-c-i img{width:auto;height:100%;}
.titulo-text{width:100%;padding:20px 20px;}
.titulo-text ul{font-size: 2.4rem;text-align:left;margin:15px 0;}
.titulo-text li { padding-left: 1em; text-indent: -.7em;}
.titulo-text li:before {content: "• ";color: #5AB5D1;}

.pic-cont{background:rgba(0,0,0,0.85);border:10px solid #232323;border-radius:50%;display:inline-block; margin:0;overflow:hidden;}
.pic-cont, .pic-cont-mask, .pic-cont-mask-celda{width:250px;height:250px;}.pic-cont-mask, .pic-cont-mask-celda{margin-left:-10px;margin-top:-10px;}
.pic-cont img{width:245px;height:245px;}
.pic-cont img a{text-decoration:none;}
.img-bg{transition: all 0.5s linear;transform:scale(1);-webkit-transform:scale(1);}
.pic-cont:hover .img-bg{transition: all 0.5s linear;transform:scale(1.3);-webkit-transform:scale(1.3);opacity:.2;}
.pic-cont-mask{display:table;opacity: 0;position:absolute;transition: all 0.5s linear;z-index:2;}
.pic-cont-mask-celda{display:table-cell;text-align:center;vertical-align:middle;}
.pic-cont-mask-celda h3{color:#fff;font-size:20px;font-weight:700;text-align:center;text-transform:uppercase;text-shadow: 0px 1px 0px #292929;}
.pic-cont-mask-celda i{color:#fff;font-size:45px;text-shadow: 0px 1px 0px #292929;}
.pic-cont:hover .pic-cont-mask{opacity: 1;}

.cont-3{width:90%;margin:60px auto;padding:0; text-align:center;}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
    *zoom: 1;
}
.wrapper {
  padding:0;
  max-width: 60%;
  margin-right: auto;
  margin-left: auto;text-align:left;
}
.circle {
  background-repeat: no-repeat;
  width: 250px;
  height: 250px;
  background-color: #40a977;
  border-radius: 50%;
  float: left;
  shape-outside: circle() margin-box;
  margin:0px 30px 30px 30px;
}

.wrapper h2 { color:#5AB5D1;font-size:20px;font-weight: 600;line-height: 1.8;margin-top: 10px;}

/* Galeria */
.gal-container{width:306px;background:;display:inline-block;margin:0 auto;padding:0;text-align:center;vertical-align:top;}

.pic{width:150px;height:150px;background:#000;display:inline-block;overflow:hidden;position:relative;margin:0px 0px 2px 0px;z-index:2;}
.pic-2{width:304px;height:305px;background:#000;display:inline-block;overflow:hidden;position:relative;margin-bottom:2px;z-index:2;}
.pic-3{width:305px;height:150px;background:#000;display:inline-block;overflow:hidden;position:relative;margin-bottom:2px;z-index:2;}
.pic img{width:auto;height:100%;position:absolute;left:0;opacity: .4;transition: all 0.5s linear;transform:scale(1);-webkit-transform:scale(1);}
.pic-2 img{width:auto;height:100%;position:absolute;left:0;opacity: .4;transition: all 0.5s linear;transform:scale(1);-webkit-transform:scale(1);}
.pic-3 img{width:100%;height:auto;position:absolute;left:0;opacity: .4;transition: all 0.5s linear;transform:scale(1);-webkit-transform:scale(1);}
.pic img:hover, .pic-2 img:hover, .pic-3 img:hover{opacity: 1;transition: all 0.5s linear;transform:scale(1.3);-webkit-transform:scale(1.3);}
.gal-t{width:100%;height:100%;display:table;position:absolute;z-index:0;text-align:center;}
.gal-t i{color:rgba(255,255,255,1);font-size:30px;}
.gal-c{display:table-cell;vertical-align:middle;}

footer{width:100%;color:#888;text-align:center;margin-top:-5px;}
.footer-row{width:30%; display:inline-block;margin:0;padding:80px 0;vertical-align:top;}
.footer-row-ig{width:20%; display:inline-block;margin:0;padding:80px 0;vertical-align:top;}
.footer-row h2{font-size: 20px;font-weight:600;line-height:40px;}
.footer-box{width:60%;display:inline-block;padding:5% 2%;vertical-align:top;}
.footer-box ul{text-align:left;}
.footer-box li{font-size:15px;list-style-image:none;list-style:none;padding:5px 0;}
.footer-box i{color:#5AB5D1;position:relative;top:3px; }
.footer-box a{color:#5AB5D1;transition: all 0.5s linear;}
.footer-box a:hover{color:#053866;transition: all 0.5s linear;}
.footer-box-social-1{width:100%;display:inline-block;}
.footer-box-social-2{width:25%;display:inline-block;margin:10px;}
.footer-box-social-1 h3 .footer-box-social-2 h3{text-align:center;}
.footer-box-social-1 img{width:35%; height:auto;}
.footer-box-social-2 img{width:50px; height:auto;}
/*contenedor facebook*/
#face-container{width:100%;margin-top:20px;}
.creditos{width:100%;font-size:10px; padding:10px;}
.creditos a{color:#5AB5D1;font-weight:bold;text-transform:uppercase;transition: all 0.5s linear;}
.creditos a:hover{color:#053866;transition: all 0.5s linear;}

/* Slider */
.cd-hero {
  position: relative;
}

.cd-hero__slider {
  position: relative;
  height: 360px;
  width: 100%;
  overflow: hidden;
}

.cd-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
  will-change: transform;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-hero__slide.cd-hero__slide--selected {
  /* this is the visible slide */
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.cd-hero__slide.cd-hero__slide--move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.cd-hero__slide.cd-hero__slide--is-moving,
.cd-hero__slide.cd-hero__slide--selected {
  /* the cd-hero__slide--is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media only screen and (min-width: 768px) {
  .cd-hero__slider {
    height: 500px;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-hero__slider {
    height: 680px;
  }
}

/* Slide style */
.cd-hero__slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cd-hero__slide:first-of-type {
  background-color: #2c343b;
  background-image: url(../assets/slide-1.jpg);
}

.cd-hero__slide:nth-of-type(2) {
  background-color: #2c343b;
  background-image: none;
}

.cd-hero__slide:nth-of-type(3) {
  background-color: #586775;
  background-image: url("../assets/tech-2-mobile.jpg");
}

.cd-hero__slide:nth-of-type(4) {
  background-color: #2c343b;
  background-image: url("../assets/video-replace-mobile.jpg");
}

.cd-hero__slide:nth-of-type(5) {
  background-color: #2c343b;
  background-image: url(../assets/slide-2.jpg);
}

.cd-hero__content.cd-hero__content--full-width,
.cd-hero__content.cd-hero__content--half-width {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  /* this padding is used to align the text */
  padding-top: 100px;
  text-align: center;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.cd-hero__content h2, .cd-hero__content p, .cd-hero__btn, .cd-hero__content--img img {
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.cd-hero__content.cd-hero__content--img {
  /* hide image on mobile device */
  display: none;
}

.cd-hero__content--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.cd-hero__content.cd-hero__content--bg-video {
  /* hide video on mobile device */
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cd-hero__content--bg-video video {
  /* you won't see this element in the html, but it will be injected using javascript */
  display: block;
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.cd-hero__content h2, .cd-hero__content p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  margin: 0 auto 14px;
  color: #ffffff;
  width: 90%;
  max-width: 400px;
}

.cd-hero__content h2 {
  font-size: 2.4rem;
}

.cd-hero__content p {
  font-size: 1.4rem;
  line-height: 1.4;
}

.cd-hero__btn {
  display: inline-block;
  padding: 1.2em 1.4em;
  margin-top: .8em;
  background-color: #5AB5D1/*-rgba(212, 68, 87, 0.9)-*/;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-hero__btn.cd-hero__btn--secondary {
  background-color: rgba(22, 26, 30, 0.8);
}

.cd-hero__btn:nth-of-type(2) {
  margin-left: 1em;
}

.cd-hero__btn:hover {
  background-color: #54C8B3;
}

.cd-hero__btn.cd-hero__btn--secondary:hover {
  background-color: #161a1e;
}

@media only screen and (min-width: 768px) {
  .cd-hero__slide:nth-of-type(2),
  .cd-hero__slide:nth-of-type(3),
  .cd-hero__slide:nth-of-type(4) {
    background-image: none;
  }
  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
    padding-top: 150px;
  }
  .cd-hero__content.cd-hero__content--bg-video {
    display: block;
  }
  .cd-hero__content.cd-hero__content--half-width {
    width: 45%;
  }
  .cd-hero__content.cd-hero__content--half-width:first-of-type {
    left: 5%;
  }
  .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {
    right: 5%;
    left: auto;
  }
  .cd-hero__content.cd-hero__content--img {
    display: block;
  }
  .cd-hero__content h2, .cd-hero__content p {
    max-width: 520px;
  }
  .cd-hero__content h2 {
    font-size: 2.4em;
    font-weight: 300;
  }
  .cd-hero__btn {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-hero__content.cd-hero__content--full-width,
  .cd-hero__content.cd-hero__content--half-width {
    padding-top: 220px;
  }
  .cd-hero__content h2, .cd-hero__content p {
    margin-bottom: 20px;
  }
  .cd-hero__content h2 {
    font-size: 3.2em;
  }
  .cd-hero__content p {
    font-size: 1.6rem;
  }
}

/* Single slide animation */
@media only screen and (min-width: 768px) {
  .cd-hero__content.cd-hero__content--half-width {
    opacity: 0;
    -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
            transform: translateX(40px);
  }
  .cd-hero__slide--move-left .cd-hero__content.cd-hero__content--half-width {
    -webkit-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  .cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content.cd-hero__content--half-width {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2),
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  }
  .cd-hero__slide--from-left.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:first-of-type,
  .cd-hero__slide--from-right.cd-hero__slide--selected .cd-hero__content.cd-hero__content--half-width:nth-of-type(2) {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, -webkit-transform 0.5s 0.4s;
  }
  .cd-hero__content--full-width h2,
  .cd-hero__content--full-width p,
  .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
            transform: translateX(100px);
  }
  .cd-hero__slide--move-left .cd-hero__content--full-width h2,
  .cd-hero__slide--move-left .cd-hero__content--full-width p,
  .cd-hero__slide--move-left .cd-hero__content--full-width .cd-hero__btn {
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  .cd-hero__slide--selected .cd-hero__content--full-width h2,
  .cd-hero__slide--selected .cd-hero__content--full-width p,
  .cd-hero__slide--selected .cd-hero__content--full-width .cd-hero__btn {
    /* this is the visible slide */
    -webkit-transform: translateX(0);

        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .cd-hero__slide--is-moving .cd-hero__content--full-width h2,
  .cd-hero__slide--is-moving .cd-hero__content--full-width p,
  .cd-hero__slide--is-moving .cd-hero__content--full-width .cd-hero__btn {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the li parent before set translate to 100px/-100px */
    -webkit-transition: -webkit-transform 0s 0.5s;
    transition: -webkit-transform 0s 0.5s;
    transition: transform 0s 0.5s;
    transition: transform 0s 0.5s, -webkit-transform 0s 0.5s;
  }
  .cd-hero__slide--selected h2 {
    -webkit-transition: -webkit-transform 0.5s 0.2s;
    transition: -webkit-transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s;
    transition: transform 0.5s 0.2s, -webkit-transform 0.5s 0.2s;
  }
  .cd-hero__slide--selected p {
    -webkit-transition: -webkit-transform 0.5s 0.3s;
    transition: -webkit-transform 0.5s 0.3s;
    transition: transform 0.5s 0.3s;
    transition: transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  }
  .cd-hero__slide--selected .cd-hero__btn {
    -webkit-transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s;
    transition: transform 0.5s 0.4s, background-color 0.2s 0s, -webkit-transform 0.5s 0.4s;
  }
}

/* Slider navigation */
.cd-hero__nav {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  text-align: center;
  height: 55px;
  background-color: rgba(0, 1, 1, 0.5);
}

.cd-hero__nav nav, .cd-hero__nav ul, .cd-hero__nav li, .cd-hero__nav a {
  height: 100%;
}

.cd-hero__nav nav {
  display: inline-block;
  position: relative;
}

.cd-hero__marker {/*-#d44457-*/
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 100%;
  color:#5AB5D1;
  background-color: #ffffff;
  -webkit-box-shadow: inset 0 2px 0 currentColor;
          box-shadow: inset 0 2px 0 currentColor;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

.cd-hero__marker.cd-hero__marker--item-2 {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.cd-hero__marker.cd-hero__marker--item-3 {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}

.cd-hero__marker.cd-hero__marker--item-4 {
  -webkit-transform: translateX(300%);
      -ms-transform: translateX(300%);
          transform: translateX(300%);
}

.cd-hero__marker.cd-hero__marker--item-5 {
  -webkit-transform: translateX(400%);
      -ms-transform: translateX(400%);
          transform: translateX(400%);
}

.cd-hero__nav ul::after {
  clear: both;
  content: "";
  display: table;
}

.cd-hero__nav li {
  display: inline-block;
  width: 60px;
  float: left;
}

.cd-hero__nav .cd-selected a {
  color: #2c343b;
}

.cd-hero__nav .cd-selected a:hover {
  background-color: transparent;
}

.cd-hero__nav a {
  display: block;
  position: relative;
  padding-top: 35px;
  font-size: 1rem;
  font-weight: 700;
  color: #a8b4be;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.cd-hero__nav a::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 8px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../assets/cd-icon-navigation.svg) no-repeat 0 0;
}

.cd-hero__nav a:hover {
  background-color: rgba(0, 1, 1, 0.5);
}

.cd-hero__nav li:first-of-type a::before {
  background-position: 0 0;
}

.cd-hero__nav li.cd-selected:first-of-type a::before {
  background-position: 0 -24px;
}

.cd-hero__nav li:nth-of-type(2) a::before {
  background-position: -24px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(2) a::before {
  background-position: -24px -24px;
}

.cd-hero__nav li:nth-of-type(3) a::before {
  background-position: -48px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(3) a::before {
  background-position: -48px -24px;
}

.cd-hero__nav li:nth-of-type(4) a::before {
  background-position: -72px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(4) a::before {
  background-position: -72px -24px;
}

.cd-hero__nav li:nth-of-type(5) a::before {
  background-position: -96px 0;
}

.cd-hero__nav li.cd-selected:nth-of-type(5) a::before {
  background-position: -96px -24px;
}

@media only screen and (min-width: 768px) {
  .cd-hero__nav {
    height: 80px;
  }
  .cd-hero__marker,
  .cd-hero__nav li {
    width: 95px;
  }
  .cd-hero__nav a {
    padding-top: 48px;
    font-size: 1.1rem;
    text-transform: uppercase;
  }
  .cd-hero__nav a::before {
    top: 18px;
  }
}

/*ACORDIÓN*/
.accordion {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e5e5e5;
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;padding-bottom:15px;
}

.accordion h3{color:#ac9656 !important;font-family: 'Julius Sans One', sans-serif !important;font-size:16px;font-weight:bold !important;text-align:left;margin:0 !important;text-indent: -20px;
	position: relative;
	padding-left: 20px}
/* Thumb */
.accordion-thumb {
  margin: 0;
  padding: .8rem 0;
  cursor: pointer;
  font-weight: normal;text-align:right;
}
.accordion-thumb::before {
  content: '';
  display: inline-block;
  height: 7px;
  width: 7px;
  margin-right: 1rem;
  margin-left: .5rem;
  vertical-align: middle;
  border-right: 1px solid;
  border-bottom: 1px solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

/* Panel */
.accordion-panel {
  margin: 0;
  padding-bottom: .8rem;
  display: none;
  font-size:20px;line-height: 30px;text-align:justify;
}

/* Active */
.accordion-item.is-active .accordion-thumb::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*---QUOTED ROTATOR box-shadow: 0 4px 10px rgba(0,0,0,0.35), 0 15px 12px rgba(0,0,0,0.02);---*/
.quoted-container{width:100%;}
.shadow-effect {
		    background: #fff;
		    padding: 20px;
		    border-radius: 4px;
		    text-align: left;
	        border:0px solid #ECECEC;
		}
		#customers-testimonials .shadow-effect p {
		    color:#000;
			font-family: inherit;
		    font-size: 20px;
		    line-height: 1.5;
		    margin: 0 0 17px 0;
		    font-weight: 300;
		}
		.testimonial-name {
			width: auto;background: #fff;color: #000;display: table;float:right;line-height:22px;margin-top: -20px;padding: 9px 35px;text-align: right;
			}
		#customers-testimonials .item {
		    text-align: center;
		    padding: 15px;
			margin-bottom:80px;
			filter: blur(6px);
		    opacity: .2;
		    -webkit-transform: scale3d(0.8, 0.8, 1);
		    transform: scale3d(0.8, 0.8, 1);
		    transition: all 0.3s ease-in-out;
		}
		#customers-testimonials .owl-item.active.center .item {
		    filter: blur(0px);
			opacity: 1;
		    -webkit-transform: scale3d(1.0, 1.0, 1);
		    transform: scale3d(1.0, 1.0, 1);
		}
		.owl-carousel .owl-item img {
		    -webkit-transform-style: preserve-3d;
		            transform-style: preserve-3d;
		    max-width: 90px;
    		margin:0 10px 0px 0;border:0px solid #5AB5D1;border-radius:0;float:left;/*-box-shadow: 0 0px 6px rgba(0,0,0,0.5);-*/
		}
		#customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
#customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
		    background: #3190E7;
		    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.7);
		            transform: translate3d(0px, -50%, 0px) scale(0.7);
		}
#customers-testimonials.owl-carousel .owl-dots{
	display: inline-block;
	width: 100%;
	text-align: center;
}
#customers-testimonials.owl-carousel .owl-dots .owl-dot{
	display: inline-block;
}
		#customers-testimonials.owl-carousel .owl-dots .owl-dot span {
		    width: 20px;height: 20px;background: #3190E7;border-radius:50%;
		    display: inline-block;
		    margin: 0 2px 5px;
		    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.3);
		            transform: translate3d(0px, -50%, 0px) scale(0.3);
		    -webkit-transform-origin: 50% 50% 0;
		            transform-origin: 50% 50% 0;
		    transition: all 250ms ease-out 0s;  
		}

/* form */

input.form-1:focus ~ label.form-1, textarea:focus ~ label.form-1, input.form-1:valid ~ label.form-1, textarea:valid ~ label.form-1 {
  font-size: 1.2em;
  color: #5AB5D1;
  top: -2.75rem;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
          transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}

.styled-input {
  float: left;
  width: 33.3333%;
  margin: 2rem 0 1rem;
  position: relative;
}
.styled-input label.form-1 {
  color: #999;
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
          transition: all 0.25s cubic-bezier(0.2, 0, 0.03, 1);
  pointer-events: none;
}
.styled-input.wide {
  width: 100%;
}

.styled-input-submit {
  width: 100%;display:block;
}

input.form-1, textarea {
  padding: 1rem 1rem;
  border: 0;
  width: 100%;
  font-size: 18px;
  background:transparent;
  border-bottom:1px solid #5AB5D1;color:#5AB5D1;
}
input.form-1 ~ span, textarea ~ span {
  display: block;
  width: 0;
  height: 3px;
  background: #5AB5D1;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
          transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}
input.form-1:focus, textarea:focus {
  outline: 0;
}
input.form-1:focus ~ span, textarea:focus ~ span {
  width: 100%;
  -webkit-transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
          transition: all 0.125s cubic-bezier(0.2, 0, 0.03, 1);
}

textarea{
  width: 100%;
  min-height: 15em;
}

#submit {
 width:100%;
 background:#5AB5D1;
 border:none;
 color:#fff;
 cursor:pointer;
 font-size:20px;
 padding:10px;transition: all 0.5s linear;
 }
 
input#submit:hover{background:#053866;transition: all 0.5s linear;}

.error-message{color:#F00; font-size: 10px; margin-top:12px;font-style:italic;}

/*---MEDIAS QUERY---*/

@media only screen and (max-width: 1440px) {
.cont-1{width:24%;margin:20px 15px 50px 15px;}
.pic-cont, .pic-cont-mask, .pic-cont-mask-celda{width:250px;height:250px;}
.pic-cont img{width:250px;height:auto;}
.wrapper{max-width:70%;}
.cont-3{width:95%;}
.gal3l, .gal3r{width:47%;}
.footer-row{width:30%;}
.footer-box{width:80%;}
}

@media only screen and (max-width: 1280px) {
.wrapper{max-width:85%;}
.cont-2{width:65%;}
.cont-3{width:100%;}
.gal-container{width:286px;}
.pic{width:140px;height:140px;}
.pic-2{width:283px;height:284px;}
.pic-3{width:283px;height:140px}
}

@media only screen and (max-width: 1024px) {	
.wrapper{max-width:92%;}
.wrapper p{font-size:18px;line-height:22px;}
.circle{width:200px;height:200px;}
.pic-cont, .pic-cont-mask, .pic-cont-mask-celda{width:200px;height:200px;}
.pic-cont img{width:200px;height:auto;}
.footer-row-ig{width:30%;}
}

@media only screen and (max-width: 768px) {
.footer-row{width:45%;}
.footer-row-ig{width:50%;}
}

@media only screen and (max-width: 414px) {
.cd-secondary-nav{font-size:18px;letter-spacing:normal;}
.f100{width:100%;}
.f100 p{font-size:18px;padding:0 20px;}
.f100 h1{font-size:25px;}
.f100 h2{width:88%; margin:0 auto;text-align:center;}
.f80{width:80%;margin:0 auto;}
.cont-1{width:90%;}
.cont-2{width:90%;}
.wrapper {max-width: 90%;}
.wrapper h2{padding:20px 0 0 0;}
.wrapper p{font-size:18px;line-height:22px;padding:20px;}
.circle{width:250px;height:250px;float:none;margin:0 auto;shape-outside: none;}
.pic-cont, .pic-cont-mask, .pic-cont-mask-celda{width:250px;height:250px;}
.pic-cont img{width:250px;height:auto;}
.footer-row{width:90%;}
.footer-box{width:90%;padding:3% 0;}
.footer-box li {font-size:18px;}
.footer-row-ig{width:90%;}
.styled-input {width: 100%;}
}
