@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-bg: #FCF3E9;
    --color-text: #231F20;
    --color-primary: #71283E;
    --color-primary-dark: #591B2F;
    --color-surface: #EFE2D5;
}

html {
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Poppins", sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: 18px;
    padding-top: 88px;
}

body.menu_active {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
}

* {
    box-sizing: border-box;
}

*:focus:not(:focus-visible) {
    outline: none;
}

label.error {
    display: none !important;
}

.error {
    border-color: red !important;
}

.valid {
    border-color: green !important;
}

button,
a {
    cursor: pointer;
    transition: .3s;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin-top: 0;
}

.flex {
    display: flex;
}

.row.flex::before,
.row.flex::after {
    display: none;
}

.flex.center {
    align-items: center;
}

.box {
    margin-bottom: -30px;
}

.box>div {
    margin-bottom: 30px;
}

.container {
    padding: 0 40px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1676px;
}

header {
    padding: 17px 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    left: 0;
    background-color: var(--color-bg);
    transition: transform .3s;
}

header.header_hidden {
    transform: translateY(-100%);
}

.header_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100000;
}

.header_nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top_nav {
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.top_nav a {
    color: inherit;
}

.top_nav a:hover {
    text-decoration: underline;
}

.btn {
    padding: 13px 30px;
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    text-align: center;
    transition: .3s;
    cursor: pointer;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn.outline {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn.primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn.outline:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn.primary:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
}

.cart_icn,
.user_icn {
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.cart_icn:hover,
.user_icn:hover {
    transform: scale(.95);
}

.text-center {
    text-align: center;
}

.section {
    position: relative;
    margin: 150px 0;
}

.intro {
    padding-top: 210px;
    padding-bottom: 200px;
    height: calc(100dvh + 152px);
    max-width: 2000px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 190px;
    max-height: 1000px;
    min-height: 820px;
    margin-top: 0 !important;
}

.intro_cover {
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(100% - 80px);
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    margin: 0 auto;
    transform: translateX(-50%);
    border-radius: 20px;
    background-color: #857f79;
}

.intro_cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro .container {
    position: relative;
    z-index: 100;
    padding: 0 80px;
}

.intro_cover img {
    position: absolute;
    z-index: 100;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    transform: translateY(50%);
}

.intro_title {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.intro_title h1 {
    color: #fff;
    font-size: 70px;
    line-height: 1.25;
    font-weight: bold;
    margin: 0;
}

.after_h1 {
    font-size: 20px;
    color: #fff;
    max-width: 670px;
    margin: 0 auto;
    line-height: 1.5;
}

.highlight_wrp {
    text-align: center;
}

.highlight_wrp h2 {
    margin: 0;
    font-weight: 400;
    font-size: 125px;
    line-height: 158px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.highlight_cards {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.highlight_card {
    max-width: 300px;
    padding: 53px 35px;
    border-radius: 20px;
    background-color: var(--color-surface);
}

.highlight_card_title {
    margin: 0;
    padding: 32px 0;
    margin-bottom: 30px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    font-size: 34px;
    line-height: 44px;
    color: var(--color-primary-dark);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.highlight_card_text {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: var(--color-primary-dark);
}

.highlight_card_main {
    max-width: 670px;
    padding: 40px 45px;
    padding-top: calc(var(--highlight-overlap, 310px) + 170px);
    background-color: var(--color-surface);
    border-radius: 20px;
    margin-top: calc(-1 * var(--highlight-overlap, 310px));
}

.highlight_card_main_text {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.cover_image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.heading {
    text-align: center;
    margin-bottom: 50px;
    max-width: 1282px;
    margin-left: auto;
    margin-right: auto;
}

.heading h2,
.heading .h2 {
    margin: 0;
    font-weight: 400;
    font-size: 80px;
    line-height: 90px;
}

.heading .btn {
    margin-top: 30px;
}

.target_flex {
    gap: 50px;
    display: flex;
    flex-direction: column;
}

.target_item {
    display: flex;
    gap: 25px;
}

.target_desc {
    flex: 1;
    max-width: 460px;
    padding: 67px 52px;
    border-radius: 30px;
    background-color: var(--color-surface);
    align-self: center;
}

.target_desc_title {
    margin-bottom: 100px;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
}

.target_desc_text {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 30px;
}

.target_img {
    flex: 1;
    max-width: 620px;
    min-height: 800px;
    overflow: hidden;
    border-radius: 20px;
}

.target_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.target_items_wrp {
    max-width: 460px;
    flex: 1;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: var(--color-primary);
    border-radius: 30px;
    align-self: center;
}

.target_items {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: var(--color-surface);
    text-align: center;
}

.target_items li::after {
    content: '';
    width: 50px;
    height: 1px;
    background-color: var(--color-surface);
    display: block;
    margin: 40px auto;
}

.target_items li:last-child::after {
    display: none;
}

.preview_3d_all {
    overflow: hidden;
}

.preview3d-layout {
    display: flex;
    gap: 25px;
    min-height: 600px;
}

.preview3d-sidebar {
    width: 280px;
    flex-shrink: 0;
    overflow-y: auto;
    max-height: 600px;
}

.preview3d-product {
    margin-bottom: 10px;
}

.preview3d-product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background-color: var(--color-surface);
    border-radius: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .3s;
}

.preview3d-product-header:hover {
    border-color: var(--color-primary);
}

.preview3d-product.active .preview3d-product-header {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.preview3d-product-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.preview3d-product-name {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
}

.preview3d-product-arrow {
    transition: transform .3s;
    font-size: 14px;
}

.preview3d-product.active .preview3d-product-arrow {
    transform: rotate(180deg);
}

.preview3d-variants {
    display: none;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 4px;
}

.preview3d-product.active .preview3d-variants {
    display: flex;
}

.preview3d-variant {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    transition: border-color .3s;
    flex: none;
}

.preview3d-variant:hover {
    border-color: var(--color-primary-dark);
}

.preview3d-variant.active {
    border-color: var(--color-primary);
}

.preview3d-variant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview3d-canvas-wrap {
    flex: 1;
    border-radius: 20px;
    background-color: var(--color-surface);
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.preview3d-canvas-wrap canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.preview3d-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(239, 226, 213, 0.8);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary-dark);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 10;
}

.preview3d-zoom-controls {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
}

.preview3d-zoom-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-primary-dark);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    line-height: 1;
}

.preview3d-zoom-btn:hover {
    background: rgba(255, 255, 255, 1);
}

.review_rating {
    background-image: url(../img/review.svg);
    width: 212px;
    height: 109px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-primary);
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
}

.reviews_cards {
    margin-bottom: 60px;
}

.reviews_cards .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.mobile_slider .swiper-pagination {
    display: none;
}

.review_card {
    width: calc(33.333% - 17px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px 30px;
    gap: 24px;
    border-radius: 20px;
    border: 1px solid var(--color-primary-dark);
}

.references_list .reviews_cards {
    margin-top: 140px;
}

.references_list .review_card {
    gap: 60px;
}

.review_card span {
    font-size: 26px;
    color: var(--color-text);
    display: block;
    line-height: 1.5;
}

.review_card p {
    font-size: 26px;
    color: var(--color-primary);
    margin: 0;
    font-weight: 600;
}

.review_card_filled {
    background-color: var(--color-primary);
}

.review_card_filled span {
    color: var(--color-bg);
}

.review_card_filled p {
    color: var(--color-bg);
}

.materials_slider_el .swiper-slide {
    width: 417px;
}

.materials_list {
    position: relative;
    padding: 240px 0;
}

.materials_bg {
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(100% - 48px);
    height: 100%;
    transform: translateX(-50%);
    border-radius: 20px;
    overflow: hidden;
}

.materials_bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.material_item {
    display: block;
    position: relative;
    overflow: hidden;
    height: 383px;
}

.material_item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.material_info {
    position: absolute;
    top: 50%;
    width: calc(100% - 72px);
    height: calc(100% - 72px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-color: #fcf3e9cc;
    border-radius: 20px;
    transition: .3s;
    opacity: 0;
}

.material_info p {
    margin: 0;
    font-size: 26px;
    color: var(--color-text);
    margin-bottom: 6px;
}

.material_info span {
    font-size: 14px;
    display: block;
    text-transform: uppercase;
    color: var(--color-text);
}

.material_item:hover .material_info {
    opacity: 1;
}

.faq_item {
    padding: 50px 40px;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid var(--color-primary-dark);
    margin-bottom: 10px;
}

.faq_body {
    display: none;
    padding-top: 30px;
    max-width: 940px;
    font-size: 20px;
    color: var(--color-primary-dark);
    line-height: 1.5;
}

.faq_header {
    font-size: 24px;
    color: var(--color-primary-dark);
    font-weight: bold;
    position: relative;
    padding-right: 40px;
}

.faq_header::after {
    content: '+';
    font-weight: normal;
    position: absolute;
    top: 1px;
    right: 0;
}

.faq_item.opened .faq_body {
    display: block;
}

.faq_item.opened {
    padding-top: 33px;
    padding-bottom: 33px;
    background-color: var(--color-surface);
    border-radius: 20px;
    border-bottom-color: var(--color-surface);
}

.faq_item.opened .faq_header::after {
    content: '-';
}


.products_filter_toggle {
    display: none;
}

.products_flex {
    display: flex;
    gap: 80px;
}

.products_filter {
    width: 300px;
    flex-shrink: 0;
}

.products_filter_inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
    max-height: calc(100dvh - 40px);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(113, 40, 62, 0.4) transparent;
}

.products_filter_inner::-webkit-scrollbar {
    width: 6px;
}

.products_filter_inner::-webkit-scrollbar-track {
    background: transparent;
}

.products_filter_inner::-webkit-scrollbar-thumb {
    background: rgba(113, 40, 62, 0.4);
    border-radius: 3px;
}

.products_filter_inner::-webkit-scrollbar-thumb:hover {
    background: rgba(113, 40, 62, 0.6);
}

.filter_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter_group_title {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px;
}

.filter_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    cursor: pointer;
}

.filter_item input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 13px;
    height: 13px;
    border: 1px solid #231f20;
    border-radius: 2px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.filter_item input[type="checkbox"]:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.filter_item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.products_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    flex: 1;
}

.product_card {
    width: calc((100% - 72px) / 4);
    background: var(--color-surface);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: .3s;
}

.product_card:hover {
    transform: translateY(-4px);
}

.product_card_img {
    width: 100%;
    height: 205px;
    border-radius: 20px;
    overflow: hidden;
}

.product_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product_card_title {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

.product_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product_card_price {
    font-size: 18px;
}

.btn.primary.small {
    font-size: 14px;
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 65px;
}

.pd_breadcrumb {
    font-size: 16px;
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd_breadcrumb a:hover {
    text-decoration: underline;
}

.pd_flex {
    display: flex;
    gap: 60px;
}

.pd_image {
    flex: 1;
    width: 786px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.pd_image a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.pd_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .3s;
}

.pd_image a:hover img {
    transform: scale(1.03);
}

.pd_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pd_title {
    font-size: 40px;
    line-height: 1.05;
    margin: 0;
    font-weight: bold;
}

.pd_specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd_spec_row {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.pd_spec_label {
    width: 200px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.pd_spec_value {
    color: var(--color-text);
}

.pd_price_wrp {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 22px 0;
}

.pd_price_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pd_price_label,
.pd_price_value {
    font-size: 30px;
    font-weight: 700;
}

.pd_price_label {
    color: var(--color-primary-dark);
}

.pd_price_value {
    color: var(--color-text);
}

.pd_cart {
    background-color: var(--color-surface);
    border-radius: 20px;
    padding: 19px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd_cart_label {
    font-size: 16px;
    margin: 0;
}

.pd_cart_row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pd_qty {
    display: flex;
    align-items: center;
}

.pd_qty_btn {
    width: 54px;
    height: 54px;
    border: 1px solid var(--color-text);
    background: none;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    color: black;
}

.pd_qty_btn:hover {
    background-color: var(--color-surface);
}

.pd_qty_minus {
    border-radius: 50px 0 0 50px;
}

.pd_qty_plus {
    border-radius: 0 50px 50px 0;
}

.pd_qty_value {
    width: 54px;
    height: 54px;
    border-top: 1px solid var(--color-text);
    border-bottom: 1px solid var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pd_add_btn {
    flex: 1;
    height: 54px;
    border-radius: 65px;
}

.content_header {
    max-width: 1280px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.content_header h1 {
    font-size: 80px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 30px;
}

.content_meta {
    font-size: 18px;
    color: #888;
}

.content_cover {
    height: 800px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.content_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content_section .content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.content p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0 0 40px;
}

.content h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.25;
    margin: 48px 0 20px;
}

.content h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    margin: 40px 0 16px;
}

.content h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.35;
    margin: 36px 0 14px;
}

.content h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 32px 0 12px;
}

.content h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 28px 0 10px;
}

.content ul,
.content ol {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 24px;
    padding-left: 24px;
}

.content li {
    margin-bottom: 8px;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 18px;
}

.content th,
.content td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid #e0e0e0;
}

.content th {
    font-weight: 600;
    background: var(--color-surface);
}

.content tr:last-child td {
    border-bottom: none;
}


.blog_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.blog_card {
    width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    color: inherit;
}

.blog_card_img {
    width: 100%;
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 8px;
}

.blog_card_img img {
    width: 100%;
    transition: .3s;
    height: 100%;
    object-fit: cover;
}

.blog_card:hover .blog_card_img img {
    transform: scale(1.04);
}

.blog_card_body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog_card_meta {
    font-size: 18px;
    color: #231f20;
}

.blog_card_title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3125;
    color: #231f20;
    margin: 0;
}


.contact_info_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 91px;
}

.contact_info_flex .heading {
    text-align: left;
    flex-shrink: 0;
    margin-left: 0;
}

.contact_info_list {
    flex: 1;
    max-width: 785px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact_info_row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding-bottom: 30px;
    border-bottom: 1px solid #231f20;
}

.contact_info_row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.contact_info_label {
    width: 350px;
    flex-shrink: 0;
    font-size: 32px;
    line-height: 1.3125;
    color: var(--color-primary-dark);
}

.contact_info_value {
    font-size: 20px;
    line-height: 1.5;
    color: #000;
    width: 100%;
}

.contact_flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.contact_flex .heading {
    text-align: left;
    max-width: 465px;
    margin-left: 0;
}

.after_h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    margin-top: 30px;
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

.page_intro .after_h2 {
    margin-top: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    text-align: center;
}

.contact_form_wrp {
    max-width: 785px;
    width: 100%;
}

.contact_form_wrp form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
}

input,
textarea {
    background: none;
    padding: 0 38px;
    width: 100%;
    height: 54px;
    border: 1px solid var(--color-primary-dark);
    border-radius: 100px;
    font-size: 20px;
    color: var(--color-primary-dark);
    transition: .3s;
}

textarea {
    resize: none;
    height: 277px;
    border-radius: 20px;
    padding-top: 20px;
    padding-bottom: 30px;
}

::placeholder {
    color: var(--color-primary-dark);
}

:focus::placeholder {
    color: transparent;
}

.newsletter_element {
    background-image: url(../img/newsletter.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    text-align: center;
    padding: 40px;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.newsletter_element h3 {
    margin: 0;
    color: var(--color-bg);
    font-size: 40px;
    font-weight: 500;
}

.newsletter_element form {
    width: 100%;
    max-width: 733px;
    position: relative;
}

.newsletter_element form input {
    background-color: var(--color-bg);
    border-color: var(--color-bg);
    padding-right: 160px;
}

.newsletter_element form input::placeholder {
    color: var(--color-primary-dark);
}

.newsletter_element button {
    position: absolute;
    z-index: 100;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.logos_slider .swiper-wrapper {
    align-items: center;
}

.logos_section {
    margin-bottom: 80px;
}

.footer_flex {
    margin-bottom: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer_column>p {
    margin-bottom: 18px;
    font-size: 20px;
    color: var(--color-text);
    line-height: 1.4;
}

.footer_column ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 20px;
}

.footer_column ul a:hover {
    text-decoration: underline;
}

.footer_contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_contact>a {
    font-size: 38px;
    color: var(--color-primary);
    font-weight: bold;
}

.footer_contact ul {
    margin-top: 14px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    gap: 22px;
}

.footer_contact ul a {
    transition: .3s;
    display: flex;
    align-items: center;
}

.footer_contact ul a:hover {
    opacity: .8;
}

.footer_cover {
    max-width: 2000px;
    margin: 0 auto;
    width: calc(100% - 48px);
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 92px 60px;
}

.footer_cover_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer_cover_logo {
    width: 100%;
    position: relative;
    z-index: 100;
    height: auto;
    display: flex;
}

.footer_cover p {
    margin: 0;
    margin-top: 55px;
    color: var(--color-bg);
    position: relative;
    z-index: 100;
    text-align: center;
    font-size: 20px;
}

.logos_slider img {
    max-width: 100%;
    height: auto;
}

.values_grid_section .heading {
    margin-bottom: 76px;
}

.values_grid_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 100px;
}

.values_grid_grid>* {
    width: calc(25% - 18px);
}

.values_grid_card {
    border-radius: 30px;
    padding: 45px 52px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.values_grid_card_primary {
    background-color: var(--color-primary);
}

.values_grid_card_dark {
    background-color: var(--color-primary-dark);
}

.values_grid_card_num {
    font-size: 80px;
    line-height: 1.125;
    color: var(--color-surface);
    font-weight: 400;
}

.values_grid_card_text {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-surface);
    font-weight: 400;
}

.values_grid_img {
    border-radius: 20px;
    overflow: hidden;
}

.values_grid_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page_intro {
    margin-top: 130px;
}

.page_intro h1 {
    font-weight: 400;
    font-size: 80px;
    line-height: 90px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
}

.page_intro_cover {
    height: 750px;
    overflow: hidden;
    border-radius: 20px;
}

.page_intro_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page_intro_texts {
    margin-top: 60px;
    display: flex;
    gap: 100px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
}

.page_intro_texts>div {
    flex: 1;
}



.values_grid_section .container {
    max-width: 100%;
}

.entities_section {
    background-color: #efe2d5;
    border-radius: 20px;
    padding-top: 150px;
    padding-bottom: 150px;
}

.entities_section .heading {
    margin-bottom: 100px;
}

.entities_list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1282px;
    margin: 0 auto;
}

.entities_card {
    display: flex;
    align-items: center;
    gap: 85px;
}

.entities_card_img {
    width: 387px;
    min-width: 387px;
    height: 457px;
    border-radius: 20px;
    overflow: hidden;
}

.entities_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.entities_card_info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.entities_card_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 30px 0;
}

.entities_card_name {
    font-weight: 400;
    font-size: 80px;
    line-height: 90px;
    color: #591b2f;
    margin: 0;
}

.entities_card_role {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.3;
    color: #591b2f;
    margin: 0;
}

.entities_card_text {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #231f20;
}

.steps_section .heading {
    margin-bottom: 60px;
}

.steps_list {
    display: flex;
    flex-direction: column;
}

.steps_item {
    border-bottom: 1px solid #231f20;
    padding: 60px 0;
}

.steps_item:first-child {
    padding-top: 0;
}

.steps_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.steps_item_row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.steps_item_visual {
    position: relative;
    width: 387px;
    min-width: 387px;
    height: 387px;
    flex: none;
}

.steps_item_img {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.steps_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.steps_item_num {
    width: 250px;
    height: 250px;
    border-radius: 30px;
    background-color: #71283e;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 400;
    color: #efe2d5;
    line-height: 1;
}

.steps_item_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.steps_item_title {
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    margin: 0;
    font-weight: bold;
}

.steps_item_text {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000;
}

.benefits_section .heading {
    margin-bottom: 60px;
}

.benefits_cards .swiper-wrapper {
    display: flex;
    gap: 24px;
}

.benefits_card {
    flex: 1;
    min-width: 0;
    background-color: #efe2d5;
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    gap: 30px;
    min-height: 370px;
    justify-content: center;
}

.benefits_card_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    min-width: 230px;
}

.benefits_card_header::before,
.benefits_card_header::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.benefits_card_header h3 {
    font-weight: 400;
    font-size: 34px;
    line-height: 1.3;
    color: #591b2f;
    margin: 0;
}

.benefits_card_text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #591b2f;
}

