* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    background: #181818;
    background:
        radial-gradient(ellipse at 15% 25%,
            #303426 0%,
            transparent 42%),
        radial-gradient(ellipse at 85% 45%,
            #20251D 0%,
            transparent 45%),
        linear-gradient(to bottom,
            #1B1B19 0%,
            #24281F 25%,
            #20241D 50%,
            #191C18 75%,
            #181916 100%);
    background-attachment: fixed;
}

button {
    font-family: Rubik;

}

h1 {
    font-family: Rubik;
}

em {
    color: #aeb477;
    font-style: normal;
}

h2 {
    font-family: Rubik;
    font-size: 45px;
    font-weight: 400;
    text-transform: uppercase;
}

h3 {
    font-family: Rubik;
}

p {
    font-size: 18px;
    color: #c8c8c8 !important;
}

a {
    font-size: 18px;
    text-decoration: none;
}

span {
    color: #aeb477;
}

.custom-cursor {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(200, 194, 126, .8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition:
        width .25s ease,
        height .25s ease,
        border-color .25s ease,
        background .25s ease;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background: #aeb477;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000000;
    transform: translate(-50%, -50%);
}

body.cursor-hover .custom-cursor {
    width: 60px;
    height: 60px;
    background: rgba(200, 194, 126, .08);
    border-color: #aeb477;
}

@media (max-width: 800px) {

    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }
}

.site-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(ellipse at 15% 25%, #303426 0%, transparent 42%), radial-gradient(ellipse at 85% 45%, #20251D 0%, transparent 45%), linear-gradient(to bottom, #1B1B19 0%, #24281F 25%, #20241D 50%, #191C18 75%, #181916 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.site-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    width: min(420px, 80%);
    text-align: center;
}

.loader-logo {
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    animation: loaderLogo 1s ease forwards;
}

.loader-logo img {
    display: block;
    width: 180px;
    max-width: 70%;
    height: auto;
    margin: 0 auto;
}

@keyframes loaderLogo {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.loader-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: #d8d09b;
    border-radius: inherit;
    transition: width 0.08s linear;
}

.loader-percentage {
    margin-top: 14px;
    color: #d8d09b;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .loader-content {
        width: 75%;
    }

    .loader-logo img {
        width: 150px;
    }

    .loader-progress {
        height: 2px;
    }

    .loader-percentage {
        font-size: 12px;
        margin-top: 12px;
    }
}

/* .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(6px);
    padding: 15px 0;
}
.header.sticky {
    position: fixed;
    background-color: rgb(0 0 0 / 47%);
    backdrop-filter: blur(12px);
}
.max-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container {
    width: 90%;
    margin: auto;
}
.logo img {
    width: 150px;
    display: block;
}
.navbar {}
.nav-links {
    display: flex;
    list-style: none;
    gap: 60px;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}
.nav-links a:hover,
.nav-links .active {
    color: #aeb477;
}
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
@media(max-width:991px) {
    .logo img {
        width: 130px;
    }
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    .navbar {
        position: fixed;
        top: 80px;
        left: 0;
        transform: none;
        width: 100%;
        background: #111;
        max-height: 0;
        overflow: hidden;
        transition: .4s ease;
    }
    .navbar.active {
        max-height: 500px;
    }
    .nav-links {
        flex-direction: column;
        gap: 0;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    .nav-links a {
        display: block;
        padding: 18px 25px;
    }
}
.products-menu {
    position: static;
}
.products-link {
    display: flex !important;
    align-items: center;
    gap: 7px;
}
.products-link i {
    font-size: 8px;
    transition: transform .3s ease;
}
.products-mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: 28px 0 32px;
    background: linear-gradient(135deg, rgb(19 19 19 / 79%), rgb(19 21 19 / 68%));
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background-color: rgb(16 16 16 / 77%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    transition:
        opacity .3s ease,
        visibility .3s ease;
    z-index: 9999;
}
.products-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 20px;
    background: transparent;
    z-index: 9998;
}
.products-menu:hover .products-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    background: radial-gradient(ellipse at 15% 25%, #303426 0%, transparent 42%), radial-gradient(ellipse at 85% 45%, #20251D 0%, transparent 45%), linear-gradient(to bottom, #1B1B19 0%, #24281F 25%, #20241D 50%, #191C18 75%, #181916 100%);
}
.products-menu:hover .products-link i {
    transform: rotate(180deg);
}
.mega-menu-inner {
    width: min(100%, 88%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.mega-column {
    position: relative;
    text-align: center;
}
.mega-column:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background:
        rgba(255, 255, 255, .09);
}
.mega-column h3 {
    margin: 0 0 16px;
    color: #aeb477;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .5px;
}
.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mega-column li {
    margin: 0;
}
.mega-column li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    color: #e4e4e4;
    font-weight: 400;
    transition: color .25s ease,
        padding-left .25s ease;
    background: #ffffff0f;
    padding: 8px 0px;
    backdrop-filter: blur(45px);
    border-radius: 30px;
    width: 150px;
    text-align: center;
    justify-content: center;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}
.mega-column li a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: #aeb477;
    transition:
        width .25s ease,
        margin-right .25s ease;
}
.mega-column li a:hover {
    color: #aeb477;
    padding-left: 4px;
}
.mega-column li a:hover::before {
    width: 12px;
    margin-right: 7px;
}
.mega-feature {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: #272a25;
}
.mega-feature-image {
    position: absolute;
    inset: 0;
}
.mega-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.products-menu:hover .mega-feature-image img {
    transform: scale(1.05);
}
.mega-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .85));
}
.mega-feature-content {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 18px;
}
.mega-feature-content span {
    display: block;
    margin-bottom: 5px;
    color: #aeb477;
    font-size: 8px;
    letter-spacing: 2px;
}
.mega-feature-content h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 19px;
    line-height: 1.2;
}
.mega-feature-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 10px;
    transition: .3s;
}
.mega-feature-content a:hover {
    color: #aeb477;
}
.mega-feature-content a i {
    font-size: 8px;
    transition: .3s;
}
.mega-feature-content a:hover i {
    transform: translateX(5px);
}
.header,
.header .container,
.navbar,
.nav-links {
    overflow: visible;
}
@media (max-width: 1000px) {
    .mega-menu-inner {
        grid-template-columns:
            repeat(3, 1fr);
        gap: 25px;
    }
    .mega-feature {
        display: none;
    }
}
@media (max-width: 800px) {
    .products-menu {
        width: 100%;
    }
    .products-link {
        width: 100%;
        justify-content: space-between;
    }
    .products-menu::after {
        display: none;
    }
    .products-mega-menu {
        position: static;
        width: 100%;
        padding: 0;
        margin-top: 12px;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
        transition: none;
    }
    .products-menu.mobile-open .products-mega-menu {
        display: block;
    }
    .products-menu:hover .products-mega-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .mega-menu-inner {
        width: 100%;
        display: block;
    }
    .mega-column {
        padding: 10px 0;
        border-bottom:
            1px solid rgba(255, 255, 255, .08);
    }
    .mega-column:not(:last-of-type)::after {
        display: none;
    }
    .mega-column h3 {
        margin-bottom: 8px;
        font-size: 12px;
    }
    .mega-column ul {
        display: grid;
        grid-template-columns:
            repeat(2, 1fr);
        gap: 2px 15px;
    }
    .mega-column li a {
        font-size: 10px;
        padding: 5px 0;
    }
    .mega-feature {
        display: none;
    }
} */

/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.header.sticky {
    position: fixed;
    background: rgb(0 0 0 / 47%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.container {
    width: 90%;
    margin: auto;
}

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

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 150px;
    display: block;
}

.navbar {
    overflow: visible;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links>li {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    white-space: nowrap;
    transition: color .3s ease;
}

.nav-links a:hover,
.nav-links .active {
    color: #aeb477;
}


/* =========================================================
   MENU TOGGLE
   ========================================================= */

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
}


/* =========================================================
   PRODUCTS LINK
   ========================================================= */

.products-menu {
    position: static !important;
}

/* Header search icon: same white nav style, olive on hover. */
.header-search-item {
    display: flex;
    align-items: center;
}
.header-actions {
    display: none;
    align-items: center;
    gap: 14px;
}
.header-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.header-search-btn:hover {
    color: #AEB477;
    border-color: rgba(174, 180, 119, .65);
    background: rgba(174, 180, 119, .14);
    transform: translateY(-1px);
}

.products-link {
    display: flex !important;
    align-items: center;
    gap: 7px;
}

.products-link i {
    font-size: 9px;
    transition: transform .3s ease;
}


/* =========================================================
   DESKTOP PRODUCT MEGA MENU
   ========================================================= */

.products-mega-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    max-width: 100%;

    padding: 32px 0 38px;

    background:
        radial-gradient(ellipse at 15% 25%,
            #303426 0%,
            transparent 42%),
        radial-gradient(ellipse at 85% 45%,
            #20251d 0%,
            transparent 45%),
        linear-gradient(to bottom,
            #1b1b19 0%,
            #24281f 25%,
            #20241d 50%,
            #191c18 75%,
            #181916 100%);

    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .12);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    z-index: 99999;
}


/* Hover bridge */
.products-menu::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 100%;

    height: 20px;

    background: transparent;

    z-index: 99998;
}


/* Desktop hover */
@media (min-width: 993px) {

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

    .products-menu:hover .products-link i {
        transform: rotate(180deg);
    }
}


/* =========================================================
   MEGA MENU INNER
   ========================================================= */

.mega-menu-inner {
    width: 90%;
    max-width: 1500px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(8, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* =========================================================
   MEGA COLUMNS
   ========================================================= */

.mega-column {
    position: relative;
    min-width: 0;

    text-align: center;
}

.mega-column:not(:last-of-type)::after {
    content: "";

    position: absolute;

    top: 0;
    right: -14px;

    width: 1px;
    height: 100%;

    background: rgba(255, 255, 255, .09);
}

.mega-column h3 {
    margin: 0 0 16px;

    color: #aeb477;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.3;

    letter-spacing: .4px;

    white-space: nowrap;
}

.mega-column ul {
    list-style: none;

    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 9px;
}

.mega-column li {
    width: 100%;
}

.mega-column li a {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 150px;

    min-height: 34px;

    margin: 0 auto;
    padding: 7px 8px;

    box-sizing: border-box;

    color: #e4e4e4;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.2;

    text-align: center;

    white-space: nowrap;

    text-decoration: none;

    background: rgba(255, 255, 255, .06);

    border-radius: 30px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        inset 0 1px 6px rgba(203, 203, 203, .25);

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.mega-column li a::before {
    content: "";

    width: 0;
    height: 1px;

    margin-right: 0;

    background: #aeb477;

    transition:
        width .25s ease,
        margin-right .25s ease;
}

.mega-column li a:hover {
    color: #aeb477;

    background: rgba(255, 255, 255, .1);

    transform: translateX(3px);
}

.mega-column li a:hover::before {
    width: 10px;
    margin-right: 6px;
}


/* =========================================================
   FEATURE
   ========================================================= */

.mega-feature {
    position: relative;

    min-height: 220px;

    overflow: hidden;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, .15);

    background: #272a25;
}

.mega-feature-image {
    position: absolute;
    inset: 0;
}

.mega-feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.products-menu:hover .mega-feature-image img {
    transform: scale(1.05);
}

.mega-feature::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .85));
}

.mega-feature-content {
    position: absolute;

    z-index: 2;

    left: 20px;
    right: 20px;
    bottom: 18px;
}

.mega-feature-content span {
    display: block;

    margin-bottom: 5px;

    color: #aeb477;

    font-size: 8px;

    letter-spacing: 2px;
}

.mega-feature-content h4 {
    margin: 0 0 12px;

    color: #fff;

    font-size: 19px;

    line-height: 1.2;
}

.mega-feature-content a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-size: 10px;
}

.mega-feature-content a:hover {
    color: #aeb477;
}

.mega-feature-content a i {
    font-size: 8px;

    transition: transform .3s ease;
}

.mega-feature-content a:hover i {
    transform: translateX(5px);
}


/* GLOBAL SEARCH: header glass popup (dark charcoal + olive #AEB477). */
.global-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 18px 24px;
    background: rgba(8, 9, 8, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}
