.contacts-block .contacts-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: var(--thirty);
    flex-wrap: wrap;
}

.contacts-block .contacts-holder {
    width: 370px;
    display: flex;
    flex-direction: column;
    gap: var(--twenty);
}

.contacts-block .contacts-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contacts-block .contacts-item__title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: var(--1614);
    line-height: 140%;
    color: #7c7c7c;
}

.contacts-block .contacts-item__value,
.contacts-block p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    line-height: 120%;
    color: var(--black);
    margin-bottom: 0px;
}

.contacts-block a:hover {
    color: var(--primary);
}

.contacts-block .contacts-item__socials {
    width: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.contacts-block .map-holder {
    height: 460px;
    max-height: 100vw;
    border-radius: 10px;
    overflow: hidden;
    max-width: 670px;
    flex-shrink: 0;
}

@media(max-width:1130px) {
    .contacts-block .contacts-inner {
        flex-direction: column;
    }

    .contacts-block .map-holder {
        max-width: unset;
    }

    .contacts-block .contacts-holder {
        width: 100%;
    }
}