@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: #666;
    overflow-x: hidden !important;
    background-color: #FFFFFF;
}



span,
a,
a:hover {
    text-decoration: none;
    color: inherit;
}

b {
    font-weight: 400;
}

input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
    max-width: 100%;
    margin-bottom: 12px;
    padding: 8px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    background-image: none;
    border: 1px solid #ddd;
    border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    padding-left: 25px;
}

input:focus,
textarea:focus {
    border-bottom-width: 1px;
    border-color: #000000;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    -webkit-transition: background-color 0.15s ease-out;
    transition: background-color 0.15s ease-out;
    background: transparent;
    border: 0px solid transparent;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    border: 0px solid transparent;
}

select {
    padding: 10px;
    border-radius: 1px;
}

table,
th,
tr,
td {
    border: 1px solid #f8f5f0;
}

th,
tr,
td {
    padding: 10px;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline;
}

input[type="submit"] {
    font-weight: 400;
    text-transform: uppercase;
    background: #011900;
    color: #fff;
    padding: 8px 24px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 3px;
}



::-webkit-input-placeholder {
    color: #666;
    font-size: 15px;
    font-weight: 400;
}

:-moz-placeholder {
    color: #666;
}

::-moz-placeholder {
    color: #666;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #666;
}

blockquote {
    padding: 45px;
    display: block;
    position: relative;
    background-color: #f8f5f0;
    overflow: hidden;
    margin: 35px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: #666;
}

blockquote p {
    font-family: inherit;
    margin-bottom: 0 !important;
    color: inherit;
    max-width: 650px;
    width: 100%;
    position: relative;
    z-index: 3;
}

blockquote:before {
    content: "\e645";
    font-family: "Themify";
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 110px;
    opacity: 0.07;
    line-height: 1;
    color: #222;
}

blockquote p {
    margin-bottom: 0;
}

blockquote p a {
    color: inherit;
}

blockquote cite {
    display: inline-block;
    font-size: 15px;
    position: relative;
    padding-left: 60px;
    border-color: inherit;
    line-height: 1;
    margin-top: 22px;
    font-style: normal;
    color: #011900;
    font-weight: 400;
}

blockquote cite:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 45px;
    height: 1px;
    border-top: 1px solid;
    border-color: inherit;
    color: #011900;
}


.o-hidden {
    overflow: hidden;
}

.position-re {
    position: relative;
}

.full-width {
    width: 100%;
}

.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-fixed {
    background-attachment: fixed;
}

.bold {
    font-weight: 600;
}

:root {
    scroll-behavior: auto;
}






/*  
.preloader-logo-fixed {
    position: fixed;
    top: 50px;
    z-index: 1000000000;
}

.fixed-loader-logo {
    width: 120px;
    height: 120px;
    opacity: 1;
    animation: logoSpin 2.5s linear infinite;
    transform-origin: center center;
}

@keyframes logoSpin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}
 
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
}

.preloader-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000, #2b2b2b);
}

 
.preloader-bar-wrapper {
    position: absolute;
    top: 50%;
    width: 100vw;
    transform: translateY(-50%);
}

.preloader-bar-track {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.preloader-bar-fill {
    position: absolute;
    height: 3px;
    width: 0%;
    top: 50%;
    left: 0;
    background: #fff;
    transform: translateY(-50%);
    border-radius: 10px;
}
 
.preloader-spinner {
    position: absolute;
    top: 40px;
}

.loader-logo {
    width: 95px;
    height: 95px;
    animation: spin 2.5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}
 
.preloader-percentage {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 70px;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
}
 */







/* ======================
   HERO PRELOADER INSIDE HEADER
   ====================== */



.hero-preloader {
    position: absolute;
    inset: 0;
    z-index: 90;
    /* below navbar (99), above hero-overlay (default) */
    overflow: hidden;
}

/* dark gradient overlay */
.hero-preloader .preloader-bg {
    position: absolute;
    inset: 0;
    background: #181818;
}

/* progress line wrapper - same vertical position as hero-center-line */
.preloader-progress-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

/* thin base line */
.preloader-progress-track {
    width: 100%;
    height: 1px;
    background: #DDDDDD;
}

/* thick white active segment */
.preloader-progress-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 3px;
    width: 0%;
    /* GSAP will animate */
    transform: translateY(-50%);
    background: #ffffff;
    border-radius: 999px;
}


