
.home_slide_arrow {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 50%;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .25s ease, background-color .25s ease;
    pointer-events: auto;
}

.home_slide_arrow * {
    pointer-events: none;
}

.home_slide_arrow img {
    width: 18px;
    height: 18px;
    display: block;
    filter: invert(74%) sepia(15%) saturate(1027%) hue-rotate(3deg) brightness(95%) contrast(95%);
}

.home_slide_arrow:hover {
    transform: translateY(-50%) scale(1.08);
    background: rgba(255,255,255,.28);
}

.home_slide_prev {
    left: 34px;
}

.home_slide_next {
    right: 34px;
}

@media (max-width: 575px) {
    .home_slide_arrow {
        width: 36px;
        height: 36px;
    }

    .home_slide_arrow img {
        width: 14px;
        height: 14px;
    }

    .home_slide_prev {
        left: 14px;
    }

    .home_slide_next {
        right: 14px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    font-family: "Urbanist";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding:0; margin:0;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #efefef;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
    font-optical-sizing: auto;
}

.site_header {
    width: 100%;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    background: rgba(0,0,0,.50);
}

.site_header_inner {
    width: min(1180px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site_logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.site_logo img {
    width: 170px;
    height: auto;
    display: block;
}

.site_nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu > li {
    position: relative;
}

.menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}

.menu a:hover {
    color: #d6b56d;
}

.menu > li > ul {
    min-width: 210px;
    position: absolute;
    top: calc(100% + 22px);
    left: 0;
    transform: translateY(12px);
    z-index: 60;
    padding: 13px 0;
    margin: 0;
    list-style: none;
    background: rgba(0,0,0,.88);
    border: 1px solid rgba(255,255,255,.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.menu > li > ul::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    height: 22px;
}

.menu > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menu > li > ul a {
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.86);
}

.site_header_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex: 0 0 auto;
}

.language {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.language_button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: 1;
    cursor: pointer;
}

.language img {
    width: 26px;
    height: 26px;
    display: block;
    filter: invert(78%) sepia(8%) saturate(1851%) hue-rotate(3deg) brightness(92%) contrast(95%);
}

.language_menu {
    min-width: 150px;
    position: absolute;
    top: calc(100% + 22px);
    right: 0;
    z-index: 65;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    background: rgba(0,0,0,.88);
    border: 1px solid rgba(255,255,255,.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.language_menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    height: 22px;
}

.language:hover .language_menu,
.language:focus-within .language_menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.language_menu a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    color: rgba(255,255,255,.86);
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease;
}

.language_menu a strong {
    min-width: 16px;
    font-weight: 700;
}

.language_menu a span {
    font-weight: 500;
    color: rgba(255,255,255,.70);
}

.language_menu a:hover span {
    color: #d6b56d;
}

.language_menu a:hover {
    color: #d6b56d;
}

.language_button i,
.menu i {
    color: #d6b56d;
    font-size: 13px;
}

.mobile_menu_button {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
}

.mobile_menu_button span {
    width: 25px;
    height: 2px;
    display: block;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}

.mobile_menu_button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile_menu_button.active span:nth-child(2) {
    opacity: 0;
}

.mobile_menu_button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.home_slide {
    --big-text-x: 0px;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    position: relative;
    overflow: hidden;
    background: #0b0b0b;
    cursor: grab;
    z-index: 1;
}

.home_slide:active {
    cursor: grabbing;
}

.home_slide_list {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.home_slide_item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: visible;
    z-index: 1;
    pointer-events: none;
    transition: opacity 1800ms ease;
}

.home_slide_item.active {
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

.home_slide_item.leaving {
    opacity: 0;
    z-index: 2;
}

.home_slide_item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.46) 42%, rgba(0,0,0,.30) 100%);
}

.home_slide_item::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    z-index: 3;
    background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.home_slide_item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transform-origin: center;
}

.home_slide_item.active img {
    animation: homeSlideZoom 11800ms linear forwards;
}

.home_slide_item:not(.active):not(.leaving) img {
    animation: none;
}

@keyframes homeSlideZoom {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1.015);
    }
}

.home_slide_content {
    width: min(1320px, calc(100% - 30px));
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    padding-left: 70px;
    box-sizing: border-box;
    color: #fff;
}

.slide_title {
    display: block;
    max-width: 60%;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(34px, 4.2vw, 72px);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: -1.8px;
    margin: 0 0 18px 0;
}

.home_slide_content span {
    display: block;
    margin-top: 15px;
    font-size: 32px;
    max-width: 60%;
    line-height: 1.4;
    font-weight: 300;
    font-family: "Urbanist", sans-serif;
}

.home_slide_content a {
    width: max-content;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    background: #d6b56d;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top:30px;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.home_slide_content a::after {
    content: "»";
    font-size: 18px;
    line-height: 1;
}

.home_slide_content a:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #171719;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.home_slide_content a:hover::after {
    color: #d6b56d;
}

.home_slide_big_text {
    position: absolute;
    left: 50%;
    bottom: -24px;
    z-index: 4;
    transform: translateX(calc(-50% + var(--big-text-x)));
    display: block;
    width: max-content;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(74px, 13vw, 235px);
    font-weight: 700;
    line-height: .8;
    letter-spacing: -9px;
    color: rgba(255,255,255,.14);
    white-space: nowrap;
    pointer-events: none;
    transition: transform .28s ease-out;
}

.mermerBlok {
    width: 300px;
    height: 300px;
    position: absolute;
    left: 50%;
    top: -150px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}


.mermerBlok img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.home_spot_1 {
    width: 100%;
    position: relative;
    z-index: 20;
    margin-top: 0;
    padding: 85px 0 105px 0;
    background: #fff;
    overflow: visible;
}

.home_spot_1_inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(520px, 1fr);
    align-items: center;
    gap: clamp(44px, 6vw, 92px);
    position: relative;
    z-index: 2;
}

.home_spot_1_text {
    min-width: 0;
}

.section_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 19px;
    color: #1d1d1f;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.section_eyebrow img {
    width: 21px;
    height: 21px;
    display: block;
    object-fit: contain;
}