.references_content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.references_img {
    width: 760px;
    min-width: 760px;
    height: 507px;
    border-radius: 20px;
    overflow: hidden;
}

.references_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.references_text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.references_title {
    font-size: 40px;
    line-height: 1.05;
    color: var(--color-primary);
    margin: 0;
    font-weight: 400;
}

.references_desc {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

.showroom_section .heading {
    margin-bottom: 60px;
}

.showroom_section .after_h2 {
    max-width: 1000px;
    margin: 30px auto 0;
    text-align: center;
}

.showroom_gallery {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
}

.showroom_gallery_item {
    flex: 1;
    height: 381px;
    border-radius: 20px;
    overflow: hidden;
    display: block;
}

.showroom_gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .3s;
}

.showroom_gallery_item:hover img {
    transform: scale(1.03);
}

.gallery_slider_wrp {
    display: flex;
    align-items: center;
    gap: 24px;
}

.gallery_slider {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
}

.gallery_slider .swiper-slide {
    height: 324px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery_slider .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery_slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .3s;
}

.gallery_slider .swiper-slide:hover img {
    transform: scale(1.03);
}

.gallery_slider_btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color .3s;
}

.gallery_slider_btn:hover {
    background-color: var(--color-primary-dark);
}

.gallery_slider_btn img {
    height: auto;
}

