@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: 150px;
    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: 205px;
    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;
}

.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;
    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;
    transition: transform .25s ease, background-color .25s ease;
}

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

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

.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%);
    }

    .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: #000;
    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;
}