.contacts-header {
    display: flex;
    justify-content: space-between;
    gap: 150px;
    align-items: center;
}

.contacts h3 {
    border-top: 1px solid #ffffff0f;
    padding-top: 15px;
}

@media (max-width: 991px){
    .contacts-header {
        flex-direction: column;
        gap: 40px;
    }
}

/* Social */
.contacts-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.contacts-social a {
    background: white;
    border-radius: 100%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right */

.contacts-header__right {
    flex-shrink: 0;
    width: 500px;
    height: 100%;
}

.contacts-header__right img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

@media (max-width: 991px){
    .contacts-header__right {
        width: 100%;
    }
}

/* Map */

.contacts-map {
    display: flex;
}

.contacts-map iframe {
    border: 0;
    width: 100%;
    height: 600px;
}