.gallery_slider_pagination {
    display: none;
}

.case_studies_list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.case_study_item {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--color-text);
}

.case_study_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.case_study_content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.case_study_img {
    width: 760px;
    min-width: 760px;
    height: 507px;
    border-radius: 20px;
    overflow: hidden;
}

.case_study_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case_study_text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case_study_title {
    font-size: 40px;
    line-height: 1.05;
    color: var(--color-primary);
    margin: 0;
    font-weight: 400;
}

.case_study_desc {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text);
}

.case_study_desc p {
    margin-bottom: 20px;
}

.case_study_desc p:last-child {
    margin-bottom: 0;
}

.case_study_gallery {
    display: flex;
    gap: 24px;
}

.case_study_gallery_item {
    flex: 1;
    height: 381px;
    border-radius: 20px;
    overflow: hidden;
}

.case_study_gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu_toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1001;
}

.menu_toggle img {
    display: block;
    width: 32px;
    height: auto;
}

.map_wrp {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    aspect-ratio: 16/9;
    max-height: 670px;
}

.map_wrp iframe {
    width: 100%;
    height: 100%;
}

.content ul {
    list-style-type: disc;
}

.more_articles_section .container {
    max-width: 1600px;
}

header+.section {
    margin-top: 80px;
}

.map_page_body {
    padding-top: 0;
}

