*{
    font-family: 'Rubik'; 
}

/*--------- body ----------*/
.general-container{
    margin: 0 auto;
    width: 90%;
    height:auto;
}

.img1 img{
    width: 100%;
    height: auto;
}

.text{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    text-align: center;
}


.text h3{
    display: flex;
    font-weight:300;
    width: 100%;
    height: auto;
    font-size: 1em;
    justify-content: center; 
    align-items: center;
    color: #333333;
}

.container-grid{
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 85%;
    height: auto;
}

.wrapper{
    width: 100%;
    height: auto;
    text-align: center;
}

.wrapper img{
    width: 100%;
    height: auto;
}

.wrapper h3{
    margin: 20px auto;
    font-size: 16px;
    font-weight: 300;
}

@media  (max-width: 431px){
    .img1 img{
        width: 100%;
        height: auto;
    }

    .container-grid{
        grid-template-columns: 1fr;
        width: 100%;
        height: auto;
    }
    .wrapper img{
        margin: 0 auto;
        width: 80%;
        height: auto;
    }

}