.home_spot_1_text > b {
    display: block;
    max-width: 640px;
    margin: 0 0 30px 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(38px, 3.45vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.4px;
}

.home_spot_1_text > span {
    display: block;
    max-width: 615px;
    color: #202020;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

.home_spot_1_text > a {
    width: max-content;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0 24px;
    background: #d6b56d;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform .25s ease, background-color .25s ease;
}

.home_spot_1_text > a::after {
    content: "»";
    font-size: 25px;
    line-height: 1;
    margin-top: -2px;
}

.home_spot_1_text > a:hover {
    transform: translateY(-2px);
    background: #c8a354;
}

.home_spot_1_visual {
    position: relative;
    min-height: 530px;
}

.home_spot_1_visual > img {
    width: 100%;
    max-width: 530px;
    display: block;
    margin-left: auto;
    height: auto;
    position: relative;
    z-index: 2;
}

.experience_box {
    position: absolute;
    left: 0;
    top: 118px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    pointer-events: none;
}

.experience_box .big {
    display: block;
    color: #d6b56d;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(104px, 9.4vw, 158px);
    font-weight: 600;
    line-height: .78;
    letter-spacing: -6px;
    -webkit-text-stroke: 5px #fff;
    text-stroke:5px #fff;
}

.experience_box .small {
    display: block;
    width: auto;
    padding-bottom: 0;
    color: #1d1d1f;
    font-family: "Urbanist", sans-serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.1;
}

@media (max-width: 991px) {
    .home_spot_2 {
        padding: 74px 0 80px 0;
    }

    .home_spot_2_inner {
        width: calc(100% - 44px);
    }

    .home_spot_2_head {
        margin-bottom: 40px;
    }

    .home_spot_2_head b {
        font-size: clamp(36px, 6vw, 50px);
    }

    .home_spot_2_all {
        min-width: 170px;
        min-height: 58px;
        margin-top: 44px;
        font-size: 14px;
    }

    .home_spot_2_slider {
        --hs2-per-view: 3;
        --hs2-gap: 24px;
    }
    .home_spot_1 {
        margin-top: 0;
        padding: 120px 0 86px 0;
    }

    .home_spot_1_inner {
        width: calc(100% - 44px);
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .home_spot_1_text > b {
        max-width: 760px;
        font-size: clamp(36px, 6.2vw, 50px);
    }

    .home_spot_1_text > span {
        max-width: 760px;
    }

    .home_spot_1_visual {
        width: min(560px, 100%);
        min-height: auto;
        margin: 0 auto;
    }

    .home_spot_1_visual > img {
        max-width: 100%;
        margin: 0 auto;
    }

    .experience_box {
        left: 24px;
        top: 34px;
        align-items: flex-start;
        gap: 10px;
    }

    .experience_box .big {
        font-size: clamp(82px, 15vw, 118px);
    }

    .experience_box .small {
        width: auto;
        font-size: 22px;
    }
    .home_slide {
        height: 75vh;
        min-height: 560px;
    }

    .site_header {
        height: 110px;
    }

    .site_header_inner {
        width: calc(100% - 34px);
        gap: 16px;
    }

    .site_logo img {
        width: 165px;
    }

    .site_nav {
        width: min(360px, calc(100% - 34px));
        position: absolute;
        top: calc(100% + 1px);
        right: 17px;
        display: block;
        background: rgba(0,0,0,.92);
        border: 1px solid rgba(255,255,255,.10);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }

    .site_nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu {
        display: block;
        padding: 12px 0;
    }

    .menu > li {
        width: 100%;
    }

    .menu a {
        justify-content: space-between;
        padding: 15px 18px;
        font-size: 15px;
    }

    .menu > li > ul {
        min-width: 0;
        position: static;
        transform: none;
        padding: 0;
        border: 0;
        background: rgba(255,255,255,.06);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }

    .menu > li:hover > ul,
    .menu > li:focus-within > ul {
        display: block;
        transform: none;
    }

    .menu > li > ul::before {
        display: none;
    }

    .menu > li > ul a {
        padding: 12px 26px;
        font-size: 14px;
        color: rgba(255,255,255,.76);
    }

    .mobile_menu_button {
        display: inline-flex;
    }

    .language {
        font-size: 16px;
    }

    .language img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 575px) {
    .home_spot_2 {
        padding: 58px 0 64px 0;
        background-position: center top;
    }

    .home_spot_2_inner {
        width: calc(100% - 30px);
    }

    .home_spot_2_head {
        display: block;
        margin-bottom: 32px;
    }

    .home_spot_2_head b {
        font-size: clamp(31px, 9vw, 40px);
        letter-spacing: -1px;
    }

    .home_spot_2_all {
        min-width: 0;
        min-height: 50px;
        margin-top: 26px;
        padding: 0 20px;
        font-size: 14px;
    }

    .home_spot_2_slider {
        --hs2-per-view: 2;
        --hs2-gap: 18px;
    }

    .home_spot_2_bullets {
        margin-top: 26px;
    }

    .hs2_image {
        height: 180px;
    }

    .hs2_content {
        min-height: 250px;
        padding: 19px 17px 17px 17px;
    }

    .hs2_content b {
        font-size: 18px;
    }

    .hs2_content > span,
    .hs2_content p {
        font-size: 14px;
    }
    .home_spot_1 {
        margin-top: 0;
        padding: 95px 0 68px 0;
    }

    .home_spot_1_inner {
        width: calc(100% - 30px);
        gap: 34px;
    }

    .section_eyebrow {
        gap: 7px;
        margin-bottom: 16px;
        font-size: 14px;
    }

    .section_eyebrow img {
        width: 18px;
        height: 18px;
    }

    .home_spot_1_text > b {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.08;
        letter-spacing: -1.1px;
        margin-bottom: 22px;
    }

    .home_spot_1_text > span {
        font-size: 15px;
        line-height: 1.55;
    }

    .home_spot_1_text > a {
        min-height: 50px;
        margin-top: 24px;
        padding: 0 20px;
        font-size: 14px;
    }

    .home_spot_1_visual {
        width: 100%;
    }

    .experience_box {
        left: 14px;
        top: 22px;
        gap: 7px;
    }

    .experience_box .big {
        font-size: clamp(116px, 40vw, 172px);
        letter-spacing: -6px;
    }

    .experience_box .small {
        width: auto;
        padding-bottom: 0;
        font-size: 16px;
    }
    .home_slide {
        height: 75vh;
        min-height: 520px;
    }

    .site_header {
        height: 88px;
    }

    .site_header_inner {
        width: calc(100% - 28px);
    }

    .site_logo img {
        width: 128px;
    }

    .site_header_right {
        gap: 10px;
    }

    .language {
        font-size: 14px;
    }

    .language_button {
        gap: 5px;
    }

    .language img {
        width: 19px;
        height: 19px;
    }

    .language_menu {
        top: calc(100% + 18px);
        min-width: 138px;
    }

    .language_menu a {
        padding: 10px 14px;
        font-size: 14px;
    }

    .mobile_menu_button {
        width: 38px;
        height: 38px;
    }

    .mobile_menu_button span {
        width: 22px;
    }

    .site_nav {
        width: calc(100% - 28px);
        right: 14px;
    }

    .home_slide_item img {
        object-position: center;
    }

    .home_slide_item::before {
        background: rgba(0,0,0,.12);
    }

    .home_slide_item::after {
        background: linear-gradient(0deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 100%);
    }

    .home_slide_content {
        width: calc(100% - 34px);
        left: 50%;
        top: 60%;
        transform: translate(-50%, -50%);
        padding-left: 0;
    }

    .slide_title,
    .home_slide_content span {
        max-width: 100%;
    }

    .slide_title {
        font-size: clamp(32px, 10vw, 44px);
        line-height: 1.08;
        letter-spacing: -1px;
        margin-bottom: 14px;
        text-shadow: 0 4px 18px rgba(0,0,0,.42);
    }

    .home_slide_content span {
        font-size: clamp(18px, 5.4vw, 24px);
        line-height: 1.28;
        margin-top: 12px;
        margin-bottom: 20px;
        text-shadow: 0 3px 14px rgba(0,0,0,.42);
    }

    .home_slide_content a {
        min-height: 42px;
        padding: 0 16px;
        font-size: 12px;
        margin-top: 18px;
    }

    .home_slide_big_text {
        bottom: 12px;
        font-size: clamp(62px, 18vw, 96px);
        letter-spacing: -3px;
        color: rgba(255,255,255,.12);
    }
    .mermerBlok {
        width: 170px;
        height: 170px;
        top: -85px;
    }
}

@media (max-width: 380px) {
    .home_spot_2_slider {
        --hs2-per-view: 1;
        --hs2-gap: 0px;
    }

    .home_spot_2_head b {
        font-size: 30px;
    }

    .hs2_image {
        height: 205px;
    }
    .home_spot_1_text > b {
        font-size: 30px;
    }

    .home_spot_1_text > span {
        font-size: 14px;
    }

    .experience_box {
        top: 16px;
    }

    .experience_box .big {
        font-size: 108px;
    }

    .experience_box .small {
        width: auto;
        font-size: 14px;
    }
    .home_slide {
        min-height: 500px;
    }

    .slide_title {
        font-size: 30px;
    }

    .home_slide_content span {
        font-size: 17px;
    }

    .home_slide_content a {
        min-height: 40px;
        padding: 0 14px;
        font-size: 11px;
    }

    .home_slide_big_text {
        font-size: 56px;
        bottom: 14px;
    }

    .mermerBlok {
        width: 140px;
        height: 140px;
        top: -70px;
    }
    .home_spot_1 {
        margin-top: 0;
        padding-top: 85px;
    }
}

/* --- Lion Stone Art Home Spot 2 styles --- */
.home_spot_2 {
    width: 100%;
    position: relative;
    padding: 92px 0 92px 0;
    background-image: url('/images/home_spot_2_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home_spot_2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.18);
    pointer-events: none;
}

.home_spot_2_inner {
    width: min(1180px, calc(100% - 48px));
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.home_spot_2_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.home_spot_2_head b {
    display: block;
    margin: 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(42px, 3.55vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.6px;
}

.home_spot_2_all {
    min-width: 190px;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    margin-top: 58px;
    background: #171719;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .25s ease, background-color .25s ease;
}

.home_spot_2_all::after {
    content: "»";
    color: #d6b56d;
    font-size: 25px;
    line-height: 1;
    margin-top: -2px;
}

.home_spot_2_all:hover {
    transform: translateY(-2px);
    background: #d6b56d;
    color: #fff;
}
.home_spot_2_all:hover::after  {
    color: #fff;
}

.home_spot_2_slider {
    --hs2-per-view: 4;
    --hs2-gap: 30px;
    width: 100%;
    overflow: hidden;
    padding: 20px;
    margin: -20px;
    cursor: grab;
    touch-action: pan-y;
}

.home_spot_2_slider:active {
    cursor: grabbing;
}

.home_spot_2_slider > ul {
    display: flex;
    gap: var(--hs2-gap);
    list-style: none;
    padding: 0 0 6px 0;
    margin: 0;
    transform: translateX(0);
    transition: transform .7s ease;
    will-change: transform;
}

.home_spot_2_slider > ul > li {
    flex: 0 0 calc((100% - (var(--hs2-gap) * (var(--hs2-per-view) - 1))) / var(--hs2-per-view));
    min-width: 0;
}


.home_spot_2_bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.home_spot_2_bullets button {
    width: 11px;
    height: 11px;
    display: block;
    padding: 0;
    border: 1px solid #d6b56d;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background-color .25s ease, transform .25s ease;
}

.home_spot_2_bullets button.active {
    background: #d6b56d;
    transform: scale(1.25);
}

.hs2_card {
    height: 100%;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
}

.hs2_image {
    width: 100%;
    height: 205px;
    position: relative;
    overflow: hidden;
}

.hs2_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.hs2_card:hover .hs2_image img {
    transform: scale(1.06);
}

.hs2_image span {
    position: absolute;
    left: 10px;
    bottom: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 8px;
    background: #fff;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.hs2_content {
    min-height: 255px;
    display: flex;
    flex-direction: column;
    padding: 22px 20px 18px 20px;
}

.hs2_content b {
    display: block;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 5px 0;
}

.hs2_content > span {
    display: block;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 18px;
}

.hs2_content p {
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 22px 0;
}

.hs2_content a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: auto;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease;
}

.hs2_content a::after {
    content: "»";
    color: #d6b56d;
    font-size: 21px;
    line-height: 1;
    margin-top: -2px;
}

.hs2_content a:hover {
    color: #d6b56d;
}

.home_spot_3 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.home_spot_3_bg {
    width: 100%;
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/lionstoneart_video_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home_spot_3_overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,.50);
    pointer-events: none;
}

.home_spot_3_big_text {
    position: absolute;
    left: 50%;
    bottom: -18px;
    z-index: 2;
    transform: translateX(-50%);
    display: block;
    width: max-content;
    max-width: calc(100% - 40px);
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(72px, 11vw, 170px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -6px;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.12) 46%, rgba(255,255,255,0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home_spot_3_play {
    width: 155px;
    height: 155px;
    position: relative;
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.18;
    text-align: center;
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.home_spot_3_play:hover {
    transform: translateY(-4px) scale(1.08);
    background: rgba(255,255,255,.30);
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.home_spot_3_play_icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color .25s ease;
}

.home_spot_3_play_icon img {
    width: 38px;
    height: 38px;
    display: block;
    filter: invert(74%) sepia(15%) saturate(1027%) hue-rotate(3deg) brightness(95%) contrast(95%);
    transition: filter .25s ease;
}

.home_spot_3_play_text {
    display: block;
    color: #fff;
    transition: color .25s ease;
}

.home_spot_3_play:hover .home_spot_3_play_icon img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(235deg) brightness(103%) contrast(102%);
}

.home_spot_3_play:hover .home_spot_3_play_text {
    color: #d6b56d;
}

.video_modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.video_modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video_modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
}

.video_modal_content {
    width: min(920px, 100%);
    position: relative;
    z-index: 2;
}

.video_modal_close {
    width: 42px;
    height: 42px;
    position: absolute;
    right: -16px;
    top: -56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #d6b56d;
    color: #fff;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.video_modal_frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 22px 70px rgba(0,0,0,.45);
}

.video_modal_frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.video_modal_open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .home_spot_3_bg {
        min-height: 430px;
    }

    .home_spot_3_play {
        width: 132px;
        height: 132px;
        font-size: 12px;
    }

    .home_spot_3_big_text {
        bottom: -12px;
        letter-spacing: -3px;
    }
}

@media (max-width: 575px) {
    .home_spot_3_bg {
        min-height: 340px;
    }

    .home_spot_3_play {
        width: 112px;
        height: 112px;
        gap: 9px;
        font-size: 11px;
    }

    .home_spot_3_play_icon {
        width: 36px;
        height: 36px;
    }

    .home_spot_3_play_icon img {
        width: 14px;
        height: 14px;
    }

    .home_spot_3_big_text {
        bottom: -8px;
        max-width: calc(100% - 24px);
        font-size: clamp(46px, 15vw, 78px);
        letter-spacing: -2px;
    }

    .video_modal {
        padding: 16px;
    }

    .video_modal_close {
        right: 0;
        top: -50px;
    }
}

.home_spot_4 {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: #efefef 1px solid;
    background: #fff;
    padding: 0;
}

.home_spot_4 .container {
    max-width: 1180px;
}

.home_spot_4_stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    min-height: 152px;
}

.home_spot_4_stat {
    min-height: 152px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-right: 1px solid #efefef;
}

.home_spot_4_stat:last-child {
    border-right: 0;
}

.home_spot_4_stat strong {
    display: inline-flex;
    align-items: center;
    color: #000;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(56px, 5.3vw, 76px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
    white-space: nowrap;
}

.home_spot_4_stat > span {
    display: block;
    color: #565656;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .home_spot_4_stats {
        min-height: auto;
    }

    .home_spot_4_stat {
        min-height: 128px;
        gap: 13px;
        padding: 22px 16px;
    }

    .home_spot_4_stat strong {
        font-size: clamp(42px, 6vw, 58px);
        letter-spacing: -3px;
    }

    .home_spot_4_stat > span {
        font-size: 16px;
        transform: translateY(-4px);
    }
}

@media (max-width: 575px) {
    .home_spot_4_stats {
        grid-template-columns: 1fr;
    }

    .home_spot_4_stat {
        min-height: 118px;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid #efefef;
        padding: 22px 6px;
    }

    .home_spot_4_stat:last-child {
        border-bottom: 0;
    }

    .home_spot_4_stat strong {
        min-width: 150px;
        font-size: 58px;
    }

    .home_spot_4_stat > span {
        font-size: 18px;
        transform: translateY(-4px);
    }
}

.home_spot_5 {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 86px 0 96px 0;
    background: #fff;
}

.home_spot_5 .container {
    max-width: 1180px;
}

.home_spot_5_head {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    gap: 58px;
    margin-bottom: 64px;
}

.home_spot_5_marble_stack {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_spot_5_marble_stack img {
    width: min(245px, 100%);
    height: auto;
    display: block;
}

.home_spot_5_intro .section_eyebrow {
    margin-bottom: 17px;
}

.home_spot_5_intro > b {
    display: block;
    max-width: 720px;
    margin: 0 0 14px 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.home_spot_5_intro > p {
    max-width: 830px;
    margin: 0;
    color: #505050;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.home_spot_5_body {
    display: grid;
    grid-template-columns: minmax(0, 670px) minmax(360px, 1fr);
    align-items: center;
    gap: 56px;
}

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

.home_spot_5_step {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 22px;
    padding: 22px 0 26px 0;
    border-top: 1px solid #efefef;
}

.home_spot_5_step:last-child {
    border-bottom: 1px solid #efefef;
}

.home_spot_5_number {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.home_spot_5_step strong {
    display: block;
    margin: 1px 0 9px 0;
    color: #d6b56d;
    font-family: "Urbanist", sans-serif;
    font-size: clamp(25px, 2vw, 31px);
    font-weight: 800;
    line-height: 1.12;
}

.home_spot_5_step p {
    max-width: 600px;
    margin: 0;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
}

.home_spot_5_visual {
    position: relative;
    min-height: 470px;
}

.home_spot_5_main_image {
    width: 100%;
    max-width: 515px;
    position: absolute;
    right: 0;
    top: 36px;
    z-index: 1;
    display: block;
    height: auto;
}

.home_spot_5_fly_image {
    width: min(330px, 64%);
    position: absolute;
    right: 90px;
    bottom: -75px;
    z-index: 2;
    display: block;
    height: auto;
    transform: translate3d(var(--hs5-fly-x, 0px), var(--hs5-fly-y, 0px), 0);
    filter: drop-shadow(0 20px 22px rgba(0,0,0,.18));
    will-change: transform;
    transition: transform .18s ease-out;
}

@media (max-width: 991px) {
    .home_spot_5 {
        padding: 72px 0 80px 0;
    }

    .home_spot_5_head {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 34px;
        margin-bottom: 48px;
    }

    .home_spot_5_intro > b {
        font-size: clamp(34px, 5.2vw, 48px);
    }

    .home_spot_5_body {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .home_spot_5_visual {
        width: min(620px, 100%);
        min-height: 420px;
        margin: 0 auto;
    }

    .home_spot_5_main_image {
        max-width: 520px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .home_spot_5_fly_image {
        right: 50%;
        transform: translateX(55%) translate3d(var(--hs5-fly-x, 0px), var(--hs5-fly-y, 0px), 0);
    }
}

@media (max-width: 575px) {
    .home_spot_5 {
        padding: 58px 0 68px 0;
    }

    .home_spot_5_head {
        display: block;
        margin-bottom: 38px;
    }

    .home_spot_5_marble_stack {
        justify-content: flex-start;
        margin-bottom: 26px;
    }

    .home_spot_5_marble_stack img {
        width: 170px;
    }

    .home_spot_5_intro > b {
        font-size: clamp(31px, 9vw, 40px);
        letter-spacing: -1px;
    }

    .home_spot_5_intro > p {
        font-size: 15px;
        line-height: 1.55;
    }

    .home_spot_5_step {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 15px;
        padding: 18px 0 20px 0;
    }

    .home_spot_5_number {
        width: 40px;
        height: 40px;
        font-size: 21px;
    }

    .home_spot_5_step strong {
        font-size: 23px;
    }

    .home_spot_5_step p {
        font-size: 15px;
        line-height: 1.5;
    }

    .home_spot_5_visual {
        min-height: 320px;
    }

    .home_spot_5_main_image {
        width: 92%;
        top: 20px;
    }

    .home_spot_5_fly_image {
        width: 58%;
        bottom: 0;
    }
}

.home_spot_6 {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 86px 0 78px 0;
    background-image: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.46) 48%, rgba(0,0,0,.72) 100%), url('/images/mermerler_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home_spot_6 .container {
    max-width: 1180px;
    position: relative;
    z-index: 2;
}

.home_spot_6_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 78px;
}

.home_spot_6_head b {
    display: block;
    margin: 0 0 8px 0;
    color: #d6b56d;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.8px;
}

.home_spot_6_head span {
    display: block;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: clamp(25px, 2.35vw, 36px);
    font-weight: 400;
    line-height: 1.18;
}

.home_spot_6_choose {
    min-width: 190px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 25px;
    padding: 0 25px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    backdrop-filter: blur(2px);
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.home_spot_6_choose span    {
    font-size:16px;
    font-weight: 700;
}

.home_spot_6_choose img {
    width: 21px;
    height: 21px;
    display: block;
    object-fit: contain;
}

.home_spot_6_choose:hover {
    transform: translateY(-2px);
    background: #000;
    color: #fff;
}

.home_spot_6_slider_wrap {
    position: relative;
    padding: 0 78px;
}

.home_spot_6_slider {
    --hs6-per-view: 5;
    --hs6-gap: 30px;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
}

.home_spot_6_slider:active {
    cursor: grabbing;
}

.home_spot_6_slider ul {
    display: flex;
    gap: var(--hs6-gap);
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform .45s ease;
    will-change: transform;
}

.home_spot_6_slider li {
    flex: 0 0 calc((100% - (var(--hs6-gap) * (var(--hs6-per-view) - 1))) / var(--hs6-per-view));
    min-width: 0;
}

.home_spot_6_card {
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    user-select: none;
}

.home_spot_6_card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border: 3px solid #fff;
    transition: transform .3s ease, border-color .3s ease;
}

.home_spot_6_card strong {
    display: block;
    min-height: 42px;
    margin-top: 12px;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.12;
    text-align: center;
}

.home_spot_6_card:hover img {
    transform: scale(1.04);
    border-color: #d6b56d;
}

.home_spot_6_card:hover strong {
    color: #d6b56d;
}

.home_spot_6_arrow {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 83px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease;
}

.home_spot_6_arrow img {
    width: 18px;
    height: 18px;
    display: block;
    filter: invert(74%) sepia(15%) saturate(1027%) hue-rotate(3deg) brightness(95%) contrast(95%);
}

.home_spot_6_arrow:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,.28);
}

.home_spot_6_prev {
    left: 0;
}

.home_spot_6_next {
    right: 0;
}

@media (max-width: 991px) {
    .home_spot_6 {
        padding: 72px 0 68px 0;
    }

    .home_spot_6_head {
        display: block;
        margin-bottom: 48px;
    }

    .home_spot_6_choose {
        margin-top: 24px;
    }

    .home_spot_6_slider_wrap {
        padding: 0 58px;
    }

    .home_spot_6_slider {
        --hs6-per-view: 3;
        --hs6-gap: 22px;
    }

    .home_spot_6_arrow {
        top: 78px;
    }
}

@media (max-width: 575px) {
    .home_spot_6 {
        padding: 58px 0 60px 0;
    }

    .home_spot_6_head {
        margin-bottom: 34px;
    }

    .home_spot_6_head b {
        font-size: clamp(29px, 8.5vw, 38px);
    }

    .home_spot_6_head span {
        font-size: clamp(20px, 6vw, 27px);
    }

    .home_spot_6_choose {
        min-width: 0;
        min-height: 48px;
        padding: 0 20px;
        font-size: 14px;
    }

    .home_spot_6_slider_wrap {
        padding: 0 42px;
    }

    .home_spot_6_slider {
        --hs6-per-view: 2;
        --hs6-gap: 16px;
    }

    .home_spot_6_card img {
        border-width: 2px;
    }

    .home_spot_6_card strong {
        min-height: 38px;
        margin-top: 10px;
        font-size: 13px;
    }

    .home_spot_6_arrow {
        width: 36px;
        height: 36px;
        top: 56px;
    }

    .home_spot_6_arrow img {
        width: 14px;
        height: 14px;
    }
}

.home_spot_7 {
    width: 100%;
    position: relative;
    overflow: visible;
    padding: 78px 0 96px 0;
    background: #fff;
}

.home_spot_7 .container {
    max-width: 1180px;
    position: relative;
    z-index: 3;
}

.home_spot_7_floating_marble {
    width: min(300px, 22vw);
    position: absolute;
    left: calc(50% - 590px);
    top: -42px;
    z-index: 1;
    pointer-events: none;
}

.home_spot_7_floating_marble img {
    width: 100%;
    height: auto;
    display: block;
    transform: translate3d(var(--hs7-marble-x, 0px), var(--hs7-marble-y, 0px), 0) rotate(var(--hs7-marble-r, 0deg));
    filter: drop-shadow(0 18px 22px rgba(0,0,0,.18));
    will-change: transform;
    transition: transform .18s ease-out;
}

.home_spot_7_head {
    width: min(640px, 100%);
    position: relative;
    z-index: 4;
    margin: 0 auto 82px auto;
}

.home_spot_7_head .section_eyebrow {
    margin-bottom: 16px;
}

.home_spot_7_head b {
    display: block;
    margin: 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1.7px;
}

.home_spot_7_slider_wrap {
    position: relative;
}

.home_spot_7_slider {
    --hs7-per-view: 3;
    --hs7-gap: 22px;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
}

.home_spot_7_slider:active {
    cursor: grabbing;
}

.home_spot_7_slider ul {
    display: flex;
    gap: var(--hs7-gap);
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform .45s ease;
    will-change: transform;
}

.home_spot_7_slider li {
    flex: 0 0 calc((100% - (var(--hs7-gap) * (var(--hs7-per-view) - 1))) / var(--hs7-per-view));
    min-width: 0;
}

.home_spot_7_card {
    height: 270px;
    position: relative;
    display: block;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 9px 18px rgba(0,0,0,.16);
    user-select: none;
}

.home_spot_7_card > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.home_spot_7_card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 72%;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.46) 44%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .32s ease, transform .32s ease;
}

.home_spot_7_card span {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 2;
    display: block;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .32s ease, transform .32s ease;
}

.home_spot_7_card strong {
    display: block;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.12;
}

.home_spot_7_card em {
    display: block;
    margin-top: 7px;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    font-style: normal;
}

.home_spot_7_card:hover > img {
    transform: scale(1.06);
}

.home_spot_7_card:hover::after,
.home_spot_7_card:hover span {
    opacity: 1;
    transform: translateY(0);
}

.home_spot_7_arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 52px;
}

