/* Переменные */
:root {
    /* Цвета */
    --ln-color-black: #000;
    --ln-color-gray: #92929F;
    --ln-color-blue: #0091FF;
    --ln-color-dark-blue: #1400C4;

    /* Шрифты */
    --ln-font-main: 'Roboto', sans-serif;
    --ln-font-condensed: 'Roboto Condensed', sans-serif;

    /* Типографика */
    --ln-fs-base: clamp(14px, 0.9722vw, 18px);
    --ln-fs-lg: clamp(18px, 1.25vw, 22px);
    --ln-lh-base: 1.2;
    --ln-lh-lg: 1.9;



    /* Отступы между секциями */
    --ln-section-gap: clamp(60px, 8vw, 150px);

    /* Перменные для лого резидентов */
    --pt-size: clamp(10rem, 1rem + 40vmin, 30rem);
    --pt-gap: calc(var(--pt-size) / 14);
    --pt-duration: 60s;
    --pt-scroll-start: 0;
    --pt-scroll-end: calc(-100% - var(--pt-gap));
}

/* Базовые стили страницы */
.ln-page {
    font-family: var(--ln-font-main);
    font-size: var(--ln-fs-base);
    line-height: var(--ln-lh-base);
    color: var(--ln-color-black);
    background: #fff;
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
p {
    margin: 0;
}
/* buttons */
button,
.btn-reset {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font: inherit;
    line-height: normal;
    text-align: center;
    background: none;
    border: none;
    color: inherit;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

button:focus {
    outline: none;
}

button:focus-visible {
    outline: 2px solid #0091FF;
    outline-offset: 4px;
}
.ln-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
    padding: 0 35px;
    background-color: var(--ln-color-dark-blue);
    color: #fff;
    font-size: 23px;
    line-height: 1.2;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
/* Базовые стили контейнера */
.ln-container {
    --bs-gutter-x: 30px; /* по 15px слева/справа */
    padding-left: calc(var(--bs-gutter-x) / 2);
    padding-right: calc(var(--bs-gutter-x) / 2);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    cursor: default;
}
/* XXL (≈ 1920px) */
@media (min-width: 1800px) {
    .ln-container {
        max-width: 1766px; /* 1736 контент + 30 паддинги */
    }
    .ln-hero__ct.ln-container {
        max-width: 1880px;
    }
}

/* XL (≈ 1680px) */
@media (max-width: 1799px) and (min-width: 1680px) {
    .ln-container {
        max-width: 1580px;
        --bs-gutter-x: 30px;
    }
    .ln-hero__ct.ln-container {
        max-width: 1680px;
    }
}
/* XL (≈ 1680px) */
@media (max-width: 1679px) and (min-width: 1440px) {
    .ln-container {
        max-width: 1370px;
        --bs-gutter-x: 30px;
    }
    .ln-hero__ct.ln-container {
        max-width: 1480px;
    }
}
/* LG (≈ 1280px) */
@media (max-width: 1439px) and (min-width: 1200px) {
    .ln-container {
        max-width: 1170px;
        --bs-gutter-x: 20px;
    }
    .ln-hero__ct.ln-container {
        max-width: 1280px;
    }
}

/* MD (≈ 1024px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .ln-container {
        max-width: 90%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* SM (≈ 960px) */
@media (max-width: 1023px) and (min-width: 960px) {
    .ln-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* XS (≈ 768px) */
@media (max-width: 959px) and (min-width: 768px) {
    .ln-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Мобильные (≈ 576px и ниже) */
@media (max-width: 767px) {
    .ln-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}
.row {
    --bs-gutter-x: 30px;
}
@media(max-width: 1280px) {
    .row {
        --bs-gutter-x: 20px;
    }
}
body.menu-open {
    overflow: hidden;
}
/* Заголовки */
.ln-h1 {
    font-family: var(--ln-font-main);
    font-size: clamp(35px, 2.734375vw, 60px);
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
}

.ln-h2 {
    font-family: var(--ln-font-main);
    font-size: clamp(32px, 2.5vw, 55px);
    line-height: 1.36;
    font-weight: 700;
    margin: 0;
}

.ln-h3 {
    font-family: var(--ln-font-main);
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}
.ln-fz-26 {
    font-size: clamp(22px, 1.71875vw, 26px);
    line-height: 1.2;
}

/* Текст */
.ln-text {
    font-size: var(--ln-fs-base);
    line-height: var(--ln-lh-base);
    margin: 0;
}

.ln-text-lg {
    font-size: var(--ln-fs-lg);
    line-height: var(--ln-lh-lg);
}

/* Вес шрифта */
.ln-fw-thin      { font-weight: 100; }
.ln-fw-light     { font-weight: 300; }
.ln-fw-regular   { font-weight: 400; }
.ln-fw-medium    { font-weight: 500; }
.ln-fw-bold      { font-weight: 700; }
.ln-fw-extrabold { font-weight: 800; }

/* Цвета */
.ln-text-black     { color: var(--ln-color-black); }
.ln-text-gray      { color: var(--ln-color-gray); }
.ln-text-blue      { color: var(--ln-color-blue); }
.ln-text-dark-blue { color: var(--ln-color-dark-blue); }

.ln-text-codensed {
    font-family: var(--ln-font-condensed);
}

/* Секции */
.ln-section-mb {
    margin-bottom: var(--ln-section-gap);
}

/* Утилиты отступов (базовые) */
.ln-mb-0  { margin-bottom: 0 !important; }
.ln-mb-40 { margin-bottom: 40px !important; }
.ln-mb-80 { margin-bottom: 80px !important; }

.ln-pt-40 { padding-top: 40px !important; }
.ln-pt-80 { padding-top: 80px !important; }

.ln-pb-40 { padding-bottom: 40px !important; }
.ln-pb-80 { padding-bottom: 80px !important; }

.ln-svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}


/* header */
.ln-header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    top: 55px;
    z-index: 50;
}
.ln-header__in {
    display: flex;
    align-items: center;
    gap: 0 70px;
}
.ln-header__phone {
    margin-left: auto;
    width: 310px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 0 28px;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 10px 50px rgba(22, 57, 81, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}
.ln-header__logo img {
    display: block;
    width: 89px;
}
.ln-nav__list {
    display: flex;
    align-items: center;
    gap: 0 36px;
}
.ln-nav__link {
    color: #000;
}

/* Hero */
.ln-hero {
    position: relative;
    margin-top: 35px;
}
.ln-hero__img {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    /*position: absolute;*/
    /*top: 0;*/
    /*right: -42px;*/
    max-width: none;
    z-index: -1;
    width: calc(100% + 42px);
    height: 100%;
    object-fit: cover;
}
.ln-hero__slider,
.ln-hero__slider .slick-list,
.ln-hero__slider .slick-track {
    height: 100%;
    border-radius: 25px;
}
.ln-hero__video {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.ln-hero__play {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 130px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 10px 50px rgba(22, 57, 81, 0.1);
    backdrop-filter: blur(10px);
    transform: translateX(57px);
}
.ln-hero__content {
    padding-top: 190px;
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
}
.ln-hero__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -57px;
    width: calc(100% + 42px);
    height: 100%;
    background: linear-gradient(47.78deg, #E6E6EC 0%, #FDFDFF 50%, #F2F2F5 100%), #F2F2F5;
    border-radius: 50px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    z-index: -1;
}
.ln-hero__title {
    margin-bottom: 50px;
}
.ln-hero__subtitle {
    margin-bottom: 50px;
}
.ln-hero__btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}
.ln-hero__btns a {
    background-color: #0091FF;
}
.ln-hero__list {
    display: flex;
    gap: 0 22px;
}
.ln-hero__link {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    font-weight: 700;
    padding: 0 50px;
}
.ln-hero__link::before {
    content: '';
    position: absolute;
    right: 50px;
    top: 25%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='254' height='148' viewBox='0 0 254 148' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M64.4492 101.125L119.048 46.375' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M123.598 96.5625C123.598 98.9826 122.639 101.304 120.933 103.015C119.226 104.726 116.911 105.687 114.498 105.687C112.085 105.687 109.77 104.726 108.063 103.015C106.357 101.304 105.398 98.9826 105.398 96.5625C105.398 94.1424 106.357 91.8214 108.063 90.1101C109.77 88.3989 112.085 87.4375 114.498 87.4375C116.911 87.4375 119.226 88.3989 120.933 90.1101C122.639 91.8214 123.598 94.1424 123.598 96.5625ZM78.0986 50.9375C78.0986 53.3576 77.1399 55.6786 75.4334 57.3898C73.7268 59.1011 71.4122 60.0625 68.9988 60.0625C66.5854 60.0625 64.2708 59.1011 62.5642 57.3898C60.8577 55.6786 59.8989 53.3576 59.8989 50.9375C59.8989 48.5174 60.8577 46.1964 62.5642 44.4852C64.2708 42.7739 66.5854 41.8125 68.9988 41.8125C71.4122 41.8125 73.7268 42.7739 75.4334 44.4852C77.1399 46.1964 78.0986 48.5174 78.0986 50.9375Z' fill='white'/%3E%3Cpath d='M109.986 0.75H73.5139C39.1346 0.75 21.9541 0.749999 11.2709 11.4445C3.26299 19.4471 1.26102 31.0998 0.751429 50.8828C0.68773 53.4195 2.7625 55.4452 5.21036 56.0931C9.10803 57.1109 12.5589 59.3964 15.0224 62.5916C17.4859 65.7868 18.8228 69.7112 18.8237 73.75C18.8237 82.2271 13.0544 89.3538 5.22856 91.4069C2.7716 92.0456 0.696831 94.0714 0.76963 96.6081C1.27012 116.409 3.28119 128.053 11.2709 136.055M146.349 1.6625C158.261 2.8305 166.269 5.46762 172.238 11.4445C180.228 19.4471 182.248 31.0998 182.749 50.8828C182.812 53.4195 180.737 55.4452 178.29 56.0931C174.392 57.1109 170.941 59.3964 168.478 62.5916C166.014 65.7868 164.677 69.7112 164.676 73.75C164.676 82.2271 170.446 89.3538 178.271 91.4069C180.728 92.0456 182.803 94.0714 182.73 96.6081C182.23 116.409 180.219 128.053 172.229 136.055C161.546 146.75 144.365 146.75 109.986 146.75H73.5139C62.9034 146.75 53.9037 146.75 46.2507 146.431' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M242.002 11.4445C237.519 6.95579 231.886 4.35076 224.313 2.83706C216.741 4.35076 211.108 6.95579 206.625 11.4445C198.635 19.4471 196.615 31.0998 196.114 50.8828C196.051 53.4195 198.125 55.4452 200.573 56.0931C204.471 57.1109 207.922 59.3964 210.385 62.5916C212.849 65.7868 214.186 69.7112 214.187 73.75C214.187 82.2271 208.417 89.3538 200.591 91.4069C198.134 92.0456 196.06 94.0714 196.132 96.6081C196.633 116.409 198.644 128.053 206.634 136.055C211.118 140.545 216.748 143.15 224.313 144.661C231.879 143.15 237.508 140.545 241.993 136.055C249.983 128.053 251.994 116.409 252.494 96.6081C252.567 94.0714 250.492 92.0456 248.035 91.4069C240.209 89.3538 234.44 82.2271 234.44 73.75C234.441 69.7112 235.778 65.7868 238.241 62.5916C240.705 59.3964 244.156 57.1109 248.053 56.0931C250.501 55.4452 252.576 53.4195 252.512 50.8828C252.012 31.0998 249.992 19.4471 242.002 11.4445Z' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M189.75 1.75V146.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='10 10'/%3E%3C/svg%3E%0A");
    width: 254px;
    height: 148px;
}
.ln-hero__link--title {
    font-size: 30px;
    margin-bottom: 30px;
}
.ln-hero__link--desc {
    font-size: 48px;
    margin-bottom: 50px;
}
.ln-hero__link--desc span {
    display: block;
    font-size: 30px;
    margin-top: 30px;
}
.ln-hero__link--btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    font-size: 23px;
    font-weight: 400;
    height: 66px;
    width: 190px;
    color: #fff;
}
.land-card {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 25px 0;
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 10px 50px rgba(22, 57, 81, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}
.land-card--number {
    font-size: clamp(40px, 3vw, 60px);
    line-height: 1.2;
}
.land-card--number span {
    font-size: clamp(22px, 1.523vw, 30px);
}
.ln-hero__item {
    height: 220px;
    flex: 0 0 calc((100% - 3 * 22px) / 4);
    max-width: 220px;
}

.nl-hero__item--desc {
    min-height: 76px;
}
.ln-logistic__title {
    margin-bottom: 170px;
}
.ln-logistic__card {
    width: 100%;
    height: 264px;
    margin-bottom: 70px;
}
.ln-logistic__card .land-card--number span {
    font-size: 30px;
}
.ln-logistic__card  .land-card--desc {
    min-height: 76px;
}
.ln-logisitc__img {
    position: absolute;
    top: -70px;
    left: 0;
    width: 736px;
    max-width: 100%;
    z-index: -1;
}
.ln-logistic__map-symbols {
    display: flex;
    flex-direction: column;
    gap: 0 10px;
}
.ln-logistic__map-item {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.ln-logistic__map-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ln-logistic__map-square {
    width: 25px;
    height: 25px;
    background-color: #000;
}
.ln-logistic__map-rectangle {
    color: #fff;
    background-color: #000;
    width: 50px;
    height: 25px;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}
.ln-residents {
    position: relative;
}
.ln-residents__title {
    margin-bottom: 70px;
}
.ln-residents__item {
    position: relative;
}
.ln-residents__caption {
    text-transform: uppercase;
}
.ln-residents__desc {
    margin-bottom: 60px;
    width: 706px;
    max-width: 100%;
}
.ln-residents__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 100%;
    width: 850px;
}
.ln-residents__card {
    flex: 0 0 calc((100% - 2 * 30px) / 3);
    max-width: calc((100% - 2 * 30px) / 3);
    height: 186px;
}
.ln-residents__img {
    position: absolute;
    top: 0;
    right: 0px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    z-index: -1;
}
.ln-residents-line {
    overflow: hidden;
    margin: 50px 0 0;
    padding: 50px 0 140px;
    width: 100%;

}
.ln-residents-line__list {
    display: flex;
    align-items: center;
    gap: 0 40px;
    padding: 20px 0;
    background: rgba(230, 230, 236, 0.3);
    box-shadow: 0 10px 50px rgba(22, 57, 81, 0.15);
    backdrop-filter: blur(10px);
    transform: rotate(3deg);
    position: relative;
}

.ln-residents-line__list::before,
.ln-residents-line__list::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px; /* толщина линии */
    background: repeating-linear-gradient(
            to right,
            #04346F 0 10px,       /* длина штриха */
            transparent 10px 20px /* расстояние между штрихами */
    );
    pointer-events: none;
}

.ln-residents-line__list::before {
    top: 0;
}

.ln-residents-line__list::after {
    bottom: 0;
}
.ln-residents-line__caption {
    text-transform: uppercase;
}
.ln-residents-line__caption,
.ln-residents-line__separator {
    flex: 0 0 auto;
}
.ln-residents-slider .slick-list {
    margin: 0 -30px -130px;
}
.ln-residents-slider .slick-slide {
    padding: 0 30px 130px;
    box-sizing: border-box;

}
.ln-residents__arrows {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 70px;
    gap: 0 50px;
    margin-left: auto;
}
.ln-residents__arrows .slick-arrow {
    cursor: pointer;
}
.ln-residents__arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
}
.ln-residents__arrow_next {
    right: 0;
}
.ln-residents__arrow_prev {
    left: -30px;
}
.ln-presentation {
    position: relative;
    padding: 70px 0;
}
.ln-presentation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(47.78deg, #E6E6EC 0%, #FDFDFF 50%, #F2F2F5 100%), #F2F2F5;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    top: 0;
    left: 0;
}
.ln-presentation__title {
    position: relative;
    z-index: 10;
}
.ln-presentation__inner {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 10px 50px rgba(22, 57, 81, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
}
.ln-presentation__caption {
    font-size: clamp(23px, 1.597vw, 40px);
    line-height: 1.2;
    margin-bottom: 50px;
}
.ln-presentation__subtitle {
    margin-bottom: 40px;
}
.ln-presentation-form__contacts {
    display: flex;
    align-items: center;
    gap: 0 15px;
    margin-bottom: 60px;
}
.ln-presentation-form__contacts--check {
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0px 10px 50px rgba(22, 57, 81, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(186, 186, 200, 0.3);
}
.ln-presentation-form__contacts--check svg {
    opacity: 0.3;
    transition: all .3s ease-in-out;
}
.ln-presentation-form__contacts--check.is-active {
    border-color: rgba(255, 255, 255, 0.01);
}
.ln-presentation-form__contacts--check.is-active svg {
    opacity: 1;
}
.ln-presentation-form__input {
    width: 100%;
    height: 66px;
    background: rgba(0, 145, 255, 0.01);
    border: 1px solid #BABAC8;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 0 25px;
    color: #BABAC8;
}
.ln-presentation__conf {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 50px;
    cursor: pointer;
}
.ln-presentation__conf a {
    text-decoration: underline;
}
.ln-presentation__conf--input {
    display: none;
}
.ln-presentation__conf--box {
    width: 23px;
    height: 23px;
    background: #FFFFFF;
    box-shadow: 0px 1px 30px rgba(22, 57, 81, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ln-presentation__conf--box svg {
    opacity: 0;
    transition: opacity .3s ease-in-out;
}
.ln-presentation__conf--input:checked + .ln-presentation__conf--box svg {
    opacity: 1;
}
.ln-presentation__submit {
    transition: opacity .3s ease-in-out;
}
.ln-presentation__submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}
.ln-presentation__img {
    position: absolute;
    left: 0;
    top: 80px;
}
.ln-feed .close {
    margin-left: auto;
}
.ln-community__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 100%;
    width: 1000px;
}
.ln-community__card {
    align-items: flex-start;
    width: 313px;
    height: 265px;
}
.ln-community__card img {
    max-height: 89px;
}
.ln-community__desc {
    width: 851px;
    max-width: 100%;
    margin-bottom: 70px;
}
.ln-community__img {
    right: -50px;
}
.ln-infrastructure {
    padding: 70px 0;
    background-image: url('./img/ln-inf-bg.jpg');
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}

.ln-infrastructure__subtitle {
    margin-bottom: 50px;
}
.ln-infrastructure .map_uchastok.free svg path {
    fill: #fff;
}
.ln-infrastructure .map_uchastok.free svg path:first-child {
    fill: #1100A7;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
}
.ln-infrastructure__images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.ln-infrastructure__item {
    flex: 0 0 190px;
    max-width: 190px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 10px 50px rgba(22, 57, 81, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px;
}
.ln-infrastructure__item img {
    border-radius: 10px;
}
.ln-infrastructure__caption {
    font-size: 20px;
    line-height: 1.2;
}
.ln-infrastructure__caption span {
    font-size: 40px;
}
.ln-infrastructure-list {
    position: relative;
    padding: 30px 0 70px;
}

.ln-infrastructure-list__wr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 15px;
}
.ln-infrastructure-list__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.ln-footer {
    padding: 0 0 50px;
}
.ln-footer__ct {
    position: relative;
    padding-top: 70px;
}
.ln-footer__ct::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(0deg, #E6E6EC, #E6E6EC), #F2F2F5;
    transform: matrix(-1, 0, 0, 1, 0, 0);
}
.ln-footer__logo {
    margin-bottom: 70px;
}
.ln-footer__logo img {
    width: 220px;
}
.ln-footer__phone {
    margin-bottom: 32px;
    gap: 0 10px;
}
.ln-footer__email {
    margin-bottom: 70px;
    gap: 0 10px;
}
.ln-footer__address {
    margin-bottom: 70px;
}
.ln-footer__address:last-child {
    margin-bottom: 100px;
}
.ln-footer__address address {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.2;
}
.ln-footer__address__heading {
    gap: 0 12px;
}
.ln-footer__docs {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 32px;
}
.ln-footer__docs::before,
.ln-footer__docs::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(0deg, #E6E6EC, #E6E6EC), #F2F2F5;
    transform: matrix(-1, 0, 0, 1, 0, 0);
}
.ln-footer__docs::before {
    top: 0;
}
.ln-footer__docs::after {
    bottom: 0;
}
.social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 10px;
}
.social__link {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(186, 186, 200, 0.3);
    box-shadow: 0px 10px 50px rgba(22, 57, 81, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ln-footer__marker {
    position: absolute;
    top: 49%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: #1400C4;
    border: 3px solid #609DE8;
    border-radius: 50%;
}
.ln-footer__marker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(170, 186, 206, 0.4);

    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ln-pulse 1.5s ease-out infinite;
}
.ln-footer__map {
    height: 100%;
    object-fit: cover;
}
@keyframes ln-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}
.ln-burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px 0;
    width: 38px;
    height: 38px;
    position: relative;
    z-index: 1100;
    background: #1400C4;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 0 10px;
    box-sizing: border-box
}

.ln-burger span {
    display: block;
    border-radius: 100px;
    width: 100%;
    height: 3px;
    flex: 0 0 auto;
    background: #fff;
    transition: 0.3s;
}

.ln-burger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.ln-burger.active span:nth-child(2) {
    opacity: 0;
}
.ln-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.ln-residents-logo {
    padding: 15px 0;
    overflow: hidden;
    background-color: #1400C4;
    margin-bottom: 50px;
}
.ln-residents-logo__wr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: var(--pt-gap);
}
.ln-residents-logo__list {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 30px 40px;
    margin-bottom: 0;
    min-width: 100%;
    -webkit-animation: scroll-x var(--pt-duration) linear infinite;
    animation: scroll-x var(--pt-duration) linear infinite;
}
.ln-residents-logo__item {

    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.ln-residents-logo__sep {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .partners__list {
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }
}
@-webkit-keyframes scroll-x {
    from {
        -webkit-transform: translateX(var(--pt-scroll-start));
        transform: translateX(var(--pt-scroll-start));
    }
    to {
        -webkit-transform: translateX(var(--pt-scroll-end));
        transform: translateX(var(--pt-scroll-end));
    }
}
@keyframes scroll-x {
    from {
        -webkit-transform: translateX(var(--pt-scroll-start));
        transform: translateX(var(--pt-scroll-start));
    }
    to {
        -webkit-transform: translateX(var(--pt-scroll-end));
        transform: translateX(var(--pt-scroll-end));
    }
}
@media(max-width: 1800px) {
    .ln-nav__list {
        gap: 0 22px;
    }
    .ln-header__in {
        gap: 0 30px;
    }
    .ln-hero__list {
        gap: 0 20px;
    }
    .ln-hero__item {
        padding: 20px;
        gap: 20px 0;
        height: auto;
    }
    .ln-residents__img {
        max-width: 50%;
    }
    .ln-community__card {
        width: 26%;
        height: auto;
        padding: 20px 25px;
    }
    .ln-community__img {
        max-width: 46%;
    }
    .ln-infrastructure__item {
        flex: 0 0 45%;
        max-width: 45%;
    }
    .ln-presentation__img {
        max-width: 70%;
    }
}
@media (max-width: 1680px) {
    .ln-hero__link--title {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .ln-hero__link--desc {
        font-size: 35px;
        margin-bottom: 40px;
    }
    .ln-hero__link--desc span {
        font-size: 25px;
        margin-top: 20px;
    }
}

@media(max-width: 1440px) {
    .ln-header__logo img {
        width: 79px;
    }
    .ln-nav__list {
        gap: 0 15px;
    }
    .ln-hero__img {
        width: calc(100% + 30px);
        right: -30px;
    }
    .ln-infrastructure__item {
        max-width: 45%;
        flex: 0 0 45%;
    }
    .ln-community__card {
        align-items: flex-start;
        width: 25%;
        height: auto;
    }
    .ln-community__list {
        width: 60%;
    }
    .ln-presentation__img {
        width: 70%;
    }

    .ln-residents-slider .slick-list {
        margin: 0 0 -130px;
    }
    .ln-community__img {
        right: 0;
    }
    .ln-residents-slider .slick-slide {
        padding: 0 0 130px;
        box-sizing: border-box;
    }
    .ln-residents__card .land-card--desc {
        min-height: 50px;
    }
    .ln-header__phone {
        margin-right: 15px;
        width: auto;
        gap: 0 15px;
    }
    .ln-residents__list {
        width: 55%;
    }
    .ln-logistic__card {
        height: auto;
        padding: 20px;
    }
    .ln-residents__desc {
        width: 50%;
    }
    .ln-community__desc {
        width: 50%;
    }
    .ln-btn {
        font-size: 20px;
        height: 56px;
        padding: 0 30px;
    }
    .ln-hero__content {
        padding-top: 110px;
    }
    .ln-hero__title {
        margin-bottom: 30px;
    }
    .ln-hero__subtitle {
        margin-bottom: 50px;
    }
    .ln-residents__arrow {
        top: 50%;
    }
    .ln-residents__arrow_next {
        right: 50px;
    }
    .ln-hero__link::before {
        top: 20%;
    }
    .ln-hero__link {
        padding: 0 20px;
    }
}
@media(max-width: 1280px) {
    .ln-hero__content::before {
        left: -15px;
        width: calc(100% + 10px);
    }
    .ln-hero__img {
        right: 0;
        width: 100%;
    }
    .ln-presentation__subtitle {
        font-size: 16px;
    }
    .ln-presentation__caption {
        margin-bottom: 30px;
    }
    .ln-presentation__subtitle,
    .ln-presentation-form__contacts {
        margin-bottom: 20px;
    }
    .ln-header__logo img {
        width: 69px;
    }
    .ln-community__card {
        width: 25%;
    }
    .ln-infrastructure__item {
        max-width: 44%;
        flex: 0 0 44%;
    }
    .ln-logistic__title {
        margin-bottom: 100px;
    }

    .ln-footer__address address {
        font-size: 18px;
    }
    .ln-footer__email {
        margin-bottom: 50px;
    }
    .ln-residents-logo__item img {
        max-height: 60px;
        width: auto;
    }
}
@media(max-width: 1190px) {
    .ln-infrastructure-list__wr {
        flex-wrap: wrap;
        gap: 15px;
    }
    .ln-infrastructure-list__item {
        flex: 0 0 45%;
        max-width: 45%;
    }
    .ln-hero__content {
        padding-top: 145px;
    }
    .ln-hero {
        margin-top: 0;
        background: linear-gradient(47.78deg, #E6E6EC 0%, #FDFDFF 50%, #F2F2F5 100%), #F2F2F5;
    }
    .ln-hero__content::before {
        content: none;
    }
    .ln-logisitc__img {
        position: relative;
        order: 1;
        width: auto;
        top: 0;
    }
    .ln-logistic picture {
        order: 1;
    }
    .ln-logistic__card {
        margin-bottom: 0;
    }
    .ln-residents__list {
        width: 100%;
    }
    .ln-community__list {
        width: 100%;
    }
    .ln-infrastructure__item {
        max-width: 20%;
        flex: 0 0 20%;
    }
    .ln-infrastructure__item img {
        width: 100%;
    }
    .ln-header__phone {
        margin-right: 0;
    }
    .ln-header__phone span  {
        font-size: 18px;
    }
}
@media(max-width: 992px) {
    .ln-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
    }

    .ln-header__nav.active {
        right: 0;
    }

    .ln-nav__list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ln-nav__link {
        font-size: 18px;
        display: block;
    }
    .ln-residents-line__list {
        gap: 0 20px;
    }
    .ln-residents__arrows {
        gap: 0 18px;
    }
    .ln-residents__arrow_prev {
        left: 50px;
    }
    .ln-residents__desc {
        width: 100%;
    }
    .ln-residents__img {
        position: relative;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .ln-community__desc {
        width: 100%;
    }
    .ln-community__card {
        width: 45%;
        align-items: center;
    }
    .ln-community__list {
        justify-content: space-between;
    }
    .ln-hero__content {
        padding-right: 0;
    }
    .ln-residents-slider .slick-slide {
        padding: 0 0 50px;
        margin: 0 10px;
    }
    .ln-residents-slider .slick-list {
        padding: 0 0 -50px;
        margin: 0 -10px;
    }

}
@media(max-width: 768px) {
    .ln-hero__list {
        flex-wrap: wrap;
        gap: 20px;
    }
    .ln-hero__item {
        flex: 0 0 calc((100% - 1 * 22px) / 2);
        max-width: calc((100% - 1 * 22px) / 2);
    }
    .ln-logistic__title {
        margin-bottom: 40px;
    }
    .ln-logistic__card:first-child,
    .ln-logistic__card:nth-child(2) {
        margin-bottom: 20px;
    }
    .ln-residents__card {
        height: auto;
        flex: 0 0 calc((100% - 1 * 20px) / 2);
        max-width: calc((100% - 1 * 20px) / 2);
        padding: 20px;
    }
    .ln-residents__list {
        gap: 20px 0;
        justify-content: space-around;
    }
    .ln-presentation__img {
        display: none;
    }
    .ln-infrastructure__caption {
        font-size: 18px;
    }
    .ln-infrastructure__caption span {
        font-size: 20px;
    }
    .ln-residents__title {
        margin-bottom: 30px;
    }
    .ln-footer__logo img {
        width: 158px;
    }
    .ln-footer__logo {
        margin-bottom: 50px;
    }
    .ln-footer__ct {
        padding-top: 50px;
    }
    .ln-footer__docs__link {
        margin-bottom: 15px;
        display: block;
    }
    .social {
        justify-content: flex-start;
        padding-bottom: 20px;
        margin-bottom: 30px;
        position: relative;
    }
    .social::before {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(0deg, #E6E6EC, #E6E6EC), #F2F2F5;
        transform: matrix(-1, 0, 0, 1, 0, 0);
        bottom: 0;
    }
    .ln-presentation__inner {
        padding: 30px 20px;
        margin-top: 30px;
    }
    .ln-residents__arrows {
        margin-bottom: 30px;
    }
}
@media (max-width: 576px) {
    .ln-infrastructure {
        padding: 30px 0 0;
    }
    .ln-infrastructure-list {
        padding: 0 0 50px;
    }
    .ln-infrastructure-list__item {
        max-width: 100%;
        flex: 0 0 100%
    }
    .ln-footer {
        background-image: url('./img/footer-mobile-bg.png');
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        background-size: contain;
    }
    .ln-header__phone {
        border-radius: 10px;
        width: 38px;
        height: 38px;
        padding: 0 8px;
    }
    .ln-header__phone span {
        display: none;
    }
    .ln-residents__card {
        padding: 10px;
    }
    .ln-residents__card .land-card--number {
        font-size: 40px;
    }
    .ln-residents__card .land-card--number span {
        font-size: 20px;
    }
    .ln-residents {
        margin-bottom: 30px;
    }
    .ln-residents-line {
        padding: 20px 0 50px;
        margin: 0;
    }
    .ln-logisitc__img {
        width: calc(100% + 40px);
        max-width: none;
        margin-left: -20px;
    }
    .ln-footer__address,
    .ln-footer__address:last-child {
        margin-bottom: 30px;
    }
    .ln-presentation .main_info_buttons .btn {
        box-sizing: border-box;
    }
    .ln-residents-logo__item img {
        max-height: 36px;
    }
    .ln-hero__btns {
        flex-direction: column;
    }
    .ln-residents__arrow {
        position: static;
        width: 15px;
    }
}



.ln-hero__ct .ln-hero__content::before {
    width: 100%;
    left: 0;
}
.ln-hero__ct .ln-hero__content {
    padding-left: 57px;
    padding-right: 50px;
}
.ln-hero__ct .ln-hero__title {
    font-size: 60px;
}
.ln-hero__row {
    display: flex;
    gap: 0 30px;
}
.ln-hero__right-col {
    flex: 0 0 41.2%;
    max-width: 41.2%;
}
@media(max-width: 768px) {
    .ln-hero__ct .ln-hero__content {
        padding-right: 0;
        padding-left: 0;
    }
    .ln-hero__ct .ln-hero__title {
        font-size: 38px;
    }
}