.global-search-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.global-search-popup {
    width: min(620px, 100%);
    max-height: min(70vh, 640px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(160deg, rgba(32, 34, 30, .92), rgba(20, 21, 19, .94));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .08);
    transform: translateY(-10px) scale(.985);
    transition: transform .22s ease;
}
.global-search-overlay.open .global-search-popup {
    transform: translateY(0) scale(1);
}
.global-search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
}
.global-search-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.global-search-title::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin-top: 6px;
    border-radius: 2px;
    background: #AEB477;
}
.global-search-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: .25s;
}
.global-search-close:hover {
    background: #AEB477;
    border-color: #AEB477;
    color: #14150f;
}
.global-search-field {
    position: relative;
    margin: 0 20px;
}
.global-search-field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #AEB477;
    font-size: 14px;
    pointer-events: none;
}
.global-search-field input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 42px 13px 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .07);
    color: #fff;
    font-size: 14.5px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.global-search-field input::placeholder {
    color: rgba(255, 255, 255, .45);
}
.global-search-field input:focus {
    border-color: rgba(174, 180, 119, .75);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 3px rgba(174, 180, 119, .18);
}
.global-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 11px;
    cursor: pointer;
}
.global-search-clear:hover {
    background: #AEB477;
    color: #14150f;
}
.global-search-results {
    margin: 14px 20px 6px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 60px;
    max-height: 340px;
    padding-right: 2px;
}
.global-search-hint,
.global-search-empty,
.global-search-loading {
    color: rgba(255, 255, 255, .62);
    font-size: 13.5px;
    line-height: 1.6;
    text-align: center;
    padding: 18px 12px;
}
.global-search-empty strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}
.global-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .05);
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.global-search-item:hover {
    border-color: rgba(174, 180, 119, .55);
    background: rgba(174, 180, 119, .1);
    transform: translateY(-1px);
}
.global-search-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
}
.global-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.global-search-meta {
    min-width: 0;
    flex: 1;
}
.global-search-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.global-search-sub {
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 5px;
}
.global-search-viewall {
    margin: 8px 20px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    background: #AEB477;
    color: #14150f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    transition: filter .2s ease, transform .2s ease;
}
.global-search-viewall:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
}
@media (max-width: 992px) {
    .header-search-item {
        display: none;
    }
    .header-actions {
        display: inline-flex;
    }
    .header-search-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .global-search-overlay {
        padding: 84px 12px 16px;
    }
    .global-search-popup {
        border-radius: 18px;
        max-height: 78vh;
    }
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */


@media (max-width: 1400px) and (min-width: 993px) {

    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .mega-menu-inner {
        width: 94%;
        gap: 18px;
    }

    .mega-column h3 {
        font-size: 15px;
    }

    .mega-column li a {
        max-width: 130px;
        font-size: 12px;
    }

    .mega-column:not(:last-of-type)::after {
        right: -9px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .header {
        padding: 14px 0;
    }

    .logo img {
        width: 130px;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;

        top: 0;
        right: 0;
        left: auto;

        width: 360px;
        max-width: 88vw;
        height: 100vh;

        background: #111;

        overflow-y: auto;
        overflow-x: hidden;

        padding: 90px 25px 30px;

        transform: translateX(100%);

        transition: transform .35s ease;

        z-index: 10000;
    }

    .navbar.active {
        transform: translateX(0);
        max-height: none;
    }

    .nav-links {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;
    }

    .nav-links>li {
        width: 100%;

        border-bottom:
            1px solid rgba(255, 255, 255, .08);
    }

    .nav-links>li>a {
        display: flex;

        align-items: center;

        justify-content: space-between;

        width: 100%;

        box-sizing: border-box;

        padding: 17px 5px;

        font-size: 16px;

        white-space: normal;
    }


    /* Product menu becomes normal mobile item */
    .products-menu {
        position: relative !important;
    }

    .products-link {
        justify-content: space-between !important;
    }

    .products-menu::after {
        display: none;
    }


    /* Mobile mega menu */
    .products-mega-menu {
        position: static;

        width: 100%;
        max-width: 100%;

        display: none;

        padding: 0 0 10px;

        background: transparent;

        border: 0;

        box-shadow: none;

        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;

        transition: none;
    }

    .products-menu.mobile-open .products-mega-menu {
        display: block;
    }

    .products-menu.mobile-open .products-link i {
        transform: rotate(180deg);
    }


    /* Mobile grid */
    .mega-menu-inner {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0 18px;
    }

    .mega-column {
        padding: 14px 0;

        text-align: left;

        border-bottom:
            1px solid rgba(255, 255, 255, .08);
    }

    .mega-column:not(:last-of-type)::after {
        display: none;
    }

    .mega-column h3 {
        margin: 0 0 10px;

        font-size: 14px;

        white-space: normal;
    }

    .mega-column ul {
        align-items: flex-start;

        gap: 5px;
    }

    .mega-column li {
        width: 100%;
    }

    .mega-column li a {
        justify-content: flex-start;

        width: 100%;
        max-width: none;

        min-height: auto;

        padding: 6px 8px;

        font-size: 12px;

        /* border-radius: 6px; */

        white-space: normal;

        text-align: left;
    }

    .mega-feature {
        display: none;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .header {
        padding: 12px 0;
    }

    .container {
        width: 92%;
    }

    .logo img {
        width: 120px;
    }

    .menu-toggle {
        font-size: 26px;
    }

    .navbar {
        width: 100%;
        max-width: 100%;

        padding:
            80px 20px 25px;
    }

    .nav-links>li>a {
        padding: 15px 0;

        font-size: 15px;
    }


    .mega-menu-inner {
        grid-template-columns: 1fr;
    }

    .mega-column {
        padding: 13px 0;
    }

    .mega-column h3 {
        font-size: 14px;
    }

    .mega-column ul {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 4px 8px;
    }

    .mega-column li a {
        font-size: 12px;

        padding: 7px 6px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .container {
        width: 94%;
    }

    .logo img {
        width: 110px;
    }

    .navbar {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .mega-column li a {
        font-size: 11px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

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

    .mega-column li a {
        font-size: 12px;
    }
}

@media (max-width: 992px) {

    body {
        overflow-x: hidden;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
    }

    .max-con {
        position: relative;
        z-index: 100001;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 100002;
    }

    .navbar {
        position: fixed !important;

        top: 0;
        right: 0;
        left: auto;

        width: 380px;
        max-width: 100%;

        height: 100dvh;
        max-height: 100dvh;

        box-sizing: border-box;

        background: #111;

        padding: 90px 20px 40px;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        -webkit-overflow-scrolling: touch;

        transform: translateX(100%);

        transition: transform .35s ease;

        z-index: 100000;
    }

    .navbar.active {
        transform: translateX(0);

        max-height: 100dvh;
    }

    .nav-links {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;

        height: auto;
    }

    .nav-links>li {
        width: 100%;
        flex-shrink: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, .08);
    }

    .nav-links>li>a {
        display: flex;

        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 17px 0;

        box-sizing: border-box;

        font-size: 16px;

        white-space: normal;
    }


    /* =========================================
       PRODUCTS
       ========================================= */

    .products-menu {
        position: relative !important;
        width: 100%;
    }

    .products-link {
        width: 100% !important;

        display: flex !important;

        align-items: center;
        justify-content: space-between !important;
    }

    .products-menu::after {
        display: none !important;
    }


    /* =========================================
       PRODUCT MEGA MENU
       ========================================= */

    .products-mega-menu {
        position: relative !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;

        width: 100% !important;
        max-width: none !important;

        height: auto !important;
        max-height: none !important;

        display: none;

        padding: 0 0 20px !important;
        margin: 0 !important;

        box-sizing: border-box;

        background: transparent !important;

        border: 0 !important;

        box-shadow: none !important;

        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        transform: none !important;

        overflow: visible !important;
    }

    .products-menu.mobile-open .products-mega-menu {
        display: block !important;
    }


    /* =========================================
       MEGA INNER
       ========================================= */

    .mega-menu-inner {
        width: 100% !important;

        max-width: none !important;

        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0 10px;

        margin: 0 !important;

        padding: 0 !important;
    }


    /* =========================================
       MEGA COLUMN
       ========================================= */

    .mega-column {
        width: 100%;

        min-width: 0;

        padding: 14px 0;

        text-align: left;

        border-bottom:
            1px solid rgba(255, 255, 255, .08);
    }

    .mega-column:not(:last-of-type)::after {
        display: none !important;
    }

    .mega-column h3 {
        margin: 0 0 10px;

        color: #aeb477;

        font-size: 14px;

        line-height: 1.3;

        white-space: normal;
    }

    .mega-column ul {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    .mega-column li {
        width: 100%;
        min-width: 0;
    }

    .mega-column li a {
        display: flex;

        width: 100%;
        max-width: none;

        /* min-height: 30px; */

        box-sizing: border-box;

        align-items: center;
        justify-content: center;

        padding: 6px 8px;

        color: #e4e4e4;

        font-size: 13px;

        line-height: 1.2;

        white-space: nowrap;

        overflow: hidden;

        text-overflow: ellipsis;

        /* border-radius: 6px; */

        background: rgba(255, 255, 255, .08);

        box-shadow:
            inset 0 1px 5px rgba(203, 203, 203, .25);
    }

    .mega-column li a::before {
        display: none !important;
    }

    .mega-column li a:hover {
        padding-left: 8px;

        transform: none;
    }


    /* Hide feature image on mobile */
    .mega-feature {
        display: none !important;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .navbar {
        width: 100%;

        padding:
            80px 16px 35px;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr !important;

        gap: 0;
    }

    .mega-column {
        padding: 13px 0;
    }

    .mega-column ul {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .mega-column li a {
        /* font-size: 11px; */

        /* min-height: 32px; */

        padding: 10px;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

    .navbar {
        padding-left: 14px;
        padding-right: 14px;
        padding-bottom: 40px;
    }

    .nav-links>li>a {
        font-size: 15px;
        padding: 15px 0;
    }

    .mega-column h3 {
        font-size: 13px;
    }

    .mega-column li a {
        /* font-size: 10px; */
        min-height: 31px;
    }
}

.front-section {
    background: url(../images/Banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
}

.frint-text-area {
    padding: 75px;
    background-color: #c6c6c60f;
    backdrop-filter: blur(4px);
    width: 850px;
    border-radius: 25px;
    border: 1px solid #ffffff57;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.frint-text-area h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    padding-bottom: 20px;
}

.frint-text-area span {
    color: #aeb477;
    font-size: 60px;
    font-weight: 600;
    padding-bottom: 20px;
}

.frint-text-area p {
    margin-bottom: 45px;
}

.front-btn {
    background-color: #aeb477;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    background: #ffffff0f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    transition: .3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.front-btn:hover {
    background-color: #aeb477;
    transition: .3s ease-in-out;
    color: #000;
}

.front-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
}

.front-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.front-video-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .48) 45%,
            rgba(0, 0, 0, .25) 100%);

    z-index: 1;
}

.front-section .container {
    position: relative;
    z-index: 2;
}



.about-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}

.about-img img {
    width: 100%;
}

.about-content h2 {
    color: #fff;
}

.about-content p {
    padding: 20px 0;
}

.about-quality {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    padding-top: 100px;
}

.about-quality h3 {
    color: #aeb477;
    padding-bottom: 0px;
    /* border-bottom: 1px solid #4f4f4f; */
    font-weight: 400;
}

.about-quality span {
    top: 10px;
    font-size: 40px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #cccd97f5;
    letter-spacing: 2px;
    line-height: 41px;
    /* position: absolute; */
    right: 10px;
}

.about-quality p {
    padding-top: 10px;
}

.about-quality .quality {
    border: 1px solid #ffffff4d;
    border-radius: 20px;
    padding: 30px;
    transition: .45s;
    /* backdrop-filter: blur(15px); */
    overflow: hidden;
    background: #ffffff0a;
    /* backdrop-filter: blur(12px); */
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.collection-section {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0;
    background-position: center;
}

.main-colection-sec {
    display: flex;

    gap: 25px;
}

.collection-cotnte {
    margin: auto;
    max-width: 400px;
    text-align: left;
}

.collection-cotnte h2 {
    padding: 15px 0;
    color: #fff;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 50px;
}

.coole-gr {
    /* padding-top: 50px !important; */

}

.coole-gr .swiper-wrapper {
    margin-bottom: 20px;
}

.collections {
    padding: 15px;
    background-color: #ffffff0a;
    backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid #ffffff57;
    background: #0000000f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.collections img {
    width: 100%;
    height: 40vh;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.collections h3 {
    color: #fff;
    padding-top: 15px;
    font-weight: 500;
}

:focus-visible {
    outline: 2px solid #cfc8a2;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

.hero-scale-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 1080px;
    flex: 0 0 auto;
    transform-origin: top center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.035;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 1800px;
    min-height: 1080px;
    margin: auto;
}

.left-content {
    position: absolute;
    left: 110px;
    top: 80px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.1s forwards;
}

.eyebrow {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cfc8a2;
    margin-bottom: 14px;
}

.headline {
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
}

.lead {
    width: 460px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: #d8d8d8;
}

.logo-card {
    position: absolute;
    left: 130px;
    top: 420px;
    width: 340px;
    height: 340px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #ffffff57;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    transform: scale(0.95);
    animation: cardIn 0.9s ease-out 0.3s forwards;
    background: #c6c6c60f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.logo-card__mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-card__mark img {
    width: 150px;
}

.logo-word {
    font-size: 34px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 6px;
    color: #ffffff;
    margin-top: -2px;
}

.logo-rule {
    display: block;
    width: 130px;
    height: 1px;
    background: #cfc8a2;
    margin: 12px 0 8px;
    opacity: 0.7;
}

.logo-tag {
    font-size: 13px;
    font-weight: 400;
    color: #cfc8a2;
    letter-spacing: 1px;
}

.connectors {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.conn {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.seg {
    position: absolute;
    display: block;
    background: rgba(255, 255, 255, .28);
}

.seg--h {
    height: 1px;
}

.seg--v {
    width: 1px;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #8f8f8f;
}

.conn-1-h1 {
    left: 470px;
    top: 530px;
    width: 280px;
}

.conn-1-v {
    left: 749px;
    top: 250px;
    height: 280px;
}

.conn-1-h2 {
    left: 750px;
    top: 250px;
    width: 140px;
}

.conn-1-node {
    right: 710px;
    top: 246px;
}

.conn-2-h1 {
    left: 470px;
    top: 560px;
    width: 380px;
}

.conn-2-v {
    left: 849px;
    top: 420px;
    height: 140px;
}

.conn-2-h2 {
    left: 850px;
    top: 420px;
    width: 130px;
}

.conn-2-node {
    right: 620px;
    top: 416px;
}

.conn-3-h {
    left: 470px;
    top: 589px;
    width: 630px;
}

.conn-4-h1 {
    left: 470px;
    top: 620px;
    width: 380px;
}

.conn-4-v {
    left: 849px;
    top: 620px;
    height: 140px;
}

.conn-4-h2 {
    left: 850px;
    top: 759px;
    width: 130px;
}

.conn-4-node {
    right: 620px;
    top: 755px;
}

.conn-5-h1 {
    left: 470px;
    top: 649px;
    width: 280px;
}

.conn-5-v {
    left: 749px;
    top: 650px;
    height: 280px;
}

.conn-5-h2 {
    left: 750px;
    top: 929px;
    width: 140px;
}

.conn-5-node {
    right: 710px;
    top: 925px;
}

.seg {
    position: absolute;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 2px;
}

.seg--h {
    height: 2px;
    transform-origin: left center;
    animation: drawX 1s ease-out 0.9s both;
}

.seg--v {
    width: 2px;
    transform-origin: top center;
    animation: drawY 1s ease-out 1.1s both;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    z-index: 3;
    opacity: 0;
    animation: nodeIn 0.4s ease-out 1.7s forwards;
}

.cards {
    inset: 0;
    z-index: 4;
}

.card {
    position: absolute;
    width: 470px;
    height: auto;
    padding: 20px 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #ffffff57;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: flex-start;
    gap: 22px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    opacity: 0;
    transform: translateY(16px);
    animation: cardStagger 0.7s ease-out forwards;
    background: #c6c6c60f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.card:hover,
.card:focus-visible {
    transform: translateY(-8px);
}

.card--1 {
    left: 890px;
    top: 170px;
    animation-delay: 0.55s;
}

.card--2 {
    left: 980px;
    top: 340px;
    animation-delay: 0.60s;
}

.card--3 {
    left: 1100px;
    top: 510px;
    animation-delay: 0.65s;
}

.card--4 {
    left: 980px;
    top: 680px;
    animation-delay: 0.70s;
}

.card--5 {
    left: 890px;
    top: 850px;
    animation-delay: 0.75s;
}

.card__icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    font-size: 26px;
    line-height: 1;
    color: #d6d3a6;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
}

.card__icon .fa-layers {
    width: 28px;
    height: 28px;
}

.card__text h3 {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.card__text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: #d8d8d8;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cardStagger {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawX {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes drawY {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes nodeIn {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .hero-scale-wrapper {
        display: block;
    }

    .hero, .hero__inner {
        width: 100%;
        min-height: auto;
        padding: clamp(48px, 8vw, 72px) clamp(24px, 6vw, 56px);
        transform: none !important;
    }

    .connectors {
        display: none;
    }

    .left-content,
    .logo-card,
    .cards,
    .card {
        position: static;
        width: 100%;
    }

    .left-content {
        width: 100%;
        max-width: 640px;
        margin: 0 auto clamp(36px, 6vw, 56px);
        text-align: center;
    }

    .eyebrow {
        font-size: clamp(13px, 1.6vw, 16px);
        letter-spacing: 3px;
    }

    .headline {
        font-size: clamp(32px, 6vw, 48px);
    }

    .lead {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        font-size: clamp(15px, 2vw, 17px);
    }

    .logo-card {
        width: clamp(220px, 40vw, 300px);
        height: clamp(220px, 40vw, 300px);
        margin: 0 auto clamp(40px, 6vw, 56px);
    }

    .logo-word {
        font-size: clamp(24px, 4.5vw, 32px);
    }

    .logo-sub {
        font-size: 10px;
        letter-spacing: 5px;
    }

    .logo-rule {
        width: 110px;
    }

    .logo-tag {
        font-size: 12px;
    }

    .cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 640px;
        margin: 0 auto;
    }

    .card {
        width: 100%;
        height: auto;
        padding: clamp(22px, 3.5vw, 28px);
        gap: 18px;
        animation-delay: 0s !important;
    }

    .card:hover,
    .card:focus-visible {
        transform: translateY(-4px);
    }

    .card__icon {
        font-size: 24px;
    }

    .card__text h3 {
        font-size: clamp(17px, 2.4vw, 19px);
    }

    .card__text p {
        font-size: clamp(14px, 1.9vw, 15px);
    }
}

@media (max-width: 640px) {
    .headline {
        font-size: clamp(28px, 8vw, 36px);
        letter-spacing: -0.3px;
    }

    .lead {
        font-size: 15px;
        line-height: 1.65;
    }

    .logo-card {
        width: clamp(180px, 55vw, 240px);
        height: clamp(180px, 55vw, 240px);
        border-radius: 22px;
    }

    .logo-word {
        font-size: clamp(22px, 7vw, 28px);
    }

    .card {
        flex-direction: row;
        align-items: flex-start;
        padding: 20px;
    }

    .card__text h3 {
        font-size: 17px;
    }

    .card__text p {
        font-size: 13.5px;
    }
}

@media (max-width: 400px) {
    .card {
        flex-direction: column;
        gap: 10px;
    }

    .card__icon {
        padding-top: 0;
    }
}

.produuts {
    background: url(../images/Popular/BG.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0px;
}

.product-section {
    background-color: #6362625e;
    /* backdrop-filter: blur(1px); */
    padding: 50px;
    border-radius: 20px;
    color: #fff;
    background: #c6c6c60f;
    /* backdrop-filter: blur(12px); */
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.product-section h2 {
    margin: 15px 0;
}

.why-choose-us h2 {
    margin-top: 15px;
}

.why-choose-mat {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
    padding-bottom: 50px;
}

.about-content h2 {
    margin-top: 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding-top: 50px;
}

.product-card {
    background-color: #bdbdbd3d;
    padding: 12px;
    border-radius: 20px;
    /* backdrop-filter: blur(1px); */
    background: #0000000f;
    /* backdrop-filter: blur(12px); */
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.product-card img {
    height: 45vh;
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
}

.product-card h4 {
    font-weight: 300;
    font-size: 20px;
    text-align: center;
}

.why-choose {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0px;
}

.why-choose-us {
    /* text-align: center; */
    color: #fff;
}

.why-choose-uss video {
    width: 100%;
    height: 780px;
    object-fit: cover;
    border-radius: 30px;
}

.why-choose-us p {
    max-width: 900px;
    /* margin: auto; */
    padding: 15px 0;
}

.application-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.section-heading {
    max-width: 980px;
    margin-bottom: 70px;
}

.section-heading span {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-heading h2 {
    color: #fff;
    padding-bottom: 20px;
}

.section-heading p {
    max-width: 1080px;
}

.applicationSwiper {
    overflow: visible;
    padding-bottom: 70px;
}

.applicationSwiper .swiper-slide {
    height: auto;
}

.app-card {
    background: rgb(229 228 228 / 21%);
    border: 1px solid #ffffff4d;
    border-radius: 22px;
    padding: 12px;
    transition: .45s;
    backdrop-filter: blur(15px);
    overflow: hidden;
    background: #0000000f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.app-card:hover {
    border-color: #aeb47757;
}

.app-image {
    border-radius: 18px;
    overflow: hidden;
}

.app-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.app-card:hover img {
    transform: scale(1.08);
}

.app-content {
    padding: 25px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.app-content a {
    color: #ffffff73;
}

.applicationSwiper .swiper-pagination {
    bottom: -30px !important;
}

.applicationSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #777;
    opacity: 1;
    border-radius: 50%;
    transition: .4s;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
    margin-bottom: 5px;
}

.applicationSwiper .swiper-pagination-bullet-active {
    width: 42px;
    border-radius: 30px;
    background: #aeb477;
}

.swiper-pagination {
    position: static !important;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.why-quality {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: baseline;
    padding: 20px 0 0;
}

.why-quality h3 {
    color: #aeb477;
    padding: 15px 0px;
    /* border-bottom: 1px solid #4f4f4f; */
    font-weight: 400;
}

.why-quality p {
    padding-top: 10px;
    padding: 0px 0px;
}

.why-quality .quality {
    background: #ffffff0a;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    padding: 15px;
    height: 100%;
    border-radius: 20px;
}

.quality img {
    padding: 0px 0px;
    width: 45px;
    height: 45px;
}

.footer {
    position: relative;
    padding: 100px 0 40px;
    background-repeat: no-repeat;
    background-position: bottom;
    border-top: 1px solid #383838;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .5fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 35px;
}

.footer-logo img {
    width: 250px;
    display: block;
}

.footer-about p {
    max-width: 450px;
}

.footer h4 {
    color: #9d9d9d;
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 500;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    transition: .35s;
}

.footer-links a:hover {
    color: #c9bf7c;
    padding-left: 8px;
}

.footer-contact ul,
.footer-address ul {
    list-style: none;
}

.footer-contact li,
.footer-address li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #d7d7d7;
    color: #cacaca;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: #ffffff29;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.footer-contact small {
    display: block;
    color: #8f8f8f;
    font-size: 18px;
    margin-bottom: 0px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: .35s;
}

.footer-contact a:hover {
    color: #aeb477;
    padding-left: 8px;
    transition: .35s;
}

.footer-address small {
    display: block;
    color: #8f8f8f;
    font-size: 18px;
    margin-bottom: 0px;
}

.footer-bottom {
    padding-top: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #bdbdbd;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #d7d7d7;
    color: #cacaca;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    transition: .4s;
    background: #ffffff29;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.social-links a:hover {
    background: #aeb477;
    color: #000;
    transform: translateY(-6px);
}

@media (max-width: 767px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .header, .header .container, .navbar, .nav-links {}

    .footer-bottom {
        padding-top: 45px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .header,
    .header .container,
    .navbar,
    .nav-links {
        overflow: visible;
    }

    .navbar .nav-links {
        display: none;
    }

    .navbar .nav-links.active {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }

    .navbar.active .nav-links {
        display: flex;
        flex-direction: column;
    }
}

.collectionSwiper {
    width: 100%;
}

.collectionSwiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 50px;
}

.collectionSwiper .swiper-slide {
    width: auto;
    margin-bottom: 0px;
}

.collection-pagination {
    display: none;
}

@media (max-width: 767px) {
    .collectionSwiper {
        overflow: hidden;
        padding-bottom: 35px !important;
    }

    .collectionSwiper .swiper-wrapper {
        display: flex;
        gap: 0;
    }

    .collectionSwiper .swiper-slide {
        width: 82%;
        flex-shrink: 0;
    }

    .collectionSwiper .collections {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

    .collectionSwiper .collections img {
        width: 100%;
        height: 320px;
        display: block;
        object-fit: cover;
        border-radius: 12px;
    }

    .collectionSwiper .collections h3 {
        margin: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
    }

    .collectionSwiper .collections::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .collection-pagination {
        position: absolute;
        bottom: 0 !important;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .collection-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 !important;
        background: #777;
        opacity: 1;
    }

    .collection-pagination .swiper-pagination-bullet-active {
        width: 25px;
        border-radius: 20px;
        background: #aeb477;
    }
}

.popularProductSwiper {
    width: 100%;
}

.popularProductSwiper .swiper-wrapper {
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);
    gap: 20px;
    padding-top: 50px;
}

.popularProductSwiper .swiper-slide {
    width: auto;
}

.popular-product-pagination {
    display: none;
}

@media (max-width: 767px) {
    .popularProductSwiper {
        overflow: hidden;
        padding-bottom: 35px !important;
    }

    .popularProductSwiper .swiper-wrapper {
        display: flex;
        gap: 0;
    }

    .popularProductSwiper .swiper-slide {
        width: auto;
        flex-shrink: 0;
    }

    .popularProductSwiper .product-card {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

    .popularProductSwiper .product-card img {
        width: 100%;
        height: 300px;
        display: block;
        object-fit: cover;
        border-radius: 12px;
    }

    .popularProductSwiper .product-card h4 {
        margin: 0;
        color: #fff;
        font-weight: 500;
        padding-top: 10px;
    }

    .popularProductSwiper .product-card::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .popular-product-pagination {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .popular-product-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 !important;
        background: #777;
        opacity: 1;
    }

    .popular-product-pagination .swiper-pagination-bullet-active {
        width: 25px;
        border-radius: 20px;
        background: #aeb477;
    }
}


/* new */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d9d9d45e;
    border-bottom: 1px solid #d9d9d45e;
}

.feature {
    padding: 35px 25px;
    border-right: 1px solid #d9d9d45e;
}

.feature:last-child {
    border: 0;
}

.feature h3 {
    font-size: 42px;
    color: #aeb477;
}

.catalogue {
    padding: 50px 0;
}

.content-catalogue {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 550px;
}

.content-catalogue a {
    width: fit-content;
}

.content-catalogue h2 {
    color: #fff;
}

.catalogue-conttent {
    border: 1px solid #ffffff4d;
    border-radius: 20px;
    padding: 30px;
    transition: .45s;
    /* backdrop-filter: blur(15px);  */
    overflow: hidden;
    background: #ffffff0a;
    /* backdrop-filter: blur(12px); */
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 50px;
}

.catalogue-images img {
    width: 100%;
    border-radius: 20px;
}

.surface-g {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 50px;
}

.surface-h {
    color: #fff;
    padding-top: 5px;
}

.find {
    background: white
}

.find-box {
    border: 1px solid #d9d9d45e;
    padding: 45px;
    background: #ffffff0a;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    /* display: grid; */
    /* grid-template-columns: repeat(2, 1fr); */
    /* align-items: center; */
    border-radius: 20px;
}

.find-row {
    margin-bottom: 38px
}

.find-row h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 500;

}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.tag {
    border: 1px solid #d9d9d45e;
    padding: 13px 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    transition: .2s;
    color: #e4e4e4;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    background: rgba(255, 255, 255, .06);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 6px rgba(203, 203, 203, .25);
    transition: color .25s ease, background .25s ease, transform .25s ease;
    font-family: poppins;
}

.tag:hover, .tag.active {
    background: #aeb477;
    color: #000;
    border-color: #aeb477
}

.find-box a {
    color: #fff;
}

.surface-tag {
    padding-bottom: 50px;
    display: none;
}

/* ========================================= NEWS & INSIGHTS ========================================= */
.news-insights-section {
    width: 100%;
    padding: 75px 0 88px;
    overflow: hidden;
}

.news-container {
    margin: 0 auto;
}

/* ========================================= HEADER ========================================= */
.news-header {
    display: grid;
    grid-template-columns: 1fr 500px;
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.news-heading {
    display: flex;
    flex-direction: column;
}

.news-eyebrow {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.news-heading h2 {
    color: #fff;
}

.news-intro {
    padding-bottom: 4px;
}

.news-intro p {
    max-width: 600px;
    margin: 0;
    line-height: 1.45;
    font-weight: 400;
}

/* ========================================= NEWS GRID ========================================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    padding: 20px;
    background: #ffffff0a;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    border-radius: 20px;

}

.news-image img {
    width: 100%;
    border-radius: 20px;
}

.news-card-content {
    padding-top: 10px;
}

.news-card-content h3 {
    color: #fff;
    font-weight: 500;
    padding-top: 10px;
}

.news-card-content span {
    font-size: 13px;
}

:root {
    --op-bg-0: #0a0b08;
    --op-bg-1: #1c2116;
    --op-bg-2: #2c3423;
    --op-cream: #cdd6a1;
    --op-cream-dim: #a9b285;
    --op-white: #f3f3ee;
    --op-gray: #9a9c8f;
    --op-line: rgba(255, 255, 255, 0.14);
    --op-line-soft: rgba(255, 255, 255, 0.08);
    --op-card-bg: rgba(255, 255, 255, 0.035);
    --op-card-border: rgba(255, 255, 255, 0.09);
    --op-dot: #cdd6a1;
}

/* *{margin:0;padding:0;box-sizing:border-box;}

  body{
    font-family:'Inter',sans-serif;
    background:
      radial-gradient(ellipse 900px 700px at 18% 30%, var(--op-bg-2) 0%, transparent 60%),
      radial-gradient(ellipse 1200px 900px at 80% 70%, #1a2015 0%, transparent 55%),
      var(--op-bg-0);
    color:var(--op-white);
    min-height:100vh;
    padding:70px 60px 90px;
    overflow-x:hidden;
  } */
.promisss {
    /* min-height: 100vh; */
    padding: 70px 60px 90px;
    overflow-x: hidden;
}

.our-promise-page {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

/* ---------- Header ---------- */
.our-promise-header {
    max-width: 840px;
    margin: 0 auto 10px;
    text-align: center;
}

.our-promise-eyebrow {
    display: block;
    font-size: 14px;
    color: var(--op-cream);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.our-promise-header h2 {
    line-height: 1.18;
    color: var(--op-white);
    margin-bottom: 16px;
    /* letter-spacing:-0.5px; */
    text-transform: uppercase;
}

.our-promise-header p {
    line-height: 1.7;
    color: var(--op-gray);
    font-weight: 400;
}

.our-promise-accent-tick {
    width: 70px;
    height: 3px;
    margin: 26px auto 60px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--op-cream-dim), var(--op-cream));
}

/* ---------- Diagram ---------- */
.our-promise-diagram {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 50px 0 20px;
}

.our-promise-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.our-promise-connectors path.our-promise-base {
    fill: none;
    stroke: var(--op-line);
    stroke-width: 1.5;
}

.our-promise-connectors path.our-promise-flow {
    fill: none;
    stroke: var(--op-cream);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 3px rgba(205, 214, 161, 0.9));
}

.our-promise-connectors .our-promise-junction-dot {
    fill: var(--op-dot);
}

.our-promise-col {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 640px;
    flex-shrink: 0;
    z-index: 2;
}

.our-promise-col-left {
    margin-right: 110px;
}

.our-promise-col-right {
    margin-left: 110px;
}

/* ---------- Cards ---------- */
.our-promise-card {
    background: var(--op-card-bg);
    border: 1px solid var(--op-card-border);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    backdrop-filter: blur(6px);
    transition: border-color .25s ease, transform .25s ease;
}

.our-promise-card:hover {
    border-color: rgba(205, 214, 161, 0.4);
    transform: translateY(-2px);
}

.our-promise-card .our-promise-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: var(--op-cream);
}

.our-promise-card .our-promise-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--op-cream);
    fill: none;
    stroke-width: 1.5;
}

.our-promise-card .our-promise-text h3 {
    color: var(--op-white);
    margin-bottom: 6px;
    font-weight: 400;
}

.our-promise-card .our-promise-text p {
    line-height: 1.55;
    color: var(--op-gray);
    font-weight: 400;
}

/* ---------- Hub ---------- */
.our-promise-hub {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    border-radius: 20px;
    background: linear-gradient(145deg, #20261a, #12140f);
    border: 1px solid rgba(205, 214, 161, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-align: center;
    animation: cardIn 0.9s ease-out 0.3s forwards;
    background: #c6c6c60f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.our-promise-hub .our-promise-logo {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--op-white);
    line-height: 1;
}

.our-promise-logo img {
    width: 150px;
}

.our-promise-hub .our-promise-logo .our-promise-tile {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--op-cream-dim);
    margin-top: 6px;
}

.our-promise-hub .our-promise-tagline {
    margin-top: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--op-cream);
    letter-spacing: 0.5px;
}

/* ---------- Responsive ---------- */
@media (max-width:1200px) {
    .our-promise-col {
        width: 300px;
    }

    .our-promise-col-left {
        margin-right: 70px;
    }

    .our-promise-col-right {
        margin-left: 70px;
    }
}

@media (max-width:900px) {

    .our-promise-diagram {
        flex-direction: column;
    }

    .our-promise-col-left, .our-promise-col-right {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .our-promise-hub {
        margin: 34px 0;
        width: 100%;
        height: 170px;
    }

    .our-promise-connectors {
        display: none;
    }
}

#contact {
    max-width: 950px;
    margin: auto;
    /* background: #ffffff0a; */
    backdrop-filter: blur(12px);
    /* box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%); */
    border-radius: 20px;
    padding: 50px 0 100px;
}

#contact .label {
    color: #aeb477;
}

#contact h2 {
    color: #fff;
    padding-bottom: 10px;
}

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

.forms {
    padding: 25px 0;

}

.field {
    border: 0;
    border-bottom: 1px solid #444;
    background: none;
    padding: 15px 0;
    color: white;
    width: 100%;
    outline: 0;
    font-family: poppins;
}

.select-label {
    font-size: 12px;
    color: white;
    padding-bottom: 10px;

}

.choice {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.choice button {
    background: none;
    border: 1px solid #444;
    color: #aaa;
    padding: 8px 20px;
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 6px rgba(203, 203, 203, .25);
    transition: color .25s ease, background .25s ease, transform .25s ease;
    font-family: poppins;

}

.choice button:hover, .choice button.active {
    background: white;
    color: #111;
    border-color: white
}

#contact button {
    border: none;
}

.whatsapp-fixed {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: inherit;
}

.whatsapp-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    font-size: 28px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, .18);
    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

.whatsapp-fixed:hover .whatsapp-icon {
    transform: scale(1.08);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .25);
}

.whatsapp-label {
    background: #252a21;
    color: #ffffff;
    padding: 9px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition:
        opacity .3s ease,
        transform .3s ease;
    display: none;

}

.whatsapp-fixed:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
    display: none;
}

.whatsapp-icon::after {
    content: "";
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite;
    pointer-events: none;

}


@keyframes whatsappPulse {

    0% {
        transform: scale(1);
        opacity: .7;
    }

    70% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }

}

@media (max-width: 767px) {

    .whatsapp-fixed {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-icon {
        width: 52px;
        height: 52px;
        font-size: 25px;
    }

    .whatsapp-icon::after {

        width: 52px;
        height: 52px;
    }

    .whatsapp-label {
        display: none;
    }

}


/* about page css */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/Banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(20, 24, 19, .78) 0%,
            rgba(20, 24, 19, .48) 45%,
            rgba(20, 24, 19, .12) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0 auto;
    padding: 140px 4% 120px;
    color: #ffffff;
}

.about-hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: #c7c98d;
    /* font-size: 12px;
    font-weight: 600; */
    letter-spacing: 2px;
}

/* .about-hero-label::before {
    content: "";
    width: 35px;
    height: 1px;
    background: #c7c98d;
} */

.about-hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(48px,
            6vw,
            60px);
    font-weight: 400;
    text-transform: uppercase;
}

