header a {
    color: black;
}
.submenu a {
    color: white;
}

/* SECCION DEL BANNER */
.container-banner {
    display: flex;
    min-height: 100vh;
    height: max-content;
    justify-content: center;
    align-items: center;
    position: relative;
}
.wrapper {
    display: flex;
    width: 80%;
    height: max-content;
}
.banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-text h1 {
    font-family: "Montserrat";
    width: 90%;
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 78px;
    letter-spacing: 0.1;
    color: #31466e;
}
.banner-text h2{
    font-family: "Montserrat";
    width: 90%;
    font-style: normal;
    font-weight: 700;
    font-size: 70px;
    line-height: 78px;
    letter-spacing: 0.1;
    color: #1988E8;
}
.banner-img {
    width: 100%;
}
.banner-img img{
    width: 100%;
}
/* FIN DE LA SECCION BANNER */

/* FLECHA DE VER MAS */
.flecha__vermas {
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    padding: 15px;
    border-radius: 10px;
}
.flecha__vermas p {
    color: #000000;
}
.flecha__vermas:hover {
    background-color: rgba(0, 0, 0, 0.482);
}
.flecha__vermas img {
    width: 30px;
}
/* FIN DE ESTILOS PARA LA FLECHA */

/* SECCION DE LOS BENEFICIOS */
.container_beneficios{
    background-color: #EFF3FA;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wrapper_beneficios{
    width: 80%;
    height: 100%;
}
.wrapper_beneficios h1{
    margin: auto;
    padding-top: 80px;
    text-align: center;
    font-weight: 700;
    font-size: 80px;
    color: #1A3176;
    width: 90%;
}
/* SECCION DE LAS CARDS */
.container_cards{
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: center;
    padding-top: 150px;
}
.card{
    align-content: center;
    align-items: center;
}
.cards_img{
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}
.card p{
    text-align: center;
    color: #1988E8;
    font-weight: 700;
    font-size: 36px;
    width: 265px;
}
/* FIN DE LA SECCION BENEFICIOS */


/* SECCION PREVIEW */
.container_preview{
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper_preview{
    width: 80%;
    padding-top: 50px;
    margin-bottom: 50px;
    align-items: center;
    align-content: center;
    text-align: center;
}
.wrapper_preview img{
    width: 100%;
}


.wrapper_preview h1{
    font-size: 80px;
    text-align: center;
    color: #1A3176;
    padding-bottom: 80px;
}
/* FIN DE LA SECCION PREVIEW */

@media (max-width:1680px){
    .banner-text h1, .banner-text h2{
        font-size: 40px;
        line-height: 1.2;  
    }
    
    /* SECCION DE BENEFICIOS */
    .wrapper_beneficios h1{
        font-size: 50px;
        padding-top: 30px;
    }

    /* SECCION DE CARDS */
    .container_cards{
        gap: 1.5rem;
        padding-top: 150px;
    }
    .card p{
        font-size: 24px;
        width: 180px;
    }
    .cards_img img{
        width: 100px;
    }
    
    /* SECCION PREVIEW */
    .wrapper_preview h1{
        font-size: 50px;
        width: 80%;
        margin: auto;
    }
}

@media (max-width: 920px) {
    header a {
        color: white;
    }

    /* SECCION BANNER */
    .container-banner{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .wrapper{
        flex-direction: column;
        gap: 50px;
    }
    .banner-text h1, .banner-text h2{
        font-size: 32px;
        width: 100%;
    }
    
    /* SECCION BENEFICIOS */
    .container_beneficios{
        padding-bottom: 40px;
    }
    .container_cards{
        flex-direction: column;
        padding-top: 50px;
    }
    .wrapper_beneficios h1{
        font-size: 32px;
    }
    /* SECCION CARDS */

    .card p{
        margin: auto;
    }

    /* SECCION PREVIEW */
    .wrapper_preview h1{
        font-size: 32px;
    }
}