*{
    font-family: 'Rubik'; 
}

/*--------- body ----------*/

.general-container{
    margin: 0 auto;
    width: 90%;
    height: auto;
}

.img1{
    width: 100%;
    height: auto;
}

.img1 img{
    width: 100%;
    height: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-container img{
    width: 100%;
    height: auto;
}

.contactus{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.contactus h3{
    margin: 0;
    font-weight: 300;
    font-size: 1em;
    text-align: center;
    width: 80%;
}

@media screen and (max-width: 431px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-container img{
        margin: 0 auto;
        width: 80%;
        height: auto;
    }
}