.about-hero h1 span {
    color: #c7c98d;
}

.about-hero p {
    max-width: 500px;
    margin:
        30px 0 0;
    font-size: 18px;
    line-height: 1.6;
    color:
        rgba(255, 255, 255, .82);
}

.about-hero-actions {
    margin-top: 38px;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding:
        15px 22px;
    border:
        1px solid rgba(255, 255, 255, .45);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .5px;
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.about-hero-btn i {
    transition:
        transform .3s ease;
}

.about-hero-btn:hover {
    background: #c7c98d;
    border-color: #c7c98d;
    color: #252a21;
}

.about-hero-btn:hover i {
    transform:
        translateX(5px);
}

.about-hero-scroll {
    position: absolute;
    right: 7%;
    bottom: 45px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 15px;
    color:
        rgba(255, 255, 255, .75);
    font-size: 16px;
    letter-spacing: 1px;
}

.about-hero-scroll i {
    color: #c7c98d;
    animation:
        aboutScroll 1.8s infinite;
}

@keyframes aboutScroll {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(6px);
    }
}

@media (max-width: 900px) {
    .about-hero {
        min-height: 650px;
    }

    .about-hero-content {
        padding:
            120px 7% 100px;
    }

    .about-hero-scroll {
    right: 6%;
    bottom: 170px;
}
}

