@charset "utf-8";
/* CSS Document */

:root {
    --preloader-image: url(https://ts-7h8gt7ps-shadow.webondemand.com/Sites/105709/Root/Web/Images/logo-icon-white-.svg);
}

option {
    color: black;
}

.logoHome img {
	transition: .3s;
    max-height: 50px
}

.logoHome:hover img {
    content: url("/Sites/105709/Root/Web/Images/logo-icon-colored-.svg");
}

@media (max-width: 991px) {
  .logoHome img {
      max-height: 40px
  }
}


/* MENU */

/* ================= DESKTOP MENU ================= */

@media (min-width: 992px) {

    .menu .js-navList > .nav-item.dropdown {
        position: relative;
    }

    .menu .js-navList > .nav-item.dropdown > .dropdown-menu.sub_menu {
        display: block !important;
        position: absolute !important;

        top: 90%;
        left: 0;

        min-width: 260px;
        padding: 20px 0;
        margin: 0;

        background: #17110d;
        border: 0;
        border-top: 3px solid #D7926B;
        border-radius: 0;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(10px);
        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;

        z-index: 9999;
    }

    /* OPEN ON HOVER */
    .menu .js-navList > .nav-item.dropdown:hover > .dropdown-menu.sub_menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    /* SUBMENU LINKS */
    .menu .dropdown-menu.sub_menu a {
        display: block;

        padding: 12px 30px;

        color: rgba(255,255,255,.7);
        white-space: nowrap;

        transition: color .2s ease;
    }

    .menu .dropdown-menu.sub_menu a:hover {
        color: #D7926B;
    }

    /* TOP TRIANGLE */
    .menu .dropdown-menu.sub_menu::before {
        content: "";

        position: absolute;
        top: -11px;
        left: 22px;

        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #D7926B;
    }
}


/* //////////////////////////// */


/* ================= MOBILE MENU ================= */

/* ================= MOBILE MENU ================= */

@media (max-width: 991px) {

    /* MAIN LIST */

    .menu .js-navList {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .menu .js-navList > .nav-item {
        width: 100% !important;
        height: auto !important;
        flex: 0 0 auto !important;

        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;

        transition:
            opacity .35s ease,
            transform .35s ease;
    }


    /* Після завершення overlay-анімації */
    .menu.is-active .js-navList > .nav-item {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu.is-active .js-navList > .nav-item:nth-child(1) {
        transition-delay: .55s;
    }

    .menu.is-active .js-navList > .nav-item:nth-child(2) {
        transition-delay: .63s;
    }

    .menu.is-active .js-navList > .nav-item:nth-child(3) {
        transition-delay: .71s;
    }

    .menu.is-active .js-navList > .nav-item:nth-child(4) {
        transition-delay: .79s;
    }

    .menu.is-active .js-navList > .nav-item:nth-child(5) {
        transition-delay: .87s;
    }


    /* При закритті — прибираємо текст одразу */
    .menu:not(.is-active) .js-navList > .nav-item {
        opacity: 0 !important;
        transform: translateY(-8px) !important;
        pointer-events: none !important;

        transition-delay: 0s !important;
        transition-duration: .12s !important;
    }


    /* ================= MAIN LINKS ================= */

    .menu .js-navList > .nav-item > .nav-link {
        position: relative;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;
        height: 60px;
        padding: 15px 5px !important;

        margin: 0 !important;

        text-align: left !important;
        color: rgba(255,255,255,.7) !important;
    }


    /* Стрілка тільки там, де є submenu */

    .menu .js-navList > .nav-item.dropdown > .nav-link::after {
        content: "→";

        position: absolute;
        right: 0;
        top: 50%;

        transform: translateY(-50%);

        margin: 0 !important;
        border: 0 !important;

        color: rgba(255,255,255,.7);
        font-size: 15px;
    }


    /* ================= SUBMENU MODE ================= */

    /* Ховаємо інші main links */
    .menu .js-navList.submenu-mode
    > .nav-item:not(.submenu-open) {
        display: none !important;
    }


    .menu .js-navList > .nav-item.submenu-open {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .menu .submenu-open > .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        padding: 14px 18px !important;

        background-color: #615E5E;
        color: #fff !important;

        border: 0 !important;
    }

    .menu .submenu-open > .nav-link::after {
        display: none !important;
    }

    .menu .submenu-open > .nav-link::before {
        content: "←";
        margin-right: 12px;

        color: #fff;
        font-size: 14px;
    }


    /* ================= SUBMENU ================= */

    .menu .dropdown-menu {
        display: none !important;
    }

    .menu .submenu-open > .dropdown-menu {
        display: block !important;
        position: static !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 8px 18px !important;

        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;

        animation: submenuIn .35s ease both;
    }

    .menu .submenu-open > .dropdown-menu li {
        width: 100% !important;
        height: auto !important;
    }

    .menu .submenu-open > .dropdown-menu a {
        display: block !important;

        width: 100% !important;
        padding: 11px 0 !important;

        text-align: left !important;
        color: rgba(255,255,255,.6) !important;
    }

    .menu .submenu-open > .dropdown-menu a:hover {
        color: #D7926B !important;
    }

    .menu .dropdown-menu::before {
        display: none !important;
        content: none !important;
    }
}


@keyframes submenuIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}










@media (max-width: 991px) {

    /* Сам блок submenu */
    .menu .submenu-open > .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        overflow: visible !important;

        animation: submenuOpen .35s ease both;
    }

    /* Пункти submenu */
    .menu .submenu-open > .dropdown-menu > li {
        display: block !important;
        width: 100% !important;
        height: auto !important;

        opacity: 0;
        transform: translateY(-10px);

        animation: submenuItemIn .35s ease forwards;
    }

    /* Примусово показуємо сам текст */
    .menu .submenu-open > .dropdown-menu > li > a {
        display: block !important;

        width: 100% !important;
        padding: 11px 0 !important;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        color: rgba(255,255,255,.65) !important;
        text-align: left !important;
    }

    /* Поява один за одним */
    .menu .submenu-open > .dropdown-menu > li:nth-child(1) {
        animation-delay: .08s;
    }

    .menu .submenu-open > .dropdown-menu > li:nth-child(2) {
        animation-delay: .14s;
    }

    .menu .submenu-open > .dropdown-menu > li:nth-child(3) {
        animation-delay: .20s;
    }

    .menu .submenu-open > .dropdown-menu > li:nth-child(4) {
        animation-delay: .26s;
    }

    .menu .submenu-open > .dropdown-menu > li:nth-child(5) {
        animation-delay: .32s;
    }

    .menu .submenu-open > .dropdown-menu > li:nth-child(6) {
        animation-delay: .38s;
    }
}

@keyframes submenuOpen {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes submenuItemIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}










@media (max-width: 991px) {

    /* ====================================
       MAIN MENU → SUBMENU
       ==================================== */

    .menu.is-active
    .js-navList.main-leaving
    > .nav-item {

        animation: mainMenuItemOut .25s ease both;
        pointer-events: none;
    }

    .menu .js-navList.main-leaving > .nav-item:nth-child(1) {
        animation-delay: 0s;
    }

    .menu .js-navList.main-leaving > .nav-item:nth-child(2) {
        animation-delay: .06s;
    }

    .menu .js-navList.main-leaving > .nav-item:nth-child(3) {
        animation-delay: .12s;
    }

    .menu .js-navList.main-leaving > .nav-item:nth-child(4) {
        animation-delay: .18s;
    }

    .menu .js-navList.main-leaving > .nav-item:nth-child(5) {
        animation-delay: .24s;
    }


    /* ====================================
       SUBMENU → MAIN MENU
       ==================================== */

    .menu .js-navList.main-return > .nav-item {
        animation: mainMenuItemIn .35s ease both;
    }

    .menu .js-navList.main-return > .nav-item:nth-child(1) {
        animation-delay: 0s;
    }

    .menu .js-navList.main-return > .nav-item:nth-child(2) {
        animation-delay: .07s;
    }

    .menu .js-navList.main-return > .nav-item:nth-child(3) {
        animation-delay: .14s;
    }

    .menu .js-navList.main-return > .nav-item:nth-child(4) {
        animation-delay: .21s;
    }

    .menu .js-navList.main-return > .nav-item:nth-child(5) {
        animation-delay: .28s;
    }


    /* ====================================
       SUBMENU CLOSE — reverse animation
       ==================================== */

    .menu
    .submenu-open.submenu-leaving
    > .dropdown-menu
    > li {

        animation: submenuItemOut .23s ease both !important;
    }

    /* Знизу догори */
    .menu .submenu-leaving > .dropdown-menu > li:nth-last-child(1) {
        animation-delay: 0s !important;
    }

    .menu .submenu-leaving > .dropdown-menu > li:nth-last-child(2) {
        animation-delay: .05s !important;
    }

    .menu .submenu-leaving > .dropdown-menu > li:nth-last-child(3) {
        animation-delay: .10s !important;
    }

    .menu .submenu-leaving > .dropdown-menu > li:nth-last-child(4) {
        animation-delay: .15s !important;
    }

    .menu .submenu-leaving > .dropdown-menu > li:nth-last-child(5) {
        animation-delay: .20s !important;
    }

    .menu .submenu-leaving > .dropdown-menu > li:nth-last-child(6) {
        animation-delay: .25s !important;
    }

}


/* ================= KEYFRAMES ================= */

@keyframes mainMenuItemOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}


