
@media screen and ( max-width: 1200px){
    

body{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #eee;
    background-image: url(imagenes/fondo.webp);
    background-repeat: no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
}

h1, h2, h3 {
    font-family: "Playball", cursive;
    font-weight: 400;
    font-style: normal;
}
span{
    color: #59CADE;
}

@keyframes show {
    from{
        opacity: 0;
        scale:  25%;
    }

    to{
        opacity: 1;
        scale: 100%
    }
}

.imagen {
    view-timeline-name: --image;
    view-timeline-axis: block;

    animation-timeline: --image;
    animation-name: show;

    animation-range: entry 25% cover 30%;
    animation-fill-mode: both;
}
/*nav*/

.nav__container {
    display: flex;  
    flex-wrap: wrap;
    height: 180px;
    width: 100%;
    background-color: #fff;
    opacity: 90%;
    border-bottom: 1px solid #bbb;
    justify-content: space-between;
    position: sticky;
    align-items: center;
    z-index: 200;
    top: 0;
}
.nav__logo{
    padding-left: 30px;
    object-fit: contain;
    height: 180px;
}
.nav__ul{
    align-items: baseline;
    flex-grow: 1;
    background-color: #cbf9ff;
    position: absolute;
    width: 100%;
    top: 180px;
    display: flex;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 3rem;
    transition: all 0.3s;
}
.nav__ul-li {
    list-style: none;
    margin: 0px 20px;
    font-size: 3.5rem;
    padding: 5px 12px;
    font-weight: bold;
}

.nav__li-a{
    text-decoration: none;
    color: #222F30;
}
.nav__li-a:hover{
    transition: 1s;
    color: #33CCCC;
}

.check-box{ 
    display: none;
}

.barras{
    padding-right: 30px;
    cursor: pointer;
}

.check-box:checked + .nav__ul{
    height: calc(100vh - 180px);

}
/*nav*/

  /*inicio*/
  .inicio__container{
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -140px;
}

.inicio__imagen{

    position: absolute;
    object-fit: cover;
    width: 100%;
    min-height: 90vh;
    max-height: 900px;
    z-index: 10;
}

.inicio__div-container{
    max-width: 700px;
    min-width: 200px;
    position: relative;
    z-index: 100;
    text-align: center;
    margin: auto;
}

.inicio__h1{
    font-size: 80px;
    margin: 56px 0px 0px 0px;
    color: #fff;
    text-shadow: 1px 1px #000000;
    animation: h1-animation 3s infinite;
    animation-fill-mode: forwards;
}
.inicio__p{
    font-size: 52px;
    margin: 56px 0px 0px 0px;
    color: #fff;
    text-shadow: 1px 1px #000000;
}

@keyframes h1-animation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.inicio__h1 span{
    color: #6659DE;
}
 /*inicio*/


 .flecha__item{
    height: 80px;
    width: 80px;
    background-color: #2614ca;
    clip-path: polygon(50% 10%, 100% 0, 50% 50%, 0 0);
    margin: auto;
    margin-top: 15px;
    animation: h1-animation 3s infinite;
}


 /*sobre nosotros*/
    
 .sobreNosotros__container{
    display: flex;
    width: 100%;
    height: 90vh;
    flex-wrap: wrap;
    justify-content: end;
    margin: auto;
    text-shadow: 1px 1px #000;
}

.sobreNosotros__imagen{
    width: 100%;
    min-height: 90vh;
    max-height: 120vh;
    border-radius: 8px;
    object-fit: cover;
    position: absolute;
    z-index: 0;

}

.sobreNosotros__div{
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 100;
    text-align: center;
}
.sobreNosotros__div-h1{
    font-size: 80px;
    color: #59CADE;
    text-align: center;
    text-shadow: 2px 2px #000;
    animation: h1-animation 3s infinite;
}

.sobreNosotros__div-p{
    font-size: 20px;
    padding: 30px;
    color: #fff;
    text-shadow: 2px 2px #000;
}

.sobreNosotros__div-ul{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    color: #fff;
}

.sobreNosotros__div-li{
    list-style: none;
    color: #fff;
}


.sobre-nosotros__buttom-container{
    display: flex;
    justify-content: center;
}
.sobreNosotros__div-buttom{
    height: 56px;
    width: 180px;
    margin: 30px;
    border-radius: 50rem;
    border-style: none;
    background-color: #59CADE;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: 0.3s linear;
    font-weight: 500;
}

.sobreNosotros__div-buttom:hover{
    transform: scale(1.1, 1.1);
}

.sobreNosotros__container span {
    color: #59CADE;
    font-weight: 500;
}



@media screen and ( max-width: 440px){ 
    .sobreNosotros__div-p{
        font-size: 17px;
        padding: 30px;
        color: #fff;
        text-shadow: 2px 2px #000;
    }
    

}
@media screen and ( max-width: 375px){ 
    .sobreNosotros__div-p{
        font-size: 13px;
        padding: 30px;
        color: #fff;
        text-shadow: 2px 2px #000;
    }
    

}
/*sobre nosotros*/

.queSomos{
    max-width: 100%;
    max-height: 90vh;
    min-height: 60vh;
    display: flex;
    flex-direction: row-reverse;
}

.queSomos__img{
    position: absolute;
    min-width: 100%;
    height: 90vh;
    object-fit: cover;
}

.queSomos__div{
    position: relative;
    display: flex;
    height: 90vh;
    max-width: 59%;
    z-index: 100;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: #59CADE;
    justify-content: center;
    margin: auto;
}
.queSomos__h2{
    z-index: 100;
    color: #2614ca;
    font-size: 72px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-shadow: 1px 1px #000000;
    animation: h1-animation 3s infinite;
}

.queSomos__p{
    color: #ffffff;
    font-size: 2.4vh;
    padding-top: 20px;
    padding-inline: 30px;
    padding-bottom: 0px;
    font-weight: 500;
}

.queSomos__p span{
    color: #2614ca;
}

.objetivos{
    border-top: 4px solid #59CADE;
    max-width: 100%;
    max-height: 90vh;
    min-height: 60vh;
    display: flex;
    flex-direction: row-reverse;
}

.objetivos__img{
    position: absolute;
    min-width: 100%;
    height: 90vh;
    object-fit: cover;
}

.objetivos__div{
    position: relative;
    display: flex;
    height: 90vh;
    max-width: 59%;
    z-index: 100;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: #59CADE;
    justify-content: center;
    margin: auto;
}
.objetivos__h2{
    z-index: 100;
    color: #2614ca;
    font-size: 72px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-shadow: 1px 1px #000000;
    animation: h1-animation 3s infinite;
}

.objetivos__p{
    color: #ffffff;
    font-size: 2.4vh;
    padding-top: 20px;
    padding-inline: 30px;
    padding-bottom: 0px;
    font-weight: 500;
}

.objetivos__p span{
    color: #2614ca;
}

.objetivos__ul{
    color: #ffffff;
    font-size: 3vh;
    padding-top: 20px;
    margin: 10px;
    padding-inline: 30px;
    font-weight: 500;
}

.objetivos__li {
    font-size: 3vh;
    list-style: none;
}


@media screen and ( max-width: 500px){ 
    .queSomos__h2{
        font-size: 6vh;
    }
    .queSomos__p{
        font-size: 1.7vh;
    }
    .queSomos__img{
        position: absolute;
        min-width: 100%;
    }
    .queSomos__div{
        position: relative;
        display: flex;
        height: 90vh;
        max-width: 59%;
        z-index: 100;
        align-items: center;
        flex-direction: column;
        text-align: center;
        background-color: #59CADE;
        justify-content: center;
        margin: auto;
    }

    .objetivos__h2{
        font-size: 6vh;
    }
    .objetivos__p{
        font-size: 1.7vh;
    }
    .objetivos__img{
        position: absolute;
        min-width: 100%;
    }
    .objetivos__div{
        position: relative;
        display: flex;
        height: 90vh;
        max-width: 59%;
        z-index: 100;
        align-items: center;
        flex-direction: column;
        text-align: center;
        background-color: #59CADE;
        justify-content: center;
        margin: auto;
    }
    .objetivos__li {
        font-size: 2vh;
        list-style: none;
    }
}

 /*Que ofrecemos*/
    .queOfrecemos__container{
        max-width: 1400px;
        max-height: 3000px;
        padding-top: 96px;
        display: flex;
        flex-direction: column;
        margin: auto;
    }
    
    .queOfrecemos__h2{
        font-size: 72px;
        margin: 56px 0px 0px 0px;
        margin: auto;
        color: #6659DE;
        text-align: center;
    }
    
    .queOfrecemos__div{
        display: grid;
        gap: 1rem;
        grid-auto-rows: 310px;
        grid-template-columns: repeat(2, minmax(100px, 1fr) );
        padding-top: 56px;
        margin: 10px;
        justify-content: center;
    }
    
    .queOfrecemos__div-div{
        background-color: #fff;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }
    
    .queOfrecemos__div-img{
        padding: 10px;
        width: 160px;
        height: 160px;
    }
    
    .queOfrecemos__div-img-8{
        object-fit: cover;
        width: 160px;
        height: 160px;
        object-position: 0px 10px;
    }
    
    .queOfrecemos__div-h3{
        font-size: 35px;
    }
    
    .queOfrecemos__div-buttom{
        width: 160px;
        height: 48px;
        border: none;
        border-radius: 50rem;
        margin-top: 24px;
        background-color: #59CADE;
        display: flex;
        text-decoration: none;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        font-weight: 500;
        transition: 0.3s linear;
    }
    
    .queOfrecemos__div-buttom:hover{
        transform: scale(1.1);
    }

    @media screen and ( max-width: 440px){ 
        .queOfrecemos__div-h3{
            font-size: 24px;
        }
    }
    
    .div__h3{
        height: 70px;
        text-align: center;
        align-items: center;
    }


    /* Que Somos*/
    
}

 @media screen and ( min-width: 1200px) {

    body{
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-style: normal;
        background-color: #eee;
        background-image: url(imagenes/fondo.webp);
        background-repeat: no-repeat;
        background-size: cover;
        backdrop-filter: blur(10px);
    }
    
    h1, h2, h3 {
        font-family: "Playball", cursive;
        font-weight: 400;
        font-style: normal;
    }
    span{
        color: #59CADE;
    }
    
    @keyframes show {
        from{
            opacity: 0;
            scale:  25%;
        }
    
        to{
            opacity: 1;
            scale: 100%
        }
    }
    
    .imagen {
        view-timeline-name: --image;
        view-timeline-axis: block;
    
        animation-timeline: --image;
        animation-name: show;
    
        animation-range: entry 25% cover 30%;
        animation-fill-mode: both;
    }
    /*nav*/
    
    
    .nav__container {
        display: flex;  
        height: 140px;
        width: 100%;
        background-color: #fff;
        opacity: 90%;
        border-bottom: 1px solid #bbb;
        justify-content: space-between;
        position: sticky;
        padding-top: 24px ;
        align-items: center;
        z-index: 200;
        top: 0;
    }
    .nav__logo{
        flex-grow: 2;
        object-fit: contain;
        height: 180px;
        padding-bottom: 10px;
    }
    
    .nav__ul{
        display: flex;
        align-items: center;
        flex-grow: 1;
    }
    .nav__ul-li {
        list-style: none;
        margin: 0px 20px;
        font-size: 20px;
        padding: 10px 6px;
    }
    
    .nav__li-a{
        text-decoration: none;
        color: #222F30;
    }
    .nav__li-a:hover{
        transition: 1s;
        color: #33CCCC;
    }
    .check-box{ 
        display: none;
    }
    .barras{
        display: none;
    }

    
    /*nav*/
    
    /*inicio*/
    .inicio__container{
        width: 100%;
        height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -140px;
        padding-bottom: 20px;
    }
    
    .inicio__imagen{
    
        position: absolute;
        object-fit: cover;
        width: 100%;
        min-height: 90vh;
        max-height: 900px;
        z-index: 10;
    }
    
    .inicio__div-container{
        max-width: 700px;
        min-width: 200px;
        position: relative;
        z-index: 100;
        text-align: center;
        margin: auto;
    }
    
    .inicio__h1{
        font-size: 80px;
        margin: 56px 0px 0px 0px;
        color: #fff;
        text-shadow: 1px 1px #000000;
        animation: h1-animation 3s infinite;
        animation-fill-mode: forwards;
    }
    .inicio__p{
        font-size: 52px;
        margin: 56px 0px 0px 0px;
        color: #fff;
        text-shadow: 1px 1px #000000;
    }
    
    @keyframes h1-animation {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(10px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    
    .inicio__h1 span{
        color: #6659DE;
    }
    /*inicio*/
    
    .flecha__item{
        padding-top: 60px;
        height: 80px;
        width: 80px;
        background-color: #2614ca;
        clip-path: polygon(50% 10%, 100% 0, 50% 50%, 0 0);
        margin: auto;
        margin-top: 15px;
        animation: h1-animation 3s infinite;
    }
    /*sobre nosotros*/
    
    .sobreNosotros__container{
        display: flex;
        width: 80%;
        height: 70vh;
        justify-content: end;
        font-weight: 500;
        margin: auto;
        border-radius: 8px;
        border: 3px solid #2614ca;
        box-shadow: 10px 10px 10px #00000051;
    }
    
    .sobreNosotros__imagen{
        width: 50%;
        height: 100%;
        border-radius: 8px;
        object-fit: cover;
        z-index: 0;
        opacity: 10%;
    }
    
    .sobreNosotros__div{
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 100;
        text-align: center;
    }
    .sobreNosotros__div-h1{
        font-size: 80px;
        color: #59CADE;
        text-align: center;
        animation: h1-animation 3s infinite;
    }
    
    .sobreNosotros__div-p{
        font-size: 20px;
        padding: 30px;
        color: #000;
    }
    
    .sobreNosotros__div-ul{
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        color: #fff;
    }
    
    .sobreNosotros__div-li{
        list-style: none;
        color: #fff;
    }
    
    
    .sobre-nosotros__buttom-container{
        display: flex;
        justify-content: center;
    }
    
    /* boton inicio*/
    .sobreNosotros__div-buttom{
        height: 56px;
        width: 180px;
        margin: 30px;
        border-radius: 50rem;
        border-style: none;
        background-color: #59CADE;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        transition: 0.3s linear;
        font-weight: 500;
    }
    
    .sobreNosotros__div-buttom:hover{
        transform: scale(1.1, 1.1);
    }
    
    .sobreNosotros__container span {
        color: #59CADE;
        font-weight: 500;
    }
    
    /* final*/

    
    /*sobre nosotros*/
    
    
    /*que somos*/

    .queSomos{
        width: 80%;
        height: 70vh;
        display: flex;
        flex-direction: row-reverse;
        margin: auto;
        border: 3px solid #2614ca;
        box-shadow: 10px 10px 10px #00000051;
        margin-bottom: 28px;
    }
    
    .queSomos__img{
        width: 50%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        
    }
    
    .queSomos__div{
        display: flex;
        height: 100%;
        width: 50%;
        z-index: 100;
        align-items: center;
        flex-direction: column;
        text-align: center;
        background-color: #59CADE;
        justify-content: center;
    }
    .queSomos__h2{
        color: #2614ca;
        text-shadow: 1px 1px #000000;
        font-size: 72px;
        padding-top: 20px;
        animation: h1-animation 3s infinite;
    }

    .queSomos__p{
        color: #ffffff;
        font-size: 20px;
        padding-top: 20px;
        margin: 10px;
        padding-inline: 30px;
        font-weight: 500;
    }
    .queSomos__p span{
        color: #2614ca;
    }
    
    .objetivos{
        width: 80%;
        height: 70vh;
        display: flex;
        flex-direction: row;
        margin: auto;
        border: 3px solid #2614ca;
        box-shadow: 10px 10px 10px #00000051;
        margin-bottom: 28px;
    }
    
    .objetivos__img{
        width: 50%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        
    }
    
    .objetivos__div{
        display: flex;
        height: 100%;
        width: 50%;
        z-index: 100;
        align-items: center;
        flex-direction: column;
        text-align: center;
        background-color: #59CADE;
    }
    .objetivos__h2{
        color: #2614ca;
        text-shadow: 1px 1px #000000;
        font-size: 72px;
        padding-top: 20px;
        animation: h1-animation 3s infinite;
    }

    .objetivos__p{
        color: #ffffff;
        font-size: 1.7vh;
        font-weight: 500;
        padding-bottom: 20px;
    }
    .objetivos__p span{
        color: #2614ca;
    }
    
    .objetivos__ul-container{
        display: flex;
        flex-direction: column;
    }

    .objetivos__ul{
        color: #ffffff;
        font-size: 3vh;
        padding-top: 20px;
        margin: 10px;
        padding-inline: 30px;
        font-weight: 500;
    }

    .objetivos__li {
        font-size: 3vh;
        list-style: none;
    }
    



    
    /*Que ofrecemos*/
    .queOfrecemos__container{
        width: 80%;
        max-height: 180vh;
        padding-top: 96px;
        display: flex;
        flex-direction: column;
        margin: auto;
    }
    
    .queOfrecemos__h2{
        font-size: 72px;
        margin: 56px 0px 0px 0px;
        margin: auto;
        color: #33CCCC;
        text-shadow: 1px 1px #000;
        text-align: center;
    }
    
    .queOfrecemos__div{
        display: grid;
        gap: 1rem;
        grid-auto-rows: 350px;
        grid-template-columns: repeat(auto-fill, minmax(300px, 400px) );
        padding-top: 56px;
        padding-bottom: 50px;
        margin: 10px;
        justify-content: center;
    }
    
    .queOfrecemos__div-div{
        background-color: #fff;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }
    
    .queOfrecemos__div-img{
        padding: 10px;
        width: 160px;
        height: 160px;
    }
    
    .queOfrecemos__div-img-8{
        object-fit: cover;
        width: 160px;
        height: 160px;
        object-position: 0px 10px;
    }
    
    .queOfrecemos__div-h3{
        font-size: 35px;
    }
    
    .queOfrecemos__div-buttom{
        width: 160px;
        height: 48px;
        border: none;
        border-radius: 50rem;
        margin-top: 24px;
        background-color: #59CADE;
        display: flex;
        text-decoration: none;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        font-weight: 500;
        transition: 0.3s linear;
    }
    
    .queOfrecemos__div-buttom:hover{
        transform: scale(1.1);
    }

    .div__h3 {
        height: 70px;
        text-align: center;
        align-items: center;
    }

    
    
    
    
}


.footer{
   display: flex;
   padding: 20px;
   margin-top: 40px;
   background-color: #cbf9ff;
   justify-content: space-evenly;
   opacity: 0.7;
}

.footer__redes-container{
   display: flex;
   flex-direction: column;
   width: 250px;
   text-align: center;
}
.footer__logo{
   height: 200px;
   width: 200px;
   margin: auto;
}

.footer__p{
   font-family: "Playball", cursive;
   font-size: larger;
}

.footer__redes{
   margin-top: 10px;
   display: flex;
}
.icono{
   font-size: 24px;
   color: #ffffff;
   margin-inline: 5px;
   border-radius: 50%;
   width: 40px;
   height: 40px;
   background-color: #2614ca;
   align-content: center;
   transition: 0.3s;
}

.icono:hover{
   transform: scale(1.2, 1.2);
}


   