/*GENERAL*/
:root{
    --blue-mlm:#07223c;
    --gold-mlm:#9c7c2f;
    --green-mlm:#124b28;
}
* {
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    box-sizing: border-box;
    font-family: 'Inter',sans-serif;

    /* outline: 1px solid red;  */
}
.bg_blue{
    background-color: var(--blue-mlm);
}
.text_gold{
    color:var(--gold-mlm);
}

.btn-primary{
    background-color: var(--blue-mlm)!important;
    transition: all 0.3;
}
.btn-primary:hover{
    background-color: #07223cd4!important;
}

.big_text{
    font-size: 3rem;
}
.wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}
.part_logo{
    padding-left:1rem;
    padding-right: 1rem;
}

.part_text{
    width: 50%;
}
.part_img{
    width: 30%;
}
.part_img img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.wrapper_simple{
    background-color:var(--gold-mlm);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top:2rem;
    padding-bottom: 2rem;
}
.part_text_simple{
    background-color: #FFFFFF;
    border-radius: 1rem;
    width: 80%;
    padding: 2rem;
    text-align: center;
}
p {
    margin: 0;
}
.page_active{
    text-decoration: underline!important;
}
.nav_item{
    color: #000000 !important;;
}
footer {
    background-color: var(--blue-mlm);
    width: 100%;
    padding: 1rem;
}

header{
    display: flex;
    align-items: center;
    justify-content:space-between;
    padding: 1rem;
    width: 100%;
}

.nav_wrapper{
    display: flex;
    /* align-items: center; */
    width: 100%;
}
.part_menu{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.part_logo{
    display: flex;
}
.part_cta{
    display: flex;
    align-items: center;
}
#btn_menu{
    display: none;
}
.enable{
    display: flex!important;
}
/*PAGE INDEX*/
#how_wrapper{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.how_item{
    border-radius: 0.5rem;
    padding:0.5rem;
    background-color: var(--blue-mlm);
    color: #FFFFFF;
    width: 75%;
}
#how_container{
    display: flex;
    flex-direction: column;
    gap:0.5rem;
}

/**/
.avantage_container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:1rem
}

@media (max-width:768px){
    .big_text{
        font-size: 2rem;
    }
    .wrapper_simple,.wrapper{
        flex-direction: column;
    }
    .part_text_simple,.part_text{
        width: 90%;
    }
    .part_img{
        width: 90%;
    }

    .part_menu{
        padding: 2rem;
        background-color: #F5F5F5;
        display: none;
        flex-direction: column;
    }

    #btn_menu{
        display: flex;
    }
    .part_logo{
        flex:1;
        justify-content: space-between;
        align-items: center;
    }
    .nav_wrapper{
        flex-direction: column;
    }
    .avantage_container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:1rem
}

}