@keyframes mainMenuItemIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes submenuItemOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

















@media (max-width: 991px) {

    .menu .submenu-open > .nav-link {
        animation: submenuHeaderIn .35s ease both;
    }

    .menu .submenu-open.submenu-leaving > .nav-link {
        animation: submenuHeaderOut .30s ease both !important;
    }
}


@keyframes submenuHeaderIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes submenuHeaderOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}


@media (max-width: 991px) {

    .menu .submenu-open,
    .menu .submenu-open > .dropdown-menu,
    .menu .submenu-open > .dropdown-menu > li,
    .menu .submenu-open > .dropdown-menu > li > a {
        pointer-events: auto !important;
    }

    .menu .submenu-open > .dropdown-menu {
        position: relative !important;
        z-index: 100 !important;
    }

    .menu .submenu-open > .dropdown-menu > li {
        position: relative !important;
        z-index: 101 !important;
    }

    .menu .submenu-open > .dropdown-menu > li > a {
        position: relative !important;
        z-index: 102 !important;
        cursor: pointer !important;
    }
}



/* //////////////////////////// */


/* Sidebar */

.sidebar {
    z-index: 500 !important;
}

.sidebar__logo img {
    max-width: 50px;
}
  
  
/* //////////////////////////// */

  
/* Home Page */

