@charset "utf-8";

/* Tipografias Google Fonts
font-family: 'Roboto', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Padauk', sans-serif;
font-family: 'Lato', sans-serif;
font-family: 'Fira Sans Extra Condensed', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
font-family: 'Oswald', sans-serif;
font-family: 'Nunito', sans-serif;
font-family: 'Nunito Sans', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Fira Sans Condensed', sans-serif;
font-family: 'Open Sans Condensed', sans-serif;
font-family: 'PT Sans', sans-serif;
font-family: 'Roboto Slab', serif;
font-family: 'PT Sans Narrow', sans-serif;
font-family: 'Quicksand', sans-serif;
font-family: 'Ubuntu', sans-serif;
font-family: 'Arimo', sans-serif;
font-family: 'Titillium Web', sans-serif;
font-family: 'Fjalla One', sans-serif;
font-family: 'Yanone Kaffeesatz', sans-serif;
font-family: 'Anton', sans-serif;
font-family: 'Archivo Narrow', sans-serif;
*/

html {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #646464;
    font-size: 14px;
}

header,
section,
article,
nav,
footer,
aside,
figure,
body,
div {
    margin: 0;
    padding: 0;
}

body {
    background: #FFF;
}

* {
    box-sizing: border-box;
    line-height: 1;
}

h1,
h2,
h3,
p,
a,
ul,
li,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

a img {
    border: none;
}


/****************************************************/


/*********************** Efectos ********************/


/****************************************************/

.mover-derecha-izquierda {
    animation-name: efecto-derecha-izquierda;
    animation-duration: 2s;
    position: relative;
    left: 0;
}

.mover-izquierda-derecha {
    animation-name: efecto-izquierda-derecha;
    animation-duration: 2s;
    position: relative;
    left: 0;
}

.mover-abajo-arriba {
    animation-name: efecto-abajo-arriba;
    animation-duration: 2s;
    position: relative;
    top: 0;
}
.mover-especialistas {
    animation-name: efecto-especialistas;
    animation-duration: 2s;
    position: relative;
    top: 0;
}

.sombra {
    -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.43);
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.43);
}