.home_spot_7_arrow {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #efefef;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease;
}

.home_spot_7_arrow img {
    width: 17px;
    height: 17px;
    display: block;
    filter: invert(74%) sepia(15%) saturate(1027%) hue-rotate(3deg) brightness(95%) contrast(95%);
}

.home_spot_7_arrow:hover {
    transform: scale(1.08);
    background: #171719;
}

@media (max-width: 991px) {
    .home_spot_7 {
        padding: 70px 0 82px 0;
        overflow: hidden;
    }

    .home_spot_7_floating_marble {
        width: 190px;
        left: 16px;
        top: -30px;
        z-index: 1;
        opacity: .72;
    }

    .home_spot_7_head {
        width: min(590px, calc(100% - 190px));
        margin: 0 0 58px auto;
    }

    .home_spot_7_head b {
        font-size: clamp(34px, 5.5vw, 48px);
    }

    .home_spot_7_slider {
        --hs7-per-view: 2;
        --hs7-gap: 18px;
    }

    .home_spot_7_card {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .home_spot_7 {
        padding: 58px 0 68px 0;
        overflow: hidden;
    }

    .home_spot_7_floating_marble {
        width: 125px;
        left: 14px;
        top: -18px;
        z-index: 1;
        opacity: .55;
    }

    .home_spot_7_head {
        width: 100%;
        margin: 0 0 38px 0;
        padding-top: 96px;
    }

    .home_spot_7_head b {
        font-size: clamp(31px, 9vw, 40px);
        letter-spacing: -1px;
    }

    .home_spot_7_slider {
        --hs7-per-view: 1;
        --hs7-gap: 0px;
    }

    .home_spot_7_card {
        height: 235px;
    }

    .home_spot_7_card::after,
    .home_spot_7_card span {
        opacity: 1;
        transform: translateY(0);
    }

    .home_spot_7_card span {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .home_spot_7_card strong {
        font-size: 18px;
    }

    .home_spot_7_card em {
        font-size: 14px;
    }

    .home_spot_7_arrows {
        margin-top: 30px;
    }
}

.home_spot_8 {
    width: 100%;
    min-height: 615px;
    position: relative;
    overflow: visible;
    padding: 78px 0 72px 0;
    background-image: linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.38) 46%, rgba(0,0,0,.62) 100%), url('/images/iletisim_bolum_arkaplan.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home_spot_8 .container {
    max-width: 1180px;
    position: relative;
    z-index: 2;
}

.home_spot_8_floating_marble {
    width: min(430px, 31vw);
    position: absolute;
    right: calc(50% - 505px);
    top: -72px;
    z-index: 3;
    pointer-events: none;
}

.home_spot_8_floating_marble img {
    width: 100%;
    height: auto;
    display: block;
    transform: translate3d(var(--hs8-marble-x, 0px), var(--hs8-marble-y, 0px), 0) rotate(var(--hs8-marble-r, 0deg));
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.22));
    will-change: transform;
    transition: transform .18s ease-out;
}