a.nav-link {
    color: #fff;
}


/* Slider */
.masthead__socials {
    transform: translateY(-50%) !important;
}


@media (max-width: 991px) {
    .masthead__title {
        font-size: clamp(28px, 8.5vw, 28px) !important;
        line-height: 1.1 !important;
        max-width: 100% !important;
        white-space: normal !important;
    }
}




/* ///////// */




/* Services Tabs */

.servA {
   color: #000 !important;
}

.tabs__controls.active1 .tabs__button:nth-child(1) {
    background-color: #18130C;
    border: 1px solid #18130C;
    color: white !important;
    -webkit-text-fill-color: #fff !important;
}

.tabs__controls.active2 .tabs__button:nth-child(2) {
    background-color: #18130C;
    border: 1px solid #18130C;
    color: white !important;
    -webkit-text-fill-color: #fff !important;
}

.tabs__controls.active3 .tabs__button:nth-child(3) {
    background-color: #18130C;
    border: 1px solid #18130C;
    color: white !important;
    -webkit-text-fill-color: #fff !important;
}

.tabs__controls.active4 .tabs__button:nth-child(4) {
    background-color: #18130C;
    border: 1px solid #18130C;
    color: white !important;
    -webkit-text-fill-color: #fff !important;
}

.tabs__controls.active5 .tabs__button:nth-child(5) {
    background-color: #18130C;
    border: 1px solid #18130C;
    color: white !important;
    -webkit-text-fill-color: #fff !important;
}

.tabs__controls.active6 .tabs__button:nth-child(6) {
    background-color: #18130C;
    border: 1px solid #18130C;
    color: white !important;
    -webkit-text-fill-color: #fff !important;
}

.tabs__controls.active7 .tabs__button:nth-child(7) {
    background-color: #18130C;
    border: 1px solid #18130C;
    color: white !important;
    -webkit-text-fill-color: #fff !important;
}

.tabs__controls.active8 .tabs__button:nth-child(8) {
    background-color: #18130C;
    border: 1px solid #18130C;
    color: white !important;
    -webkit-text-fill-color: #fff !important;
}

/* ///////// */

/* Our services Cards */

.service.-card.-hover:hover .service__icon {
    background-color: #ffe0cf !important;
}

.service__title a {
    transition: color 50ms ease-in-out;
}

.row {
    justify-content: center;
}


/* New design of cards */