@media (max-width: 600px) {
    .about-hero {
        min-height: 620px;
        align-items: flex-end;
    }

    .about-hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(20, 24, 19, .2) 0%,
                rgba(20, 24, 19, .55) 45%,
                rgba(20, 24, 19, .9) 100%);
    }

    .about-hero-content {
        padding:
            80px 24px 100px;
    }

    .about-hero-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }

    .about-hero h1 {
        font-size:
            clamp(42px, 12vw, 58px);
        letter-spacing:
            -1.5px;
    }

    .about-hero p {
        margin-top: 22px;
        font-size: 15px;
    }

    .about-hero-actions {
        margin-top: 28px;
    }

    .about-hero-scroll {
        right: 24px;
        bottom: 25px;
        font-size: 8px;
    }
}

.about-intro {
    position: relative;
    width: 100%;
    padding:
        100px 0px;
    overflow: hidden;
}

.about-intro-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        minmax(0, .9fr) minmax(0, 1fr);
    column-gap: 100px;
    align-items: center;
}

.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #aeb477;

    letter-spacing: 2px;
}

/* .about-section-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #aeb477;
} */

.about-intro-heading h2 {
    margin:
        25px 0;
    max-width: 600px;
    color: #fff;
}

.about-intro-heading h2 em {
    color: #aeb477;
    font-style: normal;
}

.about-intro-heading img {
    width: 100%;
}

.about-intro-content {
    max-width: 650px;
}

.about-intro-content p {
    margin-bottom: 15px;
}


.about-intro-content .about-intro-lead {
    margin-bottom: 15px;
}

.about-intro-signature {
    margin-top: 40px;
    padding-top: 25px;
    border-top:
        1px solid #71717057;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.about-intro-signature span::before {
    content: "—";
    margin-right: 10px;
    color: #aeb477;
}

.about-intro-stats {
    margin:
        50px auto 0;
    border-top:
        1px solid #71717057;
    border-bottom:
        1px solid #71717057;
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
}

.about-stat {
    min-height: 100px;
    padding: 30px;
    border-right: 1px solid #71717057;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}

.about-stat:first-child {
    padding-left: 0;
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat strong {
    color: #aeb477;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-stat span {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.manufacturing-section {
    position: relative;
    width: 100%;
    min-height: 760px;
    display: grid;
    grid-template-columns:
        52% 48%;
}

.manufacturing-image {
    position: relative;
    min-height: 760px;
    overflow: hidden;
}

.manufacturing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform .8s ease;
}

.manufacturing-section:hover .manufacturing-image img {
    transform: scale(1.03);
}

.manufacturing-image-overlay {
    position: absolute;
    inset: 0;
}

.manufacturing-image-caption {
    position: absolute;
    left: 55px;
    bottom: 55px;
    z-index: 2;
    color: #ffffff;
}

.manufacturing-image-caption span {
    display: block;
    margin-bottom: 10px;
    color: #c7c98d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

.manufacturing-image-caption strong {
    display: block;
    font-size: clamp(38px,
            5vw,
            70px);
    line-height: .9;
    font-weight: 400;
    letter-spacing: -2px;
}

.manufacturing-content {
    padding:
        100px 8%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manufacturing-content .about-section-label {
    color: #c7c98d;
}

.manufacturing-content .about-section-label::before {
    background: #c7c98d;
}

.manufacturing-content h2 {
    margin:
        25px 0 30px;
}

.manufacturing-content h2 em {
    color: #c7c98d;
    font-style: normal;
}

.manufacturing-lead {
    max-width: 570px;
    margin:
        0 0 25px;
    color:
        rgba(255, 255, 255, .95);
    font-size: 19px;
    line-height: 1.6;
}

.manufacturing-content>p:not(.manufacturing-lead) {
    max-width: 570px;
    margin:
        0 0 18px;
    color:
        rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.8;
}

.manufacturing-features {
    max-width: 570px;
    margin-top: 25px;
    border-top:
        1px solid rgba(255, 255, 255, .15);
}

.manufacturing-feature {
    display: grid;
    grid-template-columns:
        40px 1fr;
    gap: 18px;
    padding:
        18px 0;
    border-bottom:
        1px solid rgba(255, 255, 255, .15);
}

.feature-number {
    color: #c7c98d;
    font-size: 11px;
    letter-spacing: 1px;
    padding-top: 3px;
}

.manufacturing-feature h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.manufacturing-feature p {
    margin: 0;
    color:
        rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 1.6;
}

.manufacturing-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 14px;
    margin-top: 35px;
    padding:
        14px 20px;
    border:
        1px solid rgba(255, 255, 255, .3);
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    transition:
        all .3s ease;
}

.manufacturing-btn i {
    transition:
        transform .3s ease;
}

.manufacturing-btn:hover {
    background: #c7c98d;
    border-color: #c7c98d;
    color: #252a21;
}

.manufacturing-btn:hover i {
    transform:
        translateX(5px);
}

@media (max-width: 1000px) {
    .manufacturing-section {
        grid-template-columns:
            1fr;
    }

    .manufacturing-image {
        min-height: 550px;
    }

    .manufacturing-content {
        padding:
            80px 7%;
    }
}

@media (max-width: 600px) {
    .manufacturing-image {
        min-height: 430px;
    }

    .manufacturing-image-caption {
        left: 25px;
        bottom: 30px;
    }

    .manufacturing-image-caption strong {
        font-size: 48px;
    }

    .manufacturing-content {
        padding:
            70px 24px;
    }

    .manufacturing-content h2 {
        margin-top: 20px;
        font-size:
            clamp(42px, 11vw, 56px);
    }

    .manufacturing-lead {
        font-size: 17px;
    }

    .manufacturing-feature {
        grid-template-columns:
            30px 1fr;
        gap: 12px;
    }
}

.why-epsilon {
    width: 100%;
    padding: 100px 0px;
}

.why-epsilon-header {
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns:
        1.2fr .5fr;
    gap: 80px;
    align-items: end;
}

.why-epsilon-title h2 {
    margin:
        25px 0 0;
    color: #fff;
}

.why-epsilon-title h2 em {
    color: #aeb477;
    font-style: normal;
}

.why-epsilon-intro {
    padding-bottom: 5px;
}

.why-epsilon-intro p {
    max-width: 470px;
    margin: 0;
    color: #66685f;
    font-size: 16px;
    line-height: 1.8;
}

.why-epsilon-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    /* border-top:
            1px solid #dedfd8;
        border-left:
            1px solid #dedfd8; */
    gap: 25px;
}

.why-card {
    position: relative;
    min-height: 350px;
    padding: 30px;
    border-right:
        1px solid #ffffff4d;
    border-bottom:
        1px solid #ffffff4d;
    background: #ffffff;
    overflow: hidden;
    cursor: default;
    transition:
        background .4s ease,
        color .4s ease;

    border-radius: 20px;
    background: #252a21;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);

}


.why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why-card-top img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.why-card:hover .why-card-top img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    filter: brightness(2);
}

.why-number {
    color: #aeb477;
    color: transparent;
    -webkit-text-stroke: 1px #90916df5;
    letter-spacing: 2px;
    line-height: 41px;
    font-size: 35px;
    font-weight: 900;
}

.why-card-top>i {
    color: #252a21;
    font-size: 25px;
    transition:
        color .4s ease,
        transform .4s ease;
}

.why-card-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
}

.why-card-content h3 {
    margin: 0 0 18px;
    color: #aeb477;
    font-size: 27px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1px;
    transition:
        color .4s ease;
}

.why-card-content p {
    margin: 0;
    color: #777970;
    font-size: 15px;
    line-height: 1.7;
    transition:
        color .4s ease;
}

.why-card-arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid #dedfd8;
    border-radius: 50%;
    color: #aeb477;
    opacity: 0;
    transform:
        translate(-8px, 8px);
    transition:
        all .4s ease;
}

.why-card:hover {
    background: #252a21;
    background: #00000054;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.why-card:hover .why-card-top>i {
    color: #aeb477;
    transform:
        scale(1.08);
}

.why-card:hover .why-card-content h3 {
    color: #ffffff;
}

.why-card:hover .why-card-content p {
    color:
        rgba(255, 255, 255, .62);
}

.why-card:hover .why-card-arrow {
    opacity: 1;
    transform:
        translate(0, 0);
    border-color:
        rgba(255, 255, 255, .25);
    color: #aeb477;
}

.why-card-arrow i {
    color: #fff;
}

@media (max-width: 1000px) {
    .why-epsilon {
        padding:
            50px 15px 50px;
    }

    .why-epsilon-header {
        grid-template-columns:
            1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .why-epsilon-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-card {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .why-epsilon {
        padding:
            0px 10px 50px;
    }

    .why-epsilon-header {
        margin-bottom: 40px;
    }


    .why-epsilon-grid {
        grid-template-columns:
            1fr;
    }

    .why-card {
        min-height: 300px;
        padding: 25px;
    }

    .why-card-content {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    .why-card-content h3 {
        font-size: 25px;
    }

    .why-card-arrow {
        opacity: 1;
        transform:
            translate(0, 0);
    }
}

.vision-mission {
    position: relative;
    width: 100%;
    padding:
        100px 0px;
    color: #ffffff;
    overflow: hidden;
}

.vm-header {
    margin:
        0 auto 50px;
}

.vm-header .about-section-label {
    color: #c7c98d;
}

.vm-header .about-section-label::before {
    background: #c7c98d;
}

.vm-header h2 {
    margin:
        25px 0 0;
    max-width: 800px;
}

.vm-header h2 em {
    color: #c7c98d;
    font-style: normal;
}

.vm-block {
    position: relative;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        0.4fr 1.2fr 0.8fr;
    gap: 45px;
    padding:
        10px 0;
    border-top:
        1px solid rgba(255, 255, 255, .15);
    align-items: center;
}

.vm-number {
    padding-top: 8px;
    color: #c7c98d;
    font-size: 12px;
    letter-spacing: 2px;
}

.vm-title span {
    display: block;
    margin-bottom: 5px;
    color:
        rgba(255, 255, 255, .45);
    font-size: 11px;
    letter-spacing: 3px;
}

.vm-title h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 5vw, 42px);
    line-height: .9;
    font-weight: 400;
    letter-spacing: -2px;
}

.vm-content {
    max-width: 580px;
}

.vm-content p {
    margin:
        0 0 18px;
    color:
        rgba(255, 255, 255, .58);
    font-size: 18px;
    line-height: 1.8;
}

.vm-content .vm-lead {
    margin-bottom: 25px;
    color:
        rgba(255, 255, 255, .95);
    font-size: 18px;
    line-height: 1.55;
}

.vm-icon {
    /* width: 58px;
    height: 58px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition:
        background .4s ease,
        color .4s ease,
        transform .4s ease;
}

.vm-icon img {
    width: 100%;
    height: 35vh;
    object-fit: cover;
    object-position: top;
}

.vm-block:hover .vm-icon {
    color: #252a21;
    /* transform:
        rotate(8deg); */
}

.vm-mission {
    border-bottom:
        1px solid rgba(255, 255, 255, .15);
}

.vm-bottom {
    max-width: 1400px;
    margin:
        70px auto 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.vm-bottom span {
    flex: 1;
    height: 1px;
    background:
        rgba(255, 255, 255, .12);
}

.vm-bottom p {
    margin: 0;
    color:
        rgba(255, 255, 255, .5);
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
}

.vm-bottom strong {
    color: #c7c98d;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .vision-mission {
        padding:
            50px 15px 50px;
    }

    .vm-header {
        margin-bottom: 60px;
    }

}

@media (max-width: 600px) {
    .vision-mission {
        padding:
            50px 10px;
    }

    .vm-header {
        margin-bottom: 45px;
    }


    .vm-title {
        margin-bottom: 0px;
    }

    .vm-content {
        grid-column:
            2 / 3;
    }

    .vm-bottom {
        margin-top: 50px;
        gap: 15px;
    }

    .vm-bottom p {
        font-size: 10px;
        line-height: 1.5;
    }
}

.values-section {
    width: 100%;
    padding:
        100px 0;
}

.values-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        .8fr 1.2fr;
    gap: 120px;
}

