@media only screen and (min-width: 1200px) {
    .contact-container{
    background-color: white;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 100px 100px 50px 100px;
    overflow: hidden;
    }

#contact-left{
    display: flex;
    flex-direction: column;
    width: 48%;
    padding-right: 100px;
    border-right: 1px solid black;
}

    #contact-right{
    display: flex;
    flex-direction: column;
    width: 48%;
    padding-left: 100px;
}

#contact-left h2{
    margin: 40px 0px;
    text-align: center;
}
}

@media only screen and (max-width: 1199px) {
    .contact-container{
    background-color: white;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 100px 50px 100px;
    overflow: hidden;
    }

    #contact-left{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-right: 0;
    border-right: 0;
}

    #contact-right{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left:0;
}

#contact-left h2{
    margin: 40px 0px;
    text-align: left;
}
}

#contact-left img{
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

#contact-right h2{
    margin: 40px 0px;
    text-align: left;
}