.service-card-premium {
    position: relative;
    display: block;
    overflow: hidden;

    width: 100%;
    height: 340px;

    background: #f5f2ee;
    border: 1px solid rgba(23,17,13,.10);
    border-bottom: 3px solid #D7926B;

    color: #17110d;
    text-decoration: none !important;

    transition:
        transform .4s cubic-bezier(.165,.84,.44,1),
        box-shadow .4s ease,
        border-color .4s ease;
}


/* subtle default texture */

.service-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(215,146,107,.035) 0%,
            transparent 45%
        );

    z-index: 0;
}


/* ================= IMAGE ================= */

.service-card-premium__image {
    position: absolute;
    inset: 0;

    background:
        var(--service-bg)
        center / cover no-repeat;

    /* default: бачимо тільки нижню частину */
    clip-path: inset(62% 0 0 0);

    transform: scale(1.02);

    transition:
        clip-path .55s cubic-bezier(.165,.84,.44,1),
        transform .8s cubic-bezier(.165,.84,.44,1);

    z-index: 1;
}


/* overlay */

.service-card-premium__image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10,8,6,.55) 0%,
            rgba(10,8,6,.68) 55%,
            rgba(10,8,6,.78) 100%
        );

    opacity: .12;
    transition: opacity .45s ease;
}


/* ================= CONTENT ================= */

.service-card-premium__content {
    position: relative;
    z-index: 2;

    height: 100%;
    padding: 38px 32px 30px;

    display: flex;
    flex-direction: column;
}


.service-card-premium .service__title {
    margin: 0 0 22px;

    color: #17110d;
    transition: color .35s ease;
}

.service__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.service-card-premium .service__text {
    max-width: 95%;
    margin: 0;

    color: rgba(23,17,13,.62);
    transition: color .35s ease;
}


/* ================= CTA ================= */

