/*=============================================================
Aspectos Generales
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

a {
  text-decoration: none; }

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth; }

body {
  font-size: 10px;
  height: 100%;
  font-family: "raleway-rg"; }
  body .wrapper {
    width: 90%;
    margin: 0 auto; }
    @media only screen and (min-width: 768px) {
      body .wrapper {
        width: 84%; } }
    @media only screen and (min-width: 992px) {
      body .wrapper {
        max-width: 1140px; } }
  body .wrapper-sm {
    max-width: 700px; }
  body .wrapper-contacto {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto; }
  body .seccion {
    overflow: hidden;
    padding: 8rem 0; }
  body .seccion-gris {
    background-color: white; }

strong {
  font: inherit; }

p, li, a, q {
  font-size: 1.7rem; }

p:not(:last-child) {
  margin-bottom: 1.5rem; }

p:last-child {
  margin-bottom: 0 !important; }

.bold {
  font-family: "raleway-bd"; }

.light {
  font-family: "raleway-rg"; }

.big-p {
  font-size: 2.4rem; }

.titulo {
  font: 4rem "raleway-bd";
  color: #005991; }

.subtitulo {
  font: 2.2rem "raleway-bd";
  margin-bottom: 1rem; }

.centrado {
  text-align: center; }

div img {
  width: 100%; }

.link {
  color: #005991;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.9rem;
  font-weight: bold; }
  .link:hover {
    color: #2badff; }
  .link .fas {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .link:hover .fas {
    margin-left: 1.33333rem; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000; }

input[type=text], input[type=tel], input[type=email], textarea, select {
  width: 100%; }

input[type=text], input[type=tel], input[type=email], input[type=url], label, textarea, select {
  display: block;
  font-size: 1.7rem; }

input, textarea, select {
  border: none;
  outline: none;
  padding: 1rem;
  border-radius: 6px 6px 6px 6px;
  background-color: white; }

.cta-btn {
  background-color: #005991;
  font: 1.4rem "raleway-bd";
  color: #fff;
  padding: 1.5rem 6rem;
  display: inline-block;
  text-transform: uppercase;
  border: none;
  border-radius: 6px 6px 6px 6px;
  width: auto; }
  .cta-btn:hover {
    background-color: #00436d;
    text-decoration: none;
    color: #fff; }

.cotizar-btn {
  position: fixed;
  z-index: 10;
  left: 5%;
  bottom: 2rem;
  font-size: 1.9rem;
  font-weight: bold;
  background-color: #005991;
  color: #fff;
  cursor: pointer;
  padding: 1.1rem 3rem;
  border-radius: 25px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25); }
  .cotizar-btn:hover {
    color: #fff;
    background-color: #00436d; }
  @media only screen and (min-width: 768px) {
    .cotizar-btn {
      left: 8%; } }
  @media only screen and (min-width: 1440px) {
    .cotizar-btn {
      left: calc((100% - 1140px)/2); } }

.contact-btn {
  position: fixed;
  z-index: 10;
  right: 2rem;
  bottom: 2rem;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 2.4rem;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25); }
  .contact-btn:hover {
    color: #fff;
    text-decoration: none; }

.cotizar-modal {
  width: calc(100% - 2rem);
  position: fixed;
  left: 1rem;
  background-color: white;
  z-index: 10;
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media only screen and (min-width: 576px) {
    .cotizar-modal {
      max-width: 400px; } }
  @media only screen and (min-width: 576px) {
    .cotizar-modal {
      left: 5%; } }
  @media only screen and (min-width: 768px) {
    .cotizar-modal {
      left: 8%; } }
  @media only screen and (min-width: 1440px) {
    .cotizar-modal {
      left: calc((100% - 1140px)/2); } }
  .cotizar-modal .cotizar-header {
    background-color: #005991;
    padding: 2rem 1rem 2rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.75); }
    .cotizar-modal .cotizar-header .titulo-cotizar {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .cotizar-modal .cotizar-header .titulo-cotizar p {
        color: #fff;
        font-size: 1.7rem;
        font-weight: bold;
        line-height: 1.7rem;
        text-transform: uppercase; }
    .cotizar-modal .cotizar-header .fas {
      font-size: 3rem;
      color: #003a5e;
      cursor: pointer;
      text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.25); }
  .cotizar-modal form {
    padding: 2rem; }
    .cotizar-modal form .formgroup-select {
      position: relative; }
      .cotizar-modal form .formgroup-select i {
        position: absolute;
        right: 2rem;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 1.7rem;
        opacity: 0.5;
        pointer-events: none; }
    .cotizar-modal form .formgroup {
      margin-bottom: 2rem; }
    .cotizar-modal form textarea {
      height: 100px;
      resize: none; }
    .cotizar-modal form .botones {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .cotizar-modal form .botones .cta-btn {
        padding: 1.5rem 4.2rem; }

.whatsapp-modal {
  width: calc(100% - 2rem);
  position: fixed;
  right: 1rem;
  background-color: #EAE5DB;
  z-index: 10;
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media only screen and (min-width: 576px) {
    .whatsapp-modal {
      max-width: 400px; } }
  .whatsapp-modal .whatsapp-header {
    background-color: #128c7e;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.75); }
    .whatsapp-modal .whatsapp-header .destino {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .whatsapp-modal .whatsapp-header .destino p {
        color: #fff;
        font-size: 1.7rem;
        font-weight: bold;
        line-height: 1.7rem; }
        .whatsapp-modal .whatsapp-header .destino p span {
          font-weight: normal;
          font-size: 1.5rem; }
    .whatsapp-modal .whatsapp-header .pic {
      width: 50px;
      height: 50px;
      overflow: hidden;
      border-radius: 50%;
      margin-right: 1rem; }
    .whatsapp-modal .whatsapp-header .fas {
      font-size: 3rem;
      color: #0c5f55;
      cursor: pointer;
      text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.25); }
  .whatsapp-modal .whatsapp-body {
    padding: 2rem 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    .whatsapp-modal .whatsapp-body .dialog {
      width: 13px;
      height: 12px;
      background-image: url(../img/dialog.png);
      position: relative;
      z-index: 2; }
    .whatsapp-modal .whatsapp-body .mensaje {
      background-color: #fff;
      padding: 1rem;
      border-radius: 0px 8px 8px 8px;
      -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
      box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25); }
      .whatsapp-modal .whatsapp-body .mensaje p {
        color: #000;
        font-size: 1.5rem; }
  .whatsapp-modal .whatsapp-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 2rem 1rem 1rem; }
    .whatsapp-modal .whatsapp-footer .mensaje {
      background-color: #D1FEC9;
      padding: 1rem;
      border-radius: 16px;
      width: calc(100% - (50px + 2rem/2));
      -webkit-box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.15);
      box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.15); }
      .whatsapp-modal .whatsapp-footer .mensaje p {
        color: #000;
        font-size: 1.5rem; }
    .whatsapp-modal .whatsapp-footer .send-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-image: url(../img/send-btn-dark.png); }

.modal-activo {
  bottom: 1rem;
  opacity: 1; }

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .modal-bg .modal-cont {
    width: 90%;
    height: auto;
    position: relative; }
    @media only screen and (min-width: 992px) {
      .modal-bg .modal-cont {
        max-width: 848px; } }
    .modal-bg .modal-cont .title {
      position: absolute;
      font: 2.6rem "raleway-rg";
      width: 100%;
      color: #fff;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
      bottom: 0.5rem; }
    .modal-bg .modal-cont .fas {
      position: absolute;
      top: -4rem;
      right: 0;
      font-size: 3rem;
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer; }
      @media only screen and (min-width: 992px) {
        .modal-bg .modal-cont .fas {
          top: -3rem;
          right: -3rem; } }
    .modal-bg .modal-cont .video-cont {
      overflow: hidden;
      border-radius: 10px;
      -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.5);
      box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.5);
      position: relative; }
      .modal-bg .modal-cont .video-cont .logo {
        position: absolute;
        width: 30%;
        top: 1rem;
        left: 1rem; }
    .modal-bg .modal-cont video {
      width: 100%;
      display: block; }

@-webkit-keyframes agrandar {
  from {
    background-size: 100%; }
  to {
    background-size: 110%; } }

@keyframes agrandar {
  from {
    background-size: 100%; }
  to {
    background-size: 110%; } }

@-webkit-keyframes achicar {
  from {
    background-size: 110%; }
  to {
    background-size: 100%; } }

@keyframes achicar {
  from {
    background-size: 110%; }
  to {
    background-size: 100%; } }

/* Fin de Aspectos Generales  ================================*/
/*=============================================================
Header
==============================================================*/
.header {
  width: 100%;
  z-index: 100;
  background-color: #0069ab; }
  .header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .header .logo {
    width: 90px;
    padding: 3px 0; }
    @media only screen and (min-width: 576px) {
      .header .logo {
        width: 100px; } }
  .header .menu-btn .uno, .header .menu-btn .dos, .header .menu-btn .tres {
    background-color: #fff; }
  .header .main-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 89, 145, 0.8);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    top: 0;
    left: 0;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 200; }
    @media only screen and (min-width: 992px) {
      .header .main-menu {
        position: relative;
        width: auto;
        height: 80px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background-color: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none; } }
    .header .main-menu .close-btn {
      height: 65px; }
      @media only screen and (min-width: 576px) {
        .header .main-menu .close-btn {
          height: 80px; } }
  .header .menu-opened {
    -webkit-clip-path: circle(150% at 50% 50%);
    clip-path: circle(150% at 50% 50%); }
  .header .menu-closed {
    -webkit-clip-path: circle(0% at 50% 50%);
    clip-path: circle(0% at 50% 50%); }
  .header .menu {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    text-align: center; }
    @media only screen and (min-width: 992px) {
      .header .menu {
        width: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    .header .menu li {
      position: relative; }
      @media only screen and (min-width: 992px) {
        .header .menu li {
          width: auto;
          left: 0;
          height: 100% !important; } }
    .header .menu a {
      font: 2.2rem "raleway-bd";
      color: #fff;
      text-transform: uppercase;
      padding: 1rem 0;
      display: block; }
      @media only screen and (min-width: 992px) {
        .header .menu a {
          font-size: 1.6rem;
          padding: 0 1.5rem;
          height: 100%;
          line-height: 80px; } }
      @media only screen and (min-width: 992px) {
        .header .menu a:hover {
          color: #fff;
          background: #005991; } }
    .header .menu .mouse-over {
      color: #fff;
      background: #005991; }
    .header .menu .selected {
      color: #001a2b; }
      @media only screen and (min-width: 992px) {
        .header .menu .selected {
          color: #e7e4e4; } }

.blur {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px); }

.header2 {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  -webkit-animation: dropheader 0.5s linear;
  animation: dropheader 0.5s linear; }

@media only screen and (min-width: 992px) {
  .submenu {
    background-color: #005991; } }

@-webkit-keyframes dropheader {
  from {
    top: -76px; }
  to {
    top: 0; } }

@keyframes dropheader {
  from {
    top: -76px; }
  to {
    top: 0; } }

.menu-btn, .menu-btn2, .menu-btn-close {
  width: 30px;
  cursor: pointer; }
  .menu-btn .uno, .menu-btn .dos, .menu-btn .tres, .menu-btn2 .uno, .menu-btn2 .dos, .menu-btn2 .tres, .menu-btn-close .uno, .menu-btn-close .dos, .menu-btn-close .tres {
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  .menu-btn .dos, .menu-btn2 .dos, .menu-btn-close .dos {
    margin: 6px 0; }

.close-btn {
  position: absolute;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 300; }

.menu-btn2 .dos, .menu-btn-close2 .dos {
  opacity: 0; }

.menu-btn2 .uno, .menu-btn-close2 .uno {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px); }

.menu-btn2 .tres, .menu-btn-close2 .tres {
  -webkit-transform: rotate(-45deg) translate(5px, -7px);
  -ms-transform: rotate(-45deg) translate(5px, -7px);
  transform: rotate(-45deg) translate(5px, -7px); }

.menu-btn-close .uno, .menu-btn-close .dos, .menu-btn-close .tres {
  background-color: #fff !important; }

/* Fin de Header  ============================================*/
/*=============================================================
Main
==============================================================*/
/* Slider Style
--------------------------------------*/
.cd-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 54px);
  overflow: hidden; }
  @media only screen and (min-width: 992px) {
    .cd-slider {
      height: 60vh; } }

.cd-slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 1s;
  -o-transition: visibility 0s 1s;
  transition: visibility 0s 1s;
  will-change: visibility; }

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-size: cover;
  background-position: 50% 50%;
  clip: rect(0, 80rem, 50rem, 80rem);
  -webkit-transition: clip 0.5s cubic-bezier(0.99, 0.01, 0.45, 0.9) 0.5s;
  -o-transition: clip 0.5s cubic-bezier(0.99, 0.01, 0.45, 0.9) 0.5s;
  transition: clip 0.5s cubic-bezier(0.99, 0.01, 0.45, 0.9) 0.5s;
  will-change: clip; }
  @media only screen and (min-width: 992px) {
    .image {
      width: 70%;
      height: 100%;
      clip: rect(0, 160rem, 100rem, 160rem); } }
  @media only screen and (min-width: 1440px) {
    .image {
      clip: rect(0, 320rem, 200rem, 320rem); } }

.content {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 50%;
  padding: 2rem;
  font-size: 9rem;
  background-color: #005991;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media only screen and (min-width: 992px) {
    .content {
      top: 0;
      width: 30%;
      height: 100%; } }
  @media only screen and (min-width: 992px) {
    .content {
      padding: 4rem; } }

.content h2 {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  opacity: 0;
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  -o-transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  will-change: transform, opacity;
  color: #fff;
  line-height: 1;
  font: 3rem "raleway-bd"; }
  @media only screen and (min-width: 992px) {
    .content h2 {
      font-size: 3.6rem; } }

.content p {
  font-size: 1.7rem;
  line-height: 1.2;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  -o-transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  will-change: transform, opacity;
  color: #fff; }

.content a {
  opacity: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: opacity .5s .1s, -webkit-transform .5s .1s;
  transition: opacity .5s .1s, -webkit-transform .5s .1s;
  -o-transition: transform .5s .1s, opacity .5s .1s;
  transition: transform .5s .1s, opacity .5s .1s;
  transition: transform .5s .1s, opacity .5s .1s, -webkit-transform .5s .1s;
  will-change: transform, opacity;
  color: #fff !important; }

.counter span {
  color: #fff !important; }

/* Current Slide 
-------------------------------------*/
li.current {
  visibility: visible;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s; }

li.current .image {
  clip: rect(0, 80rem, 50rem, 0); }
  @media only screen and (min-width: 992px) {
    li.current .image {
      clip: rect(0, 160rem, 100rem, 0); } }
  @media only screen and (min-width: 1440px) {
    li.current .image {
      clip: rect(0, 320rem, 200rem, 0); } }

li.current .content h2 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s; }

li.current .content p {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 1.1s;
  -o-transition-delay: 1.1s;
  transition-delay: 1.1s; }

li.current .content a {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s; }

/* Prev Slide 
------------------------------------*/
li.prev_slide .image {
  clip: rect(0, 0, 50rem, 0); }
  @media only screen and (min-width: 992px) {
    li.prev_slide .image {
      clip: rect(0, 0, 100rem, 0); } }
  @media only screen and (min-width: 1440px) {
    li.prev_slide .image {
      clip: rect(0, 0, 200rem, 0); } }

.cd-slider nav {
  position: absolute;
  bottom: 1rem;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  z-index: 2; }
  @media only screen and (min-width: 992px) {
    .cd-slider nav {
      -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
      transform: translateX(0%);
      right: 4rem; } }

.prev, .next, .counter {
  vertical-align: middle; }

.prev, .next {
  position: relative;
  display: inline-block;
  height: 5rem;
  width: 5rem;
  border: 0;
  cursor: pointer;
  background: transparent; }

.prev::before, .next::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: .8rem solid transparent;
  border-right-width: 1rem;
  border-right-color: #fff;
  border-left-width: 0;
  width: 0;
  height: 0; }

.prev::after, .next::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0);
  transform: translateY(-50%) translateZ(0);
  left: .5rem;
  background: #fff;
  height: .1rem;
  min-height: 1px;
  width: 2.5rem;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s; }

.next::before {
  right: 0;
  left: auto;
  border-left-width: 1rem;
  border-left-color: #fff;
  border-right-width: 0; }

.next::after {
  right: .5rem;
  left: auto; }

.counter {
  display: inline-block;
  font-size: 2rem;
  font-style: italic; }
  @media only screen and (min-width: 992px) {
    .counter {
      font-size: 2.4rem; } }

.counter span:last-child::before {
  content: '/';
  margin: 0 1rem; }

.prev:hover::after, .next:hover::after {
  width: 3.5rem; }

/* Fin Slide 
------------------------------------*/
.seccion .art2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 992px) {
    .seccion .art2col {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; } }
  @media only screen and (min-width: 992px) {
    .seccion .art2col .texto-articulo, .seccion .art2col .tarjeta {
      width: calc(50% - 2rem); } }
  .seccion .art2col .img-articulo {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 20px 20px 20px 20px; }
    @media only screen and (min-width: 992px) {
      .seccion .art2col .img-articulo {
        margin-bottom: 0;
        width: calc(50% - 2rem); } }

.seccion .art4col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 2rem; }
  @media only screen and (min-width: 992px) {
    .seccion .art4col {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; } }
  .seccion .art4col article:not(:last-child) {
    margin-bottom: 6rem; }
    @media only screen and (min-width: 992px) {
      .seccion .art4col article:not(:last-child) {
        margin-bottom: 0; } }
  @media only screen and (min-width: 992px) {
    .seccion .art4col article {
      width: calc(25% - 2rem*1.5); } }
  .seccion .art4col article .img-articulo {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 20px 20px 20px 20px; }

.seccion .tarjeta {
  background-color: white;
  padding: 2rem;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2); }
  .seccion .tarjeta:not(:last-child) {
    margin-bottom: 4rem; }
  @media only screen and (min-width: 992px) {
    .seccion .tarjeta:not(:last-child) {
      margin-bottom: 0; } }
  .seccion .tarjeta i {
    color: #005991;
    font-size: 4rem;
    text-align: center;
    display: block;
    margin-bottom: 2rem; }
  .seccion .tarjeta h3 {
    color: #005991;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center; }
  .seccion .tarjeta p {
    text-align: center;
    width: 100%; }

.seccion .bajada {
  margin-top: 4rem; }

.seccion-contacto .wrapper-contacto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 992px) {
    .seccion-contacto .wrapper-contacto {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  @media only screen and (min-width: 992px) {
    .seccion-contacto .wrapper-contacto .formulario-contacto, .seccion-contacto .wrapper-contacto .datos-contacto {
      width: calc(50% - 2rem); } }

.seccion-contacto .formulario-contacto form {
  margin-top: 2rem; }

.seccion-contacto .formulario-contacto input[type=text], .seccion-contacto .formulario-contacto input[type=tel], .seccion-contacto .formulario-contacto input[type=email], .seccion-contacto .formulario-contacto textarea, .seccion-contacto .formulario-contacto select {
  margin-top: 3.6rem;
  border: 2px solid white; }

.seccion-contacto .formulario-contacto .formgroup {
  position: relative; }

.seccion-contacto .formulario-contacto label {
  position: absolute;
  color: #777;
  top: 1.33333rem;
  left: 1rem;
  text-align: left;
  cursor: text;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.seccion-contacto .formulario-contacto textarea {
  resize: none;
  height: 210px; }

.seccion-contacto .formulario-contacto .forminput:focus + .formlabel,
.seccion-contacto .formulario-contacto .forminput:not(:placeholder-shown) + .formlabel {
  -webkit-transform: translateY(-38px) scale(0.8);
  -ms-transform: translateY(-38px) scale(0.8);
  transform: translateY(-38px) scale(0.8);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  cursor: pointer;
  font-family: "raleway-bd"; }

.seccion-contacto .formulario-contacto input[type=button], .seccion-contacto .formulario-contacto input[type=submit] {
  margin-top: 3rem;
  width: 100%;
  height: 45px; }

.seccion-contacto .formulario-contacto .formgroup-select {
  position: relative; }
  .seccion-contacto .formulario-contacto .formgroup-select i {
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.7rem;
    opacity: 0.5;
    pointer-events: none; }

.seccion-contacto .formulario-contacto .warning-text {
  color: #005991;
  font-family: "raleway-bd";
  font-size: calc(1.6rem * 0.9);
  position: absolute;
  right: 1rem;
  top: -24px; }

.seccion-contacto .datos-contacto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 4.8rem; }

.seccion-contacto .dato-cont {
  border-radius: 20px 20px 20px 20px; }
  .seccion-contacto .dato-cont:not(:last-child) {
    background-color: #005991;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%; }
    @media only screen and (min-width: 992px) {
      .seccion-contacto .dato-cont:not(:last-child) {
        width: auto; } }
  .seccion-contacto .dato-cont:last-child {
    overflow: hidden;
    width: 100%;
    height: 321px; }
    .seccion-contacto .dato-cont:last-child iframe {
      width: 100%;
      height: 100%; }
  .seccion-contacto .dato-cont i {
    font-size: 2.6rem;
    margin-right: 2rem; }
  .seccion-contacto .dato-cont a {
    color: #fff;
    font-family: "raleway-bd"; }
  .seccion-contacto .dato-cont p {
    margin-bottom: 0;
    font: 1.5rem "raleway-rg";
    color: #fff; }

.slides {
  position: relative;
  margin: auto;
  width: 100%;
  height: 50vh;
  overflow: hidden; }
  @media only screen and (min-width: 992px) {
    .slides {
      height: 45vh; } }
  .slides ul {
    position: relative;
    margin: auto;
    width: 300%;
    height: 100%;
    padding-left: 0; }
    .slides ul li {
      float: left;
      width: 33.3333333%;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      padding: 2rem 0; }
      @media only screen and (min-width: 992px) {
        .slides ul li {
          -webkit-box-align: end;
          -ms-flex-align: end;
          align-items: flex-end;
          padding: 4rem 0; } }

/* Backgorund Images */
.nosotros-slide:first-child {
  background: url(../img/slides/nosotros-slide1.jpg);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center; }
  @media only screen and (min-width: 992px) {
    .nosotros-slide:first-child {
      -webkit-animation: agrandar 12s linear;
      animation: agrandar 12s linear; } }

.nosotros-slide:nth-child(2) {
  background: url(../img/slides/nosotros-slide2.jpg);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center; }
  @media only screen and (min-width: 992px) {
    .nosotros-slide:nth-child(2) {
      -webkit-animation: achicar 12s linear;
      animation: achicar 12s linear; } }

.nosotros-slide:nth-child(3) {
  background: url(../img/slides/nosotros-slide3.jpg);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center; }
  @media only screen and (min-width: 992px) {
    .nosotros-slide:nth-child(3) {
      -webkit-animation: agrandar 12s linear;
      animation: agrandar 12s linear; } }

.servicios-slide:first-child {
  background: url(../img/slides/servicios-slide1.jpg);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center; }
  @media only screen and (min-width: 992px) {
    .servicios-slide:first-child {
      -webkit-animation: agrandar 12s linear;
      animation: agrandar 12s linear; } }

.servicios-slide:nth-child(2) {
  background: url(../img/slides/servicios-slide2.jpg);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center; }
  @media only screen and (min-width: 992px) {
    .servicios-slide:nth-child(2) {
      -webkit-animation: achicar 12s linear;
      animation: achicar 12s linear; } }

.servicios-slide:nth-child(3) {
  background: url(../img/slides/servicios-slide3.jpg);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center; }
  @media only screen and (min-width: 992px) {
    .servicios-slide:nth-child(3) {
      -webkit-animation: agrandar 12s linear;
      animation: agrandar 12s linear; } }

.galeria-slide:first-child {
  background: url(../img/slides/galeria-slide1.jpg);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center; }
  @media only screen and (min-width: 992px) {
    .galeria-slide:first-child {
      -webkit-animation: agrandar 12s linear;
      animation: agrandar 12s linear; } }

.galeria-slide:nth-child(2) {
  background: url(../img/slides/galeria-slide2.jpg);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center; }
  @media only screen and (min-width: 992px) {
    .galeria-slide:nth-child(2) {
      -webkit-animation: achicar 12s linear;
      animation: achicar 12s linear; } }

.galeria-slide:nth-child(3) {
  background: url(../img/slides/galeria-slide3.jpg);
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center; }
  @media only screen and (min-width: 992px) {
    .galeria-slide:nth-child(3) {
      -webkit-animation: agrandar 12s linear;
      animation: agrandar 12s linear; } }

.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }
  .slide h2 {
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.75); }
  .slide a {
    margin-top: 1rem;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

@media only screen and (min-width: 992px) {
  .seccion-servicio:nth-child(odd) .art2col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; } }

.categorias {
  margin: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (min-width: 576px) {
    .categorias {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; } }
  .categorias a {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #cfc9c9;
    line-height: 1;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
    .categorias a:not(:last-child) {
      margin-bottom: 1rem; }
      @media only screen and (min-width: 576px) {
        .categorias a:not(:last-child) {
          margin-bottom: 0; } }
    @media only screen and (min-width: 576px) {
      .categorias a {
        margin: 0 2rem; } }
  .categorias .activo {
    color: #000; }

.grid {
  position: relative;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  .grid .item {
    position: absolute;
    display: block;
    padding: 0;
    margin: 10px;
    width: calc(50% - 20px); }
    @media only screen and (min-width: 576px) {
      .grid .item {
        width: calc(25% - 20px); } }
    @media only screen and (min-width: 992px) {
      .grid .item {
        width: calc(16.6666666% - 20px); } }
    .grid .item .item-contenido {
      position: relative; }
    .grid .item img {
      width: 100%;
      cursor: pointer;
      vertical-align: top; }

.imagenes-cargadas {
  opacity: 1; }

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100vh;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 200; }
  .overlay .contenedor-img {
    width: 80%;
    max-width: 600px;
    position: relative; }
    .overlay .contenedor-img .btn-cerrar-popup {
      background: none;
      font-size: 2.4rem;
      color: #fff;
      border: none;
      cursor: pointer;
      position: absolute;
      top: -3.4rem;
      right: 0; }
      @media only screen and (min-width: 992px) {
        .overlay .contenedor-img .btn-cerrar-popup {
          right: -3.4rem; } }

.overlay-on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

/* Fin de Main  ==============================================*/
/*=============================================================
Footer
==============================================================*/
/* Fin de Footer  ============================================*/