.home_spot_8_inner {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    align-items: center;
    gap: 88px;
}

.home_spot_8_form_box {
    width: 100%;
    min-height: 510px;
    padding: 40px 38px 42px 38px;
    background: #fff;
}

.home_spot_8_form_box .section_eyebrow {
    margin-bottom: 18px;
}

.home_spot_8_form_box > b {
    display: block;
    margin: 0 0 42px 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(32px, 2.6vw, 42px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.1px;
}

.home_spot_8_form {
    display: block;
}

.home_spot_8_form_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    margin-bottom: 22px;
}

.home_spot_8_form input,
.home_spot_8_form textarea {
    width: 100%;
    display: block;
    border: 1px solid #efefef;
    outline: none;
    background: #fff;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.home_spot_8_form input {
    height: 42px;
    padding: 0 14px;
}

.home_spot_8_form textarea {
    min-height: 70px;
    padding: 14px;
    resize: vertical;
    margin-bottom: 22px;
}

.home_spot_8_form input::placeholder,
.home_spot_8_form textarea::placeholder {
    color: #171719;
    opacity: .92;
}

.home_spot_8_form input:focus,
.home_spot_8_form textarea:focus {
    border-color: #d6b56d;
    box-shadow: 0 0 0 3px rgba(214,181,109,.13);
}