.service-card-premium__cta {
    align-self: flex-start;
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    padding: 10px 15px;

    border: 1px solid transparent;

    color: #17110d;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;

    transition:
        color .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.service-card-premium__cta > span {
    transition: transform .3s ease;
}


/* ================= HOVER ================= */

.service-card-premium:hover {
    transform: translateY(-3px);

    border-color: rgba(215,146,107,.65);

    box-shadow:
        0 18px 38px rgba(20,14,10,.10);
}


.service-card-premium:hover .service-card-premium__image {
    /* фото просто розкривається, нічого в layout не рухається */
    clip-path: inset(0 0 0 0);

    transform: scale(1.06);
}


.service-card-premium:hover .service-card-premium__image::after {
    opacity: 1;
}


.service-card-premium:hover .service__title {
    color: #fff;
}


.service-card-premium:hover .service__text {
    color: rgba(255,255,255,.78);
}

.service-card-premium__cta {
    background: rgba(247, 244, 240, .88);
    border: 1px solid rgba(23, 17, 13, .18);
    color: #17110d;
    padding: 10px 15px;
    backdrop-filter: blur(4px);
}


.service-card-premium:hover .service-card-premium__cta {
    color: #fff;

    border-color: rgba(255,255,255,.65);
    background: rgba(0,0,0,.12);
}


.service-card-premium:hover .service-card-premium__cta > span {
    transform: translateX(4px);
}

/* New design of cards END */


/* ///////// */


.p18fontsize {
	font-size: 18px;
}

.p22fontsize {
	font-size: 22px;
}


/* //////// BL Buildex Standard ///// */

/* =========================
   BL BUILDEX STANDARD CARDS
========================= */

.standard-card {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 28px;

    height: 100%;
    min-height: 180px;

    padding: 34px;

    text-align: left !important;

    background: rgba(255,255,255,.035);
    border: 1px solid rgba(215,146,107,.22);

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


/* bronze detail */

.standard-card::after {
    content: "";
    position: absolute;

    right: 0;
    bottom: 0;

    width: 45px;
    height: 2px;

    background: #D7926B;

    transition: width .35s ease;
}


/* REMOVE OLD CIRCLE */

.standard-card .pieChart__chart {
    flex: 0 0 58px;

    width: 58px !important;
    height: 58px !important;

    margin: 0 !important;
}

.standard-card .pieChart__chart svg,
.standard-card .pieChart__percent-helper {
    display: none !important;
}


/* ICON */

.standard-card .pieChart__icon {
    position: static !important;
    transform: none !important;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.standard-card .pieChart__icon img {
    max-width: 46px;
    max-height: 46px;

    object-fit: contain;

    transition: transform .35s ease;
    rotate: 90deg !important;
}


/* CONTENT */

.standard-card .pieChart__content {
    padding: 0 !important;
    margin: 0 !important;

    text-align: left !important;
}

.standard-card .pieChart__title {
    margin: 0 0 10px !important;

    font-size: 21px;
    line-height: 1.25;
}

.standard-card .pieChart__text {
    margin: 0 !important;

    color: rgba(255,255,255,.65) !important;

    font-size: 16px;
    line-height: 1.55;
}


/* HOVER */

.standard-card:hover {
    transform: translateY(-3px);

    background: rgba(215,146,107,.07);
    border-color: rgba(215,146,107,.65);
}

.standard-card:hover::after {
    width: 80px;
}

.standard-card:hover .pieChart__icon img {
    transform: translateY(-3px);
}


/* MOBILE */

@media (max-width: 767px) {

    .standard-card {
        gap: 20px;

        min-height: 0;
        padding: 24px 20px;
    }

    .standard-card .pieChart__chart {
        flex: 0 0 44px;

        width: 44px !important;
        height: 44px !important;
    }

    .standard-card .pieChart__icon {
        width: 44px;
        height: 44px;
    }

    .standard-card .pieChart__icon img {
        max-width: 38px;
        max-height: 38px;
    }

    .standard-card .pieChart__title {
        font-size: 18px;
        margin-bottom: 7px !important;
    }

    .standard-card .pieChart__text {
        font-size: 14px;
        line-height: 1.5;
    }
}



/* //////// BL Buildex Standard END ///// */

/* //////////////////////////// */


/* About Us */

@media (min-width: 1360px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1375px;
    }
}

@media (max-width: 991px) {
    .glassBgSection {
        background: rgba(255, 255, 255, 0.78);

        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);

        border: 1px solid rgba(255, 255, 255, 0.55);
        border-radius: 12px;

        padding: 16px 18px;

        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    }
}


/* //////////////////////////// */

/* Services */

.mt75p {
   margin-top: 75px;
}

.mt50p {
   margin-top: 50px;
}
/* ServItems will scroll with the rest content .....................................
@media (min-width: 992px) {

    .main-content,
    section:has(.tabs__controls),
    section:has(.tabs__controls) .container,
    section:has(.tabs__controls) .row {
        overflow: visible !important;
    }

    /* row повинен розтягувати обидві колонки однаково 
    section:has(.tabs__controls) .row {
        align-items: stretch !important;
    }

    /* ліва колонка має мати висоту правого контенту 
    .col-xl-3.col-lg-4:has(.tabs__controls) {
        align-self: stretch !important;
        position: relative;
    }

    /* рухається тільки саме меню 
    .tabs__controls {
        position: sticky !important;
        top: 120px !important;
        z-index: 10;
    }
}*/


/* Serv Kitchen Unique */

.kitchen-system__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;

    margin-top: 35px;
}


/* ITEM */

.kitchen-system__item {
    position: relative;

    min-height: 220px;
    padding: 28px 26px;

    background: #faf8f6;
    border-radius: 12px;

    transition:
        transform .3s ease,
        background .3s ease;
}


/* NUMBER */

.kitchen-system__number {
    position: absolute;
    top: 24px;
    right: 24px;

    color: rgba(23, 17, 11, .28);

    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
}


/* SMALL BRONZE DETAIL */

.kitchen-system__line {
    display: block;

    width: 28px;
    height: 2px;

    margin-bottom: 38px;

    background: #D7926B;

    transition: width .3s ease;
}


/* TITLE */

.kitchen-system__item h3 {
    margin: 0 0 12px;

    color: #17110b;

    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
}


/* TEXT */

.kitchen-system__item p {
    margin: 0;

    color: #77716c;

    font-size: 13px;
    line-height: 1.7;
}


/* HOVER */

.kitchen-system__item:hover {
    transform: translateY(-4px);

    background: #f7f2ee;
}

.kitchen-system__item:hover .kitchen-system__line {
    width: 45px;
}


/* TABLET */

