

/* Start:/local/components/b2c/ui.button/buttons.css?17851611903168*/
.b2c-btn {
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    box-sizing: border-box;
    border: solid transparent 2px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 500;
    font-family: var(--font-family-1);
    font-size: 16px;
    line-height: 140%;
    cursor: pointer;
}
.b2c-btn, .b2c-btn * {
    transition: var(--animate-duration);
}
.b2c-btn_inline {
    display: inline-flex;
}
.b2c-btn.b2c-btn_square {
    width: 44px;
    padding: 10px;
}

.b2c-btn.b2c-btn_icon {
    min-height: 36px;
    padding: 0;
    background: transparent;
    border-color: transparent;
    color: var(--t-color-1);
}

.b2c-btn_1 {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: var(--t-color-5);
}
.b2c-btn_1:hover {
    background: var(--q-accent);
    border-color: var(--q-accent);
    color: var(--t-color-5);
}

.b2c-btn_2 {
    background: var(--q-accent);
    border-color: var(--q-accent);
    color: var(--t-color-5);
}
.b2c-btn_2:hover {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: var(--t-color-5);
}

.b2c-btn_3 {
    background: var(--bg-page);
    border-color: var(--bg-page);
    color: var(--t-color-1);
}
.b2c-btn_3:hover {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: var(--t-color-5);
}
.b2c-btn_border-3 {
    border-color: var(--t-color-1);
}

.b2c-btn_4 {
    background: var(--bg-page);
    border-color: var(--bg-page);
    color: var(--t-color-1);
}
.b2c-btn_4:hover {
    background: var(--q-accent);
    border-color: var(--q-accent);
    color: var(--t-color-5);
}

.b2c-btn_5 {
    background: var(--bg-page);
    border-color: var(--t-color-4);
    color: var(--t-color-4);.b2c-btn;

    svg path {
        color: var(--t-color-4);
        stroke: var(--t-color-4);
    }
}
.b2c-btn_5:hover {
    background: var(--t-color-4);
    border-color: var(--t-color-5);
    color: var(--t-color-5);

    svg path {
        color: var(--t-color-5);
        stroke: var(--t-color-5);
    }
}

.b2c-btn_6 {
    background: var(--t-color-4);
    border-color: var(--t-color-4);
    color: var(--t-color-5);

    svg path {
        color: var(--t-color-5);
        stroke: var(--t-color-5);
    }
}
.b2c-btn_6:hover {
    background: var(--t-color-5);
    border-color: var(--t-color-5);
    color: var(--t-color-4);

    svg path {
        color: var(--t-color-4);
        stroke: var(--t-color-4);
    }
}
.b2c-btn_border-6 {
    border-color: var(--t-color-1);
}

.b2c-btn-icon {
    background: none !important;
    outline: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
}

.b2c-btn_7 {
    background: white;
    border-color: var(--q-primary);
    color: var(--q-primary);

    svg path {
        color: var(--q-primary);
        stroke: var(--q-primary);
    }
}
.b2c-btn_7:hover {
    background: white;
    border-color: var(--q-clear);
    color: var(--q-clear);

    svg path {
        color: var(--q-clear);
        stroke: var(--q-clear);
    }
}

/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_elements/invest_intro/style.css?17768485293267*/
.intro-section__content {
    margin-top: 40px;
    margin-bottom: 70px;
}

.intro-section__img {
    margin-bottom:70px;

    img {
        border-radius: 12px;
        width: 100%;
        height: auto;
        display: block;
    }
}

.invest-advantages__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px; /* 32px между строками, 40px между колонками */
    list-style: none;
    padding: 0;
    margin: 0;
}

.invest-advantages__list li {
    margin: 0;
    padding: 0;
}

.invest-advantages-row {
    display: flex;
    align-items: flex-start;
    min-height: 100%;
}

.invest-advantages-row__icon {
    flex-shrink: 0;
    margin-right: 20px; /* расстояние между иконкой и описанием */
}

.invest-advantages-row__text {
    margin: 0;
    flex: 1;
}

/* Стили для кнопки, которая должна быть внизу третьей колонки */
.invest-advantages__list li:last-child {
    grid-column: 3; /* Помещаем в третью колонку */
    align-self: end; /* Выравниваем по нижнему краю */
}

.invest-advantages__btn {
    width: 100%;
    margin-top: auto; /* Для выравнивания внизу, если нужно */
}

/* Если нужно, чтобы кнопка всегда была внизу, даже если контента мало */
.invest-advantages__list {
    position: relative;
}

