@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');


:root {
    --fondo-seccion: #e9e9e9;
    --fondo-banner: #88bbd6;
    --color-logo: #013552;
    --color-fuente: #212427;
  }

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
p{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
   
}
h3{
    font-family: 'Roboto', sans-serif;
    
}

section{
    padding: 50px 100px;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    z-index: 999999;
}

header .logo{
    font-family: 'Oswald', sans-serif;
    color: var(--color-logo) ;
    font-size: 32px;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.5s;
}


header .logo:hover{
    color: var(--fondo-banner);
}

header ul{
    position: relative;
    display: flex;
}

header ul li{
    position: relative;
    list-style: none;
}

header ul li ul{
    position: absolute;
    left: 0;
    background: #ffffff;
    display: none;
    padding-bottom: 5px;
    z-index: 1;
}

header ul li:hover ul{
    display: block;
}

header ul li ul li{
    display: block;
    width: 150px;
}

header ul li a{
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    text-decoration: none;
    transition: 0.5s;
    color: #111111;
}

header ul li a:hover{
    background: var(--color-logo);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}
header ul li .activa{
    color:#E5383B;
}

.slider{
    margin-top: 85px;
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: var(--fondo-banner);
}

.slider .imgBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    transition-delay: 0s;
    z-index: 1;
    clip-path: circle(0px at center);
}

.slider input[type="radio"]:checked + .imgBx{
    z-index: 10;
    clip-path: circle(1000px at center);
    transition-delay: 0.75s;
}

.slider .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .imgBx .texto{
    position: relative;
    text-align: center;
    max-width: 800px;
}

.slider .imgBx .texto h2{
    font-size: 4em;
    color: #ffffff;
}

.slider .imgBx .texto p{
    font-size: 1.1em;
    color: #ffffff;
}

.slider input[type="radio"]{
    position: relative;
    z-index: 500;
    margin: 5px;
    margin-bottom: 40px;
    outline: none;
    cursor: pointer;
}

.slider .btn{
    background: var(--color-logo)
    ;
}

/*Slider With Swipe JS*/
    .swiper-js-,
    .swiperJS  {
        position: relative;
        height: 100vh;
        margin-top: 45px;
      }

      .swiperJS {
        
        background: #eee;
        font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
        font-size: 14px;
        color: #000;
        margin: 0;
        padding: 0;
      }

      .swiper {
        width: 100%;
        height: 100%;
      }

      .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
      }

      .swiper-slide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .swiper-slide .imgBx .texto{
        position: relative;
        text-align: center;
        max-width: 800px;
        padding: 0 60px;
        }
      .swiper-slide .imgBx .texto h2{
          font-size: 3em;
          color: #ffffff;
      }

      .swiper-slide .imgBx .texto p{
          font-size: 1.1em;
          color: #ffffff;
      }

      .swiper {
        margin-left: auto;
        margin-right: auto;
      }

.banner{
    position: relative;
    min-height: 50vh;
    margin-top: 80px;
    padding: 0 20%;
    background: #88bbd6;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 2s;
    animation: fondo 20s ease-in-out infinite;
}

.banner.mensj{
    background: #6795ad;
}

.banner h2{
    margin-bottom: 15px;
    font-size: 50px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1em;
}

.banner h2 span{
    font-size: 40px;
    font-weight: 500;
}

.banner h3{
    margin-top: 5px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
}

.btn{
    position: relative;
    background:  var(--color-logo);
    display: inline-block;
    color: #ffffff;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.5s;
}

.btn.whats{
    display: none;
}