.values-intro {
    position: sticky;
    top: 100px;
    align-self: start;
}

.values-intro img {
    width: 100%;
}

.values-intro h2 {
    margin:
        25px 0 30px;
    color: #fff;
}

.values-intro h2 em {
    color: #aeb477;
    font-style: normal;
}

.values-intro>p {
    max-width: 500px;
    margin: 0;
    color: #6b6d65;
    /* font-size: 15px; */
    line-height: 1.8;
}

.values-list {
    border-top:
        1px solid #dcded7;
}

.value-item {
    position: relative;
    display: grid;
    grid-template-columns:
        45px 1fr 45px;
    gap: 25px;
    padding:
        30px 0;
    border-bottom:
        1px solid #dcded7;
    transition:
        padding .4s ease;
}

.value-item:hover {
    padding-left: 15px;
    padding-right: 15px;
}

.value-number {
    padding-top: 0;
    color: transparent;
    /* font-size: 11px; */
    letter-spacing: 2px;
    -webkit-text-stroke: 1px #90916df5;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 26px;
}

.value-main {
    min-width: 0;
}

.value-main h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    transition:
        color .3s ease;
}

.value-main p {
    max-width: 750px;
    margin: 0;
    color: #74766e;
    /* font-size: 13px; */
    line-height: 1.75;
}

.value-arrow {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid #d7d9d1;
    border-radius: 50%;
    color: #252a21;
    opacity: 0;
    transform:
        translate(-8px, 8px);
    transition:
        all .35s ease;
}

.value-item:hover .value-arrow {
    opacity: 1;
    transform:
        translate(0, 0);
    background: #252a21;
    border-color: #252a21;
    color: #c7c98d;
}

.value-item:hover .value-main h3 {
    color: #aeb477;
}

@media (max-width: 1000px) {

    .values-inner {
        grid-template-columns:
            1fr;
        gap: 60px;
    }

    .values-intro {
        position: relative;
        top: auto;
    }

}

@media (max-width: 600px) {
    .values-section {
        padding:
            50px 10px;
    }

    .values-inner {
        gap: 45px;
    }

    .value-item {
        grid-template-columns:
            30px 1fr;
        gap: 15px;
        padding:
            25px 0;
    }

    .value-item:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .value-arrow {
        display: none;
    }
}

.export-hero {
    position: relative;
    width: 100%;
    min-height: 780px;
    padding: 70px 0 0;
    color: #ffffff;
    overflow: hidden;
}

.export-hero-inner {
    min-height: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
}

.export-hero-content {
    position: relative;
    z-index: 5;
    padding-right: 70px;
}

.export-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    letter-spacing: 2.4px;
    color: #aeb477;

    text-transform: uppercase;
}

.export-hero-eyebrow span {
    display: block;
    width: 38px;
    height: 1px;
    background: #aeb477;
}

.export-hero h1 {
    margin: 0;
    font-size: 60px;
    font-weight: 400;
    color: #ffffff;
}

.export-hero h1 em {
    font-style: normal;
    color: #aeb477;
}

.export-hero-intro {
    max-width: 490px;
    margin: 34px 0 0;
    font-weight: 400;
    color: rgba(255, 255, 255, .68);
}

.export-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
}

.export-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.export-hero-image {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.export-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.export-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.export-hero-image:hover img {
    /* transform: scale(1.025); */
}

.export-hero-card {
    position: absolute;
    right: -40px;
    top: -20px;
    z-index: 5;
    display: flex;
    gap: 16px;
}

.export-card-number {
    font-size: 10px;

    color: #aeb477;
}

.export-hero-card small {
    display: block;
    margin-bottom: 10px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .45);
}

.export-hero-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: #ffffff;
}

.export-hero-circle {
    position: absolute;
    top: 30px;
    right: -70px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(184, 192, 124, .25);
    border-radius: 50%;
    z-index: 1;
    display: none;
}

.export-hero-circle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #aeb477;
}

.export-hero-bottom {

    height: 90px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .18);
    position: relative;
    z-index: 5;
}

.export-hero-bottom-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 22px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.export-hero-bottom-item:first-child {
    padding-left: 0;
}

.export-hero-bottom-item:last-child {
    border-right: 0;
}

.export-hero-bottom-item span {
    font-size: 9px;
    color: #aeb477;
}

.export-hero-bottom-item strong {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, .72);
}

.export-about {
    position: relative;
    width: 100%;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.export-about-container {

    display: grid;
    grid-template-columns: 45% 51%;
    gap: 70px;
}

.export-about-left {
    position: relative;
    min-height: 570px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.export-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #aeb477;
}

.export-about-eyebrow span {
    font-size: 10px;
    color: #252925;
}


.export-about-left h2 span,
.export-about-left h2 em {
    display: block;
}

.export-about-left h2 span {
    color: #fff;
}

.export-about-left h2 em {
    font-style: normal;

    color: #aeb477;
}

.export-about-big-text {
    font-size: 18px;
    line-height: 1.05;
    color: #c2c2bc;
}

.export-about-right {
    padding-top: 55px;

    /* max-width: 590px; */
}

.export-about-lead {
    margin: 0 0 30px;
    font-size: 18px;
    color: #888b84;
}

.export-about-text {
    margin: 0 0 18px;
    color: #888b84;
}

.export-about-highlights {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 55px;
}

.export-about-highlight {
    min-height: 85px;
    align-items: start;
    gap: 15px;
    border-bottom: 1px solid #d6d7d0;
    flex-direction: column;
    display: flex;
    background: #ffffff0a;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    padding: 25px;
    border-radius: 20px;
}

.export-about-highlight>span {
    font-weight: 600;
    color: #aeb477;
}

.export-about-highlight strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.export-about-highlight p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #888b84;
}

.export-about-link {
    width: fit-content;

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 32px;

    padding-bottom: 8px;

    border-bottom: 1px solid #30342d;

    text-decoration: none;
    font-size: 11px;

    font-weight: 600;

    color: #272b25;

    transition:
        gap .3s ease,
        color .3s ease;
}

.export-about-link:hover {
    gap: 40px;

    color: #8d985c;
}

.export-about-link span:last-child {
    font-size: 17px;

    line-height: 1;
}



.export-glance {
    width: 100%;

    padding: 140px 0;

    color: #fff;
}

.export-glance-container {
    width: 1280px;

    max-width: calc(100% - 120px);

    margin: 0 auto;
}

.export-glance-header {
    display: grid;

    grid-template-columns: 32% 68%;

    gap: 40px;

    margin-bottom: 70px;
}

.export-glance-eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    padding-top: 8px;
    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #aeb477;
}

.export-glance-eyebrow span {
    color: #222620;
}


.export-glance-header h2 em {
    font-style: normal;

    color: #aeb477;
}

.export-glance-header p {
    max-width: 520px;

    margin: 25px 0 0;
    font-size: 14px;

    line-height: 1.7;

    color: #777b74;
}

.export-glance-grid {
    display: grid;

    grid-template-columns:
        1.35fr 1fr 1fr;

    grid-template-rows:
        250px 250px;

    gap: 12px;
}

.export-glance-card {
    position: relative;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #ffffff;

    border: 1px solid #e5e5df;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.export-glance-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, .07);
}

.export-glance-large {
    grid-row: 1 / 3;

    background: #e9ece1;
}

.export-glance-dark {
    background: #1d211b;

    color: #ffffff;
}

.export-glance-number {
    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #aeb477;
}

.export-glance-content small {
    display: block;

    margin-bottom: 10px;
    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    color: #969991;
}

.export-glance-dark .export-glance-content small {
    color: rgba(255, 255, 255, .42);
}

.export-glance-content strong {
    display: block;

    max-width: 260px;
    font-size: 25px;

    line-height: 1.05;

    font-weight: 500;

    letter-spacing: -.8px;

    color: #222620;
}

.export-glance-dark .export-glance-content strong {
    color: #ffffff;
}

.export-glance-content p {
    max-width: 260px;

    margin: 14px 0 0;
    font-size: 11px;

    line-height: 1.55;

    color: #858980;
}

.export-glance-dark .export-glance-content p {
    color: rgba(255, 255, 255, .48);
}

.export-glance-large .export-glance-content strong {
    font-size: 48px;

    line-height: .94;

    letter-spacing: -2px;
}

.export-glance-large .export-glance-content p {
    max-width: 330px;

    font-size: 13px;
}

.export-glance-arrow {
    position: absolute;

    right: 26px;
    top: 25px;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .2);

    border-radius: 50%;

    font-size: 15px;

    color: #aeb477;
}

.export-glance-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 55px;

    padding-top: 22px;

    border-top: 1px solid #d8d9d2;
}

.export-glance-bottom span {
    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.8px;

    color: #92978c;
}

.export-glance-bottom p {
    margin: 0;
    color: #777b74;
}

.export-global-ready {
    width: 100%;

    padding: 100px 0;

    color: #ffffff;

    overflow: hidden;
}

.export-global-ready-header {
    display: grid;
    gap: 20px;
    margin-bottom: 65px;
}

.export-global-ready-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
    color: #aeb477;
}

.export-global-ready-eyebrow span {
    color: rgba(255, 255, 255, .5);
}

.export-global-ready-header h2 em {
    font-style: normal;
    color: #aeb477;
}

.export-global-ready-header p {
    max-width: 560px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .55);
}

.export-global-ready-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, .15);

    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.export-global-ready-card {
    min-height: 390px;

    padding: 28px 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-right: 1px solid rgba(255, 255, 255, .12);

    transition:
        background .35s ease,
        transform .35s ease;
}

.export-global-ready-card:first-child {
    padding-left: 0;
}

.export-global-ready-card:last-child {
    border-right: 0;
}

.export-global-ready-card:hover {
    background: rgba(255, 255, 255, .035);
}

.export-ready-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}

.export-ready-top>span {

    color: #aeb477;
}

.export-ready-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid rgba(255, 255, 255, .18); */
    border-radius: 50%;
    font-size: 14px;
    color: #aeb477;
}

.export-ready-content small {
    display: block;

    margin-bottom: 12px;
    color: rgba(255, 255, 255, .38);
}

.export-ready-content h3 {
    max-width: 190px;
    margin: 0;
    font-size: 28px;
    line-height: 1.02;
    font-weight: 500;
    color: #ffffff;
}

.export-ready-content p {

    margin: 18px 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .48);
}

.export-global-ready-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 55px;
}

.export-global-ready-bottom p {
    flex: 0 0 auto;
    margin: 0;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .4);
}

.export-ready-line {
    height: 1px;
    flex: 1;
    background: rgba(255, 255, 255, .12);
}

.export-process {
    width: 100%;
    padding: 0px 0;
    color: #171917;
}


.export-process-header {
    display: grid;
    gap: 20px;
    margin-bottom: 75px;
}

.export-process-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
    color: #aeb477;
}

.export-process-eyebrow span {
    color: #222620;
}

.export-process-header h2 {
    color: #fff;
}

.export-process-header h2 em {
    font-style: normal;
    color: #aeb477;
}

.export-process-header p {
    max-width: 520px;
    margin: 10px 0 0;
    line-height: 1.7;
    color: #777b74;
}

.export-process-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid #e2e3de4d;
    border-bottom: 1px solid #e2e3de4d;
}

.export-process-step {
    position: relative;
    min-height: 390px;
    padding: 25px 22px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e2e3de4d;
    transition:
        background .3s ease,
        transform .3s ease;
}

.export-process-step:first-child {
    padding-left: 0;
}

.export-process-step:last-child {
    border-right: 0;
}

.export-process-step:hover {
    background: #f5f5f2;
    background: #ffffff0a;
    backdrop-filter: blur(12px);
}

.export-process-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.export-process-top>span {
    font-size: 9px;
    font-weight: 600;
    color: #aeb477;
}

.export-process-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7d9d2;
    border-radius: 50%;
    font-size: 13px;
    color: #aeb477;
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.export-process-step:hover .export-process-icon {
    background: #1d211b;
    border-color: #1d211b;
    color: #aeb477;
}

.export-process-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 0;
    height: 1px;
    border-radius: 10px;
    background: #aeb477;
    transition:
        width .5s ease;
}

.export-process-step:hover .export-process-line::after {
    width: 100%;
}

.export-process-content {
    margin-top: auto;
}

.export-process-content img {
    margin-bottom: 25px;
}

.export-process-content h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
}

.export-process-content p {
    margin: 15px 0 0;
    font-size: 14px;
    color: #858980;
}

.export-process-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid #e0e1dc;
}

.export-process-bottom span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;
    color: #999d95;
}

.export-process-bottom p {
    margin: 0;
    font-size: 11px;
    color: #777b74;
}

.export-quality {
    width: 100%;
    padding: 140px 0;
    color: #171917;
    overflow: hidden;
}

.export-quality-container {
    /* width: 1280px;
    max-width: calc(100% - 120px);
    margin: 0 auto; */
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    align-items: center;
}

.export-quality-header {
    /* margin-bottom: 70px; */
}

.export-quality-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
    padding-bottom: 15px;
    color: #aeb477;
}

.export-quality-eyebrow span {
    color: #222620;
}

.export-quality-header h2 {
    color: #fff;
}

.export-quality-header h2 em {
    font-style: normal;
    color: #aeb477;
}

.export-quality-header p {
    max-width: 650px;

    margin: 24px 0 0;
    color: #777b74;
}

.export-quality-main {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 540px;
    border-top: 1px solid #dedfd9;
    border-bottom: 1px solid #dedfd9;
}

.export-quality-statement {
    position: relative;
    padding: 45px 60px 45px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #dedfd9;
}

