.seccion-inicio{
    width: 100%;
    height: 100vh;
    background-color: #000000;
    float: left;
    position: relative;
    display: inline-flex;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.carrusel-inicio {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: #000;
}

.carrusel-inicio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.carrusel-inicio .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  animation: carruselFadeZoom 18s infinite;
}

.carrusel-inicio .slide-1 {
  background-image: url("../assets/img-inicio-1.webp");
  animation-delay: 0s;
}

.carrusel-inicio .slide-2 {
  background-image: url("../assets/img-inicio-2.webp");
  animation-delay: 6s;
}

.carrusel-inicio .slide-3 {
  background-image: url("../assets/img-inicio-3.webp");
  animation-delay: 12s;
}

@keyframes carruselFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  10% {
    opacity: 1;
  }

  33% {
    opacity: 1;
    transform: scale(1.08);
  }

  43% {
    opacity: 0;
    transform: scale(1.12);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.contenedor-general-inicio{
    width: 1400px;
    height: 100%;
    background-color: transparent;
    float: left;
    position: relative;
}

.contenedor-titulo-inicio{
    width: 100%;
    height: fit-content;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: transparent;
    z-index: 10;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contenedor-titulo-inicio h1{
    width: 90%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 56px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}

.contenedor-titulo-inicio p{
    width: 70%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
    line-height: 34px;
    color: #FFFFFF;
    text-align: center;
}

.contenedor-rss-btn-inicio{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    height: fit-content;
    position: absolute;
    bottom: 60px;
    right: 0;
    display: inline-flex;
    justify-content: space-between;
    z-index: 100;
}

.contenedor-btn-inicio{
    width: fit-content;
    height: auto;
    background-color: transparent;
    float: left;
}

.contenedor-btn-inicio a{
    width: 220px;
    height: auto;
    padding: 20px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 40px;
    border: solid 2px #FFFFFF;
    display: inline-flex;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.contenedor-btn-inicio a span{
    width: auto;
    height: auto;
    background-color: transparent;
    float: left;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    color: #FFFFFF;
}

.contenedor-btn-inicio a .icon-ir{
    width: 30px;
    height: 30px;
    border-radius: 40px;
    background: url("../assets/icon-ir-rb.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.contenedor-btn-inicio a:hover{
    border: solid 2px #ADA1CF;
    background-color: #ADA1CF;
}

.contenedor-btn-inicio a:hover span{
    color: #1C2545;
}

.contenedor-btn-inicio a:hover .icon-ir{
    background: url("../assets/icon-ir-mb.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contenedor-rss-inicio{
    width: 140px;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
}

.contenedor-rss-inicio a{
    width: 50px;
    height: 50px;
    background-color: transparent;
    float: left;
    text-decoration: none;
}

.contenedor-rss-inicio a .icon-rss-inicio{
    width: 50px;
    height: 50px;
    background-color: transparent;
    float: left;
    border-radius: 60px;
}

.contenedor-rss-inicio a .icon-rss-facabook-i{
    background: url("../assets/icon-facebook-r.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contenedor-rss-inicio a:hover .icon-rss-facabook-i{
    background: url("../assets/icon-facebook-b.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contenedor-rss-inicio a .icon-rss-instagram-i{
    background: url("../assets/icon-instagram-r.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contenedor-rss-inicio a:hover .icon-rss-instagram-i{
    background: url("../assets/icon-instagram-b.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}







.seccion-quien-soy{
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    float: left;
    padding-top: 120px;
    padding-bottom: 120px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contenedor-general-quien-soy{
    width: 1400px;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
}

.contenedor-img-quien-soy{
    width: 46%;
    height: 100%;
    background-color: transparent;
    float: left;
    position: relative;
    display: inline-flex;
    justify-content: space-between;
}

.contenedor-imgs-qs-izq{
    width: 46%;
    height: auto;
    float: left;
    background-color: transparent;
}

.contenedor-img-qs-0,
.contenedor-img-qs-1{
    width: 100%;
    height: 47%;
    background-color: transparent;
    border-radius: 20px;
}

.contenedor-img-qs-0{
    background: url("../assets/quienes-somos-1.webp");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.contenedor-img-qs-1{
    background: url("../assets/quienes-somos-2.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contenedor-img-qs-0{
    margin-bottom: 30px;
}

.contenedor-imgs-der-qs{
    width: 46%;
    height: auto;
    background-color: transparent;
    float: right;
    position: relative;
}

.contenedor-img-qs-2{
    width: 100%;
    height: 80%;
    background-color: transparent;
    background: url("../assets/quienes-somos-3.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.icono-imgs-qs{
    width: 160px;
    height: 160px;
    border-radius: 160px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #FFFFFF;
}

.icono-imgs-qs img{
    width: 120px;
    height: fit-content;
    background-color: transparent;
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.contenedor-info-qs{
    width: 46%;
    height: auto;
    background-color: transparent;
    float: left;
    position: relative;
}

.info-qs{
    width: 100%;
    height: fit-content;
    position: relative;
    background-color: transparent;
}

.info-qs h4{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: #ADA1CF;
    margin-bottom: 20px;
}

.info-qs h2{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 46px;
    color: #030D43;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.info-qs p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin-bottom: 20px;
}

.info-qs h5{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    color: #000000;
    margin-bottom: 20px;
}

.contenedor-valores{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.valor{
    width: 46%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: start;
}

.valor img{
    width: 40px;
    height: 40px;
    background-color: transparent;
    float: left;
    margin-right: 15px;
}

.info-valor{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
}

.info-valor h6{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    margin-top: 0px;
    margin-bottom: 10px;
}

.info-valor p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #000000;
    line-height: 22px;
}







.seccion-mision-vision{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    position: relative;
    display: inline-flex;
    justify-content: center;
}

.contenedor-general-seccion-vision{
    width: 100%;
    height: 100%;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: center;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
}

.contenedor-izq-mv{
    width: 40%;
    height: auto;
    background-color: #B3A2D2;
    float: left;
    padding-right: 90px;
    padding-left: 90px;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

.contenedor-der-mv{
    width: 60%;
    height: auto;
    background-color: #000000;
    float: left;
    position: relative;
    overflow: hidden;
    padding-right: 90px;
    padding-left: 90px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.parallax-mv{
    width: 60%;
    height: 100%;
    position: fixed;
    background: url("../assets/parallax-mision-vision.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    right: 0;
    opacity: .5;
}

.contenedor-seccion-ms{
    width: 1400px;
    height: auto;
    background-color: transparent;
    float: left;
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 120px;
}

.contenedor-info-mision-vision{
    width: 720px;
    height: auto;
    background-color: #030D43;
    float: left;
    padding: 60px;
    display: inline-flex;
    justify-content: space-between;
    margin-left: 90px;
    border-radius: 20px;
}

.contenedor-info-mision-vision h2{
    width: 60px;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 56px;
    color: #ADA1CF;
    text-align: center;
    letter-spacing: -2px;
    margin-bottom: 20px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.info-msvs{
    width: 85%;
    height: auto;
    background-color: transparent;
    float: left;
}

.mision,
.vision{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
}

.mision{
    margin-bottom: 40px;
}

.mision img,
.vision img{
    width: 40px;
    height: 40px;
    background-color: transparent;
    float: left;
    margin-bottom: 20px;
}

.mision h3,
.vision h3{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    color: #ADA1CF;
    margin-bottom: 20px;
}

.mision p,
.vision p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
}









.seccion-servicios{
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    float: left;
    padding-top: 120px;
    padding-bottom: 0px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contenedor-general-servicios{
    width: 1400px;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contenedor-titulo-servicios{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.titulo-servicios{
    width: 47%;
    height: auto;
    background-color: transparent;
    float: left;
}

.titulo-servicios img{
    width: 100px;
    height: auto;
    background-color: transparent;
    float: left;
    margin-bottom: 20px;
}

.titulo-servicios h4{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: #ADA1CF;
}

.titulo-servicios h2{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 46px;
    color: #030D43;
    margin-bottom: 20px;
}

.listado-detalles-titulo{
    width: 47%;
    height: auto;
    background-color: transparent;
    float: left;
    padding-top: 40px;
}

.listado-detalles-titulo p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin-bottom: 20px;
}

.listado-detalles-titulo ul{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}

.listado-detalles-titulo ul li{
    width: 46%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: start;
}

.listado-detalles-titulo ul li img{
    width: 16px;
    height: 16px;
    background-color: transparent;
    float: left;
    margin-top: 3px;
    margin-right: 10px;
}

.listado-detalles-titulo ul li .p-list{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin-top: 0px;
}

.contenedor-servicios{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.servicio{
    width: 31%;
    height: auto;
    background-color: #FFFFFF;
    float: left;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.servicio figure{
    width: 100%;
    height: 250px;
    background-color: #000000;
    float: left;
    overflow: hidden;
}

.servicio figure img{
    width: 100%;
    height: 100%;
    background-color: transparent;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transition: ease .4s opacity;
}

.servicio figure .img-top{
    object-position: center top;
}

.servicio:hover figure img{
    opacity: .5;
    transition: ease .4s opacity;
}

.contenedor-servicios .img-servicio{
    width: 60px;
    height: 60px;
    background-color: transparent;
    float: left;
    margin-bottom: 20px;
}

.info-servicio{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.contenedor-icono-servicio{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-bottom: 20px;
    margin-top: -120px;
}

.icono-servicio{
    width: 80px;
    height: 80px;
    background-color: #FFFFFF;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative;
}

.icono-servicio img{
    width: 60px;
    height: 60px;
    background-color:transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.info-servicio h3{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    color: #000000;
    margin-bottom: 20px;
}

.info-servicio p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}

.contenedor-banner-servicios{
    width: 100%;
    height: auto;
    background-color: #1C2545;
    float: left;
    border-radius: 20px;
    display: inline-flex;
    justify-content: space-between;
    overflow: hidden;
    margin-bottom: 60px;
}

.contenedor-info-banner-servicio{
    width: 50%;
    height: auto;
    background-color: transparent;
    position: relative;
}

.info-banner-servicio{
    width: 100%;
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    padding: 40px;
}

.info-banner-servicio h3{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    color: #FFFFFF;
    letter-spacing: 0px;
    margin-bottom: 20px;
}

.info-banner-servicio p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    margin-bottom: 40px;
}

.info-banner-servicio a{
    width: 220px;
    height: auto;
    padding: 20px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 40px;
    border: solid 2px #FFFFFF;
    display: inline-flex;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
}

.info-banner-servicio a span{
    width: auto;
    height: auto;
    background-color: transparent;
    float: left;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    color: #FFFFFF;
}

.info-banner-servicio a .icon-whatsapp{
    width: 30px;
    height: 30px;
    border-radius: 40px;
    background: url("../assets/icon-whatsapp-rb.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.info-banner-servicio a:hover{
    border: solid 2px #ADA1CF;
    background-color: #ADA1CF;
}

.info-banner-servicio a:hover span{
    color: #1C2545;
}

.info-banner-servicio a:hover .icon-whatsapp{
    background: url("../assets/icon-whatsapp-mb.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contenedor-img-banner-servicios{
    width: 50%;
    height: 450px;
    background-color: transparent;
    background: url("../assets/servicios-banner.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    float: left;
    border-bottom-left-radius: 400px;
    border-top-left-radius: 400px;
}

.contenedor-datos-estadisticos{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
}

.estadistica{
    width: 22%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
}

.estadistica img{
    width: 60px;
    height: 60px;
    background-color: transparent;
    float: left;
    margin-bottom: 10px;
}

.estadistica h4{
    width: 100%;
    height: auto;
    display: inline-flex;
    justify-content: center;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 66px;
    color: #030D43;
    margin-bottom: 10px;
}

.estadistica h5{
    width: 100%;
    height: auto;
    display: inline-flex;
    justify-content: center;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    color: #030D43;
    text-align: center;
}







.seccion-contacto{
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    float: left;
    padding-top: 120px;
    padding-bottom: 120px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contenedor-general-contacto{
    width: 1400px;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
}

.contenedor-formulario-contacto{
    width: 46%;
    height: auto;
    background-color: transparent;
    float: left;
}

.contenedor-formulario-contacto h4{
   width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: #ADA1CF;
    margin-bottom: 20px; 
}

.contenedor-formulario-contacto h2{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 46px;
    color: #030D43;
    margin-bottom: 20px;
}

.contenedor-formulario-contacto p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin-bottom: 40px;
}

.contenedor-formulario-contacto form{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contenedor-input-100{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    margin-bottom: 40px;
}

.titulo-campo{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
    margin-left: 15px;
}

.input-formulario{
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: solid 1px #c9c9c9;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    border-radius: 20px;
    appearance: none;
    outline: none;
    padding: 10px;
}

.textarea-formulario{
    width: 100%;
    height: 120px;
    background-color: transparent;
    border: solid 1px #c9c9c9;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    border-radius: 20px;
    appearance: none;
    outline: none;
    padding: 10px;
}

.contenedor-cptcha{
    width: 100%;
    margin-bottom: 40px;
}

.contenedor-boton-formulario{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
}

.contenedor-boton-formulario button{
    width: 220px;
    height: auto;
    padding: 20px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 40px;
    border: solid 2px #1C2545;
    display: inline-flex;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
    appearance: none;
    outline: none;
    background-color: #1C2545;
    cursor: pointer;
}

.contenedor-boton-formulario button span{
    width: auto;
    height: auto;
    background-color: transparent;
    float: left;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    color: #FFFFFF;
}

.contenedor-boton-formulario button .icon-ir{
    width: 30px;
    height: 30px;
    border-radius: 40px;
    background: url("../assets/icon-ir-rb.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.contenedor-boton-formulario button:hover{
    border: solid 2px #ADA1CF;
    background-color: #ADA1CF;
}

.contenedor-boton-formulario button:hover span{
    color: #1C2545;
}

.contenedor-boton-formulario button:hover .icon-ir{
    background: url("../assets/icon-ir-mb.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contenedor-mapa-contacto{
    width: 46%;
    height: 980px;
    background-color: transparent;
    float: left;
}

.contenedor-btns-nav-mapa{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contenedor-btns-nav-mapa input[type="radio"]{
    display: none;
    visibility: hidden;
}

.contenedor-btns-nav-mapa label{
    width: 46%;
    height: auto;
    padding: 5px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 40px;
    border: solid 2px transparent;
    display: inline-flex;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
    appearance: none;
    outline: none;
    background-color: #F9F8Fd;
    cursor: pointer;
    margin-bottom: 20px;
}

.contenedor-btns-nav-mapa label span{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    color: #000000;
}

.contenedor-btns-nav-mapa input[type="radio"]:checked + label,
.contenedor-btns-nav-mapa input[type="radio"]:hover + label{
    background-color: #ADA1CF;
    color: #ADA1CF;
}

.contenedor-btns-nav-mapa input[type="radio"]:checked + label span,
.contenedor-btns-nav-mapa input[type="radio"]:hover + label span{
    color: #FFFFFF;
}

.contenedor-mapa{
    width: 100%;
    height: auto;
    background-color: transparent;
    overflow: hidden;
}

.carrusel-mapa{
    width: 400%;
    display: inline-flex;
    justify-content: space-between;
    height: auto;
    background-color: transparent;
}

.hospital{
    width: 100%;
    height: auto;
    height: auto;
    background-color: transparent;
    float: left;
}

.hospital h3{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    color: #000000;
    text-align: center;
    margin-bottom: 10px;
}

.hospital p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.contenedor-mapa iframe{
    width: 100%;
    height: 320px;
    background-color: transparent;
    float: left;
    border-radius: 20px;
    margin-bottom: 30px;
}

.contenedor-imgs-hospital{
    width: 100%;
    height: 320px;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contenedor-imgs-hospital figure{
    width: 47%;
    height: 150px;
    background-color: #000000;
    border-radius: 20px;
    overflow: hidden;
}

.contenedor-imgs-hospital  .img-hospital-2{
    height: 100%;
}

.contenedor-imgs-hospital figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}








.seccion-comentarios{
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
    float: left;
    display: inline-flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-bottom: 400px;
}

.contenedor-general-comentarios{
    width: 1400px;
    height: auto;
    background-color: #1C2545;
    float: left;
    overflow: hidden;
    border-radius: 20px;
    display: inline-flex;
    justify-content: space-between;
}

.contenedor-imgs-comentarios{
    width: 50%;
    height: auto;
    background-color: transparent;
    float: left;
    position: relative;
}

.img-comentario-1{
    width: 350px;
    height: 350px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 80px;
    margin: auto;
    border-radius: 200px;
    background: url("../assets/img-testimonios-1.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-comentario-2{
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: -120px;
    left: -50px;
    margin: auto;
    border-radius: 200px;
    background: url("../assets/img-testimonios-2.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-comentario-3{
    width: 180px;
    height: 180px;
    position: absolute;
    top: -20px;
    left: -50px;
    margin: auto;
    border-radius: 200px;
    background: url("../assets/img-testimonios-3.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contenedor-comentarios{
    width: 50%;
    height: auto;
    background-color: transparent;
    float: left;
    padding: 60px;
    padding-left: 0px;
}

.contenedor-carrusel-comentarios{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    overflow: hidden;
    margin-bottom: 20px;
}

.carrusel-comentarios{
    width: 300%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: space-between;
}

.comentario{
    width: 33.33%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.comentario img{
    width: 60px;
    height: 60px;
    background-color: transparent;
    margin-bottom: 30px;
}

.comentario p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.contenedor-nombre-puesto-comentario{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
}

.contenedor-nombre-puesto-comentario h3{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    line-height: 30px;
    color: #ADA1CF;
}

.contenedor-nombre-puesto-comentario p{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.contenedor-nav-comentarios{
    width: 100%;
    height: auto;
    background-color: transparent;
    float: left;
    display: inline-flex;
    justify-content: start;
    padding-left: 20px;
}

.contenedor-nav-comentarios input[type="radio"]{
    display: none;
    visibility: hidden;
}

.contenedor-nav-comentarios label{
    width: 12px;
    height:12px;
    border-radius: 12px;
    background-color: #FFFFFF;
    margin-right: 10px;
    cursor: pointer;
}

.contenedor-nav-comentarios input[type="radio"]:hover + label{
    background-color: #ADA1CF;
}

.contenedor-nav-comentarios input[type="radio"]:checked + label{
    width: 30px;
    background-color: #ADA1CF;
}








@media only screen and (max-width: 1580px){

    .seccion-inicio{
        padding-left: 90px;
        padding-right: 90px;
    }

    .contenedor-general-inicio{
        width: 100%;
    }

    .img-dr-inicio{
        width: 600px;
    }





    .seccion-quien-soy{
        padding-left: 90px;
        padding-right: 90px;
    }

    .contenedor-general-quien-soy{
        width: 100%;
    }




    .contenedor-seccion-ms{
        width: 100%;
        padding-left: 90px;
        padding-right: 90px;
    }






    .seccion-servicios{
        padding-left: 90px;
        padding-right: 90px;
    }

    .contenedor-general-servicios{
        width: 100%;
    }







    .seccion-contacto{
        padding-left: 90px;
        padding-right: 90px;
    }

    .contenedor-general-contacto{
        width: 100%;
    }






    .seccion-comentarios{
        padding-left: 90px;
        padding-right: 90px;
    }

    .contenedor-general-comentarios{
        width: 100%;
    }
}









@media only screen and (max-width: 1380px){

    .contenedor-titulo-inicio h1{
        width: 100%;
    }

    .contenedor-titulo-inicio p{
        width: 85%;
    }





    .contenedor-imgs-qs-izq{
        width: 46%;
        height: 100%;
        background-color: transparent;
    }

    .contenedor-img-qs-0,
    .contenedor-img-qs-1{
        width: 100%;
        height: 50%;
    }

    .contenedor-img-qs-1{
        background-position: center;
    }

    .info-qs{
        width: 100%;
        height: fit-content;
        position: relative;
        left: unset;
        top: unset;
        bottom: unset;
        margin: unset;
    }

    .contenedor-valores{
        flex-wrap: wrap;
    }

    .valor{
        width: 46%;
        margin-bottom: 20px;
    }





    .contenedor-info-mision-vision{
        margin-left: 70px;
    }






    .titulo-servicios{
        height: auto;
    }

    .titulo-servicios ul li{
        width: 100%;
    }

    .contenedor-servicios ul li{
        width: 100%;
    }




    .contenedor-mapa-contacto{
        height: 1050px;
    }

    .contenedor-mapa iframe{
        height: 340px;
    }

    .contenedor-imgs-hospital{
        height: 340px;
    }
}









@media only screen and (max-width: 1180px){

    .contenedor-titulo-inicio p{
        width: 100%;
    }





    .contenedor-imgs-qs-izq{
        width: 100%;
    }

    .contenedor-img-qs-0,
    .contenedor-img-qs-1{
        width: 100%;
        height: 46%;
        background-color: transparent;
        border-radius: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .contenedor-imgs-der-qs{
        display: none;
        visibility: hidden;
    }

    .valor{
        width: 100%;
        margin-bottom: 20px;
    }






    .contenedor-info-mision-vision{
        margin-left: 50px;
    }







    .listado-detalles-titulo ul li{
        width: 100%;
        height: auto;
        background-color: transparent;
        float: left;
        display: inline-flex;
        justify-content: start;
    }






    

    .contenedor-datos-estadisticos{
        flex-wrap: wrap;
    }

    .estadistica{
        width: 30%;
    }

    .estadistica-final{
        display: none;
        visibility: hidden;
    }






    .contenedor-mapa-contacto{
        height: 1050px;
    }

    .contenedor-mapa iframe{
        height: 340px;
    }

    .contenedor-imgs-hospital{
        height: 340px;
    }
}









@media only screen and (max-width: 980px){

    .seccion-inicio{
        padding-left: 70px;
        padding-right: 70px;
    }

    .contenedor-titulo-inicio h1{
        font-size: 46px;
    }





    .seccion-quien-soy{
        padding-left: 70px;
        padding-right: 70px;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .contenedor-general-quien-soy{
        flex-wrap: wrap-reverse;
    }

    .contenedor-img-quien-soy{
        width: 100%;
        height: 500px;
    }

    .contenedor-imgs-qs-izq{
        width: 46%;
    }

    .contenedor-img-qs-0,
    .contenedor-img-qs-1{
        width: 100%;
        height: 230px;
    }

    .contenedor-imgs-der-qs{
        display: block;
        visibility: visible;
    }

    .contenedor-info-qs{
        width: 100%;
        height: auto;
        background-color: transparent;
        float: left;
        position: relative;
    }

    .info-qs h2{
        font-size: 40px;
    }

    .valor{
        width: 46%;
    }





    .contenedor-seccion-ms{
        width: 100%;
        padding-left: 70px;
        padding-right: 70px;
    }

    .contenedor-izq-mv{
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .contenedor-der-mv{
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .contenedor-seccion-ms{
        width: 100%;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .contenedor-info-mision-vision h2{
        width: 60px;
        font-size: 46px;
    }

    .contenedor-info-mision-vision{
        width: 100%;
        margin-left: 0px;
        padding-left: 40px;
        padding-right: 40px;
    }





    .seccion-servicios{
        padding-top: 90px;
        padding-bottom: 0px;
        padding-left: 70px;
        padding-right: 70px;
    }

    .contenedor-titulo-servicios{
        width: 100%;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .titulo-servicios{
        width: 100%;
        height: auto;
        position: relative;
    }

    .titulo-servicios h2{
        font-size: 40px;
    }

    .listado-detalles-titulo{
        padding-top: 0px;
        width: 100%;
    }

    .listado-detalles-titulo ul li{
        width: 46%;
    }

    .contenedor-servicios{
        width: 100%;
        margin-bottom: 60px;
    }

    .servicio{
        width: 46%;
    }
    
    .contenedor-banner-servicios{
        width: 100%;
        margin-bottom: 60px;
    }

    .contenedor-banner-servicios{
        overflow: hidden;
        display: inline-flex;
        flex-wrap: nowrap;
    }

    .contenedor-info-banner-servicio{
        width: 55%;
        float: left;
    }

    .info-banner-servicio{
        width: 100%;
        height: fit-content;
        position: relative;
        top: unset;
        left: unset;
        bottom: unset;
        margin: unset;
        padding: 40px;
    }

    .info-banner-servicio h3{
        letter-spacing: -2px;
    }


    .contenedor-img-banner-servicios{
        width: 45%;
        height: 100%;
        border-bottom-left-radius: 1000px;
        border-top-left-radius: 1000px;
        border-top-right-radius: 0px;
    }

    .contenedor-datos-estadisticos{
        flex-wrap: wrap;
    }

    .estadistica{
        width: 46%;
        margin-bottom: 40px;
    }

    .estadistica-final{
        display: inline-flex;
        visibility: visible;
    }






    .seccion-contacto{
        padding-left: 70px;
        padding-right: 70px;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .contenedor-general-contacto{
        flex-wrap: wrap;
    }

    .contenedor-formulario-contacto{
        width: 100%;
        height: auto;
        background-color: transparent;
        float: left;
        margin-bottom: 90px;
    }

    .contenedor-formulario-contacto h2{
        font-size: 40px;
    }

    .contenedor-mapa-contacto{
        width: 100%;
        height: auto;
        background-color: transparent;
    }

    .contenedor-btns-nav-mapa label{
        width: 46%;
    }

    .contenedor-mapa iframe{
        height: 350px;
    }
    
    .contenedor-imgs-hospital{
        height: 350px;
    }

    .contenedor-imgs-hospital figure{
        height: 160px;
        margin-bottom: 20px;
    }







    .seccion-comentarios{
        padding-left: 70px;
        padding-right: 70px;
        padding-bottom: 300px;
    }

    .contenedor-imgs-comentarios{
        display: none;
        visibility: hidden;
    }

    .contenedor-comentarios{
        width: 100%;
        padding: 60px;
        padding-left: 40px;
        padding-right: 40px;
    }
}









@media only screen and (max-width: 780px){

    .seccion-inicio{
        padding-left: 50px;
        padding-right: 50px;
    }

    .contenedor-titulo-inicio p{
        font-size: 16px;
        line-height: 24px;
    }
    





    .seccion-quien-soy{
        padding-left: 50px;
        padding-right: 50px;
    }

    .valor{
        width: 46%;
        margin-bottom: 40px;
    }





    .contenedor-seccion-ms{
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }

    .contenedor-info-mision-vision{
        width: 100%;
        margin-left: 0px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .info-msvs{
        width: 80%;
    }





    .seccion-servicios{
        padding-left: 50px;
        padding-right: 50px;
    }

    .contenedor-banner-servicios{
        flex-wrap: wrap;
    }

    .contenedor-info-banner-servicio{
        width: 100%;
    }

    .info-banner-servicio{
        position: relative;
        padding: 40px;
    }

    .info-banner-servicio h3{
        letter-spacing: 0px;
    }

    .contenedor-img-banner-servicios{
        width: 100%;
        height: 400px;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 400px;
        border-top-right-radius: 400px;
        background-position: top center;
    }







    .seccion-contacto{
        padding-left: 50px;
        padding-right: 50px;
    }

    .contenedor-mapa{
        width: 100%;
    }







    .seccion-comentarios{
        padding-left: 50px;
        padding-right: 50px;
    }
}










@media only screen and (max-width: 580px){

    .seccion-inicio{
        padding-left: 30px;
        padding-right: 30px;
        height: 100vh;
    }

    .contenedor-titulo-inicio h1{
        font-size: 36px;
    }







    .seccion-quien-soy{
        padding-left: 30px;
        padding-right: 30px;
    }

    .valor{
        width: 100%;
        margin-bottom: 40px;
    }





    .contenedor-seccion-ms{
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .contenedor-info-mision-vision{
        padding-left: 20px;
        padding-right: 20px;
    }





    .seccion-servicios{
        padding-left: 30px;
        padding-right: 30px;
    }

    .contenedor-titulo-servicios{
       margin-bottom: 20px;
    }

    .listado-detalles-titulo ul li{
        width: 100%;
    }

    .servicio{
        width: 100%;
    }

    .contenedor-banner-servicios{
        width: 100%;
        margin-bottom: 60px;
    }

    .contenedor-banner-servicios{
        overflow: hidden;
        display: inline-flex;
        flex-wrap: wrap;
    }

    .contenedor-info-banner-servicio{
        width: 100%;
        float: left;
    }

    .info-banner-servicio{
        width: 100%;
        height: fit-content;
        position: relative;
        top: unset;
        left: unset;
        bottom: unset;
        margin: unset;
        padding: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .contenedor-img-banner-servicios{
        width: 100%;
        height: 400px;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 200px;
        border-top-right-radius: 200px;
    }

    .contenedor-datos-estadisticos{
        display: inline-flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .estadistica{
        width: 100%;
        margin-bottom: 40px;
    }







    .seccion-contacto{
        padding-left: 30px;
        padding-right: 30px;
    }

    .contenedor-formulario-contacto{
        background-color: transparent;
        margin-bottom: 90px;
    }

    .contenedor-mapa-contacto{
        width: 100%;
        height: auto;
        background-color: transparent;
    }

    .contenedor-btns-nav-mapa label{
        width: 100%;
    }

    .contenedor-mapa iframe{
        height: 350px;
    }
    
    .contenedor-imgs-hospital{
        height: 350px;
    }

    .contenedor-imgs-hospital figure{
        height: 160px;
        margin-bottom: 20px;
    }







    .seccion-comentarios{
        padding-left: 30px;
        padding-right: 30px;
    }

    .contenedor-comentarios{
        width: 100%;
        padding: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
}








@media only screen and (max-width: 480px){

    .seccion-inicio{
        padding-left: 20px;
        padding-right: 20px;
    }

    .contenedor-rss-btn-inicio{
        justify-content: center;
    }

    .contenedor-rss-inicio{
        display: none;
        visibility: hidden;
    }






    .seccion-quien-soy{
        padding-left: 20px;
        padding-right: 20px;
    }

    .contenedor-imgs-qs-izq{
        width: 100%;
    }

    .contenedor-img-qs-0,
    .contenedor-img-qs-1{
        width: 100%;
        height: 46%;
        background-color: transparent;
        border-radius: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .contenedor-imgs-der-qs{
        display: none;
        visibility: hidden;
    }






    .contenedor-seccion-ms{
        padding-left: 20px;
        padding-right: 20px;
    }






    .seccion-servicios{
        padding-left: 20px;
        padding-right: 20px;
    }






    .seccion-contacto{
        padding-left: 20px;
        padding-right: 20px;
    }

     .contenedor-btns-nav-mapa label{
        width: 100%;
    }







    .seccion-comentarios{
        padding-left: 20px;
        padding-right: 20px;
    }
}









@media only screen and (max-width: 380px){

    .seccion-inicio{
        padding-left: 15px;
        padding-right: 15px;
    }

    .h1-1{
        letter-spacing: -1px;
    }

    .h1-2{
        letter-spacing: -1px;
    }

    .img-dr-inicio{
        width: 100%;
        display: block;
        visibility: visible;
    }






    .seccion-quien-soy{
        padding-left: 15px;
        padding-right: 15px;
    }






    .contenedor-seccion-ms{
        padding-left: 15px;
        padding-right: 15px;
    }






    .seccion-servicios{
        padding-left: 15px;
        padding-right: 15px;
    }







    .seccion-comentarios{
        padding-left: 15px;
        padding-right: 15px;
    }






    .seccion-contacto{
        padding-left: 15px;
        padding-right: 15px;
    }
}