.btn:hover{
    background: #F5F3F4;
    color: var(--color-logo);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.heading{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #111111;
}

.heading h2{
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 1px;
}

.heading p{
    margin: 35px 150px;
}

.nosotros{
    background: #F5F3F4;
}

.nosotros .content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.nosotros .content .nosotrosBX{
    padding-bottom: 15px;
    text-align: center;
    background: #ffffff;
    color: #111111;
    max-width: 340px;
    margin: 15px;
    transition: 0.5s;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(0) translatez(0);
}

.nosotros .content .nosotrosBX:hover{
    box-shadow: 5px 10px 20px 10px var(--fondo-banner);
}

.testimonios{
    background: var(--fondo-seccion);
}

.nosotros .content .nosotrosBX h2{
    padding: 50px;
    background: var(--color-logo);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    z-index: 1;
    transition: 0.7s;
    box-shadow: 0 0 0 0 var(--color-logo);
}
.nosotros .content .nosotrosBX:hover h2{
    box-shadow: 0 0 0 400px var(--color-logo);
    background: #ffffff;
    color:black;
}

.nosotros .content .nosotrosBX p{
    text-align: left;
    padding: 10px 25px;
    z-index: 2;
    transition: 1s;
}
.nosotros .content .nosotrosBX:hover p{
    z-index: 2;
    color: #ffffff;
}


.terapias .content{
    display: flex;
    justify-content: space-between;
}

.terapias .activo{
    filter: blur(20%);
    pointer-events: none;
    user-select: none;
}

.terapias .content .contentBx{
    padding: 0 30px;
}

.terapias .content .contentBx h3{
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 20%;
}
.terapias .content .servi .contentBx h3{
    margin-top: 20px;
}

.terapias .content .w50{
    min-width: 50%;
}

.terapias .content .imgPhoto{
    max-width: 100%;
    transition: 0.4s ease-in-out;
}

.terapias .content .imgPhoto:hover{
    opacity: 0.8;
}

.metodo{
        background: var(--fondo-seccion);
}

.metodo.inicio{
    background: white;
}

.metodo .content{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row;
}

.metodo .content .nosotrosBX{
    text-align: center;
    padding-bottom: 15px;
    background: #ffffff;
    color: #111111;
    max-width: 340px;
    margin: 15px;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.3);
}

.metodo .content .nosotrosBX .icon{
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--color-logo);
    box-shadow: 0 0 0 0 var(--color-logo);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto 0;
    border-radius: 50%;
    transition: 1s;
}

.metodo .content .nosotrosBX:hover .icon{
    box-shadow: 0 0 0 600px var(--color-logo);
 
}

.metodo .content .nosotrosBX .icon h1{
    font-size: 40px;

}

.metodo .content .nosotrosBX h2,
.metodo .content .nosotrosBX p{
    position: relative;
    z-index: 1;
    transition: 1s;
    padding: 0 25px;
}
.metodo .content .nosotrosBX h2{
    padding-top: 5px;
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 5px;
    z-index: 2;
}
.metodo .content .nosotrosBX p{
    text-align: left;
    padding-bottom: 25px;
    font-size: 15px;
    z-index: 2;
}

.metodo .content .nosotrosBX:hover h2,
.metodo .content .nosotrosBX:hover p{
    color: #ffffff;
}

.metodo .btn{
   top: 50%;
   left: 50%;
   transform: translate(-50%,-50%);
   margin-top: 50px;
}



