@font-face {
  font-family: "ClioRegularOblique";
  src: url("../fonts/ClioRegularOblique.otf") format("woff2");
}
@font-face {
  font-family: "ClioSemiBold";
  src: url("../fonts/ClioSemiBold.otf") format("woff2");
}
@font-face {
  font-family: "ClioUltraBlack";
  src: url("../fonts/ClioUltraBlack.otf") format("woff2");
}
@font-face {
  font-family: "IBMPlexSans";
  src: url("../fonts/IBMPlexSans-Regular.ttf") format("woff2");
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "IBMPlexSans";
}

h1 {
  font-family: "ClioSemiBold" !important;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 1px !important;
  font-weight: 500;
}

p,
li,
span,
a,
input,
textarea {
  font-family: "IBMPlexSans";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 768px) {
  p,
li,
span,
a,
input,
textarea {
    font-size: 14px !important;
  }
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.contenedor {
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contenedor {
    min-width: 92%;
    max-width: 92%;
    margin: auto;
  }
}
@media screen and (min-width: 1024px) {
  .contenedor {
    min-width: 992px;
    max-width: 992px;
    margin: auto;
  }
}
@media screen and (min-width: 1200px) {
  .contenedor {
    min-width: 1100px;
    max-width: 1100px;
    margin: auto;
  }
}

.aparecer-capa {
  -webkit-animation: fadeIn !important;
          animation: fadeIn !important;
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
  opacity: 1;
}

.desaparecer-capa {
  -webkit-animation: fadeOut !important;
          animation: fadeOut !important;
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
  opacity: 0;
}

.mostrar-nav {
  left: 0 !important;
  transition: 0.3s !important;
}

.mostrar-capa-oscura {
  z-index: 97 !important;
  display: unset !important;
  -webkit-animation: fadeIn !important;
          animation: fadeIn !important;
  -webkit-animation-duration: 0.2s !important;
          animation-duration: 0.2s !important;
}

.fondo_azul1 {
  background: #0c4983 !important;
}

.fondo_azul2 {
  background: #2ab8ea !important;
}

.titulo {
  font-size: 25px;
  font-family: "ClioSemiBold";
  font-weight: 800;
  color: #273541;
}
@media screen and (min-width: 768px) {
  .titulo {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .titulo {
    font-size: 26px;
  }
}

/* Shine */
.hover14 figure {
  position: relative;
}

.hover14 figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.hover14 figure:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.imposible {
  transition: 0.3s !important;
}

header {
  height: 80px;
  background: #ffffff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
  position: fixed;
  width: 100%;
  z-index: 9999;
}
header .contenedor {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .contenedor .logo img {
  width: 130px;
}
header .contenedor .menu i {
  font-size: 26px;
  cursor: pointer;
}
header .contenedor nav {
  position: absolute;
  top: 80px;
  left: -100%;
  height: 100vh;
  width: 260px;
  background: #1a355d;
  transition: 0.3s;
  box-shadow: 3px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
header .contenedor nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .contenedor nav ul li a {
  font-family: "ClioSemiBold";
  letter-spacing: 1px !important;
  display: block;
  padding: 15px 40px;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  header .contenedor {
    display: flex;
    justify-content: space-between;
  }
  header .contenedor .logo {
    width: 20%;
  }
  header .contenedor .menu {
    display: none;
  }
  header .contenedor nav {
    position: static;
    width: 80%;
    height: auto;
    background: #ffffff;
    box-shadow: none;
  }
  header .contenedor nav ul {
    display: flex;
    justify-content: flex-end;
  }
  header .contenedor nav ul li a {
    color: #19407d;
    font-size: 16px !important;
    padding: 15px 0;
    margin-right: 40px;
    transition: 0.2s;
  }
  header .contenedor nav ul li a:hover {
    color: #2ab8ea !important;
    transition: 0.2s;
  }
  header .contenedor nav ul li .active {
    color: #2ab8ea !important;
  }
}

.capa-oscura {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 97;
  display: none;
}

.social {
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 96;
  box-shadow: -3px 3px 5px 0px rgba(0, 0, 0, 0.19);
}
.social .items a {
  text-decoration: none;
  width: 40px;
  height: 40px;
  background: red;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social .items a i {
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .social .items a {
    width: 50px;
    height: 50px;
    transition: 2s;
  }
  .social .items a:hover i {
    font-size: 22px;
    transition: 0.2s;
  }
  .social .items a i {
    font-size: 18px;
    transition: 0.2s;
  }
}

.slider {
  padding-top: 80px;
}
.slider .swiper {
  width: 100%;
  height: 280px;
}
@media screen and (min-width: 768px) {
  .slider .swiper {
    height: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .slider .swiper {
    height: 550px;
  }
}
@media screen and (min-width: 1200px) {
  .slider .swiper {
    height: 650px;
  }
}
@media screen and (min-width: 1600px) {
  .slider .swiper {
    height: 800px;
  }
}
.slider .swiper-button-prev,
.slider .swiper-button-next {
  display: none;
}

.nosotros {
  padding: 60px 0;
  background-image: url("../img/bgs/bg01.png");
}
.nosotros .contenedor img {
  display: block;
  margin: 0 auto;
  width: 300px;
  margin-bottom: 40px;
}
.nosotros .contenedor p {
  color: #19428b;
}
.nosotros .contenedor .lado1 {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .nosotros .contenedor img {
    width: 340px;
  }
}
@media screen and (min-width: 1024px) {
  .nosotros .contenedor img {
    width: 400px;
  }
  .nosotros .contenedor .titulo {
    margin-bottom: 10px;
  }
  .nosotros .contenedor .texto {
    display: flex;
    justify-content: space-between;
  }
  .nosotros .contenedor .texto .lado1 {
    width: 49%;
  }
  .nosotros .contenedor .texto .lado2 {
    width: 49%;
  }
}
@media screen and (min-width: 1200px) {
  .nosotros {
    padding: 100px 0;
  }
  .nosotros .contenedor img {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .nosotros {
    padding: 160px 0;
  }
  .nosotros .contenedor img {
    width: 470px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1920px) {
  .nosotros {
    padding: 180px 0;
  }
  .nosotros .contenedor img {
    width: 500px;
    margin-bottom: 120px;
  }
}

.parallax {
  position: relative;
  width: 100%;
  min-height: 450px;
  height: 450px;
  background: url("../img/parallax/parallax01_320.jpg");
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}
.parallax .capafull {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.parallax .capa {
  padding: 20px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.parallax .capa .contenedor {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax .capa .contenedor .contenido {
  text-align: center;
}
.parallax .capa .contenedor .contenido h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  font-family: "ClioSemiBold" !important;
  letter-spacing: 1px;
}
.parallax .capa .contenedor .contenido h1 span {
  font-size: 30px !important;
  color: #ffffff;
}
.parallax .capa .contenedor .contenido span {
  font-size: 24px;
  color: #ffffff;
  font-family: "ClioRegularOblique";
}
@media screen and (min-width: 768px) {
  .parallax {
    background: url("../img/parallax/parallax01_768.jpg");
  }
  .parallax .capa .contenedor .contenido h1 {
    font-size: 60px;
    position: relative;
  }
  .parallax .capa .contenedor .contenido h1 sub {
    position: absolute;
    top: 38px;
    right: -28px;
    font-size: 40px !important;
  }
  .parallax .capa .contenedor .contenido span {
    font-size: 28px !important;
  }
}
@media screen and (min-width: 1024px) {
  .parallax {
    background: url("../img/parallax/parallax01_1024.jpg");
    height: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .parallax {
    background: url("../img/parallax/parallax01_1200.jpg");
    height: 550px;
  }
  .parallax .capa {
    padding: 40px 0;
  }
  .parallax .capa .contenedor .contenido h1 {
    font-size: 72px;
    position: relative;
  }
  .parallax .capa .contenedor .contenido h1 sub {
    position: absolute;
    top: 55px;
    right: -20px;
    font-size: 34px !important;
  }
  .parallax .capa .contenedor .contenido span {
    font-size: 32px !important;
  }
}
@media screen and (min-width: 1600px) {
  .parallax {
    background: url("../img/parallax/parallax01_1600.jpg");
  }
}
@media screen and (min-width: 1920px) {
  .parallax {
    background: url("../img/parallax/parallax01_1920.jpg");
  }
}

.bloque1 {
  padding: 60px 0;
  background: url("../img/bgs/bg02.png");
  background-size: cover;
  background-position: center;
}
.bloque1 .contenedor {
  overflow: hidden;
}
.bloque1 .contenedor .forma1 {
  position: relative;
  margin: 0 auto;
  background: #ffffff;
  border: 3px solid #1d345e;
  width: 250px;
  height: 250px;
  border-radius: 15%;
  transform: skewx(-11deg);
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}
.bloque1 .contenedor .forma1 .forma2 {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15%;
  background: #0c4983;
  overflow: hidden;
}
.bloque1 .contenedor .forma1 .forma2 #capa-rombo1 {
  overflow: hidden;
}
.bloque1 .contenedor .forma1 .forma2 #capa-rombo1:hover ~ #imposible {
  content: url("../img/img01_01.png");
  -webkit-animation: fadeInLeft !important;
          animation: fadeInLeft !important;
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.bloque1 .contenedor .forma1 .forma2 #capa-rombo2:hover ~ #imposible {
  content: url("../img/img02_01.png") !important;
  -webkit-animation: fadeInRight !important;
          animation: fadeInRight !important;
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.bloque1 .contenedor .forma1 .forma2 .capa1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  border-radius: 15% 0 0 15%;
  z-index: 2;
}
.bloque1 .contenedor .forma1 .forma2 .capa1 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: "ClioSemiBold";
  letter-spacing: 1px !important;
  font-size: 14px;
  color: #ffffff;
  -webkit-animation: fadeIn !important;
          animation: fadeIn !important;
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
  opacity: 1;
}
.bloque1 .contenedor .forma1 .forma2 .capa2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  border-radius: 0 15% 15% 0;
  z-index: 2;
}
.bloque1 .contenedor .forma1 .forma2 .capa2 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: "ClioSemiBold";
  letter-spacing: 1px !important;
  font-size: 14px;
  color: #ffffff;
  -webkit-animation: fadeIn !important;
          animation: fadeIn !important;
  -webkit-animation-duration: 0.5s !important;
          animation-duration: 0.5s !important;
  opacity: 1;
}
.bloque1 .contenedor .forma1 .forma2 .capa {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 50px;
  background: rgba(12, 74, 131, 0.5843137255);
  z-index: 1;
}
.bloque1 .contenedor .forma1 .forma2 .capa span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: "ClioSemiBold";
  letter-spacing: 1px !important;
  font-size: 14px;
  color: #ffffff;
}
.bloque1 .contenedor .forma1 .forma2 .capa span::after {
  content: "" !important;
}
.bloque1 .contenedor .forma1 .forma2 img {
  content: url("../img/img01.png");
  width: 100%;
  height: 100%;
  border-radius: 15%;
  display: block;
  box-sizing: border-box;
  -webkit-animation: fadeIn;
          animation: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .bloque1 {
    padding: 80px 0;
  }
  .bloque1 .contenedor .forma1 {
    width: 400px;
    height: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .bloque1 .contenedor .forma1 {
    width: 440px;
    height: 440px;
  }
}
@media screen and (min-width: 1600px) {
  .bloque1 .contenedor .forma1 {
    width: 450px;
    height: 450px;
  }
}

.subbloque1 {
  height: 0;
  overflow: hidden;
  background: url("../img/bgs/bg03.png");
  background-size: cover;
  background-position: center;
}
.subbloque1 h1 {
  background: rgba(217, 222, 225, 0.8470588235);
  text-align: center;
  padding: 5px;
  margin-bottom: 40px;
}
.subbloque1 .galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.subbloque1 .galeria .imagen {
  width: 48%;
  position: relative;
  margin-bottom: 10px;
}
.subbloque1 .galeria .imagen #producto01:hover,
.subbloque1 .galeria .imagen #producto02:hover,
.subbloque1 .galeria .imagen #producto03:hover,
.subbloque1 .galeria .imagen #producto04:hover,
.subbloque1 .galeria .imagen #producto05:hover,
.subbloque1 .galeria .imagen #producto06:hover {
  -webkit-animation: fadeIn !important;
          animation: fadeIn !important;
  -webkit-animation-duration: 1s !important;
          animation-duration: 1s !important;
}
.subbloque1 .galeria .imagen span {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translateY(-51%) translateX(-50%);
  font-family: "ClioSemiBold";
  font-style: italic;
  letter-spacing: 1px !important;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .subbloque1 .galeria {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .subbloque1 .galeria .imagen {
    width: 33.33%;
    margin-bottom: 0;
  }
}

.subbloque2 {
  margin-bottom: 40px;
  height: 0;
  overflow: hidden;
  background: url("../img/bgs/bg03.png");
  background-size: cover;
  background-position: center;
}
.subbloque2 h1 {
  background: rgba(217, 222, 225, 0.8470588235);
  text-align: center;
  padding: 5px;
  margin-bottom: 40px;
}
.subbloque2 .galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.subbloque2 .galeria .imagen {
  position: relative;
  width: 48%;
  margin-bottom: 10px;
}
.subbloque2 .galeria .imagen #servicio01:hover,
.subbloque2 .galeria .imagen #servicio02:hover,
.subbloque2 .galeria .imagen #servicio03:hover,
.subbloque2 .galeria .imagen #servicio04:hover,
.subbloque2 .galeria .imagen #servicio05:hover,
.subbloque2 .galeria .imagen #servicio06:hover {
  -webkit-animation: fadeIn !important;
          animation: fadeIn !important;
  -webkit-animation-duration: 1s !important;
          animation-duration: 1s !important;
}
.subbloque2 .galeria .imagen span {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translateY(-51%) translateX(-50%);
  font-family: "ClioSemiBold";
  font-style: italic;
  letter-spacing: 1px !important;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .subbloque2 .galeria {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .subbloque2 .galeria .imagen {
    width: 33.33%;
    margin-bottom: 0;
  }
}

.parallax2 {
  position: relative;
  width: 100%;
  max-height: 450px !important;
  height: 450px;
  background: url("../img/parallax/parallax02_320.jpg");
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}
.parallax2 .capafull {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}
.parallax2 .contenedor {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax2 .contenedor .contenido {
  position: relative;
  text-align: center;
}
.parallax2 .contenedor .contenido .items {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.parallax2 .contenedor .contenido .items .item {
  width: 49%;
  margin-bottom: 30px;
}
.parallax2 .contenedor .contenido .items .item img {
  width: 70px;
  height: auto;
}
.parallax2 .contenedor .contenido .items .item h1 {
  font-family: "ClioUltraBlack" !important;
  letter-spacing: 1px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
}
.parallax2 .contenedor .contenido .items .item h1 span {
  font-size: 14px !important;
}
.parallax2 .contenedor .contenido .items .item span {
  font-family: "ClioRegularOblique";
  font-style: italic;
  letter-spacing: 1px !important;
  font-size: 18px;
  color: #3eb3ba;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .parallax2 {
    background: url("../img/parallax/parallax02_768.jpg");
  }
  .parallax2 .contenedor .contenido .items .item h1 {
    font-size: 54px;
  }
  .parallax2 .contenedor .contenido .items .item span {
    font-size: 22px !important;
  }
}
@media screen and (min-width: 1024px) {
  .parallax2 {
    background: url("../img/parallax/parallax02_1024.jpg");
    min-height: 500px !important;
    height: 500px;
  }
  .parallax2 .contenedor {
    height: 500px;
  }
  .parallax2 .contenedor .contenido {
    width: 100%;
  }
  .parallax2 .contenedor .contenido .items {
    width: 100%;
    justify-content: space-between;
    margin-top: 0;
  }
  .parallax2 .contenedor .contenido .items .item {
    width: 24%;
    margin-bottom: 0;
  }
  .parallax2 .contenedor .contenido .items .item img {
    width: 75px;
  }
  .parallax2 .contenedor .contenido .items .item h1 {
    font-size: 58px;
  }
  .parallax2 .contenedor .contenido .items .item span {
    font-size: 22px !important;
  }
}
@media screen and (min-width: 1200px) {
  .parallax2 {
    background: url("../img/parallax/parallax02_1200.jpg");
    min-height: 550px !important;
    height: 550px;
  }
  .parallax2 .contenedor {
    height: 550px;
  }
  .parallax2 .contenedor .contenido .items .item h1 {
    font-size: 64px;
    margin-bottom: 10px;
  }
  .parallax2 .contenedor .contenido .items .item span {
    font-size: 20px !important;
  }
  .parallax2 .contenedor .contenido .items .item span br {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .parallax2 {
    background: url("../img/parallax/parallax02_1600.jpg");
  }
}
@media screen and (min-width: 1920px) {
  .parallax2 {
    background: url("../img/parallax/parallax02_1920.jpg");
  }
}

.mapa {
  padding: 60px 0;
  background: url("../img/bgs/bg02.png");
  background-size: cover;
  overflow: hidden;
  z-index: 999;
}
.mapa .contenedor .contenido {
  display: flex;
  flex-direction: column;
}
.mapa .contenedor .contenido .lado1 {
  text-align: center;
}
.mapa .contenedor .contenido .lado1 img {
  margin: 0 auto;
  max-width: 550px;
}
.mapa .contenedor .contenido .lado2 h1 {
  margin-bottom: 10px;
}
.mapa .contenedor .contenido .lado2 p {
  color: #0c4983;
}
@media screen and (min-width: 1024px) {
  .mapa .contenedor .contenido {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .mapa .contenedor .contenido .lado1 {
    width: 50%;
  }
  .mapa .contenedor .contenido .lado2 {
    width: 48%;
    margin-top: 100px;
  }
  .mapa .contenedor .contenido .lado2 p {
    width: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .mapa .contenedor .contenido .lado1 {
    width: 60%;
  }
  .mapa .contenedor .contenido .lado2 {
    width: 40%;
    margin-top: 180px;
  }
}

.convenios .barra {
  width: 100%;
  height: 60px;
  background: rgb(0, 0, 46);
  background: linear-gradient(180deg, rgb(0, 0, 46) 0%, rgb(28, 50, 93) 69%);
}
.convenios .barra2 {
  width: 100%;
  height: 60px;
  background: rgb(0, 0, 46);
  background: linear-gradient(0deg, rgb(0, 0, 46) 0%, rgb(28, 50, 93) 69%);
}
.convenios .contenedor {
  padding: 20px 0;
}
.convenios .contenedor .titulo {
  text-align: center;
}
.convenios .contenedor .owl-carousel .item img {
  margin: 0 auto;
  width: 180px;
  height: auto;
}
.convenios .contenedor .owl-carousel .active span {
  background: #0c4983 !important;
}
@media screen and (min-width: 768px) {
  .convenios .contenedor {
    padding: 60px 0;
  }
  .convenios .contenedor .titulo {
    margin-bottom: 20px;
  }
  .convenios .contenedor .owl-carousel .item img {
    width: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .convenios .contenedor .titulo {
    margin-bottom: 40px;
  }
  .convenios .contenedor .owl-carousel .item img {
    transition: 0.4s;
  }
  .convenios .contenedor .owl-carousel .item:hover img {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
  }
}

.cobertura {
  padding: 40px 0;
  background: url("../img/bgs/bg03.png");
  background-size: cover;
}
.cobertura h1 {
  background: rgba(217, 222, 225, 0.8470588235);
  text-align: center;
  padding: 5px;
  margin-bottom: 40px;
}
.cobertura .contenedor form .campo {
  display: flex;
  flex-direction: column;
}
.cobertura .contenedor form .campo label {
  font-family: "ClioSemiBold" !important;
  letter-spacing: 1px;
  margin-bottom: 5px;
  background: rgba(217, 222, 225, 0.8470588235);
  padding: 10px;
  color: #273541;
}
.cobertura .contenedor form .campo input {
  margin-bottom: 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #3eb7ea;
  font-family: "ClioSemiBold" !important;
  letter-spacing: 1px;
}
.cobertura .contenedor form .campo textarea {
  border: 1px solid #3eb7ea;
  font-family: "ClioSemiBold" !important;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.cobertura .contenedor form .boton input {
  background: #0c4983 !important;
  border: none;
  color: #ffffff;
  font-family: "ClioSemiBold" !important;
  letter-spacing: 1px;
  padding: 5px 10px;
}
@media screen and (min-width: 1024px) {
  .cobertura {
    padding: 60px 0;
  }
  .cobertura h1 {
    padding: 10px;
  }
  .cobertura .contenedor form .campo {
    flex-direction: row;
    margin-bottom: 40px;
  }
  .cobertura .contenedor form .campo label {
    width: 202px;
    margin-bottom: 0;
  }
  .cobertura .contenedor form .campo input {
    min-width: 450px;
    margin-bottom: 0;
    margin-left: 20px;
  }
  .cobertura .contenedor form .campo #textarea {
    height: 16px;
  }
  .cobertura .contenedor form .campo textarea {
    margin-left: 20px;
    min-width: 450px;
    height: 240px;
    margin-bottom: 20px;
  }
  .cobertura .contenedor form .campo .grupofinal .boton input {
    min-width: 100px;
    padding: 6px !important;
    font-size: 16px !important;
    letter-spacing: 1px !important;
  }
  .cobertura .contenedor form .nopadding {
    margin: 0 !important;
  }
}

footer {
  background: #0c4983;
  padding: 40px 0;
}
footer .contenedor .lado1 {
  margin-bottom: 20px;
}
footer .contenedor .lado1 .parte1 {
  margin-bottom: 10px;
}
footer .contenedor .lado1 .parte1 a {
  text-decoration: none;
  margin-right: 8px;
}
footer .contenedor .lado1 .parte1 a i {
  color: #3eb7ea;
}
footer .contenedor .lado1 .parte1 span {
  color: #ffffff;
}
footer .contenedor .lado1 .parte2 .subparte1 {
  margin-bottom: 10px;
}
footer .contenedor .lado1 .parte2 .subparte1 a {
  text-decoration: none;
  margin-right: 8px;
}
footer .contenedor .lado1 .parte2 .subparte1 a i {
  color: #3eb7ea;
}
footer .contenedor .lado1 .parte2 .subparte1 span {
  color: #ffffff;
}
footer .contenedor .lado1 .parte2 .subparte2 i {
  color: #3eb7ea;
  margin-right: 8px;
}
footer .contenedor .lado1 .parte2 .subparte2 a {
  text-decoration: none;
  margin-right: 8px;
  color: #ffffff;
}
footer .contenedor .lado2 nav {
  margin-bottom: 20px;
}
footer .contenedor .lado2 nav ul li a {
  font-family: "ClioSemiBold" !important;
  letter-spacing: 1px;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 15px;
  transition: 0.2s;
}
footer .contenedor .lado2 nav ul li a:hover {
  color: #3eb7ea;
  transition: 0.2s;
}
footer .contenedor .lado2 nav ul li .active {
  color: #3eb7ea;
}
footer .contenedor .lado2 .direccion i {
  color: #3eb7ea;
  margin-right: 8px;
}
footer .contenedor .lado2 .direccion span {
  color: #ffffff;
}
footer .contenedor .lado2 .direccion a {
  margin-top: 5px;
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-family: "ClioSemiBold" !important;
  letter-spacing: 1px;
  color: #3eb7ea;
}
@media screen and (min-width: 1024px) {
  footer .contenedor {
    display: flex;
  }
  footer .contenedor .lado1 {
    width: 50%;
  }
  footer .contenedor .lado1 .parte1 {
    margin-bottom: 20px;
  }
  footer .contenedor .lado1 .parte2 .subparte2 {
    margin-top: -5px;
  }
  footer .contenedor .lado2 {
    width: 50%;
  }
  footer .contenedor .lado2 nav ul {
    display: flex;
  }
  footer .contenedor .lado2 nav ul li {
    margin-right: 10px;
  }
}/*# sourceMappingURL=style.css.map */