@media (max-width: 991px) {

    .kitchen-system__items {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .kitchen-system__items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .kitchen-system__item {
        min-height: auto;
        padding: 24px;
    }

    .kitchen-system__line {
        margin-bottom: 28px;
    }

}


/* /////// Serv Kitchen Unique END ////// */

/* Serv / what's included */
/*
.service-included {
  margin-top: 70px;
}

.service-included h2 {
  margin: 0 0 28px;

  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;

  color: #17110b;
}
*/

/* List */

.service-included__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 55px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.service-included__list li {
  position: relative;

  padding: 15px 0 15px 24px;

  border-bottom: 1px solid #ebe6e1;

  font-size: 15px;
  line-height: 1.5;

  color: #3f3b37;
}


/* Bronze marker */

.service-included__list li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 6px;
  height: 6px;

  background: #D7926B;

  border-radius: 50%;

  transform: translateY(-50%);
}


/* Mobile */

@media (max-width: 767px) {

  .service-included {
    margin-top: 50px;
  }

  .service-included__list {
    grid-template-columns: 1fr;
  }

}

.service-scope__head {
    max-width: 760px;
    margin: 0 auto 70px;
}

.service-scope__label {
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c07b45;
}

.service-scope__title {
    margin: 0;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
    color: #17110b;
}

.service-scope__intro {
    max-width: 650px;
    margin: 22px auto 0;
    font-size: 16px;
    line-height: 1.8;
    color: #77736f;
}


/* Grid */

.service-scope__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 70px;
    
    margin-top: 50px;
}


/* Individual item */

.scope-item {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 22px;

    padding: 30px 0;

    border-top: 1px solid #e7e2dd;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.scope-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid #e7e2dd;
}


/* Number */

.scope-item__number {
    padding-top: 3px;

    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.08em;

    color: #c07b45;
}


/* Content */

.scope-item__content h3 {
    margin: 0 0 9px;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;

    color: #17110b;
}

.scope-item__content p {
    max-width: 410px;
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #77736f;
}


/* Premium subtle hover */

.scope-item::after {
    content: "";

    position: absolute;
    top: -1px;
    left: 0;

    width: 0;
    height: 1px;

    background: #c07b45;

    transition: width 0.4s ease;
}

.scope-item:hover::after {
    width: 100%;
}

.scope-item:hover {
    transform: translateY(-3px);
}


/* Tablet */

@media (max-width: 991px) {
    .service-scope__grid {
        column-gap: 40px;
    }

    .service-scope__title {
        font-size: 34px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .service-scope__head {
        margin-bottom: 45px;
        text-align: left !important;
    }

    .service-scope__title {
        font-size: 30px;
    }

    .service-scope__intro {
        margin-left: 0;
    }

    .service-scope__grid {
        grid-template-columns: 1fr;
    }

    .scope-item {
        grid-template-columns: 42px 1fr;
        gap: 16px;
        padding: 24px 0;
    }

    .scope-item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .scope-item:last-child {
        border-bottom: 1px solid #e7e2dd;
    }
}

/* //////////////////////////// */




/* Serv / timeline */

.service-process__head {
    max-width: 720px;
    margin: 0 auto 90px;
}

.service-process__label {
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 500;
    line-height: 1;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #c07b45;
}

.service-process__title {
    margin: 0;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;

    color: #17110b;
}

.service-process__intro {
    max-width: 620px;
    margin: 20px auto 0;

    font-size: 16px;
    line-height: 1.75;

    color: #77736f;
}


/* Timeline */

.service-timeline {
    position: relative;

    max-width: 1050px;
    padding: 10px 0;
}


/* Center vertical line */

.service-timeline::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;

    background: #d7d0c9;

    transform: translateX(-50%);
}


/* Timeline item */

.timeline-item {
    position: relative;

    display: flex;

    width: 100%;
    min-height: 184px;
}


/* Left */

.timeline-item--left {
    justify-content: flex-start;
    padding-right: calc(50% + 70px);
    text-align: right;
}


/* Right */

.timeline-item--right {
    justify-content: flex-end;
    padding-left: calc(50% + 70px);
    text-align: left;
}


/* Content */

.timeline-item__content {
    width: 100%;
    max-width: 400px;
}

.timeline-item__number {
    margin-bottom: 16px;

    font-size: 42px;
    line-height: 1;
    font-weight: 400;

    color: #c07b45;
}

.timeline-item h3 {
    margin: 0 0 12px;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;

    color: #17110b;
}

.timeline-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.75;

    color: #77736f;
}


/* Timeline marker */