.export-quality-big-number {
    font-size: 10px;
    font-weight: 600;
    color: #aeb477;
}

.export-quality-statement h3 {
    margin: 90px 0 0;
    color: #222620;
}

.export-quality-statement h3 em {
    font-style: normal;
    color: #aeb477;
}

.export-quality-statement p {
    max-width: 410px;
    margin: 25px 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: #858980;
}

.export-quality-line {
    width: 100%;
    height: 1px;
    margin-top: 35px;
    background: #dedfd9;
}

.export-quality-caption {
    display: block;
    margin-top: 15px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.7px;
    color: #9a9e94;
}

.export-quality-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 55px;
}

.export-quality-point {
    min-height: 270px;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid #dedfd9;
}

.export-quality-point:nth-child(odd) {
    padding-right: 35px;
    border-right: 1px solid #dedfd9;
}

.export-quality-point:nth-child(3),
.export-quality-point:nth-child(4) {
    border-bottom: 0;
}

.export-quality-point>span {
    display: block;
    margin-bottom: 45px;
    font-size: 9px;
    font-weight: 600;
    color: #aeb477;
}

.export-quality-point small {
    display: block;
    margin-bottom: 10px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #9a9e94;
}

.export-quality-point h4 {
    max-width: 230px;
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.5px;
    color: #252923;
}

.export-quality-point p {
    max-width: 245px;
    margin: 14px 0 0;
    font-size: 10px;
    line-height: 1.6;
    color: #858980;
}

.export-certifications {
    /* margin-top: 75px; */
}

.export-certifications-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid #dedfd9;
}

.export-certifications-heading>span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: #aeb477;
}

.export-certifications-heading p {
    max-width: 400px;
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    color: #858980;
}

.export-certification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.export-certification-card {
    min-height: 160px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff0a;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    border-radius: 20px;
    transition:
        background .3s ease,
        transform .3s ease;
}

.export-certification-card:hover {
    background: #000000;
    transform: translateY(-4px);
}

.export-certification-mark {

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    color: #aeb477;
}

.export-certification-mark img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 20px;
}

.export-certification-card strong {
    display: block;
    font-weight: 600;
    color: #fff;
}

.export-certification-card>span {
    display: block;
    margin-top: 5px;
    color: #a9b285;
}

.export-inquiry {
    width: 100%;
    display: none;
    padding: 140px 0;
    background: #e9ece1;
    color: #171917;
    overflow: hidden;
}

.export-inquiry-container {
    width: 1280px;
    max-width: calc(100% - 120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 43% 57%;
    gap: 80px;
    align-items: start;
}

.export-inquiry-content {
    padding-top: 8px;
}

.export-inquiry-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 60px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #aeb477;
}

.export-inquiry-eyebrow span {
    color: #222620;
}

.export-inquiry-content h2 em {
    font-style: normal;

    color: #8e995f;
}

.export-inquiry-content>p {
    max-width: 460px;
    margin: 30px 0 0;
    line-height: 1.7;
    color: #747971;
}

.export-inquiry-note {
    margin-top: 65px;
    padding-top: 20px;
    border-top: 1px solid #cfd3c7;
}

.export-inquiry-note span {
    display: block;
    margin-bottom: 10px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.7px;
    color: #92988a;
}

.export-inquiry-note strong {
    display: block;
    max-width: 300px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
    color: #34382f;
}

.export-inquiry-form-wrap {
    padding: 35px;
    background: #ffffff;
    border: 1px solid #dfe1d9;
    box-shadow:
        0 25px 60px rgba(28, 32, 25, .07);
}

.export-inquiry-form {
    width: 100%;
}

.export-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.export-form-group {
    margin-bottom: 25px;
}

.export-form-group label {
    display: block;
    margin-bottom: 9px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #92968d;
}

.export-form-group input,
.export-form-group select,
.export-form-group textarea {
    width: 100%;
    display: block;
    padding: 0 0 13px;
    border: 0;
    border-bottom: 1px solid #d8dad4;
    outline: none;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
    color: #272b25;
    transition:
        border-color .25s ease;
}

.export-form-group input,
.export-form-group select {
    height: 42px;
}

.export-form-group textarea {
    min-height: 110px;
    padding-top: 5px;
    resize: vertical;
}

.export-form-group input::placeholder,
.export-form-group textarea::placeholder {
    color: #b2b5ae;
}

.export-form-group input:focus,
.export-form-group select:focus,
.export-form-group textarea:focus {
    border-color: #aeb477;
}

.export-form-group select {
    cursor: pointer;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #777 50%),
        linear-gradient(135deg, #777 50%, transparent 50%);
    background-position:
        calc(100% - 7px) 18px,
        calc(100% - 2px) 18px;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
}

.export-form-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-top: 8px;
    padding-top: 25px;
    border-top: 1px solid #dedfd9;
}

.export-form-bottom p {
    max-width: 260px;
    margin: 0;
    font-size: 10px;
    line-height: 1.55;
    color: #92968d;
}

.export-submit {
    min-width: 175px;
    height: 52px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 0;
    background: #1d211b;
    color: #ffffff;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    transition:
        background .3s ease,
        transform .3s ease;
}

.export-submit:hover {
    background: #30362c;
    transform: translateY(-2px);
}

.export-submit b {
    font-size: 17px;
    font-weight: 400;
    color: #aeb477;
}

.export-faq {
    width: 100%;
    padding: 100px 0;
    color: #171917;
}

.export-faq-container {
    width: 1100px;

    max-width: calc(100% - 120px);

    margin: 0 auto;
}

.export-faq-header {

    margin-bottom: 70px;
}

.export-faq-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #aeb477;
}

.export-faq-eyebrow span {
    color: #222620;
}

.export-faq-header h2 {
    color: #fff;
}

.export-faq-header h2 em {
    font-style: normal;

    color: #aeb477;
}

.export-faq-header p {
    max-width: 500px;

    margin: 23px 0 0;
    line-height: 1.7;

    color: #777b74;
}

.export-faq-list {
    border-top: 1px solid #dcded7;
}

.export-faq-item {
    border-bottom: 1px solid #dcded7;
}

.export-faq-question {
    width: 100%;

    min-height: 85px;

    padding: 20px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border: 0;

    background: transparent;

    cursor: pointer;

    text-align: left;
}

.export-faq-question span {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: color .25s ease;
    font-family: 'Rubik';
}

.export-faq-question b {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d8dad3;

    border-radius: 50%;
    font-size: 16px;

    font-weight: 400;

    color: #aeb477;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.export-faq-item.active .export-faq-question span {
    color: #aeb477;
}

.export-faq-item.active .export-faq-question b {
    background: transparent;

    border-color: #aeb477;

    color: #aeb477;
}

.export-faq-answer {
    display: none;

    padding: 0 70px 25px 0;
}

.export-faq-item.active .export-faq-answer {
    display: block;
}

.export-faq-answer p {
    max-width: 650px;

    margin: 0;
    font-size: 16px;

    line-height: 1.7;

    color: #858980;
}

.export-faq-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 40px;

    padding-top: 20px;

    border-top: 1px solid #dcded7;
}

.export-faq-bottom p {
    margin: 0;
    font-size: 11px;

    color: #858980;
}

.export-faq-bottom a {
    display: flex;

    align-items: center;

    gap: 25px;

    padding-bottom: 6px;

    border-bottom: 1px solid #252923;

    text-decoration: none;
    font-size: 10px;

    font-weight: 600;

    color: #252923;
}

.export-faq-bottom a b {
    font-size: 16px;

    font-weight: 400;

    color: #aeb477;
}

.export-map-section {
    width: 100%;
    padding: 0px 0 50px;
    color: #fff;
    overflow: hidden;
}

.export-map-sec {
    display: grid;
    grid-template-columns: 30% 67%;
    gap: 40px;
    align-items: center;
    /* padding-bottom: 50px; */
}

.export-map-heading {
    display: grid;
    /* grid-template-columns: 30% 70%; */
    gap: 40px;
    margin-bottom: 65px;
}

.export-map-heading>span {
    padding-top: 8px;
    color: #aeb477;
}


.export-map-heading p {
    max-width: 530px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .55);
}

.world-map-wrap {
    position: relative;
    width: 100%;
    /* border-top: 1px solid rgba(255,255,255,.13);
    border-bottom: 1px solid rgba(255,255,255,.13); */
}

.world-map-image {
    display: block;
    width: 100%;
    height: auto;
    opacity: .52;
    filter: brightness(.72);
}

.map-markers {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.map-marker {
    position: absolute;

    width: 28px;
    height: 38px;

    padding: 0;
    border: 0;

    background: transparent;

    transform: translate(-50%, -100%);

    cursor: pointer;

    z-index: 3;
}

.map-marker::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 21px;
    height: 21px;

    background: #aeb477;

    border: 2px solid #1d211b;

    border-radius: 50% 50% 50% 0;

    transform: translateX(-50%) rotate(-45deg);

    box-shadow:
        0 2px 6px rgba(0, 0, 0, .4);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

    z-index: 1;
}

.marker-dot {
    position: absolute;

    left: 50%;
    top: 7px;

    width: 7px;
    height: 7px;

    background: #1d211b;

    border-radius: 50%;

    transform: translateX(-50%);

    z-index: 2;

    transition: background .25s ease;
}


/* COUNTRY NAME */

.map-marker::after {
    content: attr(data-country);

    position: absolute;

    left: 50%;
    bottom: calc(100% + 7px);

    padding: 6px 10px;

    background: #ffffff;
    color: #1d211b;

    border-radius: 4px;

    font-size: 10px;
    font-weight: 600;
    line-height: 1;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .25);

    transform:
        translateX(-50%) translateY(7px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;

    z-index: 100;
}


/* HOVER / CLICK */

.map-marker:hover::after,
.map-marker:focus-visible::after,
.map-marker.selected::after {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%) translateY(0);
}

.map-marker:hover::before,
.map-marker.selected::before {
    background: #ffffff;

    transform:
        translateX(-50%) rotate(-45deg) scale(1.12);

    box-shadow:
        0 3px 12px rgba(255, 255, 255, .25);
}

.map-marker:hover .marker-dot,
.map-marker.selected .marker-dot {
    background: #aeb477;
}


/* INDIA */

.map-marker.india {
    width: 42px;
    height: 52px;

    z-index: 20;
}

.map-marker.india::before {
    width: 31px;
    height: 31px;

    background: #b8d45b;

    border: 3px solid #1d211b;

    box-shadow:
        0 4px 15px rgba(184, 212, 91, .3);
}

.map-marker.india .marker-dot {
    top: 10px;

    width: 9px;
    height: 9px;

    background: #1d211b;
}

.map-marker.india:hover::before,
.map-marker.india.selected::before {
    background: #d5ec76;

    transform:
        translateX(-50%) rotate(-45deg) scale(1.12);
}


/* INDIA PULSE */

.marker-pulse {
    position: absolute;

    left: 50%;
    top: 15px;

    width: 38px;
    height: 38px;

    border: 1px solid #b8d45b;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    animation:
        markerPulse 2s ease-out infinite;

    pointer-events: none;
}

@keyframes markerPulse {

    0% {
        transform:
            translate(-50%, -50%) scale(.5);

        opacity: .9;
    }

    70% {
        transform:
            translate(-50%, -50%) scale(1.6);

        opacity: 0;
    }

    100% {
        transform:
            translate(-50%, -50%) scale(1.6);

        opacity: 0;
    }
}


/* FOOTER */

.export-map-footer {
    min-height: 100px;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr 2fr;

    align-items: center;

    border-bottom:
        1px solid rgba(255, 255, 255, .13);
    border-top:
        1px solid rgba(255, 255, 255, .13);
}

.export-map-footer>div {
    min-height: 60px;

    padding: 15px 25px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    border-right:
        1px solid rgba(255, 255, 255, .13);
}

.export-map-footer>div:first-child {
    padding-left: 0;
}

.export-map-footer strong {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.export-map-footer span {
    /* font-size: 7px; */
    letter-spacing: 1.5px;
    color: #aeb477;
}

.export-map-footer p {
    margin: 0;
    padding-left: 30px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .42);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .export-map-container {
        max-width: calc(100% - 40px);
    }

    .export-map-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .export-map-heading h2 {
        font-size: 42px;
    }

    .export-map-heading p {
        margin-top: 0;
    }

    .export-map-footer {
        grid-template-columns: 1fr 1fr;
    }

    .export-map-footer>div {
        border-bottom:
            1px solid rgba(255, 255, 255, .13);
    }

    .export-map-footer p {
        grid-column: 1 / -1;
        padding: 20px 0;
    }
}


@media (max-width: 767px) {

    .export-map-section {
        padding: 50px 0 20px;
    }

    .export-map-container {
        max-width: calc(100% - 30px);
    }

    .export-map-heading h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .export-map-heading p {
        font-size: 12px;
    }

    .world-map-wrap {
        overflow: hidden;
    }

    .world-map-image {
        width: 180%;
        max-width: none;
        transform: translateX(-25%);
    }

    .map-marker {
        transform: translate(-50%, -100%) scale(.8);
    }

    .map-marker.india {
        transform: translate(-50%, -100%) scale(.9);
    }

    .map-marker::after {
        font-size: 9px;
        padding: 5px 8px;
    }

    .export-map-footer {
        grid-template-columns: 1fr 1fr;
    }

    .export-map-footer>div {
        padding: 15px;
    }

    .export-map-footer>div:first-child {
        padding-left: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .marker-pulse {
        animation: none;
    }
}


/* blog page */

.journal-section {
    width: 100%;
    padding: 100px 0;
}

.journal-container {
    width: 1280px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
}

.journal-header {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
    margin-top: 65px;
}

.journal-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #aeb477;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.journal-heading {
    max-width: 760px;
}

.journal-heading {
    color: #fff;
}

.journal-heading span {
    display: block;
}

.journal-intro {
    justify-self: end;
    font-size: 14px;
    line-height: 1.7;
}

.journal-actions {
    margin-top: 25px;
}

.journal-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    min-width: 190px;
    padding: 15px 18px;
    background: #171914;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: .3s ease;
}

.journal-button span {
    font-size: 18px;
    line-height: 1;
    transition: transform .3s ease;
}

.journal-button:hover {
    background: #777d3e;
}

.journal-button:hover span {
    transform: translateX(5px);
}

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

.journal-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    /* border: 1px solid rgba(20, 20, 20, .08); */
    border-radius: 3px;
    transition: transform .4s ease, box-shadow .4s ease;
    background: #ffffff0a;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    border-radius: 20px;
}

.journal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.journal-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #d9d7d0;
}

.journal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.journal-card:hover .journal-image img {
    transform: scale(1.06);
}

.journal-index {
    position: absolute;
    top: 0;
    left: 0;
    width: 78px;
    height: 100%;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(14 15 12 / 74%);
    color: #fff;
    z-index: 2;
}

.journal-number {
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
}

.journal-category {
    margin-top: 18px;
    color: #aeb477;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.journal-category-line {
    width: 22px;
    height: 1px;
    margin-top: 14px;
    background: #777d3e;
    display: none;
}

.journal-content {
    min-height: 145px;
    padding: 22px 18px 20px 30px;
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 15px;
    align-items: center;
}

.journal-meta {
    margin-bottom: 10px;
    color: #aeb477;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.journal-title {
    max-width: 270px;
    color: #fff;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.12;
}

