.indent {
    height: 100px;
}

body.overflow {
    overflow: hidden;
}

.bg-color-light {
    background-color: #f5f3f0;
    padding: 100px 0 130px;
}
.bg-color-dark {
    background-color: #EEE5DC;
    padding: 100px 0 130px;
}
@media (max-width: 420px) {
    .bg-color-light,
	.bg-color-dark {
		padding: 30px 0 45px;
    }
}

.container.container--max {
    max-width: 1820px !important;
}

.hide-navigation .nebo.nebo--tr {
    --nb-r: 0 !important;
    --nb-w: 0 !important;
    --nb-h: 0 !important;
}

/* .main-wrapper.transparent {
    margin-top: -200px;
} */

.container {
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.c-header-wrapper {
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 25px;
    gap: 70px;
    height: 100px;
}
.c-header-info.mobile{
    display: none;
}
@media (max-width: 1700px) {
    .c-header-wrapper {
        gap: 20px;
    }
}

.c-header-line {
    background-color: #FFFFFF33;
    height: 2px;
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    position: absolute;
    z-index: 1;
    top: 100px;
    left: 0;
    right: 0;
}

.header {
    height: auto !important;
}

.header.header-active,
.header.header-white {
    position: sticky;
    background-color: white !important;
}

.header-active .c-header-logo {
    background-color: black;
}

.header-active .c-header-menu-link {
    color: black;
}

.header-active .c-header-menu-link.sub-menu::after {
    background-color: #00A769;
}

.header-active .c-header-info-tg,
.header-active .c-header-info-wa {
    background-color: #00A769;
}

.header-active .c-header-info-phone {
    color: #00A769;
}

.header-active .b-btn.white.transparent {
    color: white;
    background-color: #00A769;
    border: 2px solid #00A769;
}




.fade-in-sticky .c-header-logo,
.header-white .c-header-logo {
    background-color: black;
}

.fade-in-sticky .c-header-menu-link,
.header-white .c-header-menu-link {
    color: black;
    cursor: pointer;
}

.fade-in-sticky .c-header-menu-link.sub-menu::after,
.header-white .c-header-menu-link.sub-menu::after {
    background-color: #00A769;
}

.fade-in-sticky .c-header-info-tg,
.header-white .c-header-info-tg,
.fade-in-sticky .c-header-info-wa,
.header-white .c-header-info-wa {
    background-color: #00A769;
}

.fade-in-sticky .c-header-info-phone,
.header-white .c-header-info-phone {
    color: #00A769;
}

.fade-in-sticky .b-btn.white.transparent,
.header-white .b-btn.white.transparent {
    color: white;
    background-color: #00A769;
    border: 2px solid #00A769;
}

.c-header-menu-link:hover {
    color: #00A769 !important;
    cursor: pointer;
}

.header .container {
    margin-top: 0 !important;
}

.c-header-logo {
    width: 323px;
    height: 52px;
    mask-image: url("/local/templates/ozera/assets/images/new-main-page/logo.svg");
    background-color: white;
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.c-header-menu-link-sub-container {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100vw;
    padding: 20px 0;
    background-color: black;
    box-sizing: border-box;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;

    /* Плавное исчезновение (замедленное) */
    transition: visibility 0s linear 0.5s,  /* задержка перед скрытием */
                opacity 0.3s ease-in-out;    /* плавное изменение прозрачности */
}

.c-header-menu-link:hover .c-header-menu-link-sub-container {
    visibility: visible;
    opacity: 1;

    /* Убираем задержку при появлении */
    transition-delay: 0s, 0s;
}

.c-header-menu-inner {
    max-width: 1820px;
    width: 100%;

    display: flex;
    justify-content: center;
    gap: 53px;
    margin: 0 auto;
}

.c-header-menu-link-sub {
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-transform: math-auto;
}

.c-header-menu-link-sub:hover {
    color: #FFFFFF99 !important;
}

.c-header-info {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.c-header-info-tg,
.c-header-info-wa {
    display: inline-block;
    width: 48px;
    height: 48px;
    mask-image: url("/local/templates/ozera/assets/images/new-main-page/icon-tg.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    background-color: white;
}

.c-header-info-wa {
    mask-image: url("/local/templates/ozera/assets/images/new-main-page/icon-wa.svg");
}

.c-header-menu {
    /* position: relative; */
    z-index: 5;
    display: flex;
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 4%;

    text-transform: uppercase;
    color: white;
    max-width: 782px;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
        height: 50px;
    align-items: center;
}

.c-header-menu-link {
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100px;
    box-sizing: content-box;
    margin: 0 auto;
    /* position: relative; */
}

.c-header-menu-link.sub-menu:hover::after {
    background-color: #00A769;
    transform: rotate(180deg);
}

.c-header-menu-link-sub-container {
    /*  */
}

.c-header-menu-link.sub-menu::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    mask-image: url("/local/templates/ozera/assets/images/new-main-page/arrow-header.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    background-color: white;
    flex: 0 0 auto;
}

.c-header-info-phone {
    color: white;
    font-family: Manrope;
    font-weight: 600;
    font-size: 18px;
}

.b-btn {
    background-color: #00A769;
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 100px;
    display: inline-block;
    color: white;
    border: 1px solid #00A769;
    cursor: pointer;
}

.b-btn.hide-mobile {
    display: block;
}

.b-btn.show-mobile {
    display: none;
}

.yandex-map {
    height: 790px;
}

.relative {
    position: relative;
}

.margin-title {
    margin-bottom: 50px !important;
}

.button-next,
.button-prev {
    position: absolute;
    background-image: url("/local/templates/ozera/assets/images/new-main-page/arrow-green.svg");
    transform: rotate(180deg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    z-index: 123123123;
    top: 10px;
    right: 10px;
    border-radius: 100%;
    cursor: pointer;
}

.button-prev {
    background-image: url("/local/templates/ozera/assets/images/new-main-page/arrow-green.svg");
    right: 70px;
    transform: rotate(0deg);
}

.button-prev.swiper-button-disabled {
    background-image: url("/local/templates/ozera/assets/images/new-main-page/arrow-grey.svg");
}

.button-next.swiper-button-disabled {
    background-image: url("/local/templates/ozera/assets/images/new-main-page/arrow-grey.svg");
    transform: rotate(180deg);
}

.b-btn.white {
    background-color: white;
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 100px;
    color: #00A769;
    border: 2px solid white;
    bottom: 10px;
}

.b-btn.beige {
    background-color: #F4EFEA;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 100px;
    color: #000000;
    border: 2px solid #F4EFEA;
    bottom: 10px;
}

.b-btn.transparent {
    background-color: transparent;
    color: white;
}

.b-btn.white:hover {
    background-color: transparent;
    color: white;
}

.b-btn.beige:hover {
    background-color: #00A769;
    border: 2px solid #00A769;
    color: white;
}
.b-btn:hover {
    background-color: transparent;
    color: #00A769;
}

.b-title {
    font-size: 71px;
    font-weight: 500;
    font-family: SourceSerif4_36pt-Medium;
}

.main-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 120px;
}

.main-header.max {
    margin-bottom: 60px;
}

.main-header__title {
    font-size: 71px;
    font-weight: 500;
    color: black;
    margin: 0;
    max-width: 667px;
    flex: 0 0 auto;
    font-family: 'SourceSerif4_36pt-Medium';
}

.main-header__title.max-width {
    max-width: 520px;
}

.main-header__container-desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.main-header__line {
    height: 122px;
    flex: 0 0 auto;
    width: 2px;
    background: linear-gradient(to right, #ddd, #999);
}

.main-header__line.max {
    height: 208px;
}

.main-header__description {
    font-size: 32px;
    color: black;
    font-family: Manrope-Regular;
    line-height: 137%;
}
.swiper-pagination-fraction {
    color: #000;
}
@font-face {
    font-family: 'Manrope-Medium';
    src: url("/local/templates/ozera/assets/fonts/Manrope-Medium.woff2") format('woff2'),
         url("/local/templates/ozera/assets/fonts/Manrope-Medium.woff") format('woff'),
         url("/local/templates/ozera/assets/fonts/Manrope-Medium.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope-Regular';
    src: url("/local/templates/ozera/assets/fonts/Manrope-Regular.woff2") format('woff2'),
         url("/local/templates/ozera/assets/fonts/Manrope-Regular.woff") format('woff'),
         url("/local/templates/ozera/assets/fonts/Manrope-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SourceSerif4-Regular';
    src: url("/local/templates/ozera/assets/fonts/SourceSerif4-Regular.woff2") format('woff2'),
         url("/local/templates/ozera/assets/fonts/SourceSerif4-Regular.woff") format('woff'),
         url("/local/templates/ozera/assets/fonts/SourceSerif4-Regular.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SourceSerif4-Medium';
    src: url("/local/templates/ozera/assets/fonts/SourceSerif4-Medium.woff2") format('woff2'),
         url("/local/templates/ozera/assets/fonts/SourceSerif4-Medium.woff") format('woff'),
         url("/local/templates/ozera/assets/fonts/SourceSerif4-Medium.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SourceSerif4_36pt-Regular';
    src: url("/local/templates/ozera/assets/fonts/SourceSerif4_36pt-Regular.woff2") format('woff2'),
         url("/local/templates/ozera/assets/fonts/SourceSerif4_36pt-Regular.woff") format('woff'),
         url("/local/templates/ozera/assets/fonts/SourceSerif4_36pt-Regular.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SourceSerif4_36pt-Medium';
    src: url("/local/templates/ozera/assets/fonts/SourceSerif4_36pt-Medium.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
.header.header-white {
    margin-bottom: 0px;
}
@media (max-width: 1680px) {
    .container.container--max {
        max-width: 1660px !important;
    }
    .main-header__description {
        font-size: 28px;
    }
    .indent {
        height: 80px;
    }

    .margin-title {
        margin-bottom: 40px !important;
    }

    .c-header-menu-link {
        font-size: 14px;
    }

    .c-header-info-tg, .c-header-info-wa {
        width: 30px;
        height: 30px;
    }

    .c-header-info {
        gap: 15px;
    }

    .c-header-info-phone {
        font-size: 14px;
    }

    .c-header-menu-link-sub {
        font-size: 14px;
    }

    .c-header-menu-link-sub-container {
        gap: 30px;
    }
    .mobile {
        display: none;
    }
}

@media (max-width: 1400px) {
    .c-header-logo {
        width: 207px;
        height: 33px;
        mask-size: contain;
        mask-repeat: no-repeat;
    }

    .fade-in-sticky .c-header-wrapper,
	.header-white .c-header-wrapper {
        background-color: white;
    }
}

@media (max-width: 1300px) {
    .c-header-menu.active {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .c-header-info-tg, .c-header-info-wa {
        width: 20px;
        height: 20px;
    }

    .c-header-burger {
        cursor: pointer;
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-image: url("/local/templates/ozera/assets/images/new-main-page/icon-burger.svg");
        background-color: white;
        width: 20px;
        height: 20px;
        display: none;
    }

    .c-header-burger.active {
        mask-image: url("/local/templates/ozera/assets/images/new-main-page/icon-close.svg");
    }

    .c-header-info-phone {
        display: none;
        font-size: 0px;
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-image: url("/local/templates/ozera/assets/images/new-main-page/icon-phone.svg");
        width: 20px;
        height: 20px;
        background-color: white;
    }
}

@media (max-width: 1360px) {
    .header  {
        position: relative;
        background: transparent !important;
    }

    .main-wrapper.transparent {
        z-index: 1;
        position: relative;
        margin-top: -102px;
    }

    .header-active .c-header-burger,
    .header-active .c-header-info-phone {
        background-color: #00A769;
    }
}


@media (max-width: 1200px) {
    .c-header-menu-link-sub-container {
        transition: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: none;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        background-color: transparent;
        padding: 0;
        margin-top: 10px;
        box-shadow: none;
    }

    .c-header-menu-link.sub-menu.active .c-header-menu-link-sub-container {
        display: flex !important;
    }

    .c-header-menu-link:hover .c-header-menu-link-sub-container {
        display: none !important;
    }

    /* Дополнительно: убираем затемнение фона на мобилках если есть */
    .c-header-menu-link-sub-container::before {
        display: none;
    }
    .c-header-wrapper {
        height: 75px;
    }
    .c-header-menu-link {
        height: auto;
    }
    .c-header-menu-link {
        margin: 0 0 18px 0;
    }
    .c-header-menu.active {
        gap: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .c-header-menu-link-sub-container {
        transition: none;
    }
    .c-header-menu-inner {
        background-color: transparent;
        position: relative;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        width: 100%;
        transform: translateX(0);
        padding: 0;
        top: 0;
        left: 0;
        gap: 10px;
    }
    .c-header-burger {
        display: block;
    }

    .b-title {
        font-size: 51px;
    }

    .margin-title {
        margin-bottom: 30px !important;
    }

    .yandex-map {
        height: 600px;
    }

    .main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .main-header__title {
        font-size: 50px;
    }

    .main-header__line {
        width: 129px;
        height: 2px;
    }

    .main-header__line.max {
        height: 2px;
    }

    .indent {
        height: 60px;
    }

    .main-header__description {
        font-size: 22px;
    }

    .b-btn.hide-mobile {
        display: none;
    }

    .b-btn.show-mobile {
        display: block;
    }

    .c-header-menu {
        display: none;
        position: absolute;
        top: 88px;
        padding: 20px;
        height: calc(100vh - 40px);
        left: 0;
        max-width: 100%;
        background-color: white;
    }

    .c-header-menu-link.sub-menu {
        color: black;
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        font-size: 18px;
        gap: 10px;
        margin-bottom: 18px;
    }

    .c-header-menu-link.sub-menu.active .c-header-menu-link-sub-container {
        display: flex !important;
    }

    .c-header-menu-link.sub-menu.active .c-header-menu-link-title::after {
        transform: rotate(180deg);
    }

    .c-header-menu-link {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .c-header-menu-link.sub-menu::before {
        display: none;
    }

    .c-header-menu-link.sub-menu:hover .c-header-menu-link-sub-container {
        display: none;
    }

    .c-header-menu-link-sub,
    .c-header-menu-link {
        color: black;
    }

    .c-header-menu-link-sub-container {
        background-color: transparent;
        position: relative;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        width: 100%;
        transform: translateX(0);
        padding: 0;
        top: 0;
        left: 0;
        gap: 10px;
        display: none;
    }

    .fade-in-sticky .c-header-wrapper,
	.header-white .c-header-wrapper {
        background-color: white !important;
    }

    .fade-in-sticky .c-header-burger,
	.header-white .c-header-burger,
    .fade-in-sticky .c-header-info-phone,
	.header-white .c-header-info-phone {
        background-color: #00A769;
    }

    .c-header-wrapper {
        padding: 0 20px;
    }

    .c-header-menu-link.sub-menu::after {
        position: absolute;
        top: 2px;
        right: 0px;
    }

    .c-header-menu-link.sub-menu::after {
        display: none;
    }

    .c-header-menu-link-title::after {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        mask-image: url('/local/templates/ozera/assets/images/new-main-page/arrow-header.svg');
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
        background-color: #00A769;
        margin-left: 6px;
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .b-title {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 35px;
    }
    .swiper-pagination.swiper-pagination-fraction {
        color: #000000;
        font-family: 'SourceSerif4_36pt-Regular';
        line-height: 35px;
    }
    .c-header-info-phone {
        display: block;
    }

    .c-header-line {
        top: 70px;
        max-width: 100%;
        width: calc(100% - 40px);
        left: 20px;
        margin: initial;
    }

    .c-header-menu {
        display: none;
        position: absolute;
        top: 72px;
        padding: 20px;
        height: calc(100vh - 40px);
        left: 0;
        background-color: white;
    }

    .c-header-info-tg,
    .c-header-info-wa,
    .c-header-info-btn {
        display: none;
    }


    /* .main-wrapper.transparent {
        margin-top: -155px;
    } */

    .main-header__container-desc .b-btn {
        display: none;
    }

    .margin-title {
        margin-bottom: 10px !important;
    }

    .yandex-map {
        height: 320px;
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .main-header.max {
        margin-bottom: 10px;
    }

    .main-header {
        gap: 15px;
    }

    .indent {
        height: 30px;
    }

    .main-header__title {
        font-size: 28px;
        font-family: 'SourceSerif4_36pt-Medium';
        margin: 0;
    }

    .main-header__description {
        font-size: 18px;
    }

    .button-next,
    .button-prev {
        width: 40px;
        height: 40px;
        top: 5px;
        right: 5px;
    }

    .button-prev {
         right: 50px;
    }
}


@media (min-width: 769px) {
	.d-hide {
		display: none;
}
}
@media (max-width: 768px) {
    .m-hide {
		display: none;
    }
    .btn--info {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        order: 1;
    }
}