.timeline-item__marker {
    position: absolute;

    top: 17px;
    left: 50%;

    width: 15px;
    height: 15px;

    border: 2px solid #c07b45;
    border-radius: 50%;

    background: #f7f5f2;

    transform: translateX(-50%);

    z-index: 2;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


/* Connector from content to center */

.timeline-item::after {
    content: "";

    position: absolute;
    top: 24px;

    width: 52px;
    height: 1px;

    background: #d7d0c9;
}

.timeline-item--left::after {
    left: calc(50% - 52px);
}

.timeline-item--right::after {
    left: 50%;
}


/* Hover */

.timeline-item:hover .timeline-item__marker {
    background: #c07b45;

    transform:
        translateX(-50%) scale(1.15);
}


/* Tablet */

@media (max-width: 991px) {

    .service-process__head {
        margin-bottom: 70px;
    }

    .timeline-item--left {
        padding-right: calc(50% + 45px);
    }

    .timeline-item--right {
        padding-left: calc(50% + 45px);
    }

    .timeline-item::after {
        width: 30px;
    }

    .timeline-item--left::after {
        left: calc(50% - 30px);
    }

}


/* Mobile */

@media (max-width: 767px) {

    .service-process__head {
        margin-bottom: 55px;
        text-align: left !important;
    }

    .service-process__title {
        font-size: 30px;
    }

    .service-process__intro {
        margin-left: 0;
    }


    /* Move timeline to left */

    .service-timeline::before {
        left: 8px;
        transform: none;
    }


    .timeline-item,
    .timeline-item--left,
    .timeline-item--right {
        display: block;

        min-height: 0;

        padding:  0 0 44px 48px;

        text-align: left;
    }

    .timeline-item:last-child {
        padding-bottom: 0;
    }


    .timeline-item__content {
        max-width: 100%;
    }


    .timeline-item__number {
        margin-bottom: 12px;

        font-size: 32px;
    }

    .timeline-item h3 {
        font-size: 20px;
    }


    /* Marker */

    .timeline-item__marker {
        top: 9px;
        left: 8px;

        width: 13px;
        height: 13px;

        transform: translateX(-50%);
    }


    /* Small connector */

    .timeline-item::after,
    .timeline-item--left::after,
    .timeline-item--right::after {
        top: 15px;
        left: 8px;

        width: 24px;
    }

}
/* //////////////////////////// */

/* ////////CTA SERVI///////// */

.service-cta {
  padding: 90px 20px;
}

.service-cta .container {
    padding: 0;
}


/* Glass panel */

.service-cta__inner {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  padding: 70px 55px;

  /* black glass + subtle bronze light */
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(215, 146, 107, 0.14) 0%,
      rgba(215, 146, 107, 0.05) 28%,
      transparent 55%
    ),
    rgba(18, 14, 11, 0.90);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(215, 146, 107, 0.16);

  border-radius: 32px;
}


/* Content */

.service-cta__content {
  max-width: 680px;
}

.service-cta__label {
  display: block;
  margin-bottom: 14px;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #c07b45;
}

.service-cta h2 {
  margin: 0 0 18px;

  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;

  color: #fff;
}

.service-cta p {
  max-width: 620px;
  margin: 0;

  font-size: 16px;
  line-height: 1.75;

  color: rgba(255, 255, 255, 0.65);
}


/* Button */

.service-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 17px 22px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(215, 146, 107, 0.55);
  border-radius: 12px;

  color: #fff !important;
  text-decoration: none !important;

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


/* Arrow */

.service-cta__button span {
  color: #D7926B !important;
  font-size: 18px;
  line-height: 1;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


/* Hover */

.service-cta__button:hover {
  background: rgba(215, 146, 107, 0.13);

  border-color: #D7926B;

  color: #fff !important;

  transform: translateY(-2px);
}


/* Prevent template styles from changing text color */

.service-cta__button:hover,
.service-cta__button:hover *,
.service-cta__button:focus,
.service-cta__button:focus * {
  color: #fff !important;
}


/* Arrow movement */

.service-cta__button:hover span {
  transform: translate(3px, -3px);
}


/* Mobile */

@media (max-width: 767px) {

  .service-cta {
    padding: 65px 0;
  }

  .service-cta__inner {
    display: block;

    padding: 45px 28px;

    border-radius: 24px;
  }

  .service-cta h2 {
    font-size: 30px;
  }

  .service-cta__action {
    margin-top: 32px;
  }

}




/* ////////CTA SERVI END///////// */


/* //////// PROJECTS ///////// */

@media (min-width: 992px) {
    .js-pin-content {
        transform: translateY(-100px);
        margin-top: 100px;
    }
}


.row.y-gap-32.pt-32 {
    justify-content: flex-start;
}

@media (max-width: 991px) {
  .sliderNav.-portfolio-slider.js-nav button {
       -webkit-text-fill-color: #000 !important;
  }

  .sliderNav.-portfolio-slider.js-nav button::after,
  .sliderNav.-portfolio-slider.js-nav button::before {
       background-color: #000;
  }
}


/* //////// PROJECTS END ///////// */



/* //////// FAQ END ///////// */


button.text-lg.md\:text-base.fw-600.text-black {
    text-align: left !important;
}








/* //////// FAQ END ///////// */


/* //////////////////////////// */

/* FORM */

.ItemSpacer.WOD_FormRowV2 input,
.ItemSpacer.WOD_FormRowV2 input:focus {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.ItemSpacer.WOD_FormRowV2 input::placeholder, 
.ItemSpacer.WOD_FormRowV2 textarea::placeholder {
    color: #fff;
}

select {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6) !important;
}

textarea {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6) !important;
}


