 .contacts picture.head {
    height: min(50vh, 300px);
    display: block;
    position: relative;
}

.contacts picture.head img {
    filter: brightness(50%);
    position: absolute;
    inset: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* main .b{
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} */
.contacts .f2{
    margin: 15px;
    align-self: flex-start;
}
.contacts .contact div,
.contacts .social{
    padding: 10px 0;
}
.contacts a.address {
background-image: url(../svg/pin.svg);
}
.contacts a.phone {
background-image: url(../svg/phone.svg);
}
.contacts a.email {
background-image: url(../svg/letter.svg);
}

.contacts a.address,
.contacts a.phone, 
.contacts a.email {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px;
    padding: 5px 0 5px 24px;
    text-decoration: none;
}
.contacts .b{
    display: flex;

}

/* Mobile & Tablet */
@media (max-width: 979.999px) {
.contacts .b{
    flex-direction: column;
}
}

/* Desktop */
@media (min-width: 980px) {
    .contacts .b{
    align-items: center;
    justify-content: center;
    gap: 10vw;
}
}


@media (min-width: 1360px) {
    .contacts section {
        max-width: 1360px;
        margin: 0 auto;
    }
}
.contacts section iframe {
    width: 100%;
}


@media (orientation: landscape) {
    .contacts section iframe {
        aspect-ratio: 4 / 2;
    }
}

@media (orientation: portrait) {
    .contacts section iframe {
        aspect-ratio: 1 / 1;
    }
}