.testimonial{
    padding: 35px 50px;
    margin: 0 20px 30px;
    border-radius: 0 70px 0 70px;
    border: 5px solid var(--fondo-banner);
    border-left: none;
    border-right: none;
    text-align: center;
}
.testimonial .pic{
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .title{
    display: block;
    margin: 0 0 7px 0;
    font-size: 20px;
    font-weight: 600;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.testimonial .post{
    display: block;
    font-size: 15px;
    color: black;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.testimonial .description{
    padding: 0 25%;
    font-size: 16px;
    color: black;
    line-height: 30px;
}
.owl-theme .owl-controls{ margin-top: 0; }
.owl-theme .owl-controls .owl-page span{
    background: #F5F3F4;
    opacity: 0.8;
    transition: all 0.3s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span{ background: var(--color-logo); }



.contacto{
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contacto .contenedor{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    background: #F5F3F4;
}

.contacto .contenedor .info-contacto{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}

.contacto .contenedor .info-contacto .box-contact{
    position: relative;
    display: flex;
    padding: 20px 0;
}

.contacto .contenedor .info-contacto .box-contact .icono-contact{
    min-width: 60px;
    height: 60px;
    margin-right: 10px;
    background: var(--color-logo);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 25px;
}
.contacto .contenedor .info-contacto .box-contact .icono-contact i{
    filter: invert(1);
}
.contacto .contenedor .info-contacto .box-contact .icono-contact a{
    text-decoration: none;
    color: black;
}

.contacto .contenedor .info-contacto .box-contact .texto-contact{
    display: flex;
    flex-direction: column;
}

.contacto .contenedor .info-contacto .box-contact a{
    text-decoration: none;
    color: black;
}

.formulario{
    width: 50%;
    padding: 40px;
    background:  var(--fondo-banner);
    color: #ffffff;
}

.formulario .intputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.formulario .intputBox input,
.formulario .intputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    color: #212427;
    margin: 10px 0;
    border: none;
    background: white;
    /* border-bottom: 1px solid #ffffff; */
    border-radius: 5px;
    outline: none;
    resize: none;
}

.formulario .intputBox span{
    position: absolute;
    left: 10px;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    font-weight: 600;
    color: #212427;
}

.formulario .intputBox input:focus ~ span,
.formulario .intputBox input:valid ~ span,
.formulario .intputBox textarea:focus ~ span,
.formulario .intputBox textarea:valid ~ span{
    font-size: 12px;
    transform: translateY(-20px);
    color: #F5F3F4;
}
/*.formulario .intputBox input[type="submit"],*/
button {
    position: relative !important;
    width: 50% !important;
    background:  var(--color-logo) !important;
    display: inline-block !important;
    color: #ffffff !important;
    margin-top: 10px !important;
    padding: 10px 30px !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border: none !important;
    letter-spacing: 2px !important;
    font-weight: 500 !important;
    border-bottom: none !important;
    cursor: pointer !important;
    transition: 0.5s !important;
}
/*.formulario .intputBox input[type="submit"]:hover,*/
button:hover{
    background: #F5F3F4;
    color: var(--color-logo);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

*:before,*:after{
    box-sizing: border-box;
}

footer{
    display: flex;
    flex-flow: row wrap;
    padding: 50px 50px 10px;
    background: var(--fondo-banner);
    color: #ffffff;
}

footer > * {
    flex: 1 100%;
}

footer h3{
    font-weight: 600;
    font-size: 20px;
    margin-top: 15px;
}

footer .logo-footer a{
        font-family: 'Oswald', sans-serif;
        font-size: 32px;
        letter-spacing: 1px;
        text-decoration: none;
        font-weight: 700;
}
footer p,
footer ul li{
    font-size: 15px;
}

footer ul{
    list-style: none;
    padding-left: 0;
}

footer li{
    line-height: 2em;
}

footer a{
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
}

footer p a {
    font-weight: 700;
    letter-spacing: 1px;
}

footer .footer-izq{
    margin-right: 1.25em;
    margin-bottom: 2em;
}
footer .footer-izq p{
    padding-right: 20%;
}

footer .footer-der{
    display: flex;
    flex-flow: row wrap;
}

.footer-der > *{
    flex: 1 50%;
    margin-right: 1.25em;
}

footer .footer-abajo{
    text-align: center;
    padding-top: 50px;
}

.covid{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #ffffff;
    padding: 50px 150px;
}
.covid ul{
    list-style: none;
}

.covid ul li{
    padding: 10px 0;
}

.geist{
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
}

.whatsapp {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
  }
  
  .whatsapp-icon {
    margin-top:13px;
  }

 .grecaptcha-badge { 
    visibility: hidden;
}

@media screen and (min-width: 600px){
    .footer-izq {
        flex: 1 0px;
    }
    .footer-der > *{
        flex: 1;
    }
    .footer-der{
        flex: 2 0px;
    }
}

/* ----- RESPONSIVO ------- */

@media (max-width: 991px){
    section{
        padding: 15px 10px;
    }

    .heading{
        margin-bottom: 5px;
    }

    .heading h2{
        letter-spacing: 0;
    }
    .heading p {
        margin: 35px 20px;
        font-size: 16px;
        text-align: left;
    }

    .heading p br{
        display: none;
    }
    header{
        padding: 10px 50px;
        z-index: 1000;
        position: fixed;
    }
    .menu{
        position: fixed;
        top: 60px;
        left: -100%;
        display: block;
        padding: 50px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        font-size: 30px;
        font-weight: 600;
    }
    .menu.active{
        left: 0;
    }
    .toggle{
        width: 40px;
        height: 40px;
        background: url(img/menu.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
        filter: invert(1);
        transition: 0.2s;
    }
    .toggle.active{
        background: url(img/close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px;
        filter: invert(1);
        cursor: pointer;
    }
    header ul li a{
        font-size: 16px;
    }
   
    header ul li:hover ul{
        position: relative;
    }
    header ul li ul li{
        width: 100%;
    }
    header ul li ul li a{
        font-weight: 400;
    }

    .slider{
        margin-top: 0px;
        min-height: 100vh;
    }
    .slider .imgBx {
        padding: 20px;
    }

    .slider .imgBx .texto h2{
        font-size: 2.5em;
    }

    /**/
    .swiper-slide{
        margin-top: 0px;
        min-height: 100vh;
    }
    .swiper-slide .imgBx {
        padding: 20px;
    }

    .swiper-slide .imgBx .texto {
        padding: 0 30px;
    }

    .swiper-slide .imgBx .texto h2{
        font-size: 2.5em;
    }

    .swiper-slide .imgBx .texto p {
        padding: 27px 0;
    }

    .banner {
        margin-top: 60px;
        
        padding: 0;
    }

    .banner h2{
        font-size: 32px;
    }

    .banner .textBx{
        padding: 15px;
        text-align: center;
    }

    .btn.whats{
        display: inline-block;
    }

    .btn.comp{
        display: none;
    }

    .terapias .content .w50{
        padding: 15px;
    }

    .terapias .content .servi .w50{
        background:  #ffffff;
    }

    .terapias .content {
        flex-direction: column-reverse;
        text-align: center;
    }
    #adultos,#online{
        display: flex;
        flex-direction: column-reverse;
    }
    #adolescentes{
        display: flex;
        flex-direction: column;
    }


    .terapias .content .contentBx h3 {
        margin-top: 20px;
    }

    .terapias .content .contentBx p{
        text-align: left;
    }

    .terapias .content .imgPhoto {
    margin-bottom: -45px;
}

    .testimonial .description {
        padding: 0;
    }

    .testimonial{
        padding: 35px 0px;
    }

    .contacto .contenedor {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .contacto .contenedor .info-contacto {
        width: 85%;
        padding-left: 0;
    }

    .contacto .contenedor .formulario{
        width: 100%;
    }

    footer{
        padding: 15px 50px;
    }

    .covid{
        padding: 50px;
    }
}

@media (max-width: 527px){
    .formulario .intputBox input[type="submit"],
    button{
        width: 50%;
    }
}


/* Iconos footer*/
.wrapper .button-icon{
    display: inline-block;
    height: 40px;
    width: 40px;
    float: left;
    margin: 0 5px;
    overflow: hidden;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-out;
  }
  .wrapper .button-icon a{
      text-decoration: none;
    }
  .wrapper .button-icon .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50px;
    box-sizing: border-box;
    line-height: 60px;
    transition: all 0.3s ease-out;
    color: var(--color-logo);
  }
  .wrapper .button-icon .icon i{
    font-size: 18px !important;
  }
  .wrapper .button-icon:nth-child(1):hover .icon{
    background: #4267B2;
  }
  .wrapper .button-icon:nth-child(2):hover .icon{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  }
  .wrapper .button-icon:nth-child(3):hover .icon{
    background: #25D366;
  }
  .wrapper .button-icon:nth-child(4):hover .icon{
    background: #ff0000;
  }
  .wrapper .button-icon .icon i{
    font-size: 25px;
    line-height: 60px;
    transition: all 0.3s ease-out;
  }
  .wrapper .button-icon:hover .icon i{
    color: #fff;
  }
  .wrapper .button-icon span{
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    margin-left: 10px;
    transition: all 0.3s ease-out;
  }
  .wrapper .button-icon:nth-child(1) span{
    color: #4267B2;
  }
  .wrapper .button-icon:nth-child(2) span{
    color: #E1306C;
  }
  .wrapper .button-icon:nth-child(3) span{
    color: #075E54;
  }
  .wrapper .button-icon:nth-child(4) span{
    color: #ff0000;
  }

