.page-contacts {
    padding-bottom: 90px;
}
.page-contacts h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    text-transform: none !important;
}
.page-contacts__columns {
    display: flex;
    gap: 30px;
}
.page-contacts__column {
    width: 50%;
}
.page-contacts__map {
    width: 100%;
    height: 410px;
    position: sticky;
    top: 0;
    left: 0;
}
.page-contacts__address {
    margin-top: 30px;
    margin-bottom: 30px;
}
p.page-contacts__big-title, p.page-contacts__small-title {
    margin-bottom: 0;
}
.page-contacts__big-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
}
.page-contacts__small-title {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(75, 81, 94, 1);
}
a.page-contacts__big-title {
    color: var(--primary);
}
.page-contacts__phones {
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.page-contacts__phones p {
    margin-bottom: 0;
}
.page-contacts__phone, .page-contacts__email {
    display: flex;
    flex-direction: column;
}
.page-contacts__other {
    margin-top: 60px;
}
.page-contacts__other--header {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}
.page-contacts__rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page-contacts__row {
    padding: 15px;
    background: var(--grey-09);
    transition: background-color 200ms ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page-contacts__row p {
    margin-bottom: 0;
}
.page-contacts__row--title, .page-contacts__row--phone, .page-contacts__row--email {
    font-size: 16px;
    line-height: 1.4;
}
.page-contacts__row--phone, .page-contacts__row--email {
    line-height: 1.6;
}
.page-contacts__row--phone::before, .page-contacts__row--email::before {
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 5px;
    transform: translateY(-1px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
}
.page-contacts__row--phone::before {
    background-image: url('/images/phone_icon.svg');
}
.page-contacts__row--email::before {
    background-image: url('/images/email_icon.svg');
}
a.page-contacts__row--phone, a.page-contacts__row--email {
    color: var(--primary);
}
@media (hover: hover) {
    .page-contacts__row:hover {
        background: var(--grey-07);
    }
}
@media (min-width: 1200px) {
    .page-contacts__mobile-block {
        display: none;
    }
}
@media (max-width: 1699px) {
    .page-contacts__big-title {
        font-size: 36px;
    }
}
@media (max-width: 1439px) {
    .page-contacts h1 {
        font-size: 40px !important;
    }
    .page-contacts__small-title {
        font-size: 15px;
    }
}
@media (max-width: 1400px) {
    .page-contacts__big-title {
        font-size: 32px;
    }
}
@media (max-width: 1199px) {
    .page-contacts__pc-block {
        display: none;
    }
    .page-contacts__columns {
        margin-top: 60px;
    }
    .page-contacts__other {
        margin-top: 0;
    }
    .page-contacts__map {
        height: 540px;
    }
    .page-contacts h1 {
        font-size: 32px !important;
        text-align: left !important;
    }
    .page-contacts__big-title {
        font-size: 32px;
    }
    .page-contacts__phones {
        justify-content: flex-start;
    }
}
@media (max-width: 960px) {
    .page-contacts h1 {
        font-size: 30px !important;
        text-align: left !important;
    }
    .page-contacts__big-title {
        font-size: 24px;
    }
    .page-contacts__address {
        margin-bottom: 15px;
    }
    .page-contacts__phones {
        margin-bottom: 15px;
        flex-direction: column;
        gap: 15px;
    }
    .page-contacts__columns {
        margin-top: 30px;
        flex-direction: column-reverse;
    }
    .page-contacts__column {
        width: 100%;
    }
    .page-contacts__map {
        height: 450px;
        position: relative;
    }
}