.contacts__title {
    text-transform: uppercase;
    margin-bottom: 26px;
}

.contacts-info {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.contacts-info__col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}

.contacts-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid rgba(30, 53, 96, 0.2);
    padding: 18px 0;
}

.contacts-info__col .contacts-item:last-child {
    border-bottom: 0;
}
.contacts-info__col:nth-child(2) .contacts-item:first-child {
    gap: 2px;
    padding: 6px 0;
}

.contacts-item__label {
    font-size: 14px;
    color: rgba(30, 53, 96, 0.8);
}

.contacts-item__value {
    font-size: 20px;
    color: var(--blue);
    text-decoration: none;
}

.contacts-item__value--static {
    display: block;
}

.contacts-item__note {
    font-size: 14px;
    color: rgba(30, 53, 96, 0.8);
    font-weight: 300;
}

.contacts-visual {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.contacts-map {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 480px;
}

.contacts-map__frame {
    width: 100%;
    height: 480px;
    border: 0;
}

.contacts-map__link {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 44px;
    font-family: "Jost", Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    background-color: var(--blue);
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    opacity: 1;
}

.contacts-map__link:hover {
    background: #4B5D80;
    color: #fff;
}

.contacts-photo {
    flex: 1 1 0;
    min-width: 0;
    height: 480px;
}

.contacts-photo__img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

@media (max-width: 910px) {
    .contacts-info {
        flex-direction: column;
        gap: 0;
        margin-bottom: 16px;
    }
    .contacts-info__col .contacts-item:last-child {
        border-bottom: 1px solid rgba(30, 53, 96, 0.2);
    }

    .contacts-info__col:last-child .contacts-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .contacts-visual {
        flex-direction: column;
    }
}
@media (max-width: 575px) {
    .contacts__title {
        margin-bottom: 24px;
    }
    .contacts-item__value {
        font-size: 18px;
    }
    .contacts-item__value--static {
        line-height: 120%;
    }
    .contacts-item {
        padding: 16px 0;
    }
    .contacts-photo {
        height: 220px;
    }
    .contacts-photo__img {
        height: 220px;
    }
    .contacts-map__frame {
        height: 220px;
    }
    .contacts-visual {
        margin-top: 40px;
    }
    .contacts-map__link {
        left: 50%;
        transform: translateX(-50%);
        bottom: 16px;
        top: inherit;
    }
}
