*{
    font-family: 'Rubik'; 
}

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

.image4{
    margin: 0 auto;
    width: 100%;
    height: auto;
}

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

.ourStory{
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.ourStory h2{
    margin: 0;
    color: #a2b1a0;
    font-weight: 500;
}

.ourStory p{
    margin: 0 auto;
    font-weight: 300;
    font-size: 1rem;
    text-align: center;
    width: 80%;
    height: auto;
}

.grid-container{
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    width: 80%;
}

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

.link{
    margin: 0 auto;
    display: flex;
    width: 80%;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.link a{
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

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

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

}