.preloader-percentage {
    position: absolute;
    right: 40px;
    bottom: 50px;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -0.03em;
    height: 64px;
    overflow: hidden;
    color: #FFF;
}

.preloader-percentage-inner {
    display: flex;
    /* STACK properly */
    flex-direction: column;
    /* vertical stack */
    transform: translateY(0);
    will-change: transform;
    text-align: right;
}

.pre-num {
    height: 64px;
    line-height: 64px;
    padding: 0;
    /* ensures identical alignment */
    margin: 0;
}


.preloader-percentage {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -0.03em;
    height: 64px;
    overflow: hidden;
}

.preloader-percentage-inner {
    position: relative;
    height: 64px;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    will-change: transform;
}

.pre-num {
    height: 64px;
    line-height: 64px;
}


.section-padding {
    padding: 120px 0;
}




















/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 0;
    background-color: transparent;
    transition: background-color 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: background-color;
}

/* When menu opens */
.navbar:has(.menu-content.open) {
    background-color: rgb(255, 255, 255);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.50); */
    position: fixed;
}

/* ========== MENU CONTENT ========== */
.menu-content {
    position: fixed;
    right: 0;
    width: 100%;
    opacity: 0;
    /* GSAP will animate this */
    visibility: hidden;
    z-index: -1;
    display: block;
    background-color: rgba(0, 0, 0, 0);
    transform: translateY(0);
    /* neutral; GSAP handles motion */
    transition:
        background-color 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    /* only bg via CSS */
    will-change: opacity, transform, background-color;
}

/* Smooth entrance/exit (only bg + pointer events via class) */
.menu-content.open {
    opacity: 1;
    /* helps when JS disabled */
    visibility: visible;
    z-index: 98;
    background-color: rgb(255, 255, 255);
}

.menu-content:not(.open) {
    pointer-events: none;
}



.navbar-toggler-icon {
    background-image: none;
}

.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #fff;
}

.navbar .navbar-nav {
    padding-top: 50px;
    padding-bottom: 50px;
}

.navbar .navbar-nav .nav-link {
    color: #212121;
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.03em;
    padding: 0;
}

.navbar .navbar-nav .active {
    /* background: linear-gradient(180deg, #00A89F 0%, #70B63C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.logo-wrapper {
    float: left;
}


.logo {
    padding: 0;
}

.logo-img {
    width: 90px;
    text-align: center;
    transition: filter 0.3s ease;
}

.logo-dark {
    filter: invert(1) grayscale(1) brightness(0);
}

.logo_nav_margin_top {
    margin-top: 20px;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler {
    padding: 0;
    margin: 0;
    border: none;
}

.sub_menu_link_area {
    display: block;
    position: relative;
}

.sub_menu_link_area ul {
    display: flex;
    position: relative;
    margin-bottom: 0;
    padding-left: 0;
    gap: 50px;
    padding: 30px 0;
}

.sub_menu_link_area ul li a {
    color: #212121;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.03em;
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #000000;
    border-radius: 8px;
    border: 1px solid #ccc;
    backdrop-filter: blur(44px);
    /* padding: 12px 22px; */
    gap: 15px;
    background-color: white;
}

.navbar-toggler {
    z-index: 999;
}

.menu_bar_title {
    padding: 0 24px 0 18px;
}

.menu_bar_bars {
    padding: 16px;
    border-left: 1px solid #E2E2E2;
}

.menu_bar_logo_icon {
    display: flex;
    position: relative;
    align-items: center;
}

.menu-icon p {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.03em;
}

.menu-icon-lines {
    width: 25px;
    height: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon-lines span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000000;
    transition: all 0.4s ease-in-out;
}

.menu-icon.open span:nth-of-type(1) {
    transform: translateY(6px) rotate(45deg);
    background-color: #000000;
}

.menu-icon.open span:nth-of-type(2) {
    opacity: 0;
}

.menu-icon.open span:nth-of-type(3) {
    transform: translateY(-6px) rotate(-45deg);
    background-color: #000000;
}

/* Force gradient on each split line */
/* .navbar-nav .active .line {
    display: inline-block;
    background: linear-gradient(90deg, #ff7b00, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    color: #70B63C;
} */