/* Альтернативный вариант с flex для старых браузеров */
@media (max-width: 1200px) {
    .invest-advantages__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .invest-advantages__list li {
        width: calc(33.333% - 27px); /* 40px * 2/3 = ~27px */
        margin-bottom: 32px;
    }

    .invest-advantages__list li:last-child {
        width: calc(33.333% - 27px);
        margin-left: auto;
        margin-right: 0;
    }

    .section-with-description.investments {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .section-with-description.investments .intro-section__head-text {
        width: auto !important;
    }
}

/* MEDIA */
@media (max-width: 1075px) {
    .page-container .invest-advantages__list {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 40px !important;
    }
    
    .page-container .invest-advantages__list li:last-child {
        grid-column: span 2 !important;
        width: auto !important;
        margin-left: 0;
    }
}

@media (max-width: 668px) {
    .page-container .invest-advantages__list {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px 20px !important;
    }

    .page-container .invest-advantages__list li:last-child {
        margin: 0 !important;
        width: 100% !important;
        align-self: center !important;
    }

    .invest-advantages__btn {
        width: 100% !important;
    }

    .section-with-description.investments h1 {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .intro-section__content .btn-component {
        width: 100% !important;
    }
}
/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_elements/invest_region_numbers/style.css?17787390238735*/

.about-region-section[data-v-b35e607f] {
    padding-top: 128px
}

@media screen and (max-width: 920px) {
    .about-region-section[data-v-b35e607f] {
        padding-top:64px
    }
}



.about-region-section__ellipses-wrapper[data-v-b35e607f] {
    position: relative;
    height: 490px
}

@media screen and (max-width: 1320px) {
    .about-region-section__ellipses {
        height: 770px;
        position: relative;
        max-width: 720px;
        margin: 0 auto;
    }
    .about-region-section__ellipses-wrapper[data-v-b35e607f] {
        height:960px
    }
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses {
        max-width: 300px;
    }
    .about-region-section__ellipses-wrapper[data-v-b35e607f] {
        height:770px
    }
}

.about-region-section__ellipses-item[data-v-b35e607f] {
    position: absolute;
    border-radius: 100%;
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 68px
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item[data-v-b35e607f] {
        padding:20px
    }
}

.about-region-section__ellipses-item-title[data-v-b35e607f] {
    font-size: 32px
}

@media screen and (max-width: 920px) {
    .about-region-section__ellipses-item-title[data-v-b35e607f] {
        font-size:32px
    }
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item-title[data-v-b35e607f] {
        font-size:24px
    }
}

.about-region-section__ellipses-item-text[data-v-b35e607f] {
    font-size: 16px;
    font-weight: 500;
    color: var(--b2b-accent);
}

@media screen and (max-width: 920px) {
    .about-region-section__ellipses-item-text[data-v-b35e607f] {
        font-size:16px
    }
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item-text[data-v-b35e607f] {
        font-size:14px
    }
}

.about-region-section__ellipses-item-text[data-v-b35e607f] {
    text-align: center
}

.about-region-section__ellipses-item.ellipse-l[data-v-b35e607f] {
    width: 380px;
    height: 380px
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-l[data-v-b35e607f] {
        width:200px;
        height: 200px
    }
}

.about-region-section__ellipses-item.ellipse-m[data-v-b35e607f] {
    width: 340px;
    height: 340px
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-m[data-v-b35e607f] {
        width:200px;
        height: 200px
    }
}

.about-region-section__ellipses-item.ellipse-s[data-v-b35e607f] {
    width: 290px;
    height: 290px
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-s[data-v-b35e607f] {
        width:200px;
        height: 200px
    }
}

.about-region-section__ellipses-item.ellipse-xs[data-v-b35e607f] {
    width: 164px;
    height: 164px
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-xs[data-v-b35e607f] {
        width:120px;
        height: 120px
    }
}

.about-region-section__ellipses-item.ellipse-outline[data-v-b35e607f] {
    border: 1px solid rgba(47,142,237,.5)
}

.about-region-section__ellipses-item.ellipse-outline .about-region-section__ellipses-item-title[data-v-b35e607f] {
    color: #2f8eed
}

.about-region-section__ellipses-item.ellipse-blue[data-v-b35e607f] {
    background: #d9efff
}

.about-region-section__ellipses-item.ellipse-blue .about-region-section__ellipses-item-title[data-v-b35e607f] {
    color: #2f8eed
}

.about-region-section__ellipses-item.ellipse-primary[data-v-b35e607f] {
    background: #2f8eed
}

.about-region-section__ellipses-item.ellipse-primary .about-region-section__ellipses-item-title[data-v-b35e607f],.about-region-section__ellipses-item.ellipse-primary .about-region-section__ellipses-item-text[data-v-b35e607f] {
    color: #fff
}

.about-region-section__ellipses-item.ellipse-1[data-v-b35e607f] {
    bottom: 0;
    left: 32px
}

@media screen and (max-width: 1320px) {
    .about-region-section__ellipses-item.ellipse-1[data-v-b35e607f] {
        top:160px;
        left: 8px;
    }
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-1[data-v-b35e607f] {
        top: 50px;
        left: -190px;
        width: 290px;
        height: 290px;
    }
}

@media screen and (max-width: 575px) {
    .about-region-section__ellipses-item.ellipse-1[data-v-b35e607f] {
        top: 64px;
        left: 0;
        width: 156px;
        height: 156px;
    }
}

.about-region-section__ellipses-item.ellipse-2[data-v-b35e607f] {
    bottom: 0;
    left: 318px;
}

@media screen and (max-width: 1320px) {
    .about-region-section__ellipses-item.ellipse-2[data-v-b35e607f] {
        top:64px;
        left: 294px;
    }
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-2[data-v-b35e607f] {
        top: 0px;
        left: 110px;
        width: 380px;
        height: 380px;
    }
}

@media screen and (max-width: 575px) {
    .about-region-section__ellipses-item.ellipse-2[data-v-b35e607f] {
        top:154px;
        left: 116px;
        width: 200px;
        height: 200px;
    }
}

.about-region-section__ellipses-item.ellipse-3[data-v-b35e607f] {
    top: 0;
    left: 674px;
}

@media screen and (max-width: 1320px) {
    .about-region-section__ellipses-item.ellipse-3[data-v-b35e607f] {
        top:404px;
        left: 148px;
    }
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-3[data-v-b35e607f] {
        top: 318px;
        left: -140px;
        width: 340px;
        height: 340px;
    }
}

@media screen and (max-width: 575px) {
    .about-region-section__ellipses-item.ellipse-3[data-v-b35e607f] {
        top:318px;
        left: 0;
        width: 200px;
        height: 200px;
    }
}

.about-region-section__ellipses-item.ellipse-4[data-v-b35e607f] {
    bottom: 0;
    left: 960px;
}

@media screen and (max-width: 1320px) {
    .about-region-section__ellipses-item.ellipse-4[data-v-b35e607f] {
        top:590px;
        left: 442px;
    }
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-4[data-v-b35e607f] {
        top: 490px;
        left: 160px;
        width: 290px;
        height: 290px;
    }
}

@media screen and (max-width: 575px) {
    .about-region-section__ellipses-item.ellipse-4[data-v-b35e607f] {
        top:478px;
        left: 120px;
        width: 200px;
        height: 200px;
    }
}

.about-region-section__ellipses-item.ellipse-5[data-v-b35e607f] {
    bottom: 0;
    left: 674px;
}

@media screen and (max-width: 1320px) {
    .about-region-section__ellipses-item.ellipse-5[data-v-b35e607f] {
        top:730px;
        left: 150px;
    }
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-5[data-v-b35e607f] {
        top: 660px;
        left: 3px;
    }
}

@media screen and (max-width: 575px) {
    .about-region-section__ellipses-item.ellipse-5[data-v-b35e607f] {
        top:630px;
        left: 46px;
    }
}

.about-region-section__ellipses-item.ellipse-6[data-v-b35e607f] {
    top: 36px;
    left: 1008px;
}

@media screen and (max-width: 1320px) {
    .about-region-section__ellipses-item.ellipse-6[data-v-b35e607f] {
        top:436px;
        left: 470px;
    }
}

@media screen and (max-width: 768px) {
    .about-region-section__ellipses-item.ellipse-6[data-v-b35e607f] {
        top:348px;
        left: 200px;
    }
}

@media screen and (max-width: 575px) {
    .about-region-section__ellipses-item.ellipse-6[data-v-b35e607f] {
        top:348px;
        left: 200px;
    }
}

.about-region-section__content[data-v-b35e607f] {
    display: flex;
    gap: 16px;
    padding: 70px 0
}

@media screen and (max-width: 920px) {
    .about-region-section__content[data-v-b35e607f] {
        flex-direction:column-reverse;
        padding: 32px 0
    }
}

.about-region-section__card[data-v-b35e607f] {
    background: #d9efff;
    border-radius: 20px;
    padding: 36px;
    gap: 36px;
    flex: 50%
}

.about-region-section__card-content[data-v-b35e607f] {
    gap: 16px
}

.about-region-section__card-title[data-v-b35e607f] {
    font-size: 28px;
    line-height: 114%
}

.about-region-section__img[data-v-b35e607f] {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex: 50%
}

.about-region-section__img img[data-v-b35e607f] {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover
}

.about-region-section__ellipses-item img {
    max-width: none;
}

@media screen and (max-width: 768px) {
    .about-region-section__btn[data-v-b35e607f] {
        width:100%
    }
}
/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_elements/invest_title_with_tiles/style.css?17768485294515*/
.inv-block-button {
    display: flex;
    max-height: 60px;
    text-wrap-mode: nowrap;
}


[data-v-6df24660]:root {
    --tablet-breakpoint: 920px
}

.direction-card[data-v-6df24660] {
    width: 308px
}

@media screen and (max-width: 920px) {
    .direction-card[data-v-6df24660] {
        width:280px
    }
}

@media screen and (max-width: 480px) {
    .direction-card[data-v-6df24660] {
        width:240px
    }
}

.direction-card[data-v-6df24660] {
    background: #d9efff;
    border-radius: 16px;
    padding: 20px;
    gap: 20px;
    height: 100%
}

.direction-card__img[data-v-6df24660] {
    border-radius: 16px;
    overflow: hidden;
    width: 100%
}

.direction-card__img img[data-v-6df24660] {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover
}

.direction-card__title[data-v-6df24660] {
    font-size: 22px;
    text-align: center
}

@media screen and (max-width: 920px) {
    .direction-card__title[data-v-6df24660] {
        font-size:22px;
        height: 46px
    }
}

@media screen and (max-width: 480px) {
    .direction-card__title[data-v-6df24660] {
        font-size:16px;
        height: 40px
    }
}

[data-v-40848b42]:root {
    --tablet-breakpoint: 920px
}

.directions-section[data-v-40848b42] {
    padding: 70px 0 8px
}

@media screen and (max-width: 920px) {
    .directions-section[data-v-40848b42] {
        padding:32px 0 8px
    }
}

.directions-section__head[data-v-40848b42] {
    align-items: flex-start;
    gap: 128px
}

.directions-section__btn[data-v-40848b42] {
    white-space: nowrap;
    width: 248px;
    flex-shrink: 0
}

.directions-section__btn-mobile[data-v-40848b42] {
    margin: 24px auto 0
}

@media screen and (max-width: 480px) {
    .directions-section__btn-mobile[data-v-40848b42] {
        width:100%
    }
}

.directions-section__grid[data-v-40848b42] {
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

.directions-section__slide[data-v-40848b42] {
    padding-right: 16px
}

@media screen and (max-width: 1320px) {
    .directions-section__slide[data-v-40848b42] {
        padding-right:calc(8px + 8 * (100vw - 768px) / 552)
    }
}

@media screen and (max-width: 768px) {
    .directions-section__slide[data-v-40848b42] {
        padding-right:8px
    }
}

.directions-section__slide[data-v-40848b42] {
    width: fit-content
}

.directions-section__slide[data-v-40848b42]:first-child {
    padding-left: 20px
}

.directions-section__slide[data-v-40848b42]:last-child {
    padding-right: 20px!important
}

.directions-section__card[data-v-40848b42] {
    width: 308px
}

.directions-section__btn-wrapper {
    display: none;
}

@media screen and (max-width: 920px) {
    .directions-section__card[data-v-40848b42] {
        width:280px
    }
}

@media screen and (max-width: 480px) {
    .directions-section__card[data-v-40848b42] {
        width:240px
    }

    .directions-section__btn-mobile{
        width: 100% !important;
    }
}

@media screen and (max-width: 768px) {
    .directions-section__btn {
        display: none !important;
    }
    .directions-section__btn-wrapper {
        display: block;
    }
}

/* Кастомный свайпер для invest */
.invest-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.invest-swiper__wrapper {
    display: flex;
    will-change: transform;
    padding-top: 40px;
}

.invest-swiper__slide {
    flex-shrink: 0;
    width: auto;
}

.directions-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 40px;
}

.directions-section__grid-item {
    width: 100%;
}

/* СВАЙПЕР - по умолчанию скрыт */
.invest-swiper {
    display: none;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* При ширине <= 1400px - скрываем grid, показываем свайпер */
@media screen and (max-width: 1400px) {
    .directions-section__grid {
        display: none !important;
    }
    
    .invest-swiper {
        display: block;
    }
}

.invest-swiper__wrapper {
    display: flex;
    will-change: transform;
    padding-top: 40px;
    gap: 16px;
}

.invest-swiper__slide {
    flex-shrink: 0;
    width: auto;
}

/* Адаптив */
@media screen and (max-width: 1400px) {
    .invest-swiper__wrapper {
        padding-top: 24px;
    }
}

@media screen and (max-width: 480px) {
    .invest-swiper__wrapper {
        padding-top: 20px;
        gap: 12px;
    }
}
/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_button/invest_map_button/style.css?17768485291330*/

[data-v-b71c15cb]:root {
    --tablet-breakpoint: 920px
}

.map-section[data-v-b71c15cb] {
    background: linear-gradient(to top,rgb(249,252,255) 0px,rgba(249,252,255,0) 80px,transparent 80px,transparent 100%),url(/local/templates/main_b2b/components/spll/static.banner_with_button/invest_map_button/images/map-bg.png) top center no-repeat;
    padding: 160px 0 70px
}

@media screen and (max-width: 920px) {
    .map-section[data-v-b71c15cb] {
        padding:130px 0 70px;
        background-position: top left 30%
    }
}

@media screen and (max-width: 480px) {
    .map-section[data-v-b71c15cb] {
        padding:80px 0 24px;
        background-size: 918px;
        background-position: top left 36%
    }
}

.map-section__wrapper[data-v-b71c15cb] {
    align-items: center;
    gap: 24px;
    max-width: 622px;
    margin: auto
}

.map-section__title[data-v-b71c15cb],.map-section__text[data-v-b71c15cb] {
    justify-content: center
}

.map-section__btn[data-v-b71c15cb] {
    width: 248px
}

@media screen and (max-width: 480px) {
    .map-section__btn[data-v-b71c15cb] {
        width:100%
    }
}

.map-section{
    margin-bottom:70px;
}

.map-section__title {
    font-size: 36px !important;
    text-align: center !important;
    line-height: 114.99999999999999% !important;
    letter-spacing: 1% !important;
    max-width: 495px !important;
}

.map-section__text {
    text-align: center !important;
}
/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_button/invest_text_button_files/style.css?17848172012721*/

[data-v-8ccc24ae]:root {
    --tablet-breakpoint: 920px
}

.land-plots-section {
    margin-top: 70px;
}

.land-plots-section[data-v-8ccc24ae] {
    padding: 70px 0
}

@media screen and (max-width: 920px) {
    .land-plots-section[data-v-8ccc24ae] {
        padding: 0;
    }
}

.land-plots-section__grid[data-v-8ccc24ae] {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto auto;
    gap: 16px
}

@media screen and (max-width: 920px) {
    .land-plots-section__grid[data-v-8ccc24ae] {
        grid-template-columns:1fr
    }
}

.land-plots-section__grid[data-v-8ccc24ae]>:nth-child(1) {
    grid-column: 1/-1
}

.land-plots-section__card[data-v-8ccc24ae] {
    background: url(/local/templates/main_b2b/components/spll/static.banner_with_button/invest_text_button_files/images/land-plots-bg.png) bottom right no-repeat,#d9efff;
    padding: 36px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

@media screen and (max-width: 480px) {
    .land-plots-section__card[data-v-8ccc24ae] {
        grid-template-columns:1fr;
        padding: 24px
    }
}

.land-plots-section__card-content[data-v-8ccc24ae] {
    display: flex;
    flex-direction: column;
    gap: 36px
}

.land-plots-section__card-content .text-animation {
    color: #123670;
}

.land-plots-section__card-text[data-v-8ccc24ae] {
    margin-bottom: 16px
}

.land-plots-section__btn[data-v-8ccc24ae] {
    width: 154px
}

@media screen and (max-width: 480px) {
    .land-plots-section__btn[data-v-8ccc24ae] {
        width:100%
    }
}

.land-plots-section__doc[data-v-8ccc24ae] {
    background: #d9efff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 66px;
    cursor: pointer;
    transition: background ease-in .2s
}

.land-plots-section__doc[data-v-8ccc24ae]:hover {
    background: #d9efff66
}

.land-plots-section__doc-icon[data-v-8ccc24ae] {
    width: 22px;
    height: 32px
}

.land-plots-section__doc-text[data-v-8ccc24ae] {
    font-size: 12px;
    font-weight: 500;
    line-height: 130%;
    color: #2F8EED;
    margin: 0
}

.land-plots-section__doc-icon {
    img {
        width: 22px;
        height: 32px
    }
}

.land-plots-section-details {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Текст блока приходит из инфоблока без классов — красим потомков */
.land-plots-section-details,
.land-plots-section-details p,
.land-plots-section-details li {
    color: #123670;
}

.btn-more-toggle {
    cursor: pointer;
    margin-top: 15px;
}

.btn-more-toggle:hover {
    opacity: 0.9;
}

.land-plots-section__doc {
    a {
        text-decoration: none;
        display: flex;
        gap: 66px;
        color: #0a1a3e;
    }
}
/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_button/invest_big_text_files/style.css?17768485294269*/

[data-v-8bc2e57f]:root {
    --tablet-breakpoint: 920px
}

.spic-section[data-v-8bc2e57f] {
    padding: 70px 0
}

@media screen and (max-width: 920px) {
    .spic-section[data-v-8bc2e57f] {
        padding:32px 0
    }
}

.spic-section__title[data-v-8bc2e57f] {
    max-width: 632px
}

@media screen and (max-width: 920px) {
    .spic-section__title[data-v-8bc2e57f] {
        max-width:unset
    }
}

.spic-section__head[data-v-8bc2e57f] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px
}

@media screen and (max-width: 1320px) {
    .spic-section__head[data-v-8bc2e57f] {
        flex-direction:column
    }
}

.spic-section__head-content[data-v-8bc2e57f] {
    flex: 0 0 524px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start
}

.spic-section__head-content .text-animation {
    color: #123670;
}

@media screen and (max-width: 1320px) {
    .spic-section__head-content[data-v-8bc2e57f] {
        flex:unset
    }
}

.spic-section__head-text[data-v-8bc2e57f] {
    max-width: 484px
}

@media screen and (max-width: 1320px) {
    .spic-section__head-text[data-v-8bc2e57f] {
        max-width:unset
    }
}

.spic-section__content[data-v-8bc2e57f] {
    padding-top: 40px;
    display: flex;
    gap: 16px
}

@media screen and (max-width: 1320px) {
    .spic-section__content[data-v-8bc2e57f] {
        flex-direction:column
    }
}

@media screen and (max-width: 480px) {
    .spic-section__content[data-v-8bc2e57f] {
        padding-top:32px
    }
}

.spic-section__card[data-v-8bc2e57f] {
    border: 1px solid rgba(47,142,237,.5);
    border-radius: 16px;
    padding: 36px
}

.spic-section__card-title[data-v-8bc2e57f] {
    font-size: 22px
}

.spic-section__card-list[data-v-8bc2e57f] {
    margin-top: 16px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    font-weight: 500
}

.spic-section__card-footer[data-v-8bc2e57f] {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 16px
}

@media screen and (max-width: 480px) {
    .spic-section__card-footer[data-v-8bc2e57f] {
        flex-direction:column
    }
}

.spic-section__card-footer-text[data-v-8bc2e57f] {
    font-size: 18px;
    max-width: 184px
}

@media screen and (max-width: 480px) {
    .spic-section__card-footer-text[data-v-8bc2e57f] {
        max-width:272px
    }
}

.spic-section__card-footer-grid[data-v-8bc2e57f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 0 0 66%
}

@media screen and (max-width: 480px) {
    .spic-section__card-footer-grid[data-v-8bc2e57f] {
        grid-template-columns:1fr;
        flex: unset
    }
}

.spic-section__card-footer-grid-item[data-v-8bc2e57f] {
    background: #e8eff5;
    border-radius: 12px;
    padding: 16px
}

.spic-section__card-footer-grid-item-title[data-v-8bc2e57f] {
    font-size: 18px;
    margin-bottom: 8px
}

.spic-section__card-footer-grid-item-text[data-v-8bc2e57f] {
    font-size: 14px;
    font-weight: 500
}

.spic-section__grid[data-v-8bc2e57f] {
    flex: 0 0 524px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px
}

@media screen and (max-width: 1320px) {
    .spic-section__grid[data-v-8bc2e57f] {
        flex:unset
    }
}

@media screen and (max-width: 480px) {
    .spic-section__grid[data-v-8bc2e57f] {
        grid-template-columns:1fr
    }
}

.spic-section__doc[data-v-8bc2e57f] {
    background: #d9efff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    transition: background ease-in .2s
}

.spic-section__doc[data-v-8bc2e57f]:hover {
    background: #d9efff66
}

.spic-section__doc[data-v-8bc2e57f]:first-child,.spic-section__doc[data-v-8bc2e57f]:last-child {
    grid-column: 1/-1
}

.spic-section__doc-icon[data-v-8bc2e57f] {
    width: 22px;
    height: 32px
}

.spic-section__doc-text[data-v-8bc2e57f] {
    font-size: 12px;
    font-weight: 500;
    color: #123670;
    margin: 0
}

.spic-section__doc {
    a {
        text-decoration: none;
        display: flex;
        flex-direction: column;
        gap: 24px;
        color: #0a1a3e;
    }
}
/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_button/invest_big_image_button/style.css?17768485292157*/

[data-v-26113b9d]:root {
    --tablet-breakpoint: 920px
}

.spic-section__banner[data-v-26113b9d] {
    margin-top: 70px;
    padding: 36px;
    height: 546px;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

@media screen and (max-width: 920px) {
    .spic-section__banner[data-v-26113b9d] {
        margin-top:32px;
        background-position: top center
    }
}

@media screen and (max-width: 480px) {
    .spic-section__banner[data-v-26113b9d] {
        height:462px;
        padding: 8px;
        background-size: 620px
    }
}

.spic-section__banner-main[data-v-26113b9d] {
    background-color: #fff;
    border-radius: 36px;
    padding: 36px;
    gap: 40px;
    justify-content: space-between
}

@media screen and (max-width: 920px) {
    .spic-section__banner-main[data-v-26113b9d] {
        flex-direction:column;
        gap: 16px
    }
}

@media screen and (max-width: 480px) {
    .spic-section__banner-main[data-v-26113b9d] {
        padding:20px;
        gap: 12px
    }
}

.spic-section__banner-title[data-v-26113b9d] {
    font-size: 32px
}

@media screen and (max-width: 920px) {
    .spic-section__banner-title[data-v-26113b9d] {
        font-size:32px
    }
}

@media screen and (max-width: 480px) {
    .spic-section__banner-title[data-v-26113b9d] {
        font-size:24px
    }
}

.spic-section__banner-title[data-v-26113b9d] {
    max-width: 384px
}

@media screen and (max-width: 920px) {
    .spic-section__banner-title[data-v-26113b9d] {
        max-width:unset
    }
}

.spic-section__banner-content[data-v-26113b9d] {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 32px
}

@media screen and (max-width: 920px) {
    .spic-section__banner-content[data-v-26113b9d] {
        flex:unset
    }
}

.spic-section__banner-text[data-v-26113b9d] {
    max-width: 500px;
    color: #123670;
}

@media screen and (max-width: 920px) {
    .spic-section__banner-text[data-v-26113b9d] {
        max-width:unset
    }
}

@media screen and (max-width: 480px) {
    .spic-section__banner-btn[data-v-26113b9d] {
        width:100%
    }
}
/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_elements/invest_tax_benefits/style.css?17768485293368*/

[data-v-a51bc453]:root {
    --tablet-breakpoint: 920px
}

.tax-breaks-section[data-v-a51bc453] {
    padding: 70px 0
}

@media screen and (max-width: 920px) {
    .tax-breaks-section[data-v-a51bc453] {
        padding:32px 0
    }
}

.tax-breaks-section__grid[data-v-a51bc453] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

@media screen and (max-width: 920px) {
    .tax-breaks-section__grid[data-v-a51bc453] {
        grid-template-columns:1fr;
        gap: 40px
    }
}

.tax-breaks-section__title[data-v-a51bc453] {
    margin-bottom: 40px;
    max-width: 470px
}

@media screen and (max-width: 480px) {
    .tax-breaks-section__title[data-v-a51bc453] {
        margin-bottom:24px
    }
}

.tax-breaks-section__content-grid[data-v-a51bc453] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

@media screen and (max-width: 480px) {
    .tax-breaks-section__content-grid[data-v-a51bc453] {
        grid-template-columns:1fr
    }
}

.tax-breaks-section__link[data-v-a51bc453] {
    background: #F9FCFF;
    border: 1px solid rgba(47,142,237,.5);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: background ease-in .2s
}

.tax-breaks-section__link[data-v-a51bc453]:hover {
    background: #d9efff;
    border-color: #d9efff
}

.tax-breaks-section__link:hover .tax-breaks-section__link-head-icon[data-v-a51bc453] {
    background: #fff
}

.tax-breaks-section__link[data-v-a51bc453]:last-child {
    grid-column: 1/-1
}

.tax-breaks-section__link-head[data-v-a51bc453] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #344054;
    font-size: 16px;
    font-weight: 500
}

.tax-breaks-section__link-head-icon[data-v-a51bc453] {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background: #d9efff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background ease-in .2s
}

/* Исходные стили SVG */
.tax-breaks-section__link-head-icon svg rect {
    fill: #D9EFFF;
    transition: fill 0.3s ease;
}

.tax-breaks-section__link-head-icon svg path {
    stroke: #0A1A3E;
    transition: stroke 0.3s ease;
}

/* При наведении на ссылку меняем SVG */
.tax-breaks-section__link:hover .tax-breaks-section__link-head-icon svg rect {
    fill: white;
}

.tax-breaks-section__link:hover .tax-breaks-section__link-head-icon svg path {
    stroke: #0A1A3E; /* или любой темный цвет */
}

.tax-breaks-section__link-text[data-v-a51bc453] {
    font-size: 18px
}

.tax-breaks-section__img[data-v-a51bc453] {
    border-radius: 12px;
    overflow: hidden
}

@media screen and (max-width: 920px) {
    .tax-breaks-section__img[data-v-a51bc453] {
        height:420px
    }
}

@media screen and (max-width: 480px) {
    .tax-breaks-section__img[data-v-a51bc453] {
        height:186px
    }
}

.tax-breaks-section__img img[data-v-a51bc453] {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover
}

@media screen and (max-width: 920px) {
    .tax-breaks-section__img img[data-v-a51bc453] {
        object-position:top
    }
}

.tax-breaks-link {
    display: flex;
    flex-direction: column;
    gap: 8px;

    text-decoration: none;
    color: #0a1a3e;
}
/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_elements/invest_tiles_logos/style.css?17848172342769*/

[data-v-4fb0e270]:root {
    --tablet-breakpoint: 920px
}

.benefits-section[data-v-4fb0e270] {
    padding: 70px 0 8px
}

@media screen and (max-width: 920px) {
    .benefits-section[data-v-4fb0e270] {
        padding:32px 0 8px
    }
}

.benefits-section__head[data-v-4fb0e270] {
    align-items: flex-end;
    gap: 128px
}

.benefits-section__btn[data-v-4fb0e270] {
    white-space: nowrap;
    width: 208px !important;
    flex-shrink: 0
}

.benefits-section__btn-mobile[data-v-4fb0e270] {
    margin: 24px auto 0
}

@media screen and (max-width: 480px) {
    .benefits-section__btn-mobile[data-v-4fb0e270] {
        width:100%
    }
}

.benefits-section__grid[data-v-4fb0e270] {
    padding-top: 40px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

@media screen and (max-width: 920px) {
    .benefits-section__grid[data-v-4fb0e270] {
        grid-template-columns:repeat(2,1fr)
    }
}

@media screen and (max-width: 480px) {
    .benefits-section__grid[data-v-4fb0e270] {
        grid-template-columns:1fr
    }
}

.benefits-section__grid[data-v-4fb0e270]>* {
    min-width: 0
}

[data-v-9eb480fa]:root {
    --tablet-breakpoint: 920px
}

.benefits-card[data-v-9eb480fa] {
    height: 100%
}

.benefits-card__img[data-v-9eb480fa] {
    border-radius: 16px;
    overflow: hidden;
    height: 100%
}

@media screen and (max-width: 920px) {
    .benefits-card__img[data-v-9eb480fa] {
        max-height:180px
    }
}

@media screen and (max-width: 480px) {
    .benefits-card__img[data-v-9eb480fa] {
        max-height:140px
    }
}

.benefits-card__img img[data-v-9eb480fa] {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover
}

.benefits-card__content[data-v-9eb480fa] {
    border-radius: 16px;
    background: #d9efff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
    height: 100%
}

.benefits-card__icon[data-v-9eb480fa] {
    background: #fff;
    border-radius: 100%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center
}

.benefits-card__icon[data-v-9eb480fa]>* {
    width: 28px;
    height: 28px
}

.benefits-card__text[data-v-9eb480fa] {
    font-size: 16px;
    font-weight: 500;
    color: #123670;
    overflow-wrap: break-word
}

.benefits-section__title {
    max-width: 560px;
}

.benefits-section-btn-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .benefits-section__btn {
        display: none !important;
    }
    .benefits-section-btn-mobile {
        display: block !important;
        margin-top: 40px;
    }

    .benefits-section__btn.mobile {
        display: flex !important;
        width: 100% !important;
    }
}
/* End */
/* /local/components/b2c/ui.button/buttons.css?17851611903168 */
/* /local/templates/main_b2b/components/spll/static.banner_with_elements/invest_intro/style.css?17768485293267 */
/* /local/templates/main_b2b/components/spll/static.banner_with_elements/invest_region_numbers/style.css?17787390238735 */
/* /local/templates/main_b2b/components/spll/static.banner_with_elements/invest_title_with_tiles/style.css?17768485294515 */
/* /local/templates/main_b2b/components/spll/static.banner_with_button/invest_map_button/style.css?17768485291330 */
/* /local/templates/main_b2b/components/spll/static.banner_with_button/invest_text_button_files/style.css?17848172012721 */
/* /local/templates/main_b2b/components/spll/static.banner_with_button/invest_big_text_files/style.css?17768485294269 */
/* /local/templates/main_b2b/components/spll/static.banner_with_button/invest_big_image_button/style.css?17768485292157 */
/* /local/templates/main_b2b/components/spll/static.banner_with_elements/invest_tax_benefits/style.css?17768485293368 */
/* /local/templates/main_b2b/components/spll/static.banner_with_elements/invest_tiles_logos/style.css?17848172342769 */