.journal-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #aeb477;
    border-radius: 50%;
    color: #aeb477;
    font-size: 18px;
    transition: .3s ease;
}

.journal-card:hover .journal-arrow {
    background: #777d3e;
    color: #fff;
    border-color: #777d3e;
    transform: rotate(-45deg);
}

.journal-date {
    margin-top: 14px;
    color: #777873;
    font-size: 8px;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.journal-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(30, 30, 25, .18);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.journal-feature {
    min-height: 70px;
    padding: 0 28px;
    border-right: 1px solid rgba(30, 30, 25, .15);
}

.journal-feature:first-child {
    padding-left: 0;
}

.journal-feature:last-child {
    border-right: 0;
}

.journal-feature h4 {
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
}

.journal-feature p {
    max-width: 210px;
    color: #777873;
    font-size: 10px;
    line-height: 1.5;
}

.journal-symbol {
    color: #777d3e;
    font-size: 18px;
    margin-bottom: 8px;
}

@media (max-width: 1000px) {
    .journal-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .journal-intro {
        justify-self: start;
    }

    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journal-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }

    .journal-feature:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 650px) {
    .journal-section {
        padding: 70px 0;
    }

    .journal-container {
        max-width: calc(100% - 30px);
    }

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

    .journal-image {
        height: 250px;
    }

    .journal-content {
        min-height: 130px;
    }

    .journal-title {
        font-size: 21px;
    }

    .journal-bottom {
        grid-template-columns: 1fr;
    }

    .journal-feature {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(30, 30, 25, .15);
    }

    .journal-feature:last-child {
        border-bottom: 0;
    }
}


/* contact page */

.ep-contact-hero {
    color: #fff;
    padding: 110px 0 120px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgb(0 0 0 / 42%) 45%, rgb(0 0 0 / 78%) 100%), url(../images/Banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.ep-contact-hero-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: #aeb477;
    font-size: 9px;
    letter-spacing: 2px;
    display: none;
}

.ep-contact-hero-content {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 80px;
    align-items: end;
    padding-top: 85px;
}

.ep-contact-hero-title h1 {
    margin: 0;
    font-size: 60px;
    font-weight: 400;
}

.ep-contact-hero-title h1 span {
    display: block;
    color: #aeb477;
}

.ep-contact-hero-copy {
    padding-bottom: 8px;
}

.ep-contact-hero-copy p {
    max-width: 390px;
    margin: 0 0 35px;
    color: #fff !important;
    line-height: 1.7;
}

.ep-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    text-decoration: none;
    font-size: 9px;
    letter-spacing: 1px;
    transition: .3s ease;
}

.ep-contact-link span {
    font-size: 18px;
}

.ep-contact-link:hover {
    background: #aeb477;
    border-color: #aeb477;
    color: #20251d;
}

.ep-contact-info {
    padding: 110px 0;
}


.ep-contact-info-heading {
    padding-bottom: 65px;
    text-align: center;
}

.ep-contact-info-heading>span {
    color: #aeb477;
    letter-spacing: 2px;
}

.ep-contact-info-heading h2 {
    padding: 15px 0 15px;
    color: #fff;
}


.ep-contact-info-heading p {
    grid-column: 2;
    max-width: 550px;
    line-height: 1.7;
    margin: auto;
}

.ep-contact-info-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #62615e;
    border-top: 1px solid #62615e;
}

.ep-contact-info-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 20px;
    padding: 38px 35px;
    border-right: 1px solid #62615e;
}

.ep-contact-info-item:not(:first-child) {
    padding-left: 35px;
}

.ep-contact-info-item:last-child {
    border-right: 0;
}

.ep-contact-info-number {
    color: #aeb477;
}

.ep-contact-info-item small {
    letter-spacing: 1.5px;
}

.ep-contact-info-item h3 {
    margin: 12px 0 5px;
    font-size: 18px;
    font-weight: 500;
}

.ep-contact-info-item p {
    margin: 0;
}

.ep-talk-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 120px;
    align-items: center;
    background: #ffffff0a;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    padding: 50px;
    border-radius: 30px;
}

.ep-section-label {
    color: #aeb477;
    letter-spacing: 2px;
}

.ep-talk-intro h2 {
    margin: 35px 0 25px;
    font-weight: 400;
    color: #fff;
}

.ep-talk-intro h2 em {
    display: block;
    color: #aeb477;
}

.ep-talk-intro>p {
    max-width: 450px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.7;
}

.ep-talk-note {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 15px;
    margin-top: 70px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.ep-talk-note span {
    color: #aeb477;
    font-size: 9px;
}

.ep-talk-note p {
    max-width: 260px;
    margin: 0;
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
    line-height: 1.6;
}

.ep-contact-form {
    padding-top: 15px;
}

.ep-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.ep-form-field {
    margin-bottom: 15px;
}

.ep-form-field label {
    display: block;
    margin-bottom: 12px;
    color: #aeb477;
    letter-spacing: .5px;
    text-transform: capitalize;
    font-size: 13px;
}

.ep-form-field input,
.ep-form-field select,
.ep-form-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    outline: none;
    background: transparent;
    color: #fff;
    padding: 10px 0 13px;
    font-size: 12px;
    font-family: rubik;
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 30px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    /* backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px); */
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.ep-form-field select {
    appearance: none;
}

.ep-form-field select option {
    color: #111;
}

.ep-form-field input::placeholder,
.ep-form-field textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

.ep-form-field textarea {
    min-height: 90px;
    resize: vertical;
    border-radius: 15px;
}

.ep-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 16px 20px;
    border: 1px solid #aeb477;
    background: transparent;
    color: #aeb477;
    cursor: pointer;
    font-size: 9px;
    letter-spacing: 1px;
    transition: .3s ease;
}

.ep-submit-btn span {
    font-size: 17px;
}

.ep-submit-btn:hover {
    background: #aeb477;
    color: #20251d;
}

.ep-faq-section {
    padding: 120px 0;
}

.ep-faq-inner {
    width: 1180px;
    max-width: calc(100% - 80px);
    margin: auto;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
}

.ep-faq-intro>span {
    color: #aeb477;
    letter-spacing: 2px;
}

.ep-faq-intro h2 {
    margin: 35px 0 25px;
    font-weight: 400;
    color: #fff;
}

.ep-faq-intro h2 em {
    display: block;
}

.ep-faq-intro p {
    color: #777871;
    line-height: 1.7;
}

.ep-faq-list {
    border-top: 1px solid #d0d0c9;
}

.ep-faq-list details {
    border-bottom: 1px solid #d0d0c9;
}

.ep-faq-list summary {
    display: grid;
    grid-template-columns: 45px 1fr 30px;
    align-items: center;
    min-height: 72px;
    cursor: pointer;
    list-style: none;
    color: #fff;
}

.ep-faq-list summary::-webkit-details-marker {
    display: none;
}

.ep-faq-list summary span {}

.ep-faq-list summary b {
    color: #aeb477;
    font-size: 18px;
    font-weight: 400;
    transition: transform .3s ease;
}

.ep-faq-list details[open] summary b {
    transform: rotate(45deg);
}

.ep-faq-answer {
    max-width: 650px;
    padding: 0 30px 25px 45px;
    color: #777871;
    line-height: 1.7;
}

.ep-final-contact {
    color: #fff;
    padding: 140px 0 35px;
}

.ep-final-contact-inner {
    width: 1180px;
    max-width: calc(100% - 80px);
    min-height: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.ep-final-number {
    color: #aeb477;
    font-size: 9px;
    letter-spacing: 2px;
}

.ep-final-content {
    margin: auto;
    text-align: center;
}

.ep-final-label {
    color: #aeb477;
    font-size: 9px;
    letter-spacing: 2px;
}

.ep-final-content h2 {
    margin: 25px 0;
    line-height: .9;
    font-weight: 400;
}

.ep-final-content h2 em {
    display: block;
    color: #aeb477;
}

.ep-final-content p {
    max-width: 430px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 1.7;
}

.ep-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    text-decoration: none;
    font-size: 9px;
    letter-spacing: 1px;
    transition: .3s ease;
}

.ep-final-btn span {
    font-size: 18px;
}

.ep-final-btn:hover {
    background: #aeb477;
    border-color: #aeb477;
    color: #20251d;
}

.ep-final-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .4);
    font-size: 8px;
    letter-spacing: 1.5px;
}

/* .ep-contact-info-list {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
} */

.ep-contact-info-item:not(:first-child) {
    padding-left: 35px;
}

.ep-contact-info-item:last-child {
    border-right: 0;
}

.ep-contact-info-item small {
    letter-spacing: 1.5px;
    color: #aeb477;
}

.ep-contact-info-item h3 {
    margin: 12px 0 5px;
    color: #fff;
}

.ep-contact-info-item p {
    max-width: 400px;
    margin: 0 0 20px;
    line-height: 1.6;
}

.ep-contact-info-item h3+p:last-child {
    margin-bottom: 0;
}

.world-map-wrap {
    position: relative;
    width: 100%;
}

.world-map-image {
    display: block;
    width: 100%;
    height: auto;
}

.map-markers {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-marker {
    position: absolute;
    width: 22px;
    height: 22px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 9999;
}

.marker-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    /* background: #c8c27e; */
    box-shadow: 0 0 8px rgba(200, 194, 126, .45);
}

.marker-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
    border: 2px solid #c8c27e;
    border-radius: 50%;
    animation: mapPulse 2s ease-out infinite;
}

@keyframes mapPulse {
    0% {
        transform: translate(-50%, -50%) scale(.5);
        opacity: .9;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.35);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.35);
        opacity: 0;
    }
}


.country-usa {
    left: 21.25%;
    top: 43.20%;
}

.country-peru {
    left: 28.75%;
    top: 70.10%;
}

.country-morocco {
    left: 45.10%;
    top: 48.20%;
}

.country-nigeria {
    left: 47.85%;
    top: 62%;
}

.country-uk {
    left: 45.35%;
    top: 29.00%;
}

.country-denmark {
    left: 50.45%;
    top: 28.80%;
}

.country-albania {
    left: 51.05%;
    top: 40%;
}

.country-kosovo {
    left: 53.55%;
    top: 40.8%;
}

.country-slovakia {
    left: 52.95%;
    top: 36.80%;
}

.country-poland {
    left: 53.25%;
    top: 32.7%;
}

.country-malta {
    left: 50.90%;
    top: 46.3%;
}

.country-lebanon {
    left: 59.15%;
    top: 54%;
}

.country-israel {
    left: 56.35%;
    top: 53.1%;
}

.country-jordan {
    left: 59.15%;
    top: 58.8%;
}

.country-iraq {
    left: 57.1%;
    top: 47.6%;
}

.country-qatar {
    left: 58.7%;
    top: 49.5%;
}

.country-uae {
    left: 60.35%;
    top: 52.5%;
}

.country-oman {
    left: 61.15%;
    top: 56.8%;
}

.country-india {
    left: 68.3%;
    top: 56.80%;
}

.country-russia {
    left: 71.8%;
    top: 32.80%;
}

.country-vietnam {
    left: 75.6%;
    top: 58.2%;
}

.country-australia {
    left: 83.35%;
    top: 79.20%;
}

.ep-talk-section {
    padding-bottom: 100px;
}

.ep-select-wrap {
    position: relative;
    width: 100%;
}

.ep-select-wrap select {
    width: 100%;
    height: 52px;
    padding: 0 45px 0 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: border-color .3s ease, background .3s ease;
}

.ep-select-wrap select:focus {
    border-color: #c8c27e;
    background: rgba(255, 255, 255, .06);
}

.ep-select-wrap select option {
    background: #242720;
    color: #fff;
}

.ep-select-arrow {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #c8c27e;
    font-size: 11px;
    pointer-events: none;
    transition: transform .3s ease;
}

.ep-select-wrap:focus-within .ep-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}


.ep-select {
    position: relative;
    width: 100%;
}

.ep-select-button {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 30px;
    background: rgba(255, 255, 255, .06);
    color: #71746f;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
}

.ep-select-button i {
    color: #d3ce95;
    font-size: 10px;
    transition: transform .3s ease;
}

.ep-select.open .ep-select-button i {
    transform: rotate(180deg);
}

.ep-select-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: rgba(30, 33, 29, .96);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    z-index: 9999;
    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
}

.ep-select.open .ep-select-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.ep-select-option {
    width: 100%;
    min-height: 42px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 30px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .09),
            rgba(255, 255, 255, .035));
    color: #fff;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        color .25s ease;
}

.ep-select-option:hover {
    background: rgba(211, 206, 149, .13);
    border-color: rgba(211, 206, 149, .45);
    color: #d3ce95;
    transform: translateX(3px);
}

.ep-select-option.selected {
    background: rgba(211, 206, 149, .15);
    border-color: #d3ce95;
    color: #d3ce95;
}


/* =====================================================
   UTILITY DROPDOWN
===================================================== */

.utility-menu {
    position: relative;
}

.utility-link {
    display: flex !important;
    align-items: center;
    gap: 7px;
}

.utility-link i {
    font-size: 8px;
    transition: transform .3s ease;
}

.utility-menu:hover .utility-link i {
    transform: rotate(180deg);
}


/* =====================================================
   UTILITY DROPDOWN
===================================================== */

.utility-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    right: -15px;
    /* width: 230px; */
    padding: 10px;
    background:
        linear-gradient(135deg,
            rgba(31, 34, 29, .98),
            rgba(19, 21, 19, .98));
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;

}


/* KEEP DROPDOWN OPEN */

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


/* =====================================================
   DROPDOWN ITEMS
===================================================== */

.utility-dropdown a {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    /* justify-content: center; */
    padding: 10px 15px;
    box-sizing: border-box;
    color: #e4e4e4;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    background: rgba(255, 255, 255, .06);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 6px rgba(203, 203, 203, .25);
    transition: color .25s ease,
        background .25s ease,
        transform .25s ease;
    gap: 10px;
}

.utility-dropdown a:hover {
    /* padding-left: 16px; */
    background: rgba(200, 194, 126, .08);
    color: #c8c27e !important;
}

.utility-dropdown a i {
    font-size: 8px;
    opacity: 0;
    /* transform: translateX(-5px); */
    transition:
        opacity .25s ease,
        transform .25s ease;
}

/* .utility-dropdown a:hover i {
    opacity: 1;
    transform: translateX(0);
} */


/* =====================================================
   SMALL TOP GAP BRIDGE
===================================================== */

.utility-dropdown::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.utility-menu:hover .utility-dropdown, .utility-menu.menu-open .utility-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 99999999;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .utility-menu {
        width: 100%;
    }

    .utility-link {
        width: 100%;
        justify-content: space-between;
    }

    .utility-dropdown {
        position: static;
        width: 100%;
        margin-top: 8px;
        padding: 0 0 5px;

        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;

        display: none;
        transition: none;
        z-index: 9999999;
    }

    .utility-menu.mobile-open .utility-dropdown {
        display: block;
    }

    .utility-dropdown::before {
        display: none;
    }

    .utility-dropdown a {
        padding: 9px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        font-size: 10px !important;
    }

    .utility-dropdown a:hover {
        padding-left: 20px;
    }

    .utility-dropdown a i {
        opacity: 1;
        transform: none;
    }



}