.navbar-nav .active .line,
.navbar-nav .active .line > span,
.navbar-nav .active .line > div {
  display: inline-block;
  background: linear-gradient(90deg, #00A89F, #70B63C);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* .navbar-nav .active .line {
  display: inline-block;
  background: linear-gradient(90deg, #00A89F, #70B63C);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transform: translateY(0%) !important;
  opacity: 1 !important;
} */


.navbar-toggler {
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
}

.menu-text span {
    display: block;
    transition: transform 0.35s ease;
}

.menu-text.swap span:first-child {
    transform: translateY(-100%);
}

.menu-text.swap span:last-child {
    transform: translateY(-100%);
}

.navbar-nav li {
    padding: 12px 0;
}

.navbar-nav ul li:first-child {
    padding-top: 0;
}

.navbar-nav li:last-child {
    padding-bottom: 0;
}

.main_left_navbar_links {
    display: block;
    position: relative;
    padding-top: 50px;
}

.main_menu_bar_link_title p {
    color: #212121;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.03em;
}

.menu-content .row {
    display: flex;
    align-items: stretch;
    /* makes both columns equal height */
}

.menu-content .col-lg-3,
.menu-content .col-lg-9 {
    display: flex;
    flex-direction: column;
    /* keeps inner content stacking properly */
}

.border_left_full {
    border-left: 1px solid #ddd;
}

.main_right_product_links {
    padding-top: 50px;
}

.main_right_product_links p {
    color: #212121;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.03em;
}

.main_product_links_area {
    padding-top: 50px;
}

.menu_product_link_structure {
    display: block;
    position: relative;
    padding: 32px 0;
}

.menu_product_link_structure h5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #00A89F 0%, #70B63C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-block;
    /* color: #70B63C; */
}

.menu_product_link_structure h2 {
    color: #212121;
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.03em;
    padding: 0;
    margin-bottom: 0;
}

.main_product_links_area a:first-child .menu_product_link_structure {
    padding-top: 0;
}

.full_width_border {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
}

/* ===== BACKDROP BLUR OVERLAY WHEN MENU IS OPEN ===== */
.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    /* behind .menu-content (z-index: 98) */
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
}



/* ========== WHY ATAL SUBMENU ========== */

.has-submenu {
    position: relative;
}

/* .has-submenu .submenu-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #212121;
    border-bottom: 2px solid #212121;
    transform: rotate(45deg);
    margin-left: 40px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.has-submenu.open .submenu-arrow {
    transform: rotate(225deg);
} */

.has-submenu>.nav-link {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    width: 100%;
    justify-content: space-between;
}


/* Hidden by default */
.submenu-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    padding-left: 30px;
    border-left: 1px solid #ddd;
    /* margin-top: 30px;
    margin-bottom: 18px; */
}

.has-submenu.open .submenu-list {
    margin-top: 30px;
    margin-bottom: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.submenu-list li a {
    display: block;
    padding: 2px 0;
    color: #4D4D4D;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.03em;


}

/* On mobile, match current typography */
@media(max-width: 991px) {
    .submenu-list li a {
        font-size: 18px !important;
        padding: 10px 0 !important;
    }
}


/* Enable clicks-block + blur when visible via GSAP */
.menu-backdrop.active {
    pointer-events: auto;
}

/* Lock scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    overscroll-behavior: none;
    height: 100%;
}


/* Make sure menu-content covers full viewport height */
.menu-content {
    top: 0;
    /* min-height: 100vh; */
    overflow-y: auto;
}

/* Smooth transform from GSAP */
.menu-content {
    transform-origin: top;
}



@media screen and (max-width: 992px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: transparent;
        padding-top: 0px;
        padding-bottom: 0px;
        height: 100px;
    }

    .logo-wrapper {
        float: left;
        /* padding: 20px 0 20px 20px; */
    }


    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }

    .logo-img {
        margin-bottom: 0px;
        width: 160px;
        padding: 0;
    }

    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        border: none;
        /* padding-right: 20px; */
    }

    .navbar button:hover {
        background: transparent;
    }

    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }

    .navbar .container {
        max-width: 100%;
        padding: 0;
    }

    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }

    .navbar .navbar-collapse {
        text-align: left;
        padding: 0;
        height: 100vh;
        overflow-y: auto;
        z-index: 1000;
    }

    .navbar-collapse {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s cubic-bezier(0.5, 0, 0.5, 1);
    }

    .navbar-collapse.show {
        max-height: 100vh;
    }

    .navbar .navbar-nav .nav-link {
        display: flex;
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 12px;
        padding-bottom: 12px;
        /* border-bottom: 1px solid #eee; */
        font-size: 20px;
        font-weight: 400;
    }

}