@keyframes efecto-derecha-izquierda {
    0% {
        opacity: 0;
        left: 500px;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes efecto-izquierda-derecha {
    0% {
        opacity: 0;
        left: -500px;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes efecto-abajo-arriba {
    0% {
        opacity: 0;
        top: 200px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes efecto-especialistas {
    0% {
        top: 400px;
    }
    100% {
        top: 0;
    }
}

@keyframes anima-izq {
    0% {
        opacity: 0;
        left: 500px;
    }
    25% {
        opacity: 1;
        left: 100px;
    }
    75% {
        opacity: 1;
        left: -100px;
    }
    100% {
        opacity: 0;
        left: -1000px;
    }
}

@keyframes anima-izq2 {
    0% {
        margin-left: 30%;
        width: 100%
    }
    50% {
        margin-left: 0%;
        width: 100%;
    }
    100% {
        margin-left: 0%;
        width: 100%;
    }
}

@keyframes anima-arriba {
    from {
        margin-top: 25%;
        width: 100%
    }
    to {
        margin-top: 0%;
        width: 100%;
    }
}


/********************* CABECERA *********************/

.cabecera {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.barra_sup {
    width: 100%;
}

.barra_inf {
    width: 100%;
    padding: 10px 0 10px 0;
    background: rgb(11, 32, 79);
    background: linear-gradient(90deg, rgba(11, 32, 79, 1) 0%, rgba(238, 31, 37, 1) 100%);
    border-bottom: 4px white solid;
}

.barra_sup div,
.barra_inf2 {
    width: 1600px;
    margin: auto;
}

.barra_sup div ul {
    display: flex;
    flex-direction: row;
    padding: 12px;
    justify-content: space-between;
}

.barra_sup div ul li,
.barra_sup div ul li i {
    color: #0b204f;
    font-weight: 600;
    font-size: 15px;
}

.barra_sup div ul li a {
    background-color: #0b204f;
    padding: 5px;
    border-radius: 20px;
}

.barra_sup div ul li a i {
    color: white;
}

.menu-principal {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.logo {
    width: auto !important;
    padding: 0;
    margin: 0;
}

.logo img {
    height: auto;
    width: 300px;
    padding: 4%;
    background-color: white;
    border-radius: 15px;
}

.megamenu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 50px;
    height: auto;
    gap: 10px;
}
.megamenu li{
    display: block;
    height: auto;
}

.megamenu li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: white;
    height: auto;
    width: auto;
}

.megamenu li:hover {
    /* border-bottom: white 6px solid; */
    transition: all 0.5s;
    
}

.megamenu li a:hover {
    text-shadow: 3px 3px 5px #0b204f;
}


/********************* BANNERS *********************/

.banner {
    width: 100%;
    background: #f6f5f5;
}

.slides li a img {
    width: 100%;
}


/********************* PIE PAGINA *********************/

.piepagina {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    background: rgb(11, 32, 79);
    background: linear-gradient(180deg, rgba(11, 32, 79, 1) 0%, rgba(11, 32, 39, 1) 100%);
}

.caja-pie {
    width: 1600px;
    display:flex;
    flex-direction:row;
    justify-content: space-between;
   
}

.pie-contacto,
.pie-menu, .pie-servicios1, .pie-servicios2 {
    display: flex;
    flex-direction: column;
}

.pie-contacto {
    width: 23%;
    gap: 10px;
}

.pie-menu {
    width: 16%;
}

.pie-servicios1 {
    width: 24%;
}
.pie-servicios2 {
    width: 18%;
}

.pie-contacto li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 16px;
    line-height: 20px;
    text-indent: -27px;
    margin-left: 27px;
}

.pie-contacto li a img {
    width: 250px;
    height: auto;
}

.pie-contacto li i {
    color: #80b0ff;
    font-size: 19px;
    text-indent: -4px;
}

.pie-menu li,
.pie-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 16px;
    line-height: 31px;
}

.pie-servicios1 li,
.pie-servicios1 li a, .pie-servicios2 li,
.pie-servicios2 li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 15px;
    line-height: 24px;
}

.pie-servicios1 li::first-line, .pie-servicios2 li::first-line {
    color: #80b0ff;
    font-weight: 600;
    margin-bottom: 5px;
}

.pie-menu li::first-line, .celeste {
    color: #80b0ff;
    font-weight: 600;
    line-height: 31px;
}

.celeste{
    margin-bottom: 10px;
}

.pie-menu li a:hover, .pie-servicios1 li a:hover, .pie-servicios2 li a:hover {
    color: #80b0ff;
}

.pie-menu hr {
    border-bottom: #80b0ff solid 2px;
    margin: 15px 0 15px 0;
}

.creditos {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 15px 100px;
    background: #e7e7de;
}

.creditos p {
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}


/********************* HOME *********************/
.banner2{
    display: none;
}
.banner2 img{
    display: none;
}
.texto6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
    text-align: center;
    padding: 0 100px;
}

.caja-servicios,
.caja-especialistas {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
}

.caja-especialistas {
    background-color: #e6efff;
}

.caja-servicios2, .caja-especialistas2 {
    max-width: 1600px;
    width: 100%;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
}

.servicios,
.especialistas {
    display: flex;
    flex-direction: column;
    
}

.doctores{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 60px;
    justify-content: center;
}

.doctores li{
    width: 20%;
    height: auto;
    
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    filter: grayscale(1);
    -webkit-transform: scale(1, 1);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1, 1);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    
}
.doctores li:hover{
    filter: grayscale(0);
    -webkit-transform: scale(1.15, 1.15);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 100ms;
    -moz-transform: scale(1.15, 1.15);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 100ms;
}
.doctores li img{
    width: 100%;
    height: auto;
    
}

.servicios ul{
    width: 100%;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.servicios h1, .especialistas h1 {
    text-align: center;
    color: #0b204f;
    margin-bottom: 30px;
}

a.servicios2 {
    display: flex;
    flex-direction: column;
    width: 375px;
    position: relative;
    overflow: hidden;
}

a.servicios2 img {
    max-width: 375px;
}

a.servicios2 p {
    position: absolute;
    bottom: -30px;
    left: 0;
    z-index: 2;
    width: 100%;
    transition: 0.5s;
    text-align: center;
}

a.servicios2:hover p {
    position: absolute;
    bottom:0;
    left: 0;
    height: 55px;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: white;
    background: rgba(11, 32, 79, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    padding: 10px;
}

.caja-oscura3 {
    width: 100%;
    height: 55px;
    background: rgba(11, 32, 79, 0.822);
    
    transition: all 0.5s;
    position: absolute;
    bottom: 0px;
    left: 0;
    display: block;
    margin: auto;
    align-items:center;
    justify-content:end;
}

.caja-oscura3 h2{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 19px;
    text-align: center;
    margin-top: 10px;
}

.caja-oscura3 p{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
}

.boton-celeste{
    padding: 15px 60px;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    background:#80b0ff;
    margin-top: 30px;
    border-radius: 30px;
    width: fit-content;
    margin: auto;
    margin-top: 30px;
}

.boton-celeste:hover{
    background:#0b204f;
}


/***************   NOSOTROS    **************/

.caja-nosotros {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
}

.caja-nosotros2 {
    max-width: 1600px;
    display: flex;
    flex-direction: column;
}

.cols-2{
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    gap:50px;

}

.cols-2:first-child{
   
    margin-top: 0;
}
.textos, .foto{
    width: 50%;
}
.textos{
    display: flex;
    flex-direction: column;
    text-align: justify;
}
.textos h1{
    color: #0b204f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 28px;
}

.textos p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
}
.foto img{
    width: 100%;
}


/***************   PREGUNTAS FRECUENTES    **************/

.caja-preguntas {
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
}

.caja-preguntas2 {
    max-width: 1600px;
    display: flex;
    flex-direction: column;
}

.preguntas {
    width: 100%;
    height: auto;
}

.preguntas h1{
    color: #0b204f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.faqs {
    display: block;
}

#accordion h3{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
}

#accordion div p{
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
}
.caja-contacto {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background:#71a2e4 ;
    margin-bottom: 5px;
}