.home_spot_8_form button {
    min-width: 192px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 0;
    background: #171719;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease;
}

.home_spot_8_form button:hover {
    transform: translateY(-2px);
    background: #d6b56d;
}

.home_spot_8_text {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
}

.home_spot_8_text span {
    display: block;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: clamp(28px, 2.45vw, 38px);
    font-weight: 300;
    line-height: 1.38;
    text-align: left;
}

@media (max-width: 991px) {
    .home_spot_8 {
        min-height: auto;
        padding: 70px 0 72px 0;
        overflow: hidden;
    }

    .home_spot_8_floating_marble {
        width: 280px;
        right: 22px;
        top: -42px;
    }

    .home_spot_8_inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .home_spot_8_form_box {
        width: min(560px, 100%);
        min-height: auto;
        padding: 34px 28px 34px 28px;
    }

    .home_spot_8_text {
        min-height: auto;
        justify-content: flex-start;
        padding-top: 0;
    }

    .home_spot_8_text span {
        font-size: clamp(24px, 4.3vw, 32px);
    }
}

@media (max-width: 575px) {
    .home_spot_8 {
        padding: 54px 0 58px 0;
        overflow: hidden;
    }

    .home_spot_8_floating_marble {
        width: 180px;
        right: -18px;
        top: -26px;
        opacity: .9;
    }

    .home_spot_8_form_box {
        padding: 28px 20px 28px 20px;
    }

    .home_spot_8_form_box > b {
        margin-bottom: 28px;
        font-size: clamp(29px, 8vw, 36px);
    }

    .home_spot_8_form_grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .home_spot_8_form textarea {
        min-height: 96px;
    }

    .home_spot_8_form button {
        width: 100%;
    }

    .home_spot_8_text span {
        font-size: clamp(22px, 7vw, 29px);
    }
}

.home_spot_9 {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 72px 0 96px 0;
    background: #fff;
}

.home_spot_9 .container {
    max-width: 1180px;
}

.home_spot_9_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 38px;
}

.home_spot_9_head .section_eyebrow {
    margin-bottom: 14px;
}

.home_spot_9_head b {
    display: block;
    margin: 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.home_spot_9_all {
    min-width: 190px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
    padding: 0 22px;
    border-radius: 999px;
    background: #efefef;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.home_spot_9_all img {
    width: 21px;
    height: 21px;
    display: block;
    object-fit: contain;
}

.home_spot_9_all:hover {
    transform: translateY(-2px);
    background: #171719;
    color: #fff;
}

.home_spot_9_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home_spot_9_card {
    display: block;
    color: #171719;
    text-decoration: none;
}

.home_spot_9_image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #efefef;
}

.home_spot_9_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.home_spot_9_card:hover .home_spot_9_image img {
    transform: scale(1.06);
}

.home_spot_9_content {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}

.home_spot_9_content time {
    width: 56px;
    min-height: 75px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    line-height: 1;
    transform: translateY(-1px);
}

.home_spot_9_content time strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    line-height: .9;
}

.home_spot_9_content time span {
    display: block;
    margin-top: 4px;
    font-size: 17px;
    font-weight: 900;
    line-height: .9;
}

.home_spot_9_content p {
    margin: 18px 0 0 0;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.28;
    transition: color .25s ease;
}

.home_spot_9_card:hover .home_spot_9_content p {
    color: #d6b56d;
}

@media (max-width: 991px) {
    .home_spot_9 {
        padding: 64px 0 78px 0;
    }

    .home_spot_9_head {
        display: block;
        margin-bottom: 34px;
    }

    .home_spot_9_head b {
        font-size: clamp(34px, 5.5vw, 48px);
    }

    .home_spot_9_all {
        margin-top: 24px;
    }

    .home_spot_9_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 22px;
    }

    .home_spot_9_image {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .home_spot_9 {
        padding: 52px 0 64px 0;
    }

    .home_spot_9_head b {
        font-size: clamp(31px, 9vw, 40px);
        letter-spacing: -1px;
    }

    .home_spot_9_all {
        min-width: 0;
        min-height: 46px;
        padding: 0 18px;
        font-size: 14px;
    }

    .home_spot_9_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home_spot_9_image {
        height: 225px;
    }

    .home_spot_9_content {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 13px;
    }

    .home_spot_9_content time {
        width: 52px;
        min-height: 70px;
    }

    .home_spot_9_content time strong {
        font-size: 19px;
    }

    .home_spot_9_content time span {
        font-size: 16px;
    }

    .home_spot_9_content p {
        margin-top: 15px;
        font-size: 16px;
    }
}