@media screen and (max-width: 769px) {

    .navbar-collapse {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s cubic-bezier(0.5, 0, 0.5, 1);
    }

    .navbar-collapse.show {
        max-height: 100vh;
    }

    .navbar .navbar-nav .nav-link {
        display: flex;
        justify-content: space-between;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar .navbar-nav .nav-active-icon {
        display: none;
    }
}



































.hero-header {
    position: relative;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-center-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #DDDDDD;
    transform: translateY(-50%);
}

.hero-content {
    position: absolute;
    top: calc(50% + -41px);
    width: 100%;
    transform: translateY(0);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    justify-self: center;
}


.hero-left {
    width: 40%;
    position: relative;
    padding-top: 30px;
}

.hero-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #fff;
}


.hero-title {
    color: #FFF;
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

.hero-right {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    padding-top: 30px;
}

.hero-desc {
    max-width: 340px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.03em;
}







.product_overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.product_overlaaay_main_text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.product_overlaaay_main_text h1 {
    color: #FFF;
    font-size: 84px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%;
    letter-spacing: -0.03em;
    text-align: center;
}

.product_overlaaay_main_text h5 {
    color: #FFF;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.03em;
}


.product_footer_bottom_overlay {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0%);
}















@media screen and (max-width: 992px) {

    .mmt-50 {
        margin-top: 50px;
    }

}




/* go home */
.go-back {
    margin-top: 45px;
}

.go-back a {
    color: #fff;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.go-back a:hover {
    color: #011900;
}

.go-back a span {
    transition: all 0.5s;
}

.go-back a span i {
    color: #fff;
    font-size: 12px;
}

.go-back a:hover span {
    padding-right: 15px;
}


/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 100px;
    right: 30px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    background-color: #011900;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "themify";
    content: "\e648";
    text-align: center;
    line-height: 45px;
    font-size: 12px;
    font-weight: 700;
    color: #323232;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: rgba(0, 0, 0, 0.2);
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.progress-wrap::after {
    color: #fff;
}

.progress-wrap svg.progress-circle path {
    stroke: #011900;
}


.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}



/* ----------------------------------------- */


/* Make all nav <a> tags handle the sliding text */
/* .menu-content a, */
.navbar-nav .nav-link,
.submenu-list li a,
.menu_product_link_structure h2,
.sub_menu_link_area ul li a,
.footer_quick_links_area ul li a,
.footer_essentials_links_area ul li a {
    position: relative;
    overflow: hidden;
}


.navbar-nav .nav-link::after,
.submenu-list li a::after,
.menu_product_link_structure h2:after,
.sub_menu_link_area ul li a:after,
.footer_quick_links_area ul li a:after,
.footer_essentials_links_area ul li a:after {
    content: attr(data-hover);
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(0);
    white-space: nowrap;
}


.navbar-nav .nav-link span,
.submenu-list li a span,
.menu_product_link_structure h2 span,
.sub_menu_link_area ul li a span,
.footer_quick_links_area ul li a span,
.footer_essentials_links_area ul li a span {
    display: inline-block;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


.navbar-nav .nav-link:hover span,
.submenu-list li a:hover span,
.menu_product_link_structure h2:hover span,
.sub_menu_link_area ul li a:hover span,
.footer_quick_links_area ul li a:hover span,
.footer_essentials_links_area ul li a:hover span {
    transform: translateY(-100%);
}


.navbar-nav .nav-link:hover::after,
.submenu-list li a:hover::after,
.menu_product_link_structure h2:hover::after,
.sub_menu_link_area ul li a:hover::after,
.footer_quick_links_area ul li a:hover:after,
.footer_essentials_links_area ul li a:hover:after {
    transform: translateY(-100%);
}

.sub_menu_link_area ul li a,
.footer_quick_links_area ul li a,
.footer_essentials_links_area ul li a {
    display: inline-block;
}

.top-container {
    width: 100%;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}