.caja-contacto2 {
    max-width: 1600px;
    height:400px;
    display: flex;
    flex-direction: ;
    background-image: url("../imagenes/contacto.jpg");
    background-size:cover;
    background-position: center;
    justify-content: flex-end;
    align-items: center;
}

.contacto {
    width: 60%;
    height: 150px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.contacto a{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacto a p{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    margin-top: 10px;

}

.contacto a img{
    height: 130px;
    width: auto;
}
.contacto a img:hover{
    -webkit-transform: scale(1.10, 1.10);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 100ms;
    -moz-transform: scale(1.10, 1.10);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 100ms;
}

/***************   SERVICIOS   **************/

.textos-servicios{
    display: flex;
    flex-direction: column;
    text-align: justify;
}
.textos-servicios h1{
    color: #0b204f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 30px;
    text-align: center;
}
.textos-servicios h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 25px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.textos-servicios h3{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 19px;
    line-height: 23px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #0b204f;
}
.textos-servicios p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
}
.textos-servicios ol{
    margin-top: 28px;
}

.bullet0{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    margin-left: 50px;
    margin-bottom: 2px;
    margin-top: 2px;
    list-style:decimal;
}

.bullet1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    margin-left: 0;
    margin-bottom: 2px;
    margin-top: 2px;
    list-style:square;
}

.bullet2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    margin-left: 50px;
    margin-bottom: 2px;
    margin-top: 2px;
    list-style:disc;
}

.bullet3{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    margin-left: 55px;
    margin-bottom: 2px;
    margin-top: 2px;
    list-style:circle;
}

/***************   CLIENTES   **************/

.caja-clientes {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
}

