.contact-us-container{
    background:#F7F8FC;
    padding-top: 10vh;
    padding-bottom: 10vh;
    padding-left: 10vw;
    padding-right: 10vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row-reverse;
}


.contact-us-header{
    font-size: 3vw;
    margin-bottom: 3vh;
    color: #272727;
    font-weight: 600;
}

.contact-us-description{
    width: 46vw;
    font-size: 1.2vw;
    color: #272727;
}

.contact-us-image{
    width: 35vw;
}

.contact-us-header-mobile{
    display: none;
}

@media screen and (max-width: 1000px) {
    .contact-us-header{
        display: none;
    }

    .contact-us-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .contact-us-text-holder {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-us-header-mobile{
        display: block;
        clear: both;
        text-align: center;
        font-size: 8vw;
        color: #272727;
        font-weight: 600;
        margin-top: -2vh;
        margin-bottom: 2vh;
    } 

    .contact-us-image-holder {
        text-align: center;
        padding-top: 2vh;
    }

    .contact-us-image{
        width: 100%;
    }

    .contact-us-description {
        color: #272727;
        width: 100%;
        font-size: 3vw;
        margin-top: 4vh;
        text-align: justify;  
    }
}