/* detail */

.blog-detail-container {
    padding: 130px 0px 50px;
}

/* Breadcrumb */
.blog-breadcrumb {
    padding-top: 40px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #777;
}

.blog-breadcrumb a {
    color: #777;
    text-decoration: none;
}

.blog-breadcrumb span {
    margin: 0px;
    color: #aeb477;
    font-size: 18px
}

/* Header */
.blog-header {
    margin-bottom: 45px;
}

.blog-category {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777;
}

.blog-title {
    margin: 0 0 22px;
    font-size: 50px;
    line-height: 1.05;
    font-weight: 400;
    color: #aeb477;
}

.blog-intro {
    max-width: 800px;
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
    color: #666;
}

.blog-meta {
    margin-top: 25px;
    font-size: 13px;
    color: #888;
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    height: 600px;
    margin-bottom: 70px;
    overflow: hidden;
    background: #eee;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Main Layout */
.blog-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 80px;
    align-items: start;
}

/* Article */
.blog-content {
    max-width: 1020px;
}

.blog-content h2 {
    margin: 60px 0 20px;
    color: #fff;
}

.blog-content h2:first-child {
    margin-top: 0;
}

.blog-content h3 {
    margin: 38px 0 15px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    color: #aeb477;
}


.blog-content p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.85;
    color: #555;
}

.blog-content strong {
    color: #aeb477;
    font-weight: 600;
}

.blog-content ul {
    margin: 25px 0 30px;
    padding-left: 22px;
}

.blog-content li {
    margin-bottom: 13px;
    padding-left: 5px;
    font-size: 16px;
    line-height: 1.7;
    color: #b8b8b8;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.blog-toc {
    padding: 25px;
    background: #ffffff0a;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    border-radius: 20px;
    color: #fff;
}

.blog-toc-title {
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aeb477;
}

.blog-toc a {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #ededed;
}

.blog-toc a:last-child {
    border-bottom: 0;
}

.blog-toc a:hover {
    color: #111;
}

/* Quote / Highlight */
.blog-highlight {
    margin: 45px 0;
    padding: 30px 35px;
    background: #ffffff0a;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    border-radius: 20px;
}

.blog-highlight p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

/* FAQ */
.blog-faq {
    margin-top: 20px;
}

.blog-faq-item {
    padding: 22px 0;
    border-bottom: 1px solid #ddd;
}

.blog-faq-question {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
}

.blog-faq-answer {
    margin: 0;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* Related */
.blog-related {
    margin-top: 100px;
    padding: 70px 0;
    border-top: 1px solid #e5e5e5;
}

.blog-related-title {
    margin: 0 0 35px;
    font-size: 32px;
    font-weight: 500;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-related-card {
    border: 1px solid #e5e5e5;
    background: #fff;
}

.blog-related-image {
    height: 220px;
    overflow: hidden;
    background: #eee;
}

.blog-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-related-card:hover img {
    transform: scale(1.04);
}

.blog-related-body {
    padding: 22px;
}

.blog-related-body h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 991px) {

    .blog-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: static;
        order: -1;
    }

    .blog-content {
        max-width: 100%;
    }

    .blog-featured-image {
        height: 450px;
    }

    .blog-related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .blog-detail-container {
        padding: 0 18px;
    }

    .blog-breadcrumb {
        padding-top: 25px;
    }

    .blog-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .blog-intro {
        font-size: 16px;
    }

    .blog-featured-image {
        height: 300px;
        margin-bottom: 45px;
    }

    .blog-content h2 {
        margin-top: 45px;
        font-size: 27px;
    }

    .blog-content p {
        font-size: 16px;
        line-height: 1.75;
    }

    .blog-highlight {
        padding: 25px;
    }

    .blog-related {
        margin-top: 60px;
        padding: 50px 0;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

.map-marker {
    position: absolute;
    width: 22px;
    height: 22px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

/* MARKER DOT MUST BE ABOVE EVERYTHING */
.marker-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #000;
    box-shadow: 0 0 8px rgba(200,194,126,.45);
    z-index: 10;
}


/* COUNTRY NAME */
.map-marker::after {
    content: attr(data-country);

    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);

    transform: translateX(-50%);

    padding: 6px 10px;

    background: #fff;
    color: #171a15;

    border-radius: 5px;

    font-size: 10px;
    font-weight: 600;
    line-height: 1;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 1000;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);

    transition: opacity .2s ease;
}


/* ARROW */
/* .map-marker::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);

    width: 7px;
    height: 7px;

    transform: translateX(-50%) rotate(45deg);

    background: #fff;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 999;

    transition: opacity .2s ease;
} */


/* SHOW NAME */
.map-marker:hover {
    z-index: 9999;
}

/* .map-marker:hover::after,
.map-marker:hover::before {
    opacity: 1;
    visibility: visible;
} */




/* catalogue page */

    .catalogue-section {
    position: relative;
    width: 100%;
    padding: 150px 0;
    overflow: hidden;
}
.catalogue-container {
    width: min(1320px, 92%);
    margin: 0 auto;
}
.catalogue-featured {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 450px;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff0a;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    border-radius: 20px;
}
.catalogue-featured-image {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}
.catalogue-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent 65%,
            rgba(10,15,12,.18)
        );
    pointer-events: none;
}
.catalogue-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}
.catalogue-featured:hover .catalogue-featured-image img {
    transform: scale(1.025);
}
.catalogue-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
}
.catalogue-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    margin-bottom: 20px;
    border: 1px solid #aeb477;
    border-radius: 30px;
    color: #aeb477;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}
.catalogue-featured-content h2 {
    margin: 0 0 25px;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.5px;
}
.catalogue-featured-content p {
    max-width: 540px;
    margin: 0 0 35px;
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.75;
}
.catalogue-meta {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
}
.catalogue-meta span {
    position: relative;
    padding: 0 15px;
    color: rgba(255,255,255,.58);
    font-size: 11px;
}
.catalogue-meta span:first-child {
    padding-left: 0;
}
.catalogue-meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 13px;
    background: rgba(255,255,255,.2);
    transform: translateY(-50%);
}
.catalogue-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.catalogue-btn {
    min-height: 42px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
}
.catalogue-btn-primary {
    background: #ffffff0f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    transition: .3s ease-in-out;
    letter-spacing: 0.5px;
    font-size: 16px;
    color:#fff
}
.catalogue-btn-primary:hover {
    background: #aeb477;
    border-color: #fff;
    color: #000;
    transform: translateY(-2px);
}
.catalogue-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.02);
}
.catalogue-btn-outline:hover {
    border-color: #c8c27e;
    color: #d3ce95;
    background: rgba(200,194,126,.07);
}
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.catalogue-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 26px;
    background: #ffffff0a;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    border-radius: 20px;
    transition:
        transform .35s ease,
        border-color .35s ease;
}
.catalogue-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200,194,126,.4);
}
.catalogue-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.catalogue-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}
.catalogue-card:hover .catalogue-card-image img {
    transform: scale(1.04);
}
.catalogue-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 30px;
    background: rgba(35,39,34,.75);
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .7px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.catalogue-card-content {
    padding: 22px;
}
.catalogue-card-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
}
.catalogue-card-content p {
    min-height: 48px;
    margin: 0 0 20px;
    color: rgba(255,255,255,.55);
    font-size: 15px;
    line-height: 1.55;
}
.catalogue-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.catalogue-card-meta span {
    position: relative;
    padding: 0 11px;
    color: rgba(255,255,255,.58);
    font-size: 9px;
}
.catalogue-card-meta span:first-child {
    padding-left: 0;
}
.catalogue-card-meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 11px;
    background: rgba(255,255,255,.18);
    transform: translateY(-50%);
}
.catalogue-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.catalogue-card-btn {
       /* min-height: 36px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* border: 1px solid rgba(255, 255, 255, .17); */
    border-radius: 30px;
    color: #fff;
    background: rgba(255, 255, 255, .015);
    /* font-size: 10px; */
    text-decoration: none;
    transition: .3s ease;
    /* background: #ffffff29; */
    /* backdrop-filter: blur(12px); */
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    padding: 8px;
        background: #ffffff0f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    transition: .3s ease-in-out;
    letter-spacing: 0.5px;
    font-size:16px
}
.catalogue-card-btn:hover {
    border-color: transparent;
    color: #000;
    background: #aeb477;
}
.catalogue-card-btn i {
    font-size: 8px;
}
@media (max-width: 1100px) {
    .catalogue-featured-content {
        padding: 40px;
    }
    .catalogue-card-image {
        height: 250px;
    }
}

@media (max-width: 900px) {

    .catalogue-featured {
        grid-template-columns: 1fr;
    }
    .catalogue-featured-image {
        height: 400px;
        min-height: 400px;
    }
    .catalogue-featured-content {
        padding: 35px;
    }
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalogue-card:last-child {
        grid-column: span 2;
    }
    .catalogue-card-btn{
        font-size:14px
    }

}

@media (max-width: 767px) {

    .catalogue-section {
        padding: 125px 0 50px;
    }
    .catalogue-container {
        width: 92%;
    }
    .catalogue-featured {
        border-radius: 20px;
    }
    .catalogue-featured-image {
        height: 260px;
        min-height: 260px;
    }
    .catalogue-featured-content {
        padding: 28px 22px;
    }
    .catalogue-badge {
        margin-bottom: 16px;
        padding: 7px 12px;
        font-size: 8px;
    }
    .catalogue-featured-content h2 {
        margin-bottom: 18px;
        font-size: 40px;
    }
    .catalogue-featured-content p {
        margin-bottom: 25px;
        font-size: 13px;
        line-height: 1.6;
    }
    .catalogue-meta {
        flex-wrap: wrap;
        margin-bottom: 22px;
    }
    .catalogue-meta span {
        font-size: 9px;
    }
    .catalogue-actions {
        flex-wrap: wrap;
    }
    .catalogue-btn {
        min-height: 40px;
        padding: 0 17px;
        font-size: 12px;
    }
    .catalogue-card-btn{
        font-size: 12px;

    }
    .catalogue-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 18px;
    }
    .catalogue-card:last-child {
        grid-column: auto;
    }
    .catalogue-card {
        border-radius: 20px;
    }
    .catalogue-card-image {
        height: 250px;
    }
    .catalogue-card-content {
        padding: 20px;
    }
    .catalogue-card-content h3 {
        font-size: 20px;
    }
}

/* end catalogue page */


/* catalogue download modal (glass popup) */

.catalogue-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(6, 9, 8, .78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.catalogue-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.catalogue-modal {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 45px 40px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
    background-color: rgba(22, 26, 23, .92);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(14px);
    transition: transform .3s ease;
}
.catalogue-modal-overlay.open .catalogue-modal {
    transform: translateY(0);
}
.catalogue-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: #ffffff0f;
    color: rgba(255, 255, 255, .8);
    cursor: pointer;
    transition: .3s ease;
}
.catalogue-modal-close:hover {
    color: #000;
    background: #aeb477;
}
.catalogue-modal-close svg {
    width: 15px;
    height: 15px;
}
.catalogue-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border: 1px solid rgba(174, 180, 119, .55);
    border-radius: 18px;
    background: #ffffff0f;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    color: #aeb477;
}
.catalogue-modal-icon svg {
    width: 30px;
    height: 30px;
}
.catalogue-modal-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #aeb477;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.catalogue-modal-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 12px;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
}
.catalogue-modal-text {
    max-width: 420px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.65;
}
.catalogue-modal-text strong {
    color: #d3ce95;
    font-weight: 500;
}
.catalogue-modal-form {
    text-align: left;
}
.catalogue-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.catalogue-form-field {
    margin-bottom: 14px;
}
.catalogue-form-field label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .75);
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.catalogue-form-field label sup {
    color: #aeb477;
}
.catalogue-form-field input {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: #ffffff0a;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 30%);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color .3s ease;
}
.catalogue-form-field input::placeholder {
    color: rgba(255, 255, 255, .35);
}
.catalogue-form-field input:focus {
    border-color: rgba(174, 180, 119, .7);
}
.catalogue-form-error {
    margin: 0 0 14px;
    color: #e2a46f;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}
.catalogue-modal-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 4px;
    border: 0;
    border-radius: 30px;
    background: #ffffff0f;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.catalogue-modal-submit:hover {
    background: #aeb477;
    color: #000;
}
.catalogue-modal-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.catalogue-otp-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}
.catalogue-otp-inputs input {
    width: 48px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: #ffffff0a;
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 30%);
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    outline: none;
    transition: border-color .3s ease;
}
.catalogue-otp-inputs input:focus {
    border-color: rgba(174, 180, 119, .7);
}
.catalogue-modal-resend {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
}
.catalogue-modal-resend-link {
    padding: 0;
    border: 0;
    background: none;
    color: #aeb477;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    transition: color .3s ease;
}
.catalogue-modal-resend-link:disabled {
    opacity: .5;
    cursor: not-allowed;
}
.catalogue-modal-resend-link:not(:disabled):hover {
    color: #d3ce95;
}
.catalogue-modal-resend-timer {
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}
.catalogue-modal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    cursor: pointer;
    transition: color .3s ease;
}
.catalogue-modal-back:hover {
    color: #d3ce95;
}
.catalogue-modal-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #aeb477;
    border-radius: 50%;
    background: rgba(174, 180, 119, .15);
    color: #aeb477;
    font-size: 15px;
}
.catalogue-modal-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 12px;
    padding: 0 26px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    background: rgba(255, 255, 255, .02);
    color: #fff;
    font-size: 12px;
    letter-spacing: .6px;
    cursor: pointer;
    transition: .3s ease;
}
.catalogue-modal-close-btn:hover {
    background: #aeb477;
    color: #000;
}
@media (max-width: 767px) {
    .catalogue-modal {
        padding: 38px 22px 28px;
        border-radius: 20px;
    }
    .catalogue-modal-title {
        font-size: 24px;
    }
    .catalogue-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .catalogue-otp-inputs input {
        width: 42px;
        height: 48px;
        font-size: 19px;
    }
}

/* end catalogue page */

.catalogue-btn {
    /* min-height: 42px; */
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
    border: none;
}

.catalogue-card-btn {
    /* min-height: 36px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* border: 1px solid rgba(255, 255, 255, .17); */
    border-radius: 30px;
    color: #fff;
    background: rgba(255, 255, 255, .015);
    /* font-size: 10px; */
    text-decoration: none;
    transition: .3s ease;
    /* background: #ffffff29; */
    /* backdrop-filter: blur(12px); */
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    padding: 10px 20px;
    background: #ffffff0f;
    backdrop-filter: blur(12px);
    box-shadow: inset 0px 1px 6px 0px rgb(203 203 203 / 49%);
    transition: .3s ease-in-out;
    letter-spacing: 0.5px;
    font-size: 16px;
    width: max-content;
    border: none;
}

.spec-row--table {
    align-items: flex-start;
}

.random-table {
    border-collapse: collapse;
    font-weight: 400;
    line-height: 1.6;
}

.random-table th,
.random-table td {
    padding: 2px 32px 2px 0;
    text-align: left;
    white-space: nowrap;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.random-table tr:last-child th,
.random-table tr:last-child td {
    border-bottom: 0;
}

.random-table th {
    font-weight: 400;
    font-size: .85em;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .45;
}