.map_page {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    background: var(--color-bg);
    overflow: hidden;
}

.map_container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.map_topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 0;
    flex-shrink: 0;
}

.map_topbar .logo img {
    height: 40px;
    width: auto;
}

.map_topbar_center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.map_topbar_or {
    font-size: 16px;
    color: var(--color-text);
}

.map_search_wrp {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 450px;
}

.map_search_wrp .map_search_input {
    width: 100%;
}

.map_search_input {
    height: 54px;
    padding: 0 38px;
    border: 1px solid var(--color-primary-dark);
    border-radius: 100px;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: var(--color-primary-dark);
    background: none;
    transition: .3s;
}

.map_search_dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: var(--color-bg);
    border: 1px solid var(--color-primary-dark);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    z-index: 1100;
    max-height: 280px;
    overflow-y: auto;
}

.map_search_dropdown.visible {
    display: flex;
}

.map_search_dropdown_item {
    padding: 10px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: var(--color-text);
    cursor: pointer;
    transition: background .15s;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.map_search_dropdown_item:hover,
.map_search_dropdown_item.active {
    background: var(--color-surface);
}

.map_search_dropdown_item_main {
    font-weight: 500;
    color: var(--color-primary-dark);
}

.map_search_dropdown_item_sub {
    font-size: 13px;
    color: var(--color-text);
    opacity: .65;
}

.map_body {
    display: flex;
    flex: 1;
    min-height: 0;
}

.map_sidebar {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 0 20px 0 0;
}

.map_back {
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    padding: 10px 0 16px;
    flex-shrink: 0;
}

.map_back:hover {
    color: var(--color-primary);
}

.map_sidebar_list {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
}

.map_sidebar_card {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-text);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    align-items: flex-start;
    transition: .3s;
}

.map_sidebar_card:last-child {
    border-bottom: none;
}

.map_sidebar_card.active {
    background: var(--color-surface);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 0;
}

.map_sidebar_card_name {
    font-weight: 600;
    font-size: 15px;
}

.map_sidebar_card_details p {
    margin: 0;
}

.map_sidebar_card a {
    color: inherit;
}

.map_sidebar_card a:hover {
    color: var(--color-primary);
}

.map_canvas {
    flex: 1;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.map_canvas .mapboxgl-canvas {
    outline: none;
}

.map_marker {
    width: 36px;
    height: 46px;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.map_popup_nav {
    color: var(--color-primary);
    font-weight: 500;
}

.map_mobile_toggle {
    display: none;
}

.map_sidebar_mobile_controls {
    display: none;
}