/* SUBMIT */
button#SubmitButton1_10001_Itm83 {
    position: relative;
    width: auto !important;
    padding: 15px 50px !important;
    background: #d7926b !important;
    color: #fff !important;
    border: 0 !important;
    text-transform: uppercase;
    font-weight: 400;
}

button#SubmitButton1_10001_Itm83::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255,255,255,.45);
    pointer-events: none;
    transition: border-color .3s ease;
}

button#SubmitButton1_10001_Itm83:hover::after {
	border-color: #fff;
}
/* /// FORM END/// */


/* /// FORM UPDATED /// */

/* =========================
   CONTACT FORM
========================= */

#WOD_Form_1_10001_Itm83 .WOD_Form_Lable {
    display: flex;
    flex-direction: column;
    gap: 8px;

    color: rgba(255,255,255,.48);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .03em;

    transition: color .25s ease;
}


/* INPUT / SELECT / TEXTAREA */

#WOD_Form_1_10001_Itm83 .form-control:not(.form-control-submit) {
    width: 100%;

    padding: 10px 2px 12px !important;

    color: #fff !important;
    font-size: 15px;

    background: transparent !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.25) !important;
    border-radius: 0 !important;

    box-shadow: none !important;
    outline: none !important;

    transition:
        border-color .25s ease,
        color .25s ease;
}


/* HOVER */

#WOD_Form_1_10001_Itm83 .WOD_Form_Lable:hover
.form-control:not(.form-control-submit) {
    border-bottom-color: rgba(215,146,107,.6) !important;
}


/* FOCUS */

#WOD_Form_1_10001_Itm83 .WOD_Form_Lable:focus-within {
    color: #D7926B;
}

#WOD_Form_1_10001_Itm83 .form-control:not(.form-control-submit):focus {
    border-bottom-color: #D7926B !important;
    box-shadow: 0 1px 0 rgba(215,146,107,.25) !important;
}


/* SELECT */

#WOD_Form_1_10001_Itm83 select.form-control {
    cursor: pointer;
}

#WOD_Form_1_10001_Itm83 select.form-control option {
    background: #18130C;
    color: #fff;
}


/* TEXTAREA */

#WOD_Form_1_10001_Itm83 textarea.form-control {
    min-height: 115px;
    resize: vertical;
}


/* ROW SPACING */

#WOD_Form_1_10001_Itm83 .WOD_FormRowV2 {
    margin-bottom: 24px !important;
}


/* SUBMIT ROW */

#WOD_Form_1_10001_Itm83 .WOD_Form_Lable_1_Submit {
    margin-top: 4px;
}


/* MOBILE */

@media (max-width: 767px) {

    #WOD_Form_1_10001_Itm83 .WOD_FormRowV2 {
        gap: 18px !important;
        margin-bottom: 18px !important;
    }

    #WOD_Form_1_10001_Itm83 .WOD_FormRowV2 > .SpacedItem {
        flex: 0 0 100% !important;
    }

    #WOD_Form_1_10001_Itm83 .WOD_Form_Lable {
        gap: 6px;
        font-size: 12px;
    }
}





/* /// FORM UPDATED END/// */



/* /// MAP /// */

.col-xl-7.col-lg-7.z-1 iframe {
    width: 100% !important;
    aspect-ratio: 1 / 1;
    height: auto !important;
    display: block;
    border: 0;
}




/* /// MAP END/// */


/* //////////////////////////// */



























































































































