.caja-clientes2 {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.caja-clientes2 img {
    width: 100%;
}



/***************   CONTACTENOS    **************/
.caja-contactenos {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
}

.caja-contactenos2 {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contactenos-sup{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contactenos-sup h1{
    color: #0b204f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.contactenos-sup p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
    text-align: justify;
}
.contactenos-inf{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    justify-content: space-between;
}
.contactenos-izq{
    width: 35%;
    display: flex;
    flex-direction: column;
}
.contactenos-izq p{
    margin-top: 10px;
    margin-bottom: 10px;
}

.contactenos-der{
    width: 60%;
}
.contactenos-der form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.text1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}
.text2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 28px;
    color: #0b204f;
}
.text3{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #0b204f;
}
.campos{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.comentarios{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.benviar{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: gainsboro;
    width: 110px;
}
.benviar:hover{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color:#0b204f;
    color: white;
}



/************    DISEÑO PARA TABLETAS       ********/

@media only screen and (max-width: 1800px) {
    .barra_sup div, .barra_inf2 {
        width: 100%;
    }
    .barra_inf {
    padding: 10px 20px 10px 20px;
    }
    .flexslider {
        width: 100% !important;
    }

    .doctores {
        padding: 0 50px;
    }
    .piepagina {
    padding: 30px 50px;
    }
    .caja-pie {
        width: 100%;
    }
    .caja-oscura3 h2 {
        font-size: 16px;
        line-height: 18px;
    }
    .caja-oscura3 p {
        font-size: 11px;
        line-height: 13px;
    }
    
    .caja-nosotros, .caja-clientes, .caja-preguntas, .caja-contactenos {
        padding: 100px;
    }
    
}

@media only screen and (max-width: 1440px) {
    .doctores li {
        width: 25%;
    }
    .caja-contacto2 {
        width: 100%;
        height: 300px;
        background-position: top;
        background-size: cover;
    }
    .caja-clientes {
        padding: 50px;
    }
}

@media only screen and (max-width: 1330px) {
    .megamenu {
        padding: 29px 0 0 0 !important;
    }
    .megamenu > li > a {
        display: block;
        height: 50px;
        line-height: 22px;
        padding: 0 5px;
        color: white;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 18px;
        margin: 0;
        text-align: center;
        transition: all 0.5s;
      }
   
    .pie-contacto li a img {
        width: 100%;
    }
    .contactenos-izq {
        width: 45%;
    }
    .contactenos-der {
        width: 50%;
    }
}

@media only screen and (max-width: 1280px) {
    
    .pie-contacto {
        width: 25%;
    }
    
    .pie-contacto li {
        font-size: 14px;
        line-height: 17px;
        text-indent: -27px;
        margin-left: 27px;
    }
    .pie-menu li, .pie-menu li a {
        font-size: 14px;
        line-height: 28px;
    }
    .ui-accordion .ui-accordion-content {
        margin-bottom: 30px;
      }
}

@media only screen and (max-width: 1024px) {
    .megamenu{
        padding: 0 !important;
        margin-left: 50px;
        margin-top: 20px;
        height: auto;
    }
    .megamenu li {
        font-size: 26px;
        line-height: 29px;
    }
    .megamenu > li.showhide {
        background-color: #0b204f !important;
    }
    .megamenu > li:hover > a, .megamenu > li.active > a {
        color: #666 !important;
    }
    .megamenu li a:hover {
        text-shadow: none;
    }
    
    .caja-servicios, .caja-especialistas, .caja-nosotros, .caja-preguntas, .caja-contactenos {
        padding: 50px;
    }
    .caja-servicios2{
        padding: 0 30px;
    }
    .texto6 {
        padding: 0;
    }
    .doctores {
        padding: 0;
        gap: 40px;
    }
    .barra_sup div ul {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        gap: 10px 30px;
    }
    .servicios h1, .especialistas h1, .contactenos-sup h1{
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 20px;
    }
    .texto6 {
        font-size: 16px;
        line-height: 1.5;
    }
    .boton-celeste {
        padding: 10px 30px;
        font-size: 16px;
        line-height: 16px;
        margin-top: 20px;
        border-radius: 20px;
        margin-top: 20px;
    }
    .doctores li {
        width: 40%;
    }
    .piepagina {
        padding: 30px 25%;
    }
    .caja-pie {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .pie-contacto{
        width: 100%;
        gap: 10px;
        margin-bottom: 10px;
    }
    .pie-contacto::after, .pie-menu::after{
        content: '\A';
        white-space: pre;
        border-bottom: solid 2px #71a2e4;
    }
    
    .pie-menu {
        width: 100%;
        gap:0;
        margin-bottom: 20px;
    }
    .pie-contacto li, .pie-menu li, .pie-menu li a {
        text-align: center;
        font-size: 17px;
        line-height: 21px;
    }
    .pie-contacto li a img {
        width: auto;
        height: 80px;
        margin-bottom: 10px;
      }
    .pie-menu, .pie-servicios1, .pie-servicios2 {
        width: 100%;
        text-align: center;
    }
    .pie-servicios1 li a, .pie-servicios2 li a, .pie-servicios1 li{
        font-size: 17px;
        line-height: 27px;
    }
    .pie-servicios2 li:first-child{
        display: none;
    }
    .pie-menu li, .pie-menu li a {
        text-align: center;
        font-size: 17px;
        line-height: 21px;
    }
    .pie-menu hr{
        display: none;
    }
    .cols-2{
        flex-direction: column;
        gap: 0;
    }
    .textos, .foto{
        width: 100%;
    }
    .textos{
        margin-bottom: 30px !important;
    }
    .textos h1{
        text-align: center;
    }
    .cols-2:nth-of-type(2), .cols-2:nth-of-type(4){
        margin-top: 50px;
        flex-direction: column-reverse;
    }
    .cols-2:nth-of-type(3){
        margin-top: 50px;
    }
    .ui-accordion .ui-accordion-content {
        height: auto !important;
        padding: 20px !important;
        margin-bottom: 0 !important;
    }
    #accordion div p {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 900px) {
    .contactenos-inf {
        flex-direction: column;
    }
    .contactenos-izq, .contactenos-der {
        width: 100%;
    }
    .contactenos-izq p {
        text-align: center;
    }
    .contactenos-izq hr{
        color: #e7e7de;
        width: 60%;
        margin: auto;
    }
    .contactenos-der{
        margin-top: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .doctores li {
        width: 60%;
    }
    .menu-principal {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .megamenu {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    .barra_sup div, .barra_inf2 {       
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .caja-contacto2 {
        background-color: cornflowerblue;
        background-image: none;
        padding: 0 50px;
    }
    .contacto {
        width: 100%;
        justify-content: space-around;
    }
    .caja-clientes {
        padding: 30px;
    }
}

@media only screen and (max-width: 656px) {
    .contactenos-izq hr{
        width: 75%;
    }
    
}

@media only screen and (max-width: 608px) {
    .banner2{
        display: block;
        width: 100%;
    }
    .banner2 img{
        width: 100%;
        display: block;
    }
    .banner{
        display: none;
    }
    .barra_sup{
        display: none;
    }
    .doctores li {
        width: 80%;
    }
    .piepagina {
        padding: 30px;
      }
    .creditos {
        padding: 15px;
    }
    .creditos p {
        font-size: 13px;
        line-height: 15px;
    }
    .textos-servicios h1, .textos h1, .preguntas h1 {
        font-size: 27px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .contactenos-izq hr{
        width: 90%;
    }
    .caja-contacto2, .caja-especialistas2 {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 536px) {
    .pie-contacto li, .pie-servicios1 li, .pie-servicios2 li {
        font-size: 14px;
        line-height: 18px;
    }
    .pie-menu li{
        font-size: 14px;
        line-height: 28px;
    }
    .servicios ul li img {
        max-width: -moz-available;
    }
    .caja-servicios, .caja-especialistas, .caja-nosotros, .caja-preguntas, .caja-contactenos {
        padding: 30px;
    }
    
}

@media only screen and (max-width: 440px) {
    .pie-contacto li a img {
        width: 230px;
        height: auto;
    }
    
    .servicios h1, .especialistas h1, .preguntas h1, .contactenos-sup h1 {
        font-size: 23px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .textos-servicios h1, .textos h1 {
        font-size: 23px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .text3{
        font-size: 15px;
        line-height: 20px;
    }
    .campos{
        font-size: 17px;
        line-height: 23px;
        padding: 7px;
    }
    .textos-servicios p, .textos p, .contactenos-sup p {
        font-size: 17px;
        line-height: 27px;
    }
    .textos-servicios ol {
        margin-top: 15px;
      }
    .bullet0{
        font-size: 17px;
        line-height: 27px;
        list-style-position: inside;
    }

    .bullet1{   
        margin-left: 10px;
        font-size: 17px;
        line-height: 27px;
    }
    .bullet2{
        margin-left: 20px;
        font-size: 17px;
        line-height: 27px;
    }
    
    .bullet3{
        margin-left: 30px;
        font-size: 17px;
        line-height: 27px;
    }
    .cols-2:nth-of-type(2), .cols-2:nth-of-type(4){
        margin-top: 30px;
    }
    .cols-2:nth-of-type(3){
        margin-top: 30px;
    }
    .caja-contacto2 {
        height: 220px;
      }
    .caja-servicios2 {
        padding: 0 0;
      }

    .caja-contacto2, .caja-especialistas2 {
        padding: 0 0;
    }
    .contacto a img {
        height: 100px;
    }
    .contacto a p {
        font-size: 16px;
      }
    .caja-oscura3 h2 {
        font-size: 15px;
        line-height: 17px;
      }
    .caja-oscura3 p {
        font-size: 10px;
        line-height: 12px;
      }
    .doctores {
        padding: 0;
        gap: 25px;
    }
}