.office {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.office-img>img{
    max-height: 350px; 
    max-width: 100%;
    width: auto;
    height: auto;
}

.contact {
    width: 500px;
    min-width: 200px;
    margin-bottom: 10px;
}

.profile {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1125px) {
    .office {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

    .contact {   
        width: auto;     
        min-width: 200px;
        margin-bottom: 10px;
    }
}