.site_footer {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 58px 0 36px 0;
    background-image: url('/images/footer_bg.png?version=1.0.0');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.site_footer .container {
    max-width: 1180px;
    position: relative;
    z-index: 2;
}

.site_footer_grid {
    display: grid;
    grid-template-columns: minmax(280px, 330px) 22px minmax(150px, 190px) 22px minmax(210px, 245px) 22px minmax(160px, 190px);
    align-items: start;
    gap: 34px;
}

.site_footer_logo {
    display: inline-flex;
    margin-bottom: 34px;
}

.site_footer_logo img {
    width: 205px;
    height: auto;
    display: block;
}

.site_footer_brand address,
.site_footer_brand p,
.site_footer_col ul,
.site_footer_social p {
    margin: 0;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    font-style: normal;
}

.site_footer_brand address,
.site_footer_brand p {
    margin-bottom: 22px;
}

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

.site_footer_brand a,
.site_footer_col a {
    color: #fff;
    text-decoration: none;
    transition: color .25s ease;
}

.site_footer_brand a:hover,
.site_footer_col a:hover,
.site_footer_social_links a:hover {
    color: #d6b56d;
}

.site_footer_brand p span {
    min-width: 45px;
    display: inline-block;
}

.site_footer_separator {
    width: 4px;
    height: 206px;
    display: block;
    object-fit: cover;
    margin-top: 110px;
    opacity: .95;
}

.site_footer_col,
.site_footer_social {
    padding-top: 107px;
}

.site_footer_col strong,
.site_footer_social strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.site_footer_col strong img,
.site_footer_social strong img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.site_footer_col ul {
    list-style: none;
    padding: 0;
}

.site_footer_col li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 9px;
}

.site_footer_col li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.site_footer_social p {
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.site_footer_social_links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site_footer_social_links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d6b56d;
    font-size: 31px;
    line-height: 1;
    text-decoration: none;
    transition: transform .25s ease, color .25s ease;
}

.site_footer_social_links a:hover {
    transform: translateY(-2px);
}

.site_footer_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 82px;
}

.site_footer_bottom a {
    display: inline-flex;
}

.site_footer_bottom img {
    width: 220px;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .site_footer {
        padding: 52px 0 34px 0;
    }

    .site_footer_grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 32px;
    }

    .site_footer_separator {
        display: none;
    }

    .site_footer_col,
    .site_footer_social {
        padding-top: 0;
    }

    .site_footer_logo {
        margin-bottom: 28px;
    }

    .site_footer_brand {
        grid-column: 1 / -1;
    }

    .site_footer_bottom {
        margin-top: 54px;
    }
}

@media (max-width: 575px) {
    .site_footer {
        padding: 44px 0 30px 0;
    }

    .site_footer_grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site_footer_logo img {
        width: 180px;
    }

    .site_footer_brand address,
    .site_footer_brand p,
    .site_footer_col ul,
    .site_footer_social p {
        font-size: 14px;
    }

    .site_footer_bottom {
        justify-content: flex-start;
        margin-top: 42px;
    }

    .site_footer_bottom img {
        width: 190px;
    }
}

.subpage-header {
    width: 100%;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 135px;
    background-image: url('/images/breacrumb-subpage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.subpage-header-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,.58);
    pointer-events: none;
}

.subpage-header .container {
    max-width: 1180px;
    position: relative;
    z-index: 2;
}

.subpage-header-content {
    width: 100%;
    max-width: 620px;
    text-align: left;
    color: #fff;
}

.subpage-header-content h1 {
    margin: 0 0 22px 0;
    color: #fff;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
}

.subpage-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.subpage-breadcrumb a,
.subpage-breadcrumb strong {
    color: #fff;
    text-decoration: none;
    font: inherit;
}

.subpage-breadcrumb span {
    color: #d6b56d;
    font-size: 15px;
    line-height: 1;
}

.subpage-breadcrumb a:hover {
    color: #d6b56d;
}

@media (max-width: 991px) {
    .subpage-header {
        min-height: 310px;
        padding-top: 115px;
    }

    .subpage-header-content h1 {
        font-size: clamp(36px, 6vw, 48px);
    }
}

@media (max-width: 575px) {
    .subpage-header {
        min-height: 250px;
        padding-top: 92px;
    }

    .subpage-header-content h1 {
        margin-bottom: 16px;
        font-size: clamp(31px, 9vw, 40px);
    }

    .subpage-breadcrumb {
        font-size: 10px;
        gap: 9px;
    }
}

.farkimiz_section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 92px 0 105px 0;
    background: #fff;
}

.farkimiz_section .container {
    max-width: 1180px;
}

.farkimiz_intro {
    max-width: 100%px;
    margin-bottom: 54px;
}

.farkimiz_intro > b {
    display: block;
    margin: 0 0 18px 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(38px, 3.8vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.6px;
}

.farkimiz_intro > p {
    max-width: 100%;
    margin: 0;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.farkimiz_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.farkimiz_item {
    cursor:pointer;
    min-height: 330px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 28px 28px 28px;
    border: 1px solid rgba(214,181,109,.55);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,.045);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.farkimiz_item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(214,181,109,.14) 0%, rgba(214,181,109,0) 46%);
    opacity: 1;
    transition: background .28s ease;
}

.farkimiz_item > * {
    position: relative;
    z-index: 1;
}

.farkimiz_item:hover {
    transform: translateY(-6px);
    border-color: rgba(214,181,109,.55);
    box-shadow: 0 24px 52px rgba(0,0,0,.09);
}

.farkimiz_item:hover::before {
    background: linear-gradient(315deg, rgba(214,181,109,.14) 0%, rgba(214,181,109,0) 46%);
}

.farkimiz_icon {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(214,181,109,.55);
    background: #fff;
}

.farkimiz_icon img {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
}

.farkimiz_text strong {
    display: block;
    margin-bottom: 9px;
    color: #08263a;
    font-family: "Urbanist", sans-serif;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.15;
}

.farkimiz_text span {
    display: block;
    margin-bottom: 18px;
    color: #08263a;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.farkimiz_text p {
    margin: 0;
    color: #666;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .farkimiz_section {
        padding: 74px 0 82px 0;
    }

    .farkimiz_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .farkimiz_item {
        min-height: 310px;
    }
}

@media (max-width: 575px) {
    .farkimiz_section {
        padding: 58px 0 68px 0;
    }

    .farkimiz_intro {
        margin-bottom: 36px;
    }

    .farkimiz_intro > b {
        font-size: clamp(31px, 9vw, 40px);
        letter-spacing: -1px;
    }

    .farkimiz_intro > p {
        font-size: 15px;
    }

    .farkimiz_list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .farkimiz_item {
        min-height: auto;
        padding: 24px 22px;
    }

    .farkimiz_icon {
        width: 74px;
        height: 74px;
        margin-bottom: 20px;
    }

    .farkimiz_icon img {
        width: 42px;
        height: 42px;
    }

    .farkimiz_text strong {
        font-size: 19px;
    }

    .farkimiz_text p {
        font-size: 14px;
    }
}

.ocaklar_gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 46px;
}

.ocaklar_gallery_item {
    height: 330px;
    position: relative;
    display: block;
    overflow: hidden;
    background: #efefef;
    border: 1px solid rgba(214,181,109,.45);
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
    text-decoration: none;
    cursor: default;
}

.ocaklar_gallery_item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.34) 100%);
    opacity: .75;
    pointer-events: none;
    transition: opacity .3s ease;
}

.ocaklar_gallery_item::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.38);
    backdrop-filter: blur(2px);
    opacity: 0;
    transform: translateY(10px) scale(.92);
    transition: opacity .3s ease, transform .3s ease, background-color .3s ease;
}

.ocaklar_gallery_item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition: transform .55s ease;
}

.ocaklar_gallery_item:hover img {
    transform: scale(1.07);
}

.ocaklar_gallery_item:hover::before {
    opacity: 1;
}

.ocaklar_gallery_item:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
    background: rgba(214,181,109,.92);
}

@media (max-width: 991px) {
    .ocaklar_gallery {
        gap: 20px;
        margin-top: 38px;
    }

    .ocaklar_gallery_item {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .ocaklar_gallery {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 32px;
    }

    .ocaklar_gallery_item {
        height: 220px;
    }
}

.team_intro {
    max-width: 980px;
    margin-bottom: 56px;
}

.team_intro > b {
    display: block;
    margin: 0 0 16px 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(38px, 3.8vw, 58px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.6px;
}

.team_intro > p {
    max-width: 1000px;
    margin: 0;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.team_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px 26px;
}

.team_card {
    position: relative;
    display: block;
    color: #171719;
}

.team_photo {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    position: relative;
    overflow: hidden;
    background: #efefef;
    border: 1px solid rgba(214,181,109,.35);
}

.team_photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 58%, rgba(0,0,0,.18) 100%);
    opacity: 0;
    transition: opacity .32s ease;
    pointer-events: none;
}

.team_photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform .45s ease;
}

