.contactContainer {
    width: 90%;
    margin: 3% auto;
    display: flex;
    margin-bottom: 25px
}

.contactImg {
    position: relative;
    width: 50%
}

.contactFormContainer {
    width: 50%;
    position: relative
}

.textBlock {
    position: relative;
    margin-left: 10%;
    width: 90%;
    margin-top: 20px;
    margin-bottom: 20px
}

.contactTextContainer {
    width: 100%;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.title {
    font-size: 26px;
    margin-bottom: 15px
}

.text {
    font-size: 12px;
    margin-bottom: 10px
}

.divider {
    border-top: 1px solid #D6D6D6;
    margin: 20px auto;
    width: 100%
}

@media screen and (max-width:768px) {
    .contactContainer{
        flex-direction: column;
        width: 100;
    }
    .contactFormContainer{
        width: 100%;
    }
    
}