* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

body, div, ul, nav, header, footer, a, li, label, h1, h2 {
    margin: 0;
    padding: 0;
}

/** HEADER - FOOTER **/

.header-box {
    position: sticky;
    top: 0;
    z-index: 2;
}

.footer-box {
    z-index: 2;
}

/* ----- FONT PAGE / VISIÓN Y MISIÓN ----- */

.grid__container-fontpage {
    width: 100%;
    height: 60vh;
    background-image: url("../img/imagenes/Propuesta-Educativa/portada.webp");
    background-size: cover;
    background-position: center center;
    display: grid;
    grid-template-columns: 1fr 1150px 1fr;
}

@media screen and (max-width:1819px){
    .grid__container-fontpage {
        grid-template-columns: 1fr 60vw 1fr;
    }
}

@media screen and (max-width:900px){
    .grid__container-fontpage {
        grid-template-columns: 1fr 80vw 1fr;
    }
}

.grid-item-fontpage {
    background-color: #0000006c;
}

.grid-item-fontpage-content {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    background-color: #0000006c;
    z-index: 1;
}

.title-fontpage {
    font-size: 70px;
    font-family: League_Spartan_Regular;
    color: #ffffff;
    text-align: center;
    z-index: 2;
}

@media screen and (max-width:600px){
    .title-fontpage {
        font-size: 45px;
    }
}

/** ----- DESCRIPTION - NUESTROS VALORES ----- **/

.grid__container-description {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1150px 1fr;
    padding: 1rem 0;
    background-color: #0c4028;
}

@media screen and (max-width:1819px){
    .grid__container-description {
        grid-template-columns: 1fr 60vw 1fr;
    }
}

@media screen and (max-width:900px){
    .grid__container-description {
        grid-template-columns: 1fr 80vw 1fr;
    }
}

.flexbox__container-description {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10rem;
}

@media screen and (max-width:1670px){
    .flexbox__container-description {
        gap: 2rem;
    }
}

@media screen and (max-width:1300px){
    .flexbox__container-description {
        flex-direction: column;
        gap: 0;
    }
}

.flex-item-description-img {
    display: flex;
    justify-content: center;
}

.img-description {
    width: 14rem;
}

@media screen and (max-width:900px){
    .img-description {
        width: 50%;
    }
}

.text-description {
    color: #ffffff;
    font-family: Garet_Book;
    font-size: 22px;
    text-align: right;
    text-wrap: pretty;
}

@media screen and (max-width:1300px){
    .text-description {
        text-align: center;
    }
}

@media screen and (max-width:600px){
    .text-description {
        font-size: 18px;
    }
}

/** ----- OPTIONS - PROPUESTA EDUCATIVA ----- **/

.grid__container-options-propuesta-educativa {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1150px 1fr;
    background-color: #efefef;
    padding: 2rem 0;
}

@media screen and (max-width:1819px){
    .grid__container-options-propuesta-educativa {
        grid-template-columns: 1fr 60vw 1fr;
    }
}

@media screen and (max-width:900px){
    .grid__container-options-propuesta-educativa {
        grid-template-columns: 1fr 80vw 1fr;
    }
}

.grid-item-options-propuesta-educativa-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.flex-item-options {
    display: grid;
    justify-content: center;
    width: 500px;
    background-color: #0c4028;
    border-radius: 30px;
}

.flex-item-options:hover {
    background-color: #0f5232;
}

@media screen and (max-width:900px){
    .flex-item-options {
        width: 100%;
    }
}

.img-options {
    width: 500px;
    border-radius: 30px 30px 0 0;
}

@media screen and (max-width:900px){
    .img-options {
        width: 100%;
    }
}

.link-options {
    text-decoration: none;
    color: #ffffff;
    font-family: Garet_Book;
    text-align: center;
    font-size: 25px;
    padding: 5px 0;
    text-decoration: double;
}

@media screen and (max-width:600px){
    .link-options {
        font-size: 18px;
    }
}