.team_card:hover .team_photo img {
    transform: scale(1.055);
}

.team_card:hover .team_photo::after {
    opacity: 1;
}

.team_info {
    padding-top: 18px;
}

.team_info strong {
    display: block;
    margin-bottom: 8px;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.12;
}

.team_info span,
.team_info a,
.team_info em {
    display: block;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    font-style: normal;
}

.team_info a:hover {
    color: #d6b56d;
}

@media (max-width: 991px) {
    .team_intro {
        margin-bottom: 42px;
    }

    .team_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 22px;
    }
}

@media (max-width: 575px) {
    .team_intro {
        margin-bottom: 32px;
    }

    .team_intro > b {
        font-size: clamp(31px, 9vw, 40px);
        letter-spacing: -1px;
    }

    .team_intro > p {
        font-size: 15px;
    }

    .team_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team_info {
        padding-top: 15px;
    }

    .team_info strong {
        font-size: 19px;
    }
}

.mermer_listing_section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 78px 0 100px 0;
    background: #fff;
}

.mermer_listing_section .container {
    max-width: 1180px;
}

.mermer_filter {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 150px;
    gap: 14px;
    margin-bottom: 48px;
}

.mermer_filter_field {
    position: relative;
}

.mermer_filter_field::after {
    content: "\f107";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #d6b56d;
    font-family: FontAwesome;
    font-size: 15px;
    pointer-events: none;
}

.mermer_filter select {
    width: 100%;
    height: 54px;
    display: block;
    padding: 0 42px 0 17px;
    border: 1px solid rgba(214,181,109,.52);
    border-radius: 0;
    outline: none;
    background: #fff;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    appearance: none;
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.mermer_filter select:focus {
    border-color: #d6b56d;
    box-shadow: 0 0 0 4px rgba(214,181,109,.12);
}

.mermer_filter button {
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 0;
    background: #d6b56d;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease;
}

.mermer_filter button:hover {
    transform: translateY(-2px);
    background: #171719;
}

.mermer_product_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mermer_product_card {
    position: relative;
    display: block;
    padding: 10px 10px 20px 10px;
    border: 1px solid #efefef;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,.045);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.mermer_product_card:hover,
.mermer_product_card:focus,
.mermer_product_card:active {
    color: inherit;
    text-decoration: none;
}

.mermer_product_card strong {
    display: block;
    margin-top: 17px;
    color: #08263a;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .2px;
    text-decoration: none;
}

.mermer_product_image {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.mermer_product_image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.mermer_product_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition: transform .5s ease;
}

.mermer_product_card:hover .mermer_product_image img {
    transform: scale(1.07);
}

.mermer_product_card:hover .mermer_product_image::after {
    opacity: 1;
}

.mermer_product_image span {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.52);
    background: rgba(214,181,109,.94);
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0,0,0,.16);
}

.mermer_product_card strong {
    display: block;
    margin-top: 17px;
    color: #08263a;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .2px;
}

@media (max-width: 991px) {
    .mermer_listing_section {
        padding: 68px 0 82px 0;
    }

    .mermer_filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-bottom: 38px;
    }

    .mermer_filter button {
        grid-column: 1 / -1;
    }

    .mermer_product_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .mermer_listing_section {
        padding: 54px 0 66px 0;
    }

    .mermer_filter {
        grid-template-columns: 1fr;
        margin-bottom: 32px;
    }

    .mermer_filter select,
    .mermer_filter button {
        height: 50px;
    }

    .mermer_product_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mermer_product_card {
        padding: 9px 9px 18px 9px;
    }
}

.product-detailing-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 92px 0 105px 0;
    background: #fff;
}

.product-detailing-section .container {
    max-width: 1180px;
}

.product_detail_grid {
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
    align-items: center;
    gap: 68px;
}

.product_detail_visual {
    position: relative;
}

.product_detail_visual::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 28px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(214,181,109,.45);
    z-index: 0;
}

.product_detail_image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 24px 56px rgba(0,0,0,.12);
}

.product_detail_image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 38%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.product_detail_image img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    display: block;
    object-fit: cover;
    object-position: center;
}

.product_detail_image span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(214,181,109,.94);
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.product_detail_content h2 {
    margin: 0 0 14px 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.product_detail_content > strong {
    display: block;
    margin-bottom: 26px;
    color: #d6b56d;
    font-family: "Urbanist", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.product_detail_content p {
    margin: 0 0 18px 0;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.product_detail_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

 .product_detail_cta a {
     min-width: 154px;
     min-height: 54px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 9px;
     padding: 0 24px;
     background: #171719;
     color: #fff;
     font-family: "Urbanist", sans-serif;
     font-size: 15px;
     font-weight: 800;
     line-height: 1;
     text-decoration: none;
     transition: transform .25s ease, background-color .25s ease, color .25s ease;
 }

.product_detail_cta a i {
    font-size: 14px;
    line-height: 1;
}

.product_detail_cta a:first-child {
    background: #d6b56d;
}

.product_detail_cta a:hover {
    transform: translateY(-2px);
    background: #d6b56d;
    color: #fff;
}

.product_detail_cta a:first-child:hover {
    background: #171719;
}

.product_detail_info_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 74px;
}

.product_detail_box {
    position: relative;
    padding: 34px 34px 32px 34px;
    border: 1px solid rgba(214,181,109,.45);
    background: linear-gradient(135deg, rgba(214,181,109,.12) 0%, rgba(214,181,109,0) 44%), #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,.045);
}

.product_detail_box_dark {
    background: linear-gradient(135deg, rgba(214,181,109,.18) 0%, rgba(214,181,109,0) 48%), #171719;
}

.product_detail_box h3 {
    margin: 0 0 24px 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.7px;
}

.product_detail_box_dark h3 {
    color: #fff;
}

.product_detail_box ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product_detail_box li {
    position: relative;
    padding-left: 22px;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.product_detail_box_dark li {
    color: rgba(255,255,255,.82);
}

.product_detail_box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #d6b56d;
    transform: rotate(45deg);
}

.product_detail_brand_note {
    margin-top: 28px;
    padding: 42px 46px;
    background: #f7f5ef;
    border-left: 4px solid #d6b56d;
}

.product_detail_brand_note span {
    display: block;
    margin-bottom: 14px;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
}

.product_detail_brand_note p {
    margin: 0 0 14px 0;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

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

@media (max-width: 991px) {
    .product-detailing-section {
        padding: 74px 0 82px 0;
    }

    .product_detail_grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product_detail_visual {
        width: min(560px, 100%);
    }

    .product_detail_info_grid {
        grid-template-columns: 1fr;
        margin-top: 58px;
    }
}

@media (max-width: 575px) {
    .product-detailing-section {
        padding: 58px 0 68px 0;
    }

    .product_detail_grid {
        gap: 36px;
    }

    .product_detail_visual::before {
        left: -12px;
        top: 12px;
    }

    .product_detail_content h2 {
        font-size: clamp(32px, 9vw, 42px);
        letter-spacing: -1px;
    }

    .product_detail_content > strong {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .product_detail_content p {
        font-size: 15px;
        line-height: 1.58;
    }

    .product_detail_cta a {
        width: 100%;
    }

    .product_detail_box {
        padding: 28px 22px 26px 22px;
    }

    .product_detail_box h3,
    .product_detail_brand_note span {
        font-size: 27px;
    }

    .product_detail_box ul {
        grid-template-columns: 1fr;
    }

    .product_detail_brand_note {
        padding: 30px 24px;
    }

    .product_detail_brand_note p {
        font-size: 15px;
    }
}

.product_offer_modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.product_offer_modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product_offer_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(2px);
}

.product_offer_box {
    width: min(620px, 100%);
    position: relative;
    z-index: 2;
    padding: 38px 36px 36px 36px;
    background: #fff;
    box-shadow: 0 26px 80px rgba(0,0,0,.34);
    transform: translateY(18px) scale(.98);
    transition: transform .25s ease;
}

.product_offer_modal.active .product_offer_box {
    transform: translateY(0) scale(1);
}

.product_offer_close {
    width: 42px;
    height: 42px;
    position: absolute;
    right: -14px;
    top: -14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #d6b56d;
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease;
}

.product_offer_close:hover {
    transform: rotate(90deg);
    background: #171719;
}

.product_offer_head {
    margin-bottom: 28px;
}

.product_offer_head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    margin-bottom: 14px;
    background: rgba(214,181,109,.14);
    color: #d6b56d;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.product_offer_head strong {
    display: block;
    margin-bottom: 10px;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1px;
}

.product_offer_head p {
    margin: 0;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.product_offer_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.product_offer_form input,
.product_offer_form textarea {
    width: 100%;
    display: block;
    border: 1px solid #e8e8e8;
    outline: none;
    background: #fff;
    color: #171719;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.product_offer_form input {
    height: 50px;
    padding: 0 15px;
}

.product_offer_form textarea {
    min-height: 118px;
    padding: 15px;
    resize: vertical;
    line-height: 1.45;
    margin-bottom: 18px;
}

.product_offer_form input::placeholder,
.product_offer_form textarea::placeholder {
    color: #777;
}

.product_offer_form input:focus,
.product_offer_form textarea:focus {
    border-color: #d6b56d;
    box-shadow: 0 0 0 4px rgba(214,181,109,.12);
}

.product_offer_form button {
    width: 100%;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #171719;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease;
}

.product_offer_form button:hover {
    transform: translateY(-2px);
    background: #d6b56d;
}

.product_offer_modal_open {
    overflow: hidden;
}

@media (max-width: 575px) {
    .product_offer_modal {
        padding: 16px;
    }

    .product_offer_box {
        padding: 30px 20px 24px 20px;
    }

    .product_offer_close {
        right: 8px;
        top: 8px;
    }

    .product_offer_head {
        padding-right: 42px;
    }

    .product_offer_grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product_offer_form input {
        height: 48px;
    }
}

.related_products_section {
    margin-top: 82px;
    padding-top: 70px;
    border-top: 1px solid #efefef;
}

.related_products_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
}

.related_products_head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    margin-bottom: 13px;
    background: rgba(214,181,109,.14);
    color: #d6b56d;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.related_products_head strong {
    display: block;
    margin: 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.related_products_head > a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: #171719;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .25s ease, background-color .25s ease;
}

.related_products_head > a:hover {
    transform: translateY(-2px);
    background: #d6b56d;
}

.related_products_slider_wrap {
    position: relative;
    padding: 0 62px 32px 62px;
}

.related_products_slider {
    --related-per-view: 4;
    --related-gap: 26px;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    padding: 8px 0 30px 0;
    margin: -8px 0 -30px 0;
}

.related_products_slider.dragging {
    cursor: grabbing;
}

.related_products_track {
    display: flex;
    gap: var(--related-gap);
    transition: transform .45s ease;
    will-change: transform;
}

.related_products_track .mermer_product_card {
    flex: 0 0 calc((100% - (var(--related-gap) * (var(--related-per-view) - 1))) / var(--related-per-view));
    min-width: 0;
    user-select: none;
}

.related_products_track .mermer_product_card strong {
    font-size: 15px;
}

.related_products_arrow {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #171719;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .25s ease, background-color .25s ease;
}

.related_products_arrow img {
    width: 17px;
    height: 17px;
    display: block;
    filter: invert(74%) sepia(15%) saturate(1027%) hue-rotate(3deg) brightness(95%) contrast(95%);
}

.related_products_arrow:hover {
    transform: translateY(-50%) scale(1.08);
    background: #d6b56d;
}

.related_products_arrow:hover img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(235deg) brightness(103%) contrast(102%);
}

