

/* Start:/contacts/contacts.css?17859324457784*/
.contacts-page {
    --contacts-accent: #3c8dc5;
    --contacts-accent-dark: #2877ad;
    --contacts-ink: #232323;
    --contacts-muted: #6d7780;
    --contacts-border: #dceaf3;
    --contacts-surface: #f4f9fc;
}

.contacts-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.contacts-card {
    display: flex;
    min-width: 0;
    min-height: 310px;
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--contacts-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(37, 102, 145, 0.08);
}

.contacts-card__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--contacts-accent);
    background: var(--contacts-surface);
}

.contacts-card__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacts-card__body {
    width: 100%;
    margin-bottom: 24px;
}

.contacts-card__title,
.contacts-card__schedule p:first-child {
    margin: 0 0 14px;
    color: var(--contacts-ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: none;
}

.contacts-card__schedule p {
    margin: 0 0 8px;
}

.contacts-card__schedule p:first-child strong {
    font-weight: inherit;
}

.contacts-card__schedule p:nth-child(2) {
    color: var(--contacts-ink);
    font-size: 18px;
    font-weight: 500;
}

.contacts-card__schedule p:last-child {
    margin-bottom: 0;
    color: var(--contacts-muted);
    font-size: 14px;
    line-height: 1.45;
}

.contacts-card__phones {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contacts-card__value {
    color: var(--contacts-ink);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

a.contacts-card__value:hover {
    color: var(--contacts-accent-dark);
}

.contacts-card__value--secondary {
    margin-top: 14px;
    font-size: 17px;
}

.contacts-card__address {
    max-width: 260px;
    font-size: 17px;
    line-height: 1.55;
}

.contacts-card__note {
    margin-top: 2px;
    color: var(--contacts-muted);
    font-size: 13px;
}

.contacts-card__action {
    display: inline-flex;
    min-height: 44px;
    margin-top: auto;
    padding: 11px 18px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--contacts-accent);
    border-radius: 8px;
    color: #fff;
    background: var(--contacts-accent);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.contacts-card__action:hover {
    border-color: var(--contacts-accent-dark);
    color: #fff;
    background: var(--contacts-accent-dark);
}

.contacts-card__action--outline {
    color: var(--contacts-accent-dark);
    background: #fff;
}

.contacts-card__action--outline:hover {
    color: #fff;
}

.contacts-secondary {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(210px, 1fr) auto;
    gap: 24px;
    margin-bottom: 36px;
    padding: 20px 24px;
    align-items: center;
    border-radius: 14px;
    background: var(--contacts-surface);
}

.contacts-secondary__item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.contacts-secondary__label {
    color: var(--contacts-muted);
    font-size: 13px;
}

.contacts-secondary__link,
.contacts-secondary__management {
    color: var(--contacts-ink);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.contacts-secondary__link:hover,
.contacts-secondary__management:hover {
    color: var(--contacts-accent-dark);
}

.contacts-secondary__socials {
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.contacts-page .contacts-social {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 9px;
}

.contacts-page .contacts-social > a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contacts-page .contacts-social > a:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

.contacts-page .contacts-social img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.contacts-secondary__management {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-self: end;
    white-space: nowrap;
}

.contacts-secondary__management span {
    color: var(--contacts-accent);
    font-size: 20px;
    line-height: 1;
}

.contacts-facade {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 18px;
    background: #eaf2f7;
}

.contacts-facade::after {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(14, 37, 52, 0.72), transparent);
    content: "";
    pointer-events: none;
}

.contacts-facade img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 235px;
    object-fit: cover;
}

.contacts-facade figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 20px;
    left: 24px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.contacts-map--redesign {
    margin-top: 56px;
    margin-bottom: 56px;
    background: #eaf2f7;
}

.contacts-map--redesign .contacts-form {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(25, 67, 94, 0.18);
}

.contacts-map--redesign .contacts-form__title {
    font-weight: 500;
}

.contacts-directions > .container {
    padding: 32px;
    border: 1px solid #dceaf3;
    border-radius: 18px;
    background: #fff;
}

.contacts-directions > .container > p:first-child {
    margin-top: 0;
    margin-bottom: 28px;
    color: #232323;
    font-size: 26px;
    line-height: 1.25;
}

.contacts-directions > .container > p:last-child {
    margin-bottom: 0;
}

.contacts-directions u {
    text-decoration-color: #9ecbe9;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

@media screen and (max-width: 991px) {
    .contacts-overview {
        gap: 16px;
    }

    .contacts-card {
        min-height: 300px;
        padding: 22px;
    }

    .contacts-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacts-secondary__management {
        justify-self: start;
    }
}

@media screen and (max-width: 767px) {
    .contacts-overview {
        grid-template-columns: 1fr;
    }

    .contacts-card {
        min-height: 0;
    }

    .contacts-card__icon {
        width: 46px;
        height: 46px;
        margin-bottom: 18px;
    }

    .contacts-card__body {
        margin-bottom: 20px;
    }

    .contacts-card__action {
        width: 100%;
    }

    .contacts-secondary {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .contacts-secondary__socials {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .contacts-facade img {
        min-height: 200px;
    }

    .contacts-map--redesign {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .contacts-directions > .container {
        padding: 22px;
    }

    .contacts-directions > .container > p:first-child {
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contacts-card__action,
    .contacts-page .contacts-social > a {
        transition: none;
    }
}

/* End */
/* /contacts/contacts.css?17859324457784 */
