

/* Start:/local/components/naekk/contacts.page/templates/.default/style.css?17840382035489*/
/* =========================================================
   НАЭКК — страница «Контакты»
   Desktop: макет 1920px / контейнер 1440px.
   Мобильная компоновка включается на основном брейкпоинте 1023px.
   ========================================================= */

.contacts-page,
.contacts-page *,
.contacts-page *::before,
.contacts-page *::after {
    box-sizing: border-box;
}

.contacts-page {
    width: 100%;
    padding: 32px 0 120px;
    background: #fff;
    color: #1c2331;
}

.contacts-page__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin: 0 0 24px;
}

.contacts-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1c2331;
    font-family: var(--font-main, "Inter", Arial, sans-serif);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    white-space: nowrap;
}

.contacts-breadcrumbs > span {
    opacity: .4;
}

.contacts-breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.contacts-breadcrumbs a:hover,
.contacts-breadcrumbs a:focus-visible {
    color: #d2232a;
}

.contacts-page__title {
    max-width: 100%;
    margin: 0;
    color: #1c2331;
    font-family: var(--font-accent, "Bebas Neue Custom", Arial, sans-serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contacts-card {
    display: grid;
    width: 100%;
    min-height: 699px;
    grid-template-columns: 487px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 12px;
    background: #252e3f;
}

.contacts-card__panel {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    padding: 48px 44px;
    background: #252e3f;
    color: #fff;
}

.contacts-card__logo {
    display: block;
    width: 311px;
    max-width: 100%;
    height: auto;
}

.contacts-card__list {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    gap: 20px;
}

.contacts-card__item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: #fff;
    font-family: var(--font-main, "Inter", Arial, sans-serif);
    font-size: 14px;
    line-height: 22px;
}

.contacts-card__label {
    max-width: 100%;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

.contacts-card__value {
    max-width: 100%;
    margin: 0;
    color: #fff;
    font-style: normal;
    font-weight: 800;
    line-height: 22px;
    overflow-wrap: anywhere;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
}

.contacts-card a.contacts-card__value:hover,
.contacts-card a.contacts-card__value:focus-visible,
.contacts-card__phones a:hover,
.contacts-card__phones a:focus-visible {
    color: #ef4b51;
}

.contacts-card__phones {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.contacts-card__phones a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.contacts-card__separator {
    width: 100%;
    height: 1px;
    flex: 0 0 1px;
    background: rgba(255, 255, 255, .1);
}

.contacts-card__map {
    position: relative;
    min-width: 0;
    min-height: 699px;
    overflow: hidden;
    background: #e7e7e7;
}

.contacts-card__map-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 699px;
    border: 0;
    filter: grayscale(1) contrast(.94) brightness(1.04);
}

.contacts-card__map-noscript {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #1c2331;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1023px) {
    .contacts-page {
        padding: 14px 0 40px;
    }

    .contacts-page__container {
        max-width: 720px;
    }

    .contacts-page__header {
        gap: 24px;
        margin-bottom: 16px;
    }

    .contacts-breadcrumbs {
        gap: 4px;
        font-size: 11px;
        line-height: 16px;
    }

    .contacts-page__title {
        width: 100%;
        font-size: 34px;
        line-height: 35px;
    }

    .contacts-card {
        display: flex;
        min-height: 0;
        flex-direction: column;
        border-radius: 10px;
    }

    .contacts-card__panel {
        width: 100%;
        gap: 29px;
        padding: 24px 20px;
    }

    .contacts-card__logo {
        width: 215px;
    }

    .contacts-card__list {
        gap: 14px;
    }

    .contacts-card__item {
        gap: 4px;
        font-size: 11px;
        line-height: 16px;
    }

    .contacts-card__value {
        line-height: 20px;
    }

    .contacts-card__map,
    .contacts-card__map-frame {
        min-height: 360px;
        height: 360px;
    }
}

@media (max-width: 767px) {
    .contacts-card__map,
    .contacts-card__map-frame {
        min-height: 260px;
        height: 260px;
    }
}

@media (max-width: 374px) {
    .contacts-page__container {
        width: calc(100% - 32px);
    }

    .contacts-card__panel {
        padding-inline: 16px;
    }

    .contacts-card__logo {
        width: 100%;
        max-width: 215px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contacts-breadcrumbs a,
    .contacts-card__value,
    .contacts-card__phones a {
        transition-duration: .01ms;
    }
}

/* End */
/* /local/components/naekk/contacts.page/templates/.default/style.css?17840382035489 */