.related_products_prev {
    left: 0;
}

.related_products_next {
    right: 0;
}

@media (max-width: 991px) {
    .related_products_section {
        margin-top: 64px;
        padding-top: 56px;
    }

    .related_products_head {
        display: block;
    }

    .related_products_head > a {
        width: max-content;
        margin-top: 22px;
    }

    .related_products_slider_wrap {
        padding: 0 54px;
    }

    .related_products_slider {
        --related-per-view: 2;
        --related-gap: 22px;
    }
}

@media (max-width: 575px) {
    .related_products_section {
        margin-top: 48px;
        padding-top: 42px;
    }

    .related_products_head {
        margin-bottom: 28px;
    }

    .related_products_head strong {
        font-size: clamp(29px, 8.5vw, 38px);
    }

    .related_products_head > a {
        width: 100%;
    }

    .related_products_slider_wrap {
        padding: 0 42px;
    }

    .related_products_slider {
        --related-per-view: 1;
        --related-gap: 18px;
    }

    .related_products_arrow {
        width: 36px;
        height: 36px;
    }

    .related_products_arrow img {
        width: 14px;
        height: 14px;
    }
}

.contact_page_intro {
    max-width: 820px;
    margin-bottom: 54px;
}

.contact_page_intro > b {
    display: block;
    margin: 0 0 18px 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(38px, 3.8vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.6px;
}

.contact_page_intro > p {
    max-width: 760px;
    margin: 0;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.contact_page_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
    gap: 34px;
    align-items: stretch;
}

.contact_page_info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact_info_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.contact_info_card,
.contact_department_box,
.contact_page_form_box {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(214,181,109,.48);
    background: linear-gradient(135deg, rgba(214,181,109,.12) 0%, rgba(214,181,109,0) 46%), #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,.045);
    overflow: hidden;
}

.contact_info_card {
    min-height: 168px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact_info_card_main {
    min-height: 190px;
}

.contact_info_icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #171719;
    color: #d6b56d;
    font-size: 23px;
}

.contact_info_card strong,
.contact_department_box > strong,
.contact_page_form_box > strong {
    display: block;
    margin: 0 0 12px 0;
    color: #171719;
    font-family: 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.6px;
}

.contact_info_card p {
    margin: 0 0 7px 0;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

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

.contact_info_card a,
.contact_department_box a {
    color: #555;
    text-decoration: none;
    transition: color .25s ease;
}

.contact_info_card a:hover,
.contact_department_box a:hover {
    color: #d6b56d;
}

.contact_department_box {
    padding: 32px 34px;
}

.contact_department_box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-top: 1px solid #efefef;
    color: #555;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.contact_department_box a:last-child {
    padding-bottom: 0;
}

.contact_department_box a span {
    color: #171719;
    font-weight: 900;
    white-space: nowrap;
}

.contact_page_form_box {
    padding: 38px 36px;
    background: #171719;
}

.contact_page_form_box > span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    margin-bottom: 14px;
    background: rgba(214,181,109,.16);
    color: #d6b56d;
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.contact_page_form_box > strong {
    margin-bottom: 28px;
    color: #fff;
    font-size: 34px;
}

.contact_page_form_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.contact_page_form input,
.contact_page_form textarea {
    width: 100%;
    display: block;
    border: 1px solid rgba(255,255,255,.14);
    outline: none;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.contact_page_form input {
    height: 50px;
    padding: 0 15px;
}

.contact_page_form textarea {
    min-height: 128px;
    padding: 15px;
    resize: vertical;
    line-height: 1.45;
    margin-bottom: 18px;
}

.contact_page_form input::placeholder,
.contact_page_form textarea::placeholder {
    color: rgba(255,255,255,.7);
}

.contact_page_form input:focus,
.contact_page_form textarea:focus {
    border-color: #d6b56d;
    background: rgba(255,255,255,.08);
    box-shadow: 0 0 0 4px rgba(214,181,109,.12);
}

.contact_page_form button {
    width: 100%;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #d6b56d;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease;
}

.contact_page_form button:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #171719;
}

.contact_map_box {
    width: 100%;
    height: 440px;
    position: relative;
    overflow: hidden;
    margin-top: 36px;
    border: 1px solid rgba(214,181,109,.45);
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
}

.contact_map_box iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(100%) contrast(1.05);
    transition: filter .3s ease;
}

.contact_map_box:hover iframe {
    filter: grayscale(0%) contrast(1);
}

@media (max-width: 991px) {
    .contact_page_intro {
        margin-bottom: 42px;
    }

    .contact_page_grid {
        grid-template-columns: 1fr;
    }

    .contact_page_form_box {
        order: -1;
    }

    .contact_map_box {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .contact_page_intro {
        margin-bottom: 34px;
    }

    .contact_page_intro > b {
        font-size: clamp(31px, 9vw, 40px);
        letter-spacing: -1px;
    }

    .contact_page_intro > p {
        font-size: 15px;
    }

    .contact_info_row,
    .contact_page_form_grid {
        grid-template-columns: 1fr;
    }

    .contact_info_card,
    .contact_department_box,
    .contact_page_form_box {
        padding: 24px 20px;
    }

    .contact_info_card {
        min-height: auto;
    }

    .contact_info_card strong,
    .contact_department_box > strong {
        font-size: 25px;
    }

    .contact_page_form_box > strong {
        font-size: 29px;
    }

    .contact_department_box a {
        display: block;
    }

    .contact_department_box a span {
        display: block;
        margin-bottom: 5px;
    }

    .contact_map_box {
        height: 300px;
        margin-top: 28px;
    }
}