@charset "utf-8";

@font-face {
    font-family: '29LTAdirRegular'; /* Custom name for the new font */
    src: url('../fonts/alfont_com_AlFont_com_29LTAdirTRIAL-Regular.otf') format('opentype'); /* Correct path and format for .otf file */
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: '29LTAdirRegular', sans-serif; /* Set the new font as the primary font */
}


/* ==============================
   Variables
   ============================== */

:root {
    --full-wrapper-margin-x: 30px;
    --container-width: 1350px;
    --section-padding-y: 120px;
    --menu-bar-height: 65px;
    --menu-bar-height-scrolled: 65px;
    --color-dark-1: #010101;
    --gradient-gray-light-1: linear-gradient(0deg, #f5f5f5 0%, #fff 100%);
    --gradient-gray-light-2: linear-gradient(0deg, #fff 0%, #f5f5f5 100%);
    --gradient-dark-alpha-2: linear-gradient( 90deg, transparent 13%, var(--color-dark-1) 60%);
    --gradient-primary-alpha-1: linear-gradient( 90deg, var(--color-primary-1) 40%, transparent 87%);
    --gradient-primary-alpha-2: linear-gradient( 90deg, transparent 13%, var(--color-primary-1) 60%);
    --border-radius-default: 4px;
    --border-radius-large: 30px;
    --box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05),0px 1px 1px 0px rgba(0, 0, 0, 0.03),0px 3px 5px 0px rgba(0, 0, 0, 0.03);
    --box-shadow-strong: 0px 5px 10px 0px rgba(0, 0, 0, 0.08),0px 1px 1px 0px rgba(0, 0, 0, 0.06),0px 3px 5px 0px rgba(0, 0, 0, 0.06);
    --box-shadow-block: 0px 3px 50px 0px rgba(0, 0, 0, 0.05);
    --box-shadow-block-strong: 0px 3px 50px 0px rgba(0, 0, 0, 0.15);
    --transition-default: all 0.27s cubic-bezier(0, 0, 0.58, 1);
    --ease-default: cubic-bezier(0, 0, 0.58, 1);
    --ease-out-long: cubic-bezier(0,.5,0,1);
    --ease-out-medium: cubic-bezier(0,.57,.55,1);
    --ease-out-short: cubic-bezier(.15,.7,.78,1);
    --ease-elastic-1: cubic-bezier(0.68,-0.55,0.27,1.55);
    --ease-elastic-2: cubic-bezier(0.68,-3,0.27,5);
}


/* Common styles */

:root {
    scroll-behavior: auto;
}

html {
    -ms-overflow-style: scrollbar;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

main {
    overflow: clip;
}

iframe {
    border: none;
}

a, b, div, ul, li {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    -moz-outline-: none;
}

    a:focus:not(.focus-visible),
    a:active,
    section:focus,
    div:active,
    div:focus {
        -moz-outline: none;
        outline: none;
    }

        a:focus.focus-visible,
        button:focus.focus-visible,
        div:focus.focus-visible {
            -moz-outline: 3px dotted #36a367 !important;
            outline: 3px dotted #36a367 !important;
            outline-offset: 0 !important;
        }

img:not([draggable]), embed, object, video {
    max-width: 100%;
    height: 100%;
}

.image-fullwidth img {
    width: 100%;
    height: auto;
}

.min-height-80vh {
    min-height: 80vh;
}

.min-height-90vh {
    min-height: 90vh;
}

.min-height-100vh {
    min-height: 70vh !important;
    /*min-height: 100svh !important;*/
}

.align-center {
    text-align: center !important;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

.hidden {
    display: none !important;
}

.relative {
    position: relative !important;
}

.z-index-1 {
    z-index: 1 !important;
}

.z-index-n1 {
    z-index: -1 !important;
}

.no-hover {
    cursor: default !important;
}

.wch-unset {
    will-change: unset !important;
}

.white {
    color: #fff !important;
}

.black {
    color: var(--color-dakr-1) !important;
}

.color-primary-1 {
    color: var(--color-primary-1) !important;
}


.opacity-1 {
    opacity: 1 !important;
}

.size-24 {
    font-size: 24px !important;
}

.box-shadow {
    box-shadow: var(--box-shadow-block) !important;
}

.box-shadow-strong {
    box-shadow: var(--box-shadow-block-strong) !important;
}

.border-dark {
    border: 1px solid var(--color-dark-mode-gray-2) !important;
}

.bg-border-dark {
    background: var(--color-dark-3) !important;
    border: 1px solid var(--color-dark-mode-gray-2) !important;
}

.stick-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
}

.block-sticky {
    position: sticky;
    top: calc(var(--menu-bar-height-scrolled) + 40px);
    left: 0;
}

.round {
    border-radius: var(--border-radius-default) !important;
}

.round-large {
    border-radius: var(--border-radius-large) !important;
}

.circle {
    border-radius: 100px !important;
}

.circle-large {
    border-radius: 700px !important;
}

    .round.overflow-hidden,
    .round-large.overflow-hidden,
    .circle.overflow-hidden,
    .circle-large.overflow-hidden {
        isolation: isolate;
        transform: translateZ(0);
    }

::selection {
    color: #fff;
    background: var(--color-primary-1);
}

.light-content ::selection {
    color: #fff;
    background: var(--color-primary-1);
}

.animate, .animate * {
    transition: var(--transition-default);
}


.no-animate {
    -webkit-transition-property: none !important;
    -moz-transition-property: none !important;
    -o-transition-property: none !important;
    transition-property: none !important;
}

.clearlist, .clearlist li {
    list-style: none;
    padding: 0;
    margin: 0;
    background: none;
}

.clearlinks a {
    text-decoration: none;
    color: unset;
}

    .clearlinks a:hover {
        color: unset !important;
    }

.full-wrapper {
    margin: 0 var(--full-wrapper-margin-x);
    /* margin-top: -1000px; */
}

.container {
    max-width: var(--container-width);
    /* padding: 0 30px; */
}

.row:not( .g-0, .g-1, .g-2, .g-3, .g-4, .g-5, .gx-0, .gx-1, .gx-2, .gx-3, .gx-4, .gx-5, .gy-0, .gy-1, .gy-2, .gy-3, .gy-4, .gy-5) {
    --bs-gutter-x: 30px;
}

.row.gx-huge {
    --bs-gutter-x: 276px;
}

/* Typography */

a {
    color: var(--pc);
    text-decoration: underline;
    transition: color 0.1s var(--ease-default);
}

    a:hover {
        color: #10536e;
        text-decoration: underline;
    }

b, strong {
    font-weight: 500;
}



h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 1em;
    font-weight: 500;
    line-height: 1.2;
}

h1, .h1 {
    margin-bottom: 0.5em;
    font-size: 42px;
    letter-spacing: -0.04em;
}

h2, .h2 {
    margin-bottom: 0.5em;
    font-size: 36px;
    letter-spacing: -0.03em;
}

h3, .h3 {
    margin-bottom: 0.7em;
    font-size: 28px;
    letter-spacing: -0.03em;
}

h4, .h4 {
    font-size: 24px;
}

h5, .h5 {
    font-size: 20px;
}

h6, .h6 {
    font-size: 16px;
    font-weight: 700;
}

p {
    margin: 0 0 1.5em 0;
}

ul, ol {
    margin: 0 0 1.5em 0;
}


.lead {
    margin: 0 0 1em 0;
    font-size: 140%;
    font-weight: 400;
    letter-spacing: -0.012em;
    line-height: 1.5;
}

.lead-alt {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.196;
    letter-spacing: -0.04em;
}




.hs-title-11 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* Links */

.link-hover-anim {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    overflow: hidden;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    text-decoration: none;
    vertical-align: middle;
    color: currentColor;
    background: none;
    border: none;
    cursor: pointer;
}

    .link-hover-anim:hover {
        text-decoration: none !important;
    }

.main-nav .link-hover-anim {
    top: 1px;
}

.link-strong {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 7px 0;
    transition: transform 0.5s var(--ease-elastic-1), opacity 0.5s var(--ease-elastic-1), color 0.2s var(--ease-default);
}

.underline .link-strong {
    border-bottom: 2px solid currentColor;
}

    .underline .link-strong i {
        position: relative;
        top: 0.075em;
    }

.link-hover-anim:not(.underline) .link-strong i:not([class^="icon-"]) {
    position: relative;
    top: -0.05em;
    vertical-align: middle;
}

.link-strong svg {
    position: relative;
    top: -0.1em;
    margin-right: 0.2em;
}

.link-strong-hovered {
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    opacity: 0;
    transform: translateY(150%) translateZ(0.001px) skewY(10deg);
}

.link-hover-anim:hover {
    color: inherit;
}

.link-strong-unhovered {
    display: block;
}

.link-hover-anim:hover .link-strong-unhovered {
    opacity: 0;
    transform: translateY(-150%) translateZ(0.001px) skewY(-10deg);
}

.link-hover-anim:hover .link-strong-hovered {
    ;
    opacity: 1;
    transform: translateY(0) translateZ(0.001px) skewY(0);
}

.light-content .link-strong,
.light-content .link-hover-anim {
    color: #fff;
}

.link-hover-anim.link-gradient .link-strong {
    background: var(--gradient-primary-1-a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

    .link-hover-anim.link-gradient .link-strong i {
        -webkit-text-fill-color: var(--color-primary-1);
    }

.link-circle {
    padding-right: 22px;
}

    .link-circle:before {
        content: "";
        position: absolute;
        top: calc(50% - 2px);
        right: 7px;
        transform: translate3d(0, -50%, 0.001px);
        display: block;
        width: 51px;
        height: 51px;
        border: 1px solid currentColor;
        border-radius: 50%;
        transition: all .5s var(--ease-elastic-2);
    }

    .link-circle:hover:before {
        transform: translate3d(0, -50%, 0.001px) scale(1.1);
    }

    .link-circle .link-strong {
        padding: 20px 0;
    }

.link-circle-1 {
    margin-left: -7px;
    padding-left: 27px;
}

    .link-circle-1:before {
        content: "";
        position: absolute;
        top: calc(50%);
        left: 7px;
        transform: translate3d(0, -50%, 0.001px);
        display: block;
        width: 60px;
        height: 60px;
        border: 2px solid var(--color-dark-1);
        border-radius: 50%;
        opacity: .15;
        transition: all .5s var(--ease-elastic-2);
    }

    .link-circle-1 .link-strong-hovered {
        left: 27px;
    }

.light-content .link-circle-1:before {
    border-color: #fff;
    opacity: .25;
}

.link-circle-1:hover:before {
    transform: translate3d(0, -50%, 0.001px) scale(0.88);
}

.link-circle-1 .link-strong {
    padding: 24px 0;
}


/* Buttons */

.btn-mod,
a.btn-mod {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 3px 13px;
    color: #fff;
    background: linear-gradient(135deg,var(--pc), var(--sc));
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .065em;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-default);
    cursor: pointer;
}

    .btn-mod:hover,
    .btn-mod:focus,
    a.btn-mod:hover,
    a.btn-mod:focus {
        color: #fff;
        text-decoration: none;
        outline: none;
        border-color: transparent;
        box-shadow: none;
    }

    .btn-mod:active {
        cursor: pointer !important;
        outline: none !important;
    }

    .btn-mod i.align-center:before {
        display: block;
        margin: -0.275em 0;
        transform: translateY(0.14em);
    }

    .btn-mod.btn-small {
        height: auto;
        padding: 6px 15px;
        font-size: 13px;
        letter-spacing: 0.05em;
    }

    .btn-mod.btn-medium {
        height: auto;
        padding: 13px 20px 12px;
        font-size: 13px;
        letter-spacing: 0.085em;
        border: none;
    }

    .btn-mod.btn-large {
        height: auto;
        padding: 8px 16px 8px;
        font-size: 14px;
        letter-spacing: 0.085em;
    }

    .btn-mod.btn-large-1 {
        height: auto;
        padding: 16px 32px 15px;
        font-size: 13px;
        letter-spacing: 0.085em;
    }

    .btn-mod.btn-color-light {
        color: #fff;
        background: linear-gradient(135deg, var(--pc), var(--sc));
    }

    .btn-mod.btn-circle {
        border-radius: 30px;
    }

    .btn-mod.btn-round {
        border-radius: 50px;
    }

    .btn-mod.btn-hover-anim {
        position: relative;
        overflow: hidden;
        isolation: isolate;
        transform: translateZ(0);
    }

        .btn-mod.btn-hover-anim > span {
            position: relative;
        }

        .btn-mod.btn-hover-anim:before {
            content: "";
            display: block;
            width: 100%;
            height: 200%;
            position: absolute;
            top: 0;
            left: 0;
            transform: scale(.7) translateY(55%);
            background: linear-gradient(180deg,var(--pc), var(--sc));
            border-radius: 100%;
            transition: all 0.25s cubic-bezier(0,0,.31,.99);
            border-color: transparent !important;
        }

        .btn-mod.btn-hover-anim:hover {
            opacity: 1;
            border-color: var(--color-dark-3a);
            background-color: linear-gradient(135deg,var(--pc), var(--sc));
        }

            .btn-mod.btn-hover-anim:hover:before {
                transform: scaleX(2) scaleY(1) translateY(-15%);
            }

    .btn-mod.btn-w.btn-hover-anim:before {
        background: #ddd;
    }

    .btn-mod.btn-w.btn-hover-anim:hover {
        border-color: #ddd;
    }

    .btn-mod.btn-w-c.btn-hover-anim:before {
        background: var(--color-primary-light-1);
    }

    .btn-mod.btn-w-c.btn-hover-anim:hover {
        border-color: var(--color-primary-light-1);
    }

    .btn-mod.btn-color.btn-hover-anim:before {
        background: var(--color-primary-1-a);
    }

    .btn-mod.btn-color.btn-hover-anim:hover {
        border-color: var(--color-primary-1-a);
    }

.btn-animate-y {
    position: relative;
    display: block;
    overflow: hidden;
}

.btn-animate-y-1 {
    display: block;
    transition: all .37s var(--ease-out-short), opacity .37s linear;
}

.btn-animate-y-2 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translate(0,100%);
    transition: all .37s var(--ease-out-short), opacity .37s linear;
}

.btn-mod:hover .btn-animate-y-1,
a:not(.no-hover):hover .btn-animate-y-1 {
    opacity: 0;
    transform: translate(0,-100%);
}

.btn-mod:hover .btn-animate-y-2,
a:not(.no-hover):hover .btn-animate-y-2 {
    opacity: 1;
    transform: translate(0,0);
}

/* 
 * Mobile menu button fix 
 */

.mobile-on .link-hover-anim {
    top: 0;
}

.mobile-on .btn-border,
.mobile-on .btn-border:hover {
    color: #fff !important;
    border-color: #fff !important;
}

/* Home sections */

/*
 * Header common styles
 */

.home-section {
    width: 100%;
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.home-content {
    width: 100%;
    position: relative;
    text-align: center;
    margin-top: 10%;
    color: #fff;
}

/*
 * Scroll down icon
 */

@keyframes scroll-down-anim {
    0% {
        transform: translateY(-5px);
    }

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

    100% {
        transform: translateY(-5px);
    }
}

/*
 * Scroll down icon type 4
 */

.scroll-down-wrap-4 {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
}

.scroll-down-4 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    text-decoration: none;
    color: var(--color-dark-1);
    border: 2px solid var(--color-dark-1);
    border-radius: 50%;
    transition: all .27s var(--ease-default);
}

    .scroll-down-4:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: var(--color-dark-1);
        border-radius: 50%;
        z-index: -1;
        opacity: 0;
        transform: scale(0.3);
        transition: all .27s var(--ease-out-medium);
    }

    .scroll-down-4:hover {
        color: #fff;
        border-color: transparent;
        text-decoration: none;
    }

        .scroll-down-4:hover:before {
            opacity: 1;
            transform: scale(1.2);
        }

.light-content .scroll-down-4 {
    color: #fff;
    border-color: #fff;
}

    .light-content .scroll-down-4:hover {
        color: var(--color-dark-1);
        border-color: transparent;
    }

    .light-content .scroll-down-4:before {
        background: #fff;
    }

/*
 * Splitting JS chars animation 2
 */

.appear-animate .charsAnimIn-2 .char {
    opacity: 0;
    transform: translateY(0.2em) translateZ(0) rotate(5deg);
    transition: transform 0.5s var(--ease-out-short), opacity 1s var(--ease-default);
    transition-delay: calc( 0.0427s * var(--char-index) );
}

html:not(.mobile) .appear-animate .charsAnimIn-2 .char {
    will-change: opacity, transform;
}

@media print {
    .appear-animate .charsAnimIn-2 .char {
        opacity: 1 !important;
        transform: none !important;
    }
}

.charsAnimIn-2.animated .char,
.mobile .charsAnimIn-2 .char {
    opacity: 1;
    transform: none;
}

/*
 * Appearing animation styles
 */

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.wow,
.wow-menubar,
.wow-p {
    opacity: 0.001;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

html:not(.mobile) .wow,
html:not(.mobile) .wow-menubar,
html:not(.mobile) .wow-p {
    /*will-change: opacity, transform;*/
}

.appear-animate .wow.scaleOutIn {
    opacity: 1;
    transform: scale(1.2);
}

    .appear-animate .wow.animated,
    .appear-animate .wow.scaleOutIn.animated,
    .appear-animate .wow-p.amimated,
    .appear-animate .wow-menubar.animated,
    .mobile .appear-animate .wow,
    .mobile .appear-animate .wow-menubar,
    .mobile .appear-animate .wow-p {
        opacity: 1;
        transform: scale(1.0);
    }

@media print {
    .wow,
    .wow.scaleOutIn,
    .wow-menubar,
    .wow-p {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-37px,0)
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,37px,0);
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(37px,0,0);
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(-37px,0,0);
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInDownShort {
    0% {
        opacity: 0;
        transform: translate3d(0,-12px,0)
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.fadeInDownShort {
    animation-name: fadeInDownShort
}

@keyframes fadeInUpShort {
    0% {
        opacity: 0;
        transform: translate3d(0,12px,0);
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.fadeInUpShort {
    animation-name: fadeInUpShort;
}

@keyframes fadeInLeftShort {
    0% {
        opacity: 0;
        transform: translate3d(12px,0,0);
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.fadeInLeftShort {
    animation-name: fadeInLeftShort;
}

@keyframes fadeInRightShort {
    0% {
        opacity: 0;
        transform: translate3d(-12px,0,0);
    }

    to {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.fadeInRightShort {
    animation-name: fadeInRightShort;
}

@keyframes scalexIn {
    0% {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left center;
    }

    to {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left center;
    }
}

.scalexIn {
    animation-name: scalexIn;
}

@keyframes fadeScaleIn {
    0% {
        opacity: 0;
        transform: scale(.95) translateZ(0.1px);
    }

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

.fadeScaleIn {
    animation-name: fadeScaleIn;
}

@keyframes scaleOutIn {
    0% {
        transform: scale(1.2) translateZ(0.1px);
    }

    to {
        transform: scale(1.0);
    }
}

.scaleOutIn {
    animation-name: scaleOutIn;
    animation-timing-function: var(--ease-out-short);
}

@keyframes fadeScaleOutIn {
    0% {
        opacity: 0;
        transform: translateY(10px) translateZ(0.1px) scale(1.1);
    }

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

.fadeScaleOutIn {
    animation-name: fadeScaleOutIn;
}

@keyframes clipRightIn {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0);
    }
}

.clipRightIn {
    animation-name: clipRightIn;
    animation-timing-function: var(--ease-out-medium);
}

@keyframes fadeRotateIn {
    0% {
        opacity: 0;
        transform: rotateX(60deg) rotateY(10deg) rotateZ(-10deg);
        transform-origin: top;
        animation-timing-function: var(--ease-out-short);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeRotateIn {
    animation-name: fadeRotateIn;
}


/* Classic menu bar */


/*
 * Logo (in navigation panel)
 */

.nav-logo-wrap {
    position: absolute;
    top: 60%;
    left: 2%;
    flex-shrink: 0;
    z-index: 1050;
}

    .nav-logo-wrap .logo {
        display: flex;
        align-items: center;
        /* height: var(--menu-bar-height); */
        /* width: 250px; */
        transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    }

        .nav-logo-wrap .logo img {
            max-height: 100%;
        }

        .nav-logo-wrap .logo:before,
        .nav-logo-wrap .logo:after {
            display: none;
        }

.logo,
a.logo:hover {
    font-size: 18px;
    font-weight: 600 !important;
    text-decoration: none;
    color: rgba(0,0,0, .9);
}

/*
 * Desktop nav
 */

.main-nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    height: 140px !important;
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
    background: rgb(255 255 255 / 0%);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.025),0px 1px 1px 0px rgba(0, 0, 0, 0.01),0px 0px 50px 0px rgba(0, 0, 0, 0.07);
    z-index: 1000;
    ransition: all 0.2s var(--ease-default);
}

    .main-nav.sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }

    .main-nav.small-height {
        border-bottom: 2px solid #fe0000; /* Add border only on scrolling */
    }

        .main-nav.small-height .logo img {
            border: none; /* Ensure the logo does not inherit or show the border */
        }


.main-nav-sub {
    flex-grow: 1;
    display: flex;
    position: relative;
    margin-bottom: 0px;
    margin-top: -0.5%;
}

.inner-nav {
    flex-grow: 1;
    position: relative;
    z-index: 1000 !important;
}

    .inner-nav ul {
        margin: auto;
        font-size: 17px;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.3;
    }

        .inner-nav ul i.align-center:before {
            display: block;
            margin-top: -0.15em;
            transform: translateY(13.5%);
        }

        .inner-nav ul i.mi-mobile:before {
            margin-left: -0.25em;
            margin-right: -0.25em;
        }

    .inner-nav > ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .inner-nav ul li {
        margin: 0 18px;
        position: relative;
    }

        .inner-nav ul li:first-child {
            margin-left: 0;
        }

        .inner-nav ul li:last-child {
            margin-right: 0;
        }

    .inner-nav > ul.items-end {
        position: absolute;
        top: 0;
        right: 0;
    }

    .inner-nav ul li a {
        display: inline-block;
        text-decoration: none;
        transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    }

    .inner-nav > ul > li > a {
        display: table-cell;
        vertical-align: middle;
        height: var(--menu-bar-height);
        opacity: 0.8;
        color: var(--pc);
        font-weight: 700;
    }

.main-nav:not(.mobile-on).small-height .inner-nav > ul > li > a {
    height: var(--menu-bar-height-scrolled) !important;
}

.inner-nav ul li a:hover,
.inner-nav ul li a.active {
    color: var(--sc);
    opacity: 1;
    text-decoration: none;
    font-weight: 700;
}

.body-scrolled .scrolled-hidden {
    display: none;
}

.scrolled-visible {
    display: none;
}

.body-scrolled .scrolled-visible {
    display: block;
}

.mobile-on .scrolled-hidden,
.mobile-on .body-scrolled .scrolled-hidden {
    display: block;
}

.mobile-on .scrolled-visible {
    display: none;
}


/* Menu sub */

.inner-nav .mi-chevron-down {
    margin-left: -0.19em;
    font-size: 16px;
    transition: all 0.2s var(--ease-default), color 0 var(--ease-default);
}

.mi-chevron-right {
    transition: var(--transition-default);
}

.mn-sub {
    display: none;
    width: 220px;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    background: #fff;
    border-radius: 0 0 3px 3px;
}

.light-content .mn-sub {
    background: rgba(50,50,50, .9927);
}

.transparent .mn-sub,
.inner-nav .mn-sub .mn-sub,
.mn-has-multi a {
    border-radius: 3px;
}

    .transparent .mn-sub > li:first-child > a,
    .transparent .mn-sub > li:first-child > a {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

.mn-sub > li:last-child > a {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.main-nav.mobile-on.transparent .mn-sub > li:first-child > a,
.main-nav.mobile-on.transparent .mn-sub > li:first-child > a,
.main-nav.mobile-on .mn-sub > li:last-child > a {
    border-radius: 0;
}

.mn-sub li {
    display: block;
    width: 100%;
    margin: 0 !important;
}

.inner-nav ul li .mn-sub li a,
.mn-group-title {
    display: block;
    width: 100%;
    height: auto !important;
    line-height: 1.3 !important;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    text-transform: none;
    border-left: none;
    border-right: none;
    letter-spacing: 0;
    color: #000 !important;
    outline-offset: -2px !important;
    transition: var(--transition-default);
}

.mobile-on .mn-has-multi > li:last-child > a {
    border-bottom: 1px solid rgba(255,255,255, .065) !important;
}

.mn-sub li a:hover,
.inner-nav ul li .mn-sub li a:hover,
.mn-sub li a.active {
    background: #ffffff17;
    color: var(--sc) !important;
}

.mn-sub:not(.mn-has-multi) li ul {
    left: 100%;
    right: auto;
    top: 0;
    border-left: 1px solid rgba(255,255,255, .07);
}

.inner-nav li .mn-sub.to-left {
    left: auto;
    right: 0;
}

.inner-nav > ul > li:last-child .mn-sub li ul,
.inner-nav > li:last-child .mn-sub li ul,
.inner-nav li .mn-sub li ul.to-left {
    left: auto;
    right: 100%;
    top: 0;
    border-left: none;
    border-right: 1px solid rgba(255,255,255, .07);
}

.mobile-on .inner-nav li:last-child .mn-sub li ul {
    left: auto;
    right: auto;
    top: 0;
}

.mn-wrap {
    padding: 8px;
}

/* Menu sub multi */

.mn-has-multi {
    width: auto !important;
    padding: 15px;
    text-align: left;
    white-space: nowrap;
}

.mn-sub-multi {
    width: 200px !important;
    overflow: hidden;
    white-space: normal;
    float: none !important;
    display: inline-block !important;
    vertical-align: top;
}

    .mn-sub-multi > ul {
        width: auto;
        margin: 0;
        padding: 0;
        float: none;
    }

.mn-group-title {
    font-size: 18px !important;
}

    .mn-group-title:hover {
        background: none !important;
    }

.mobile-on .mn-sub-multi > ul {
    left: auto;
    right: auto;
    border: none;
}

.mobile-on .mn-sub-multi {
    display: block;
    width: 100% !important;
}

    .mobile-on .mn-sub-multi > ul > li:last-child > a {
        border: none !important;
    }

.mobile-on .mn-sub:not(.mn-has-multi) > li:last-child > a {
    border: none !important;
}

.mobile-on .mn-sub-multi:last-child > ul {
    border-bottom: none !important;
}

/*
 * Mobile nav
 */

.mobile-on .desktop-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0 15px;
    z-index: 100;
}

.mobile-on .full-wrapper .desktop-nav {
    padding: 0;
}

.mobile-on .desktop-nav ul {
    position: relative;
    width: 100%;
    float: none;
    overflow-x: hidden;
    background: #f3f3f3;
}

.mobile-on .desktop-nav > ul {
    overflow-y: auto;
    display: block;
}

.mobile-on .desktop-nav ul li {
    display: block;
    float: none !important;
    overflow: hidden;
}

    .mobile-on .desktop-nav ul li ul {
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255, .1);
    }

    .mobile-on .desktop-nav ul li a {
        display: block;
        width: 100%;
        height: auto !important;
        line-height: 1.3 !important;
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 15px 10px;
        text-align: left;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255, .065);
        color: var(--pc);
        opacity: 1;
        cursor: pointer;
    }

        .mobile-on .desktop-nav ul li a:hover,
        .mobile-on .desktop-nav ul li a.active {
            background: rgba(255,255,255, .025);
            color: var(--sc);
        }

        .mobile-on .desktop-nav ul li a:focus {
            outline-offset: -2px !important;
        }

.mobile-nav-display {
    display: none;
}

.mobile-on .mobile-nav-display {
    display: block !important;
}

.mobile-nav-display-i {
    display: none;
}

.mobile-on .mobile-nav-display-i {
    display: inline-block !important;
}

.desktop-nav-display {
    display: block;
}

.mobile-on .desktop-nav-display {
    display: none !important;
}

/* Mobile nav menu sub */

.mobile-on .mn-has-sub > .mi-chevron-down {
    display: block;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 22px;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -12px;
    text-align: center;
    border: 1px solid rgba(255,255,255, .1);
    border-radius: 50%;
}

.mobile-on .mn-has-sub > .mi-chevron-right {
    display: block;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 22px;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -12px;
    text-align: center;
    border: 1px solid rgba(255,255,255, .1);
    transform: rotate(90deg);
    border-radius: 50%;
}

.mobile-on .js-opened > .mn-has-sub > .mi-chevron-down {
    border-color: rgba(255,255,255, .4);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobile-on .js-opened > .mn-has-sub > .mi-chevron-right {
    border-color: rgba(255,255,255, .4);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    transform: rotate(270deg);
}

.mobile-on .inner-nav li {
    margin: 0 !important;
}

.mobile-on .mn-sub {
    display: none;
    opacity: 0;
    position: relative;
    left: 0 !important;
    right: 0;
    top: 0;
    bottom: 0;
    border-left: none !important;
    border-right: none !important;
    border-top: none;
    z-index: 10;
}

    .mobile-on .mn-sub li {
        padding-left: 10px;
    }

.inner-nav li.js-opened .mn-sub {
    opacity: 1;
}

.mobile-nav {
    display: none;
    margin-left: auto;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    cursor: pointer;
    height: var(--menu-bar-height);
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition-property: background, color, height;
}

.main-nav.small-height .mobile-nav {
    height: var(--menu-bar-height-scrolled);
}

.mobile-nav:active {
    box-shadow: 0 0 35px rgba(0,0,0,.05) inset;
}

.mobile-on .mobile-nav {
    display: flex;
}

.mobile-nav-icon {
    position: relative;
    display: block;
    width: 1.8em;
    height: 2px;
    margin: auto;
    background: var(--color-dark-1);
}

    .mobile-nav-icon:before,
    .mobile-nav-icon:after {
        content: "";
        position: absolute;
        top: -0.5em;
        display: block;
        width: 100%;
        height: 100%;
        background: var(--color-dark-1);
        transition: var(--transition-default);
        will-change: top, transform;
    }

    .mobile-nav-icon:after {
        top: 0.5em;
    }

.mobile-nav.active .mobile-nav-icon {
    background: transparent;
}

    .mobile-nav.active .mobile-nav-icon:before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobile-nav.active .mobile-nav-icon:after {
        top: 0;
        transform: rotate(-45deg);
    }


/* Mobile nav menu sub multi */

.mobile-on .mn-has-multi {
    width: auto;
    padding: 0;
    text-align: left;
    white-space: normal;
}

.mobile-on .mn-sub {
    width: 100%;
    float: none;
    position: relative;
    overflow-x: hidden;
}

.mobile-on .mn-group-title {
    font-size: 15px !important;
}

/*
 * Dark panel style
 */

.main-nav.light-after-scroll.dark .logo-dark {
    display: none;
}

.main-nav.light-after-scroll.dark .logo-white {
    display: block;
}

.main-nav.light-after-scroll .logo-dark {
    display: block;
}

.main-nav.light-after-scroll .logo-white {
    display: none;
}

.main-nav.dark {
    background-color: rgba(10,10,10, .905);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.main-nav.dark-mode {
    background-color: rgba(27,27,27, .905);
}

.main-nav:not(.transparent) {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.main-nav.dark .inner-nav ul > li > a {
    color: #fff;
    opacity: .78;
}

    .main-nav.dark .inner-nav ul > li > a:hover,
    .main-nav.dark .inner-nav ul > li > a.active {
        color: #fff;
        opacity: 1;
    }

.main-nav.dark .inner-nav ul li .mn-sub li a {
    opacity: 1;
}

.main-nav.dark .main-nav-icon-cart {
    opacity: 1;
}

.main-nav.dark .mobile-nav {
    background-color: transparent;
    border-color: transparent;
}

.main-nav.dark .mobile-nav-icon,
.main-nav.dark .mobile-nav-icon:before,
.main-nav.dark .mobile-nav-icon:after {
    background: #fff;
}

.main-nav.dark .mobile-nav.active .mobile-nav-icon {
    background: transparent;
}

.main-nav.mobile-on.dark .inner-nav {
    border-top: 1px solid rgba(100,100,100, .4);
}

.main-nav.dark .logo,
.main-nav.dark a.logo:hover {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: rgba(255,255,255, .9);
}

.main-nav.dark .mn-sub {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.main-nav.dark .mi-chevron-down,
.main-nav.dark.body-scrolled .inner-nav ul > li > a:hover .mi-chevron-down,
.main-nav.dark.body-scrolled .inner-nav ul > li > a.active .mi-chevron-down {
    opacity: 1;
}

/*
 * Transparent panel style
 */

.main-nav.transparent {
    background: #ffffff94 !important;
    box-shadow: none;
    /* margin-top: 6%; */
    /* margin-bottom: 0px; */
}

.main-nav.js-transparent {
    /* transition: all 0.2s var(--ease-default); */
}

/*
 * Common section styles
 */

.page-section,
.small-section,
.bg-image {
    width: 100%;
    display: block;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center !important;
    background-size: cover;
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.small-section {
    padding: 100px 0;
}

.fixed-height-large {
    min-height: 800px;
}

.fixed-height-medium {
    min-height: 700px;
}

.fixed-height-small {
    min-height: 600px;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-scroll {
    background-attachment: scroll !important;
    background-position: center center !important;
}

.parallax-1,
.parallax-2,
.parallax-3,
.parallax-4,
.parallax-5,
.parallax-6,
.parallax-7,
.parallax-8,
.parallax-9,
.parallax-10 {
    background-position-y: 0;
}

.bg-white {
    background-color: #fff;
}

.bg-gray-light-1 {
    background-color: var(--color-gray-light-1);
}

.bg-gray-light-2 {
    background-color: var(--color-gray-light-2);
}

.bg-dark-1 {
    background-color: var(--color-dark-1) !important;
}

.bg-dark-2 {
    background-color: var(--color-dark-2) !important;
}

.bg-dark-3 {
    background-color: var(--color-dark-3) !important;
}

.bg-primary-1 {
    background-color: var(--color-primary-1) !important;
}

.bg-primary-2 {
    background-color: var(--color-primary-2) !important;
}

.bg-primary-3 {
    background-color: var(--color-primary-3) !important;
}

.bg-primary-4 {
    background-color: var(--color-primary-4) !important;
}

.bg-gradient-gray-light-1 {
    background-image: var(--gradient-gray-light-1);
}

.bg-gradient-gray-light-2 {
    background-image: var(--gradient-gray-light-2);
}

.bg-gradient-gray-dark-1 {
    background-image: linear-gradient(0deg, var(--color-dark-2) 0%, transparent 100%);
}

.bg-gradient-gray-dark-2 {
    background-image: linear-gradient(0deg, transparent 0%, var(--color-dark-2) 100%);
}

.bg-gradient-white {
    background-image: linear-gradient(0deg, #fff 0%, transparent 60%);
}

.bg-gradient-dark {
    background-image: linear-gradient(0deg, var(--color-dark-1) 0%, transparent 60%);
}

.bg-gradient-dark-1 {
    background-image: linear-gradient(0deg, transparent 85%, var(--color-dark-1) 100%);
}

.bg-gradient-primary-light-1 {
    background-image: linear-gradient(-90deg, var(--color-primary-light-3) 0%, var(--color-primary-light-2) 100%);
    ;
}

.bg-gradient-primary-dark-1 {
    background-image: linear-gradient(-90deg, var(--color-primary-3) 0%, var(--color-primary-2) 100%);
    ;
}

.bg-gradient-primary-alpha-1:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-primary-alpha-1);
    opacity: .97;
}

.bg-gradient-primary-alpha-2:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-primary-alpha-2);
    opacity: .97;
}

.bg-gradient-dark-alpha-1:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-dark-alpha-1);
    opacity: .97;
}

.bg-gradient-dark-alpha-2:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-dark-alpha-2);
    opacity: .97;
}

.section-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5vw;
    background: linear-gradient(180deg, var(--color-gray-light-2) 0%, transparent 100%);
}

.section-gradient-top-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5vw;
    background: linear-gradient(180deg, var(--color-dark-2) 0%, transparent 100%);
}

.bg-blur {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255, .1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

    .bg-blur:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-dark-1);
        opacity: 0.17;
    }

.light-content {
    color: #fff;
}

    .light-content a {
        color: rgba(255,255,255, .8);
    }

        .light-content a:hover {
            color: #fff;
        }

    .light-content .section-text {
        color: #fff;
    }

.bg-dark-alpha:before,
.bg-dark-alpha .YTPOverlay:before,
.bg-dark-alpha-30:before,
.bg-dark-alpha-30 .YTPOverlay:before,
.bg-dark-alpha-50:before,
.bg-dark-alpha-50 .YTPOverlay:before,
.bg-dark-alpha-70:before,
.bg-dark-alpha-70 .YTPOverlay:before,
.bg-dark-alpha-60:before,
.bg-dark-alpha-60 .YTPOverlay:before,
.bg-dark-alpha-80:before,
.bg-dark-alpha-80 .YTPOverlay:before,
.bg-dark-alpha-90:before,
.bg-dark-alpha-90 .YTPOverlay:before,
.bg-light-alpha:before,
.bg-light-alpha .YTPOverlay:before,
.bg-light-alpha-30:before,
.bg-light-alpha-30 .YTPOverlay:before,
.bg-light-alpha-50:before,
.bg-light-alpha-50 .YTPOverlay:before,
.bg-light-alpha-60:before,
.bg-light-alpha-60 .YTPOverlay:before,
.bg-light-alpha-70:before,
.bg-light-alpha-70 .YTPOverlay:before,
.bg-light-alpha-80:before,
.bg-light-alpha-80 .YTPOverlay:before,
.bg-light-alpha-90:before,
.bg-light-alpha-90 .YTPOverlay:before,
.bg-color-alpha:before,
.bg-color-alpha .YTPOverlay:before,
.bg-color-alpha-30:before,
.bg-color-alpha-30 .YTPOverlay:before,
.bg-color-alpha-50:before,
.bg-color-alpha-50 .YTPOverlay:before,
.bg-color-alpha-60:before,
.bg-color-alpha-60 .YTPOverlay:before,
.bg-color-alpha-70:before,
.bg-color-alpha-70 .YTPOverlay:before,
.bg-color-alpha-80:before,
.bg-color-alpha-80 .YTPOverlay:before,
.bg-color-alpha-90:before,
.bg-color-alpha-90 .YTPOverlay:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-dark-alpha:before,
.bg-dark-alpha .YTPOverlay:before {
    background: #111;
    opacity: .97;
}

.bg-dark-alpha-30:before,
.bg-dark-alpha-30 .YTPOverlay:before {
    background: #111;
    opacity: .3;
}

.bg-dark-alpha-50:before,
.bg-dark-alpha-50 .YTPOverlay:before {
    background: #111;
    opacity: .5;
}

.bg-dark-alpha-60:before,
.bg-dark-alpha-60 .YTPOverlay:before {
    background: #111;
    opacity: .6;
}

.bg-dark-alpha-70:before,
.bg-dark-alpha-70 .YTPOverlay:before {
    background: #111;
    opacity: .7;
}

.bg-dark-alpha-80:before,
.bg-dark-alpha-80 .YTPOverlay:before {
    background: #111;
    opacity: .8;
}

.bg-dark-alpha-90:before,
.bg-dark-alpha-90 .YTPOverlay:before {
    background: #111;
    opacity: .9;
}

.bg-light-alpha:before,
.bg-light-alpha .YTPOverlay:before {
    background: rgba(252,252,252, .97);
}

.bg-light-alpha-30:before,
.bg-light-alpha-30 .YTPOverlay:before {
    background: rgba(252,252,252, .30);
}

.bg-light-alpha-50:before,
.bg-light-alpha-50 .YTPOverlay:before {
    background: rgba(252,252,252, .50);
}

.bg-light-alpha-60:before,
.bg-light-alpha-60 .YTPOverlay:before {
    background: rgba(252,252,252, .60);
}

.bg-light-alpha-70:before,
.bg-light-alpha-70 .YTPOverlay:before {
    background: rgba(252,252,252, .7);
}

.bg-light-alpha-80:before,
.bg-light-alpha-80 .YTPOverlay:before {
    background: rgba(252,252,252, .8);
}

.bg-light-alpha-90:before,
.bg-light-alpha-90 .YTPOverlay:before {
    background: rgba(252,252,252, .9);
}

.bg-color-primary-1 {
    background-color: var(--color-primary-1);
}

.bg-color-primary-2 {
    background-color: var(--color-primary-2);
}

.bg-color-primary-3 {
    background-color: var(--color-primary-3);
}

.bg-color-primary-4 {
    background-color: var(--color-primary-4);
}

.bg-color-alpha:before,
.bg-color-alpha .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .97;
}

.bg-color-alpha-30:before,
.bg-color-alpha-30 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .3;
}

.bg-color-alpha-50:before,
.bg-color-alpha-50 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .5;
}

.bg-color-alpha-60:before,
.bg-color-alpha-60 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .6;
}

.bg-color-alpha-70:before,
.bg-color-alpha-70 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .7;
}

.bg-color-alpha-80:before,
.bg-color-alpha-80 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .8;
}

.bg-color-alpha-90:before,
.bg-color-alpha-90 .YTPOverlay:before {
    background: var(--color-primary-1);
    opacity: .9;
}

.bg-gradient-light-1 {
    position: relative;
    isolation: isolate;
}

    .bg-gradient-light-1:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,var(--pc), var(--sc));
        opacity: 0.8;
        z-index: -1;
    }

.light-content .bg-gradient-light-1:before {
    opacity: .25;
}

.bg-gradient-light-2 {
    position: relative;
}

    .bg-gradient-light-2:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary-1-b);
        opacity: .15;
        z-index: -1;
    }

.light-content .bg-gradient-light-2:before {
    opacity: .25;
}

.bg-gradient-primary-1 {
    background: var(--gradient-primary-1) !important;
}

.bg-gradient-primary-2 {
    background: var(--gradient-primary-1-b) !important;
}

.bg-border-gradient {
    position: relative;
}

    .bg-border-gradient:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid transparent;
        border-radius: var(--border-radius-large);
        background: linear-gradient(to right, white, white), var(--gradient-primary-1-b);
        -webkit-background-clip: padding-box, border-box;
        background-origin: padding-box, border-box;
        opacity: .3;
    }

.light-content .bg-border-gradient:before {
    background: linear-gradient(to right, var(--color-dark-1), var(--color-dark-1)), var(--gradient-primary-1-b);
    -webkit-background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    opacity: .5;
}

.section-caption {
    margin-bottom: 25px;
    color: var(--color-gray-1);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.light-content .section-caption {
    color: #fff;
}

.section-caption-border {
    display: inline-block;
    padding: 0.45em 0.7em;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.0095em;
    border: 1px solid currentColor;
    border-radius: 70px;
    z-index: 2;
}

.section-caption-fancy {
    display: inline-block;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-1);
    text-transform: uppercase;
    letter-spacing: 0.037em;
    background-image: linear-gradient( 15deg, var(--color-primary-light-1) 0%, transparent 100%);
    border-radius: 100px;
}

    .section-caption-fancy.large {
        font-size: 16px;
    }

.light-content .section-caption-fancy {
    color: #fff;
    background-image: linear-gradient( 15deg, rgba(0,0,0,.5) 0%, transparent 100%);
}

.section-caption-slick {
    display: inline-block;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-1);
    text-transform: uppercase;
    letter-spacing: 0.037em;
    background-image: linear-gradient( 45deg, var(--color-primary-light-1) 0%, transparent 100%);
    border-radius: 100px;
}

.light-content .section-caption-slick {
    color: #fff;
    background-image: linear-gradient( 45deg, rgba(0,0,0,.5) 0%, transparent 100%);
}

.section-caption-gradient {
    display: inline-block;
    margin-top: 10px;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: normal;
    background: linear-gradient(135deg, var(--pc), var(--sc));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.107;
    letter-spacing: -0.03em;
}

.section-title-tiny {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--pc);
}

.section-title-small {
    margin-top: 0;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.section-title-medium {
    font-size: 82px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.section-title-large {
    font-size: 90px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.section-title-repeat {
    flex-shrink: 5;
    position: relative;
    display: inline-block;
    font-size: 120px;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.section-title-repeat-left {
    position: absolute;
    top: 0;
    left: calc(-100% - 0.575em);
    width: 100%;
    color: #fff;
    text-shadow: -1px -1px 0 var(--color-dark-1), 1px -1px 0 var(--color-dark-1), -1px 1px 0 var(--color-dark-1), 1px 1px 0 var(--color-dark-1);
    opacity: .3;
    pointer-events: none;
}

.section-title-repeat-right {
    position: absolute;
    top: 0;
    right: calc(-100% - 0.575em);
    width: 100%;
    color: #fff;
    text-shadow: -1px -1px 0 var(--color-dark-1), 1px -1px 0 var(--color-dark-1), -1px 1px 0 var(--color-dark-1), 1px 1px 0 var(--color-dark-1);
    opacity: .3;
    pointer-events: none;
}

.light-content .section-title-repeat-left,
.light-content .section-title-repeat-right {
    color: var(--color-dark-1);
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.section-title-strong {
    font-size: 80px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.033em;
    color: var(--pc);
}

.section-title-descr {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-gray-1);
}

.light-content .section-title-descr {
    color: var(--color-gray-light-6);
}

.section-descr {
    margin-top: 0;
    color: var(--color-gray-1);
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.005em;
}

.light-content .section-descr {
    color: #fff;
}

.section-descr-medium {
    margin-top: 0;
    font-size: 24px;
    letter-spacing: -0.02em;
    /* color: #fff; */
}

.section-descr-large {
    margin-top: 0;
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: -0.025em;
}

.section-descr-extralarge {
    margin-top: 0;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.333;
    letter-spacing: -0.0325em;
}


.section-title-image {
    display: inline-block;
    max-width: 0.5em;
    margin: -0.05em 0 0 -0.07em;
    vertical-align: top;
}

    .section-title-image img,
    .section-title-image svg {
        vertical-align: top;
    }

.section-title-inline {
    position: relative;
    top: 1px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    padding: 2px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background-color: var(--color-dark-1);
    border-radius: 30px;
    transform: rotate(-15deg);
    perspective: 99px;
}

    .section-title-inline.rotate-5 {
        transform: rotate(-5deg);
    }

.light-content .section-title-inline {
    color: var(--color-dark-1);
    background-color: #fff;
}

.section-title-inline-1 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-text {
    font-size: 24px;
    line-height: 1.667;
    letter-spacing: -0.005em;
}

.section-features {
    display: flex;
    flex-wrap: wrap;
}

    .section-features li {
        margin: 0 10px 10px 0;
        padding: 14px 22px 12px 22px;
        font-size: 15px;
        border: 1px solid currentColor;
        border-radius: 35px;
        transition: var(--transition-default);
    }

        .section-features li:hover {
            border-radius: 10px;
        }

.features-list {
    color: var(--color-gray-1);
}

.features-list-icon {
    position: relative;
    top: 0.075em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    font-size: 18px;
    color: #fff;
    background: var(--color-dark-1);
    border-radius: 50%;
}

    .features-list-icon svg {
        display: block;
        width: 1em;
        height: 1em;
    }

    .features-list-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        vertical-align: middle;
    }

.light-content .features-list {
    color: #fff;
}

.light-content .features-list-icon {
    color: var(--color-dark-1);
    background: #fff;
}

.features-list-icon.features-list-grad {
    color: #fff;
    background: var(--gradient-primary-1-b);
}

.features-list-icon.features-list-color-1 {
    color: #fff;
    background: var(--color-primary-1);
}

.features-list-icon.features-list-color-2 {
    color: #fff;
    background: var(--color-primary-2);
}

.section-more {
    display: inline-block;
    padding-bottom: 0;
    position: relative;
    color: var(--color-gray-1);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.17s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

    .section-more i {
        margin-left: -4px;
    }

    .section-more:hover {
        text-decoration: none;
        color: var(--color-dark-1);
        opacity: 1;
    }

.light-content .section-more:after {
    background-color: #fff;
}

.section-line {
    width: 80px;
    height: 1px;
    margin: 0 auto 0 0;
    background: var(--color-dark-1);
}

.light-content .section-line {
    background: #fff;
}

.section-line-gradient {
    width: 180px;
    height: 1px;
    margin: 0 auto 0 0;
    background: linear-gradient(135deg, var(--pc), var(--sc));
    margin-bottom: 20px;
    margin-top: -7%;
}

.text-gray {
    color: var(--color-gray-1);
}

    .text-gray a {
        color: var(--pc);
        transition: all 0.17s var(--ease-default);
    }

        .text-gray a:hover {
            color: var(--sc);
        }

.light-content .text-gray {
    color: var(--color-dark-mode-gray-1);
}

    .light-content .text-gray a {
        color: var(--color-dark-mode-gray-1);
    }

        .light-content .text-gray a:hover {
            color: #fff;
        }

.text-gradient {
    background: var(--gradient-primary-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-text .lead-alt {
    margin-top: -0.2em;
    ;
}

.text-link {
    display: inline-block;
    padding-bottom: 2px;
    position: relative;
    color: #171717;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    opacity: .72;
    transition: all 0.17s var(ease-default);
}

    .text-link:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 1px;
        background-color: #171717;
        transform: scaleX(0);
        transform-origin: right center;
        transition: transform .25s ease-out;
    }

    .text-link:hover {
        text-decoration: none;
        color: #171717;
        opacity: 1;
    }

        .text-link:hover:after {
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
            -webkit-transform-origin: left center;
            transform-origin: left center;
        }

.light-content .text-link:after {
    background-color: #fff;
}

.light-content .text-link {
    color: #fff;
    opacity: .9;
}

/*
 * Decorative elements
 */

.decoration-1 {
    position: absolute;
    bottom: -50px;
    left: -73px;
    color: var(--color-dark-1);
    pointer-events: none;
}

.section-image-1 {
    transform: rotate(3deg);
}
/* Alt features */

.alt-features-grid {
    margin-top: -35px;
}

.alt-features-item {
    margin-top: 35px;
}

    .alt-features-item.border-left {
        padding-left: 30px;
        border-left: 1px solid var(--color-gray-light-3);
    }

    .alt-features-item.box-shadow {
        width: 100%;
        padding: 30px;
        background: #fff;
        border-radius: var(--border-radius-default);
    }

.alt-features-icon {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0 0 22px 0;
    font-size: 48px;
    text-align: center;
    line-height: 1.3;
    color: currentColor;
    color: var(--sc);
}

.alt-features-icon-s {
    position: absolute;
    top: -6px;
    right: -15px;
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.alt-features-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    color: var(--sc);
}

.alt-features-title {
    margin-bottom: 11px;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: var(--transition-default);
    color: var(--pc);
}

.alt-features-descr {
    font-size: 16px;
    line-height: 1.625;
    color: var(--color-gray-1);
}

.light-content .alt-features-item.border-left {
    padding-left: 30px;
    border-color: rgba(255,255,255, .25);
}

.light-content .alt-features-descr {
    color: var(--color-dark-mode-gray-1);
}

.light-content .alt-features-item.box-shadow {
    background: var(--color-dark-3);
    border: 1px solid var(--color-dark-mode-gray-2);
}

.light-content .alt-features-icon {
    color: #fff;
}

/*
 * Numbers 3
 */

.number-3-title {
    margin-bottom: 10px;
    color: var(--sc);
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
}

.number-3-descr {
    font-size: 16px;
    line-height: 1.37;
    color: var(--color-gray-1);
}

.light-content .number-3-descr {
    color: var(--color-dark-mode-gray-1);
}

/* ==============================
   Call action 4 section
   ============================== */

.call-action-4-images {
    position: relative;
    padding-bottom: 24.390%;
}

    .call-action-4-images img {
        width: 100%;
    }

.call-action-4-image-1 {
    width: 73.170%;
    overflow: hidden;
    border-radius: var(--border-radius-default);
    isolation: isolate;
    transform: translateZ(0);
}

.call-action-4-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 73.170%;
    overflow: hidden;
    border-radius: var(--border-radius-default);
    isolation: isolate;
    transform: translateZ(0);
}

/*
 * Images composition 9
 */

.composition-9 {
    position: relative;
    margin-top: 12%;
}

.composition-9-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-dark-1);
    top: 70px;
    left: -60px;
    height: 450px;
}

    .composition-9-image img {
        width: 100%;
    }

.composition-9-decoration-1 {
    position: absolute;
    top: 50px;
    left: -90px;
    width: 100%;
    height: 100%;
    border: 1px solid currentColor;
}


/* Logotypes */

/*
 * Logo carousel
 */

.logo-item {
    height: 120px;
    text-align: center;
    opacity: .75;
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

    .logo-item:hover {
        opacity: 1;
    }

    .logo-item img {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }

/* ==============================
   Contact 
   ============================== */

.contact-item {
    position: relative;
    padding: 0 0 0 74px;
    color: var(--color-dark-1);
}

    .contact-item a {
        color: currentColor;
        text-decoration: none;
        transition: var(--transition-default);
    }

        .contact-item a:hover {
            color: var(--color-dark-1);
            text-decoration: none;
        }

.ci-icon {
    position: absolute;
    top: 4px;
    left: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    color: #fff;
    text-align: center;
}

    .ci-icon:before {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-dark-1);
        border-radius: 50%;
    }

    .ci-icon svg,
    .ci-icon img,
    .ci-icon i {
        position: relative;
        vertical-align: middle;
    }

    .ci-icon.ci-icon-grad:before {
        background: var(--gradient-primary-1-b);
        opacity: .15;
    }

    .ci-icon.ci-icon-grad i:before {
        background: var(--gradient-primary-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.ci-title {
    margin-bottom: 7px;
    color: var(--color-dark-1);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

.ci-text {
    font-size: 18px;
    line-height: 1.625;
    color: var(--color-gray-1);
}

    .ci-text.large {
        font-size: 21px;
        line-height: 1.467;
    }

.ci-link {
    margin-top: 11px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

    .ci-link a {
        position: relative;
        text-decoration: none;
        -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
        transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    }

        .ci-link a:after {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 1px;
            background-color: currentColor;
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
            -webkit-transform-origin: left center;
            transform-origin: left center;
            -webkit-transition: transform .25s ease-out;
            transition: transform .25s ease-out;
            opacity: .9;
        }

        .ci-link a:hover {
            text-decoration: none;
            opacity: .9;
        }

            .ci-link a:hover:after {
                -webkit-transform: scaleX(0);
                transform: scaleX(0);
                -webkit-transform-origin: right center;
                transform-origin: right center;
            }

.light-content .ci-icon {
    color: #fff !important;
}

    .light-content .ci-icon:before {
        background-color: #fff;
        opacity: .15;
    }

.light-content .ci-title {
    color: #fff;
}

.light-content .ci-text {
    color: var(--color-dark-mode-gray-1);
}

.light-content .ci-link a {
    color: #fff;
}

    .light-content .ci-link a:after {
        background-color: #fff;
    }

/* ==============================
   Google maps 
   ============================== */

.google-map {
    position: relative;
    background: var(--color-dark-1);
}

    .google-map > iframe {
        display: block;
        width: 100%;
        height: 485px;
        position: relative;
        background-color: var(--color-dark-1) !important;
        z-index: 1;
    }

.map-section {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 !important;
    background: rgba(245,245,245, .93);
    z-index: 2;
    cursor: pointer;
    -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

    .map-section:hover {
        background: rgba(245,245,245, .8);
    }

.map-toggle {
    width: 200px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -100px;
    color: #fff;
    text-align: center;
}

.mt-icon {
    width: 54px;
    height: 54px;
    line-height: 54px;
    margin: 6px auto 9px;
    position: relative;
    color: #fff;
    font-size: 24px;
    transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

    .mt-icon:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-dark-1);
        border-radius: 50%;
    }

    .mt-icon i,
    .mt-icon span {
        position: relative;
    }

.mt-text {
    margin-left: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark-1);
    opacity: .8;
}

.mt-close {
    display: none;
}

.mt-open-icon {
    display: inline-block;
    width: 9px;
    height: 5px;
    position: relative;
    top: -0.1em;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="9px" height="5px"><path fill-rule="evenodd"  fill="rgb(17, 17, 17)" d="M8.886,0.630 L8.336,0.115 C8.263,0.047 8.178,0.013 8.083,0.013 C7.987,0.013 7.903,0.047 7.830,0.115 L4.506,3.154 L1.183,0.115 C1.109,0.047 1.025,0.013 0.930,0.013 C0.834,0.013 0.750,0.047 0.677,0.115 L0.127,0.630 C0.053,0.697 0.017,0.776 0.017,0.866 C0.017,0.954 0.053,1.034 0.127,1.102 L4.253,4.890 C4.327,4.958 4.411,4.993 4.506,4.993 C4.602,4.993 4.686,4.958 4.759,4.890 L8.886,1.102 C8.959,1.034 8.996,0.954 8.996,0.866 C8.996,0.776 8.959,0.697 8.886,0.630 L8.886,0.630 Z"/></svg>');
}

.mt-close-icon {
    display: inline-block;
    width: 9px;
    height: 5px;
    position: relative;
    top: -0.1em;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="9px" height="5px"><path fill-rule="evenodd"  fill="rgb(17, 17, 17)" d="M8.886,0.630 L8.336,0.115 C8.263,0.047 8.178,0.013 8.083,0.013 C7.987,0.013 7.903,0.047 7.830,0.115 L4.506,3.154 L1.183,0.115 C1.109,0.047 1.025,0.013 0.930,0.013 C0.834,0.013 0.750,0.047 0.677,0.115 L0.127,0.630 C0.053,0.697 0.017,0.776 0.017,0.866 C0.017,0.954 0.053,1.034 0.127,1.102 L4.253,4.890 C4.327,4.958 4.411,4.993 4.506,4.993 C4.602,4.993 4.686,4.958 4.759,4.890 L8.886,1.102 C8.959,1.034 8.996,0.954 8.996,0.866 C8.996,0.776 8.959,0.697 8.886,0.630 L8.886,0.630 Z"/></svg>');
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* Map opened */

.map-section.js-active {
    height: 25px;
    background: rgba(245,245,245, .85);
}

    .map-section.js-active .mt-text {
        font-size: 16px;
    }

    .map-section.js-active:hover {
        background: rgba(245,245,245, .95);
    }

    .map-section.js-active .mt-icon {
        opacity: 0;
    }

    .map-section.js-active .mt-text {
        position: relative;
        top: -33px;
    }

/* Dark style */

.light-content .map-section {
    background: rgba(17,17,17, .92);
}

    .light-content .map-section:hover {
        background: rgba(17,17,17, .88);
    }

.light-content .map-toggle {
    color: var(--color-dark-1);
}

.light-content .mt-icon {
    color: var(--sc);
}

    .light-content .mt-icon:before {
        background: #fff;
    }

.light-content .mt-text {
    color: #fff;
}

.light-content .mt-open-icon {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="9px" height="5px"><path fill-rule="evenodd"  fill="rgb(255, 255, 255)" d="M8.886,0.630 L8.336,0.115 C8.263,0.047 8.178,0.013 8.083,0.013 C7.987,0.013 7.903,0.047 7.830,0.115 L4.506,3.154 L1.183,0.115 C1.109,0.047 1.025,0.013 0.930,0.013 C0.834,0.013 0.750,0.047 0.677,0.115 L0.127,0.630 C0.053,0.697 0.017,0.776 0.017,0.866 C0.017,0.954 0.053,1.034 0.127,1.102 L4.253,4.890 C4.327,4.958 4.411,4.993 4.506,4.993 C4.602,4.993 4.686,4.958 4.759,4.890 L8.886,1.102 C8.959,1.034 8.996,0.954 8.996,0.866 C8.996,0.776 8.959,0.697 8.886,0.630 L8.886,0.630 Z"/></svg>');
}

.light-content .mt-close-icon {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="9px" height="5px"><path fill-rule="evenodd"  fill="rgb(255, 255, 255)" d="M8.886,0.630 L8.336,0.115 C8.263,0.047 8.178,0.013 8.083,0.013 C7.987,0.013 7.903,0.047 7.830,0.115 L4.506,3.154 L1.183,0.115 C1.109,0.047 1.025,0.013 0.930,0.013 C0.834,0.013 0.750,0.047 0.677,0.115 L0.127,0.630 C0.053,0.697 0.017,0.776 0.017,0.866 C0.017,0.954 0.053,1.034 0.127,1.102 L4.253,4.890 C4.327,4.958 4.411,4.993 4.506,4.993 C4.602,4.993 4.686,4.958 4.759,4.890 L8.886,1.102 C8.959,1.034 8.996,0.954 8.996,0.866 C8.996,0.776 8.959,0.697 8.886,0.630 L8.886,0.630 Z"/></svg>');
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.map-boxed {
    display: flex;
    align-items: stretch;
    width: 100%;
}

    .map-boxed iframe {
        width: 100%;
        height: auto;
        min-height: 360px;
    }

.map-boxed-1 {
    position: relative;
    width: 100%;
    padding: 5px 0 5px 5px;
    border-top-left-radius: var(--border-radius-default);
    border-bottom-left-radius: var(--border-radius-default);
    box-shadow: var(--box-shadow-block);
}

    .map-boxed-1 iframe {
        width: 100%;
        height: 100%;
        border-top-left-radius: calc(var(--border-radius-default) - 5px);
        border-bottom-left-radius: calc(var(--border-radius-default) - 5px);
    }

    .map-boxed-1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-top-left-radius: calc(var(--border-radius-default) - 5px);
        border-bottom-left-radius: calc(var(--border-radius-default) - 5px);
    }

.light-content .map-boxed-1 {
    background: var(--color-dark-3);
    border: 1px solid var(--color-dark-mode-gray-2);
}

/* ==============================
   Footer
   ============================== */

.footer {
    font-size: 16px;
}

    .footer a {
        transition: all 0.17s var(--ease-default);
    }

    .footer:not(.light-content) a:hover {
        text-decoration: none;
        color: var(--color-dark-3a) !important;
    }

.footer-text a {
    text-decoration: none;
}

footer:not(.light-content) .text-gray a {
    color: var(--color-gray-1);
    transition: all 0.17s var(--ease-default);
}

    footer:not(.light-content) .text-gray a:hover {
        color: var(--color-dark-1);
    }

.light-content .footer-text {
    color: var(--color-gray-light-3);
}

.footer.light-content a:hover {
    color: #fff !important;
    text-decoration: none;
}

.footer-made {
    font-size: 14px;
    opacity: .5;
}

.footer-social-links {
    font-size: 16px;
}

    .footer-social-links a {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin: 3px 10px;
        overflow: hidden;
        font-size: 20px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        transition: all .27s var(--ease-out-medium);
    }

        .footer-social-links a:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            width: 100%;
            height: 100%;
            background: #fff;
            border-radius: 50%;
            opacity: 0;
            transform: scale(.3);
            transition: all .27s var(--ease-out-medium);
        }

        .footer-social-links a svg {
            position: relative;
            display: block;
            width: 1em;
            height: 1em;
            fill: currentColor;
        }

        .footer-social-links a i {
            position: relative;
        }

        .footer-social-links a:hover,
        .footer.light-content .footer-social-links a:hover,
        .light-content .footer-social-links a:hover {
            color: var(--color-dark-1) !important;
        }

            .footer-social-links a:hover:before {
                opacity: 1;
                transform: none;
            }

.fw-title {
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.fw-menu li:not(:last-child) {
    margin-bottom: 3px;
}

.fw-menu li a {
    text-decoration: none;
    color: var(--color-gray-1);
}

.fw-menu svg {
    position: relative;
    top: -0.05em;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.light-content .fw-menu li a {
    text-decoration: none;
    color: rgba(255,255,255, 0.7);
}

.fw-menu-large {
    font-size: 28px;
    line-height: 1.3;
}

    .fw-menu-large li:not(:last-child) {
        margin-bottom: 10px;
    }

    .fw-menu-large li a {
        text-decoration: none;
        color: var(--color-dark-1);
        background-image: linear-gradient(currentColor, currentColor);
        background-size: 0 1px;
        background-position: 0 100%;
        background-repeat: no-repeat;
        transition: background-size .5s var(--ease-out-medium);
        will-change: background-size;
    }

        .fw-menu-large li a:hover {
            text-decoration: none;
            color: var(--color-dark-1);
            background-size: 100% 1px;
        }

    .fw-menu-large svg {
        position: relative;
        top: -0.05em;
        width: 1em;
        height: 1em;
        fill: currentColor;
    }

.light-content .fw-menu-large li a,
.light-content .fw-menu-large li a:hover {
    color: #fff;
}

/* Link to top */
a.link-to-top,
footer .text-gray a.link-to-top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    color: var(--color-dark-1);
    font-size: 24px;
    text-decoration: none;
    transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

.link-to-top:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--box-shadow);
    z-index: 1;
    transition: all 0.4s var(--ease-elastic-2);
}

.link-to-top svg {
    position: relative;
    width: 1em;
    height: 1em;
    z-index: 1;
}

.link-to-top i,
.link-to-top span {
    position: relative;
    transform: rotate(0.001deg) translateZ(0);
    z-index: 1;
}

.link-to-top:hover {
    text-decoration: none;
}

    .link-to-top:hover:before {
        transform: scale(1.25);
    }

.light-content a.link-to-top,
.light-content a.link-to-top:hover {
    color: var(--color-dark-1) !important;
}

a.link-to-top.gradient,
a.link-to-top.gradient:hover {
    color: #fff !important;
}

    a.link-to-top.gradient:before {
        background: var(--gradient-primary-1-b);
        box-shadow: none;
    }

a.link-to-top.color-light,
a.link-to-top.color-light:hover {
    color: var(--color-primary-1) !important;
}

    a.link-to-top.color-light:before {
        background: var(--color-primary-light-1);
        box-shadow: none;
    }

a.link-to-top.color,
a.link-to-top.color:hover {
    color: #fff !important;
}

    a.link-to-top.color:before {
        background: var(--color-primary-1);
        box-shadow: none;
    }

/*
 * Owl carousel
 */

.owl-buttons {
    position: static;
}

.owl-prev,
.owl-next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* width: 27px; */
    height: 57px;
    padding: 11px;
    box-sizing: content-box;
    font-size: 57px;
    text-align: center;
    color: var(--sc);
    opacity: .8;
    z-index: 6;
    transition: var(--transition-default);
}

    .owl-prev:hover,
    .owl-next:hover {
        opacity: 1;
    }

.light-content .owl-prev,
.light-content .owl-next {
    color: #fff;
}

.dark-content .owl-prev,
.dark-content .owl-next {
    color: var(--color-dark-1);
}

.owl-prev {
    left: 0px;
}

.owl-next {
    right: 25px;
}

    .owl-prev svg,
    .owl-next svg {
        display: block;
        height: 1em;
        filter: drop-shadow(0 1px 0 rgba(255,255,255, .35));
    }

.light-content .owl-prev svg,
.light-content .owl-next svg {
    color: #fff;
    filter: drop-shadow(0 1px 0 rgba(0,0,0, .35));
}

.dark-content .owl-prev svg,
.dark-content .owl-next svg {
    color: var(--color-dark-1);
    filter: drop-shadow(0 1px 0 rgba(255,255,255, .35));
}

.owl-pagination {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
    text-align: center;
    line-height: 1;
}

.owl-page {
    display: none;
    /* display: inline-block; */
    /* padding: 7px; */
    /* position: relative; */
    /* z-index: 1000 !important; */
}

    .owl-page span {
        width: 8px;
        height: 8px;
        display: block;
        background: none;
        border: 1px solid var(--color-dark-1);
        position: relative;
        border-radius: 50%;
        transition: var(--transition-default);
    }

    .owl-page.active span {
        background: var(--color-dark-1);
        border: 1px solid var(--color-dark-1);
    }

.light-content .owl-page span {
    border: 1px solid #fff;
    box-shadow: 1px 1px 0px rgba(0, 0, 0, .1);
    /* margin-top: -70px; */
}

.light-content .owl-page.active span {
    background: #fff;
    border: 1px solid #fff;
}

.dark-content .owl-page span {
    border: 1px solid var(--color-dark-1);
    box-shadow: none;
}

.dark-content .owl-page.active span {
    background: var(--color-dark-1);
    border: 1px solid var(--color-dark-1);
}

/* Features slider */
.item-carousel .owl-prev {
    /* left: -30px; */
}

.item-carousel .owl-next {
    /* right: 0px; */
}

.item-carousel {
    padding-bottom: 70px;
}

    .item-carousel .owl-pagination {
        bottom: 0;
    }

    .item-carousel .owl-item {
        /* padding: 0 26px; */
    }

/* Logotype slider */
.small-item-carousel.owl-carousel .owl-prev,
.small-item-carousel.owl-carousel .owl-next {
    opacity: 0;
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Work slider & sontent slider */
.work-full-slider .owl-pagination,
.content-slider .owl-pagination {
    bottom: 15px;
}

.work-full-slider img {
    width: 100%;
}

/* Team carousel */
.team-carousel.owl-carousel {
    width: calc(100% + 30px);
}

.team-carousel .owl-item {
    padding-right: 30px;
}

    .team-carousel .owl-item .team-item {
        opacity: 0;
        transform: scale(.85);
        transition: all 0.5s ease;
    }

    .team-carousel .owl-item.active .team-item {
        opacity: 1;
        transform: scale(1);
    }

.team-carousel .owl-pagination {
    display: none;
}

.team-carousel .owl-prev,
.team-carousel .owl-next {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - var(--team-item-descr-height) / 2);
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 24px;
    text-align: center;
    color: var(--color-dark-1);
    opacity: 1;
}

.team-carousel .owl-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.team-carousel .owl-next {
    right: 0;
    transform: translate(calc(50% - 30px), -50%);
}

    .team-carousel .owl-prev svg,
    .team-carousel .owl-next svg {
        position: relative;
        width: 1em;
        height: 1em;
    }

    .team-carousel .owl-prev:before,
    .team-carousel .owl-next:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 50%;
        box-shadow: var(--box-shadow);
        transition: all 0.4s var(--ease-elastic-2);
    }

    .team-carousel .owl-prev:hover:before,
    .team-carousel .owl-next:hover:before {
        box-shadow: var(--box-shadow-strong);
        transform: scale(1.25);
    }

/* Owl Carousel Animation */

html:not(.mobile) .owl-animate-chars .char {
    opacity: 0;
    transform: translateY(.5em) rotate(7deg);
    transform-origin: 0 50%;
    transition: transform .62s var(--ease-out-short), opacity .62s var(--ease-default);
    transition-delay: calc( 0.027s * var(--char-index) );
}

html:not(.mobile) .owl-animate-chars .char {
    will-change: opacity, transform;
}

@media print {
    .owl-animate-chars .char {
        opacity: 1 !important;
        transform: none !important;
    }
}

.owl-item.active .owl-animate-chars .char,
.mobile .owl-animate-chars .char {
    opacity: 1;
    transform: none;
}

html:not(.mobile) .owl-animate-fadeInUp {
    opacity: 0;
    transform: translateY(37px) translateZ(0);
    transition: all 1s;
}

.owl-item.active .owl-animate-fadeInUp {
    opacity: 1;
    transform: translateY(0) scale(1);
    top: 5px;
    margin-top: -20px;
}

html:not(.mobile) .owl-animate-fadeInDown {
    opacity: 0;
    transform: translateY(-37px) translateZ(0);
    transition: all 1s;
}

.owl-item.active .owl-animate-fadeInDown {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media print {
    .owl-animate-fadeInUp,
    .owl-animate-fadeInDown {
        -webkit-transition: none !important;
        transition: none !important;
    }
}

.owl-delay-200 {
    transition-delay: .20s !important;
}

.owl-delay-250 {
    transition-delay: .25s !important;
}

.owl-delay-300 {
    transition-delay: .3s !important;
}

.owl-delay-350 {
    transition-delay: .35s !important;
}

.owl-delay-400 {
    transition-delay: .4s !important;
}

.owl-delay-450 {
    transition-delay: .45s !important;
}

.owl-delay-500 {
    transition-delay: .5s !important;
}

.owl-delay-550 {
    transition-delay: .55s !important;
}

.owl-delay-600 {
    transition-delay: .6s !important;
}

.owl-delay-650 {
    transition-delay: .65s !important;
}

.owl-delay-700 {
    transition-delay: .7s !important;
}

.owl-delay-750 {
    transition-delay: .75s !important;
}

.owl-delay-800 {
    transition-delay: .8s !important;
}

.owl-delay-850 {
    transition-delay: .85s !important;
}

.owl-delay-900 {
    transition-delay: .9s !important;
}

.owl-delay-950 {
    transition-delay: .95s !important;
}

.owl-delay-1000 {
    transition-delay: 1s !important;
}

/*Footer*/
.mega-footer {
    background: var(--color-gray-light-1);
    padding: 80px 0 60px;
    position: relative;
}

.about-txt p {
    color: var(--pc);
    margin: 0;
}

.mega-more {
    /* color: var(--sc); */
    /* margin-top:20px; */
    display: block;
    font-size: 18px;
}

    .mega-more a:hover {
        color: var(--pc);
    }

.footer-logo img {
    max-height: 110px
}

.mega-footer-heading {
    color: var(--pc);
    font-size: 24px;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 20px;
}

    .mega-footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 48px;
        background: var(--sc);
    }

.contact-field {
    color: var(--pc);
    /* font-weight:400; */
    font-size: 18px;
}

    .contact-field span {
        color: var(--sc);
        font-weight: 400;
    }

.quick-links a {
    color: var(--pc);
    font-size: 18px;
    font-weight: 400;
}

    .quick-links a i {
        color: #000;
        margin-right: 10px;
    }

    .mega-more:hover, .quick-links a:hover {
        color: var(--sc);
    }

.mega-footer .contact-field a span:hover {
    color: #757677
}


footer {
    padding: 10px 0;
    background: #1d2d50;
    text-align: center;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

    footer a {
        color: #000;
    }

.inline {
    display: inline-block;
}

/* General Styles */
a {
    text-decoration: none;
}

    a:hover, a:active, a:focus {
        text-decoration: none;
    }

.social-header li {
    display: inline-block;
    margin-right: 10px;
}

    .social-header li:last-child {
        margin-right: 0px;
    }

    .social-header li a {
        color: #000; /* Default color */
    }

        .social-header li a:hover {
            opacity: .3;
        }

        .social-header li a:hover, .social-header li a:active, .social-header li a:focus {
            color: #000;
            opacity: 1;
        }

.right-md-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 20%;
}

.contact, .languages {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .contact li, .languages li {
        display: inline-block;
        margin-right: 15px;
    }

/* Mobile Styles */
@media (max-width: 767px) {
    .top-bar {
        padding: 10px 0;
    }

    .social-header {
        text-align: center;
        margin-bottom: -2px;
        font-size: 25px;
    }

        .social-header li {
            display: block;
            margin-right: 0;
            margin-bottom: 5px;
            /* margin-left: 50px; */
            \: center;
        }

    .right-md-center {
        /* flex-direction: column; */
        /* align-items: flex-start; */
    }

    .contact, .languages {
        text-align: center;
    }

        .contact li, .languages li {
            display: block;
            margin-bottom: 5px;
        }

            .contact li:last-child, .languages li:last-child {
                margin-bottom: 0;
            }
}

@media (max-width: 767px) {
    .main-nav.transparent {
        /* margin-top: 26% !important; */
    }
}

ul, ol {
    list-style: none;
    -webkit-padding-start: 0px;
    -moz-padding-start: 0px;
}


.form-control {
    border-radius: 0px;
    background-clip: unset;
}

.owl-carousel {
    position: relative; /* Ensure relative positioning for parent container */
}

.dropdown-toggle::after {
    margin-left: auto;
}
/* Gradient Button */
.gradient-button {
    background: linear-gradient(135deg, #10536e, #2b96aa); /* Gradient from deep blue to light blue */
    color: white; /* Text color */
    border: none; /* Remove default border */
    padding: 15px 30px; /* Padding around the text */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    border-radius: 8px; /* Rounded corners */
    text-align: center; /* Center the text */
    cursor: pointer; /* Change cursor on hover */
    transition: background 0.6s ease, transform 0.6s ease; /* Smooth transitions */
    display: inline-block; /* Make the button inline block */
    text-transform: uppercase; /* Uppercase text */
}

    .gradient-button:hover {
        background: linear-gradient(135deg, #2b96aa, #10536e); /* Reverse gradient on hover */
        transform: scale(1.05); /* Slightly enlarge on hover */
    }

/* Center the button */
.centered-button {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if needed */
}

.absolute-area-1 {
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 999;
}

.nav-con { /* padding-bottom:6px;*/
    display: block;
    z-index: 999; /* border-bottom:3px solid var(--pc); */
}

.top-bar {
    padding: 30px 0;
    /* background: #ffffff94; */
    color: var(--pc);
    /* border-bottom: 1px solid #FFFFFF50; */
    font-weight: 400;
    /* padding-bottom: 0px; */
    margin-bottom: -30px !important;
}

    .top-bar ul {
        margin-left: 27px;
    }

.social-header li {
    display: inline-block;
    margin-right: 10px;
}

    .social-header li:last-child {
        margin-right: 0px;
    }

    .social-header li a {
        color: var(--pc);
    }

.social-header:hover li a {
    opacity: .3;
}

.social-header li a:hover, .social-footer li a:active, .social-footer li a:focus {
    color: var(--sc);
    opacity: 1;
}

.languages {
    color: #FFF;
    display: inline-flex; /* background:#00000050; */ /* border-radius:4px; */
    border-left: 1px solid #00000057;
    font-size: 14px;
    line-height: 24px;
}

    .languages li {
        margin: 0 4px;
        color: var(--pc);
    }

    .languages a {
        display: flex;
        margin-top: 4px;
    }

    .languages img {
        height: 16px;
    }

::selection {
    color: #FFF;
    background: var(--pc);
}

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

.margin-auto {
    margin: auto;
}

.clr {
    clear: both;
}

.bg-styles {
    background-size: cover !important;
    background-position: center !important;
}

.inline {
    display: inline-block;
}

* {
    outline: none !important;
}

.left-md-center, .right-md-center {
    text-align: center;
}

    .left-md-center img, .right-md-center img {
        margin: auto;
    }

.padding-0 {
    padding: 0;
}

.inline-img {
    float: none;
}

.text-center img {
    margin: auto;
}

.full-width {
    width: 100%;
}

body {
    line-height: 30px;
    color: #444444;
    font-size: 16px;
    font-weight: 700;
}

body {
    --pc: #000;
    --sc: #fe0000;
}

.a1 {
    color: var(--pc);
    margin-right: 0px;
}

    .a1:hover {
        color: var(--sc);
    }

#categories {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

    #categories h2 {
        text-align: center;
        font-size: 36px;
        color: #333;
        margin-bottom: 50px;
    }

.category-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.category-wrapper1 {
    display: flex !important; /* Flexbox layout */
    flex-wrap: nowrap !important; /* Prevent wrapping to the next line */
    overflow-x: auto !important; /* Enable horizontal scrolling if there are more items */
    padding: 20px 0;
}


.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0.1, 0.1, 0.1, 0.5);
    width: 90%;
    /* padding-left: 30px; */
    border-radius: 20px;
    margin-bottom: 20px;
    padding-bottom: 80px;
}

    .category-item img {
        /* width: 50%; */
        height: auto;
        object-fit: cover;
        transition: transform 0.3s ease;
        border-radius: 20px;
    }

    .category-item:hover img {
        transform: scale(1.1); /* Image zoom effect on hover */
        border-radius: 20px;
    }

/* Overlay */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    opacity: 0;
    transition: opacity 0.5s ease;
    /* margin-left: 18px; */
    border-radius: 20px;
}

.category-item:hover .category-overlay {
    opacity: 1; /* Overlay becomes visible on hover */
}

/* Content inside overlay */
.category-content {
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    /* opacity: 0; */
    /* transform: translateY(20px); */
    transition: transform 0.5s ease, opacity 0.5s ease;
    text-align: center;
}

.category-item:hover .category-content {
    /* opacity: 1; */
    /* transform: translateY(0); */ /* Bring content up and make it visible */
}

.category-content p {
    color: #000;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
}

.contact {
    color: #FFF;
    display: inline-flex;
    /* background:#00000050; */
    /* border-radius:4px; */
    /* border-left: 1px solid #00000057; */
    font-size: 14px;
    line-height: 24px;
}

    .contact li {
        margin: 0 4px;
        color: var(--pc);
    }

    .contact a {
        display: flex;
        margin-top: 4px;
    }

.number-3-title::after {
    content: '+'; /* The character to be added */
    font-size: 40px; /* Match the font size of the number */
    color: var(--sc); /* Match the color of the number */
    margin-left: 5px; /* Space between the number and the '+' */
    display: inline-block; /* Ensures '+' is on the same line */
}

/* Responsive Font Sizes */
@media (max-width: 767px) {
    .hs-title-11 {
        font-size: 14px; /* Adjust as needed */
    }

    .hs-title-12 {
        font-size: 22px; /* Adjust as needed */
    }
}
/* Stack content vertically on mobile */
@media (max-width: 767px) {
    .home-content {
        text-align: center;
        margin-top: 17%;
    }

        .home-content .col-md-8, .home-content .col-lg-3 {
            width: 100%; /* Full width for mobile */
            /* margin: 0 auto; */ /* Center align */
        }

        .home-content .col-lg-3 {
            margin-top: 20px; /* Space between text and image */
        }
}
/* Responsive Padding and Margin */
@media (max-width: 767px) {
    .pt-100, .pb-100 {
        padding-top: 50px; /* Adjust padding for mobile */
        padding-bottom: 50px; /* Adjust padding for mobile */
    }

    .pt-sm-120, .pb-sm-120 {
        padding-top: 40px; /* Adjust for smaller screens */
        padding-bottom: 40px;
    }

    .mb-20, .mb-50 {
        margin-bottom: 20px; /* Adjust bottom margins */
    }
}
/* Responsive Button Styles */
@media (max-width: 767px) {
    .btn {
        font-size: 16px; /* Adjust font size for buttons */
        padding: 10px 20px; /* Increase button size for better tap targets */
    }
}
/* Responsive Scroll Down Icon */
@media (max-width: 767px) {
    .scroll-down-wrap-4 {
        position: absolute;
        bottom: 20px; /* Position at the bottom */
        right: 20px;
    }

    .scroll-down-4 {
        font-size: 20px; /* Adjust size */
    }
}
/* Fullwidth Slider Adjustments */
@media (max-width: 767px) {
    .home-section {
        background-size: cover; /* Ensure background covers the container */
        background-position: center; /* Center the background image */
        height: 500px;
    }
}

@media (max-width: 767px) {
    .owl-prev svg, .owl-next svg {
        margin-top: 60px;
    }

    .owl-item.active .owl-animate-fadeInUp {
        margin-top: 30px !important;
    }

    .btn-mod.btn-large-1 {
        padding: 0px;
        font-size: 13px;
    }

    .composition-9-image {
        top: 14px;
        left: -6px;
        height: 250px;
    }

    .owl-prev {
        left: -5px;
    }

    .owl-prev, .owl-next {
        display: block;
        position: absolute;
        top: 10%;
        transform: translateY(-50%);
        /* width: 0px; */
        height: 0px;
        padding: 0px;
        box-sizing: content-box;
        font-size: 35px;
        text-align: center;
        color: var(--sc);
        opacity: .8;
        z-index: 6;
        transition: var(--transition-default);
    }



    #categories h2 {
        font-size: 26px;
        margin-bottom: 0px;
    }

    #categories .btn-mod.btn-large {
        padding: 4px 8px 4px;
        font-size: 9px;
    }

    #categories1 .btn-mod.btn-large {
        padding: 4px 8px 4px;
        font-size: 9px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-descr {
        font-size: 18px;
    }

    .number-3-descr {
        margin-bottom: 30px;
    }

    .section-caption-gradient {
        font-size: 30px;
    }

    .section-line-gradient {
        width: 100px;
    }

    .section-title-strong {
        font-size: 40px;
    }

    .post-prev-2-title a {
        font-size: 25px;
    }

    .post-prev-2-info {
        font-size: 12px;
    }

    .btn-mod.btn-medium {
        padding: 1px 15px 12px;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    #categories .owl-carousel .owl-item {
        width: 158px !important;
    }

    #categories1 .owl-carousel .owl-item {
        width: 158px !important;
    }

    .section-caption-gradient {
        margin-top: 20px;
    }

    .category-content p {
        font-size: 10px;
        margin-bottom: 0px;
    }
}

@media (min-width: 700px) {

    .social-header {
        margin-left: 27px;
    }

    .a1 {
        margin-right: 7px;
        font-size: 40px;
        font-weight: bold;
    }

    .contact {
        margin-right: 20px;
        /* margin-top: -10%; */
    }
}


.custom-nav {
    text-align: center;
    margin-bottom: 10px;
}

.custom-prev, .custom-next {
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 24px; /* Size of the angle icons */
    cursor: pointer;
    margin: 0 10px;
    transition: color 0.3s ease;
}

    .custom-prev:hover, .custom-next:hover {
        color: #000; /* Change color on hover */
    }

    .custom-prev i, .custom-next i {
        font-size: 30px; /* Adjust icon size */
    }

@media (min-width: 767px) {
    #categories .custom-prev, #categories .custom-next {
        display: none;
    }
}

#categories .btn-mod.btn-large, #categories1 .btn-mod.btn-large {
    /* margin-left: 19%; */
    border: transparent;
}

.custom-nav {
    position: absolute;
    top: 50%; /* Center vertically */
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%); /* Adjust for vertical centering */
    z-index: 1000; /* Ensure they are above other elements */
}

.custom-prev, .custom-next {
    background: transparent;
    border: none;
    font-size: 2rem; /* Size of the arrows */
    color: #fff; /* Button color */
    cursor: pointer;
    transition: color 0.3s ease;
}

    .custom-prev:hover, .custom-next:hover {
        color: #f00; /* Change color on hover */
    }

.mb-sm-0 {
    margin-left: 5%;
}

@media (min-width: 700px) {
    .min-height-100vh {
        min-height: 110vh !important;
    }
}

@media (min-width: 300px) and (max-width: 390px) {
    .pt-sm-120, .pb-sm-120 {
        padding-top: 140px;
    }
}

@media (max-width: 1000px) {
    .mb-sm-0 {
        margin-left: 7%;
    }
}

@media (max-width: 700px) {
    .right-md-center {
        display: flex;
    }
}


@media (max-width: 700px) {
    .owl-next {
        right: 0;
    }

    .main-nav {
        height: 190px;
    }
}

@media (max-width: 767px) {
    .home-section .owl-prev, .home-section .owl-next {
        top: 50%;
    }

    .top-bar {
        margin-bottom: 0px !important;
        padding: 20px 0;
    }

    .display-d {
        display: none;
    }

    .nav-logo-wrap {
        top: 50%;
        left: 2%;
        width: 320px;
    }

    .main-nav.transparent {
        /* margin-top: 22% !important; */
    }

    .contact h6 {
        margin-left: 35% !important;
        font-size: 20px !important;
        margin-bottom: -3% !important;
    }

    .top-bar ul {
        margin-left: 2%;
    }

    .contact {
        font-size: 27px;
    }

    .a1 i {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    #logo .row {
        margin-right: 0px;
    }
}

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

@media (min-width: 1000px) {
    .display {
        display: none;
    }
}

/* Keyframe Animation: Fade, Scale, Rotate */
@keyframes icon-appear {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(15deg);
        opacity: 0.5;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Keyframe Animation: Glow Effect */
@keyframes glow-effect {
    0% {
        box-shadow: 0 0 5px rgba(219, 179, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(219, 179, 68, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(219, 179, 68, 0.4);
    }
}
/* Fade, Scale, and Rotate Animation */
@keyframes icon-appear {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(15deg);
        opacity: 0.5;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Glow Effect */
@keyframes glow-effect {
    0% {
        box-shadow: 0 0 5px rgba(219, 179, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(219, 179, 68, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(219, 179, 68, 0.4);
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

.alt-features-icon {
    position: relative;
    display: inline-block;
    width: 28%;
    height: 28%;
    margin: 0 0 22px 0;
    font-size: 48px;
    text-align: center;
    line-height: 1.3;
    color: var(--sc);
    transform: scale(0) rotate(0deg); /* Start small */
    opacity: 0; /* Start invisible */
    animation: icon-appear 1.2s ease forwards; /* Animation triggers automatically */
}

.alt-features-title {
    margin-bottom: 11px;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--pc);
    opacity: 0; /* Start invisible */
    animation: icon-appear 1s ease forwards; /* Same timing as icons */
    animation-delay: 0.3s; /* Slight delay */
}

.alt-features-descr {
    font-size: 16px;
    line-height: 1.625;
    color: var(--color-gray-1);
    opacity: 0; /* Start invisible */
    animation: icon-appear 1.5s ease forwards; /* Same timing as icons */
    animation-delay: 0.5s; /* Slight delay */
}

/* Bounce Effect for Icons */
.alt-features-icon {
    animation:; /* Add bounce */
}

.alt-features-item {
    opacity: 0; /* Start invisible */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .alt-features-item.animate {
        opacity: 1;
        transform: translateY(0); /* Slide into place */
    }

.a1 i {
    font-size: 20px;
    border-radius: 50%;
    background-color: #000;
    padding: 10px;
    margin-top: -10%;
    color: var(--sc);
    border: 2px solid var(--sc);
}

.a1:hover i {
    background-color: #fff;
}

.social-header i {
    font-size: 18px;
}

.small-section {
    margin-bottom: 4px;
}

.contact h6 {
    margin-bottom: 2%;
    margin-left: 30%;
    font-size: 25px;
}

.logo2 {
    top: 0%;
    left: 35%;
    width: 350px;
}

.a1 {
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.product-content {
    position: absolute;
    bottom: 5px;
    left: 0px;
    right: 0px;
    /* opacity: 0; */
    /* transform: translateY(20px); */
    transition: transform 0.5s ease, opacity 0.5s ease;
    text-align: center;
    background: #fff;
    padding: 7px 5px;
    margin-bottom: -2%;
}

    .product-content p {
        color: var(--sc);
        font-size: 16px;
        margin-bottom: 5px;
        text-align: center;
    }

.alt-features-item .icon-img:hover {
    transform: rotate(360deg) scale(1.1);
}

@media(max-width: 700px) {
    .nav-logo-wrap .logo {
        width: 85%;
        margin-top: 3%;
    }
}

.top-nav {
    border-bottom: 2px solid #fff;
    padding-bottom: 1.5%;
}

.whats-icon i {
    font-size: 70px;
}

.whats-icon a i {
    color: #198754;
}

.whats-icon a:hover i {
    color: #000;
}

.whats-icon a:hover {
    color: #000;
}

.whats-icon {
    font-size: 17px;
    color: var(--pc);
}

.hotline-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2%;
    width: 160%;
}

.hotline-icon {
    background-color: red;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.hotline-number {
    font-size: 30px;
    font-weight: bold;
    color: black;
}

.hotline-number {
    display: flex;
    font-weight: 500;
    color: black;
    gap: 5px; /* Adds space between digits */
    position: relative;
    font-family: 'Nyala', sans-serif;
}

/* Individual digit animations */
.digit {
    display: inline-block;
    animation: moveDigits 2s infinite alternate ease-in-out;
}

.hotline-number img {
    width: 50px;
    height: 50px;
    margin-left: -7%;
}

.digits {
    margin-left: -10%;
}

/* Custom movement for each number */
#d9 {
    animation-delay: 0s;
    transform: translateY(10px);
}
/* 9 moves down */
#d8 {
    animation-delay: 0.2s;
    transform: translateY(-10px);
}
/* 8 moves up */
#d4 {
    animation-delay: 0.4s;
    transform: translateY(5px);
}
/* 4 slightly down */
#d3 {
    animation-delay: 0.6s;
    transform: translateY(7px);
}
/* 3 slightly down */
#d1 {
    animation-delay: 0.8s;
    transform: translateY(0px);
}
/* 1 stays normal */

/* Keyframes for moving digits */
@keyframes moveDigits {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
    /* Moves slightly up and down */
}

.left-md-center {
    margin-left: 15%;
}

.social-icons-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 3%;
}

.social-header-disktop {
    display: flex;
    gap: 20px; /* Space between icons */
    list-style: none;
    padding: 0;
    margin: 0;
}

    .social-header-disktop img {
        width: 50px;
        /* height: 40px; */
    }

    .social-header-disktop li {
        display: inline-block;
    }

        .social-header-disktop li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px; /* Adjust icon size */
            height: 35px;
            font-size: 20px; /* Adjust icon size */
            color: #000; /* Default icon color */
            transition: opacity 0.3s ease-in-out;
        }

            .social-header-disktop li a:hover {
                opacity: 0.5; /* Reduce opacity on hover */
            }

/* Mobile Styling */
@media (max-width: 767px) {
    .social-header-disktop {
        justify-content: center; /* Center on small screens */
        margin-left: 0;
    }

    .social-icons-container {
        display: none;
    }

    .hotline-icon {
        width: 40px;
        height: 40px;
    }

    .hotline-number {
        font-size: 37px;
    }

    .left-md-center {
        margin-left: 0;
    }

    .hotline-container {
        margin-top: 0;
    }

    .top-nav {
        padding-bottom: 3%;
    }

    .whats-icon {
        font-size: 16px;
        margin-right: -25%;
        margin-top: -17%;
    }

        .whats-icon i {
            font-size: 43px;
        }

    .social-header img {
        width: 25px;
        height: 25px;
        margin-top: 1%;
        margin-bottom: 1%;
    }

    .hotline-number img {
        width: 35px;
        height: 35px;
        margin-left: -9%;
    }

    .section-line-gradient {
        margin-top: 0;
    }

    .digits {
        margin-left: -17%;
    }
}



#about .section-line-gradient, #categories1 .section-line-gradient {
    margin-top: -3%;
}

#logo .section-line-gradient {
    margin-top: -2%;
}

.hs-title-7 {
    font-size: 60px;
}

#about-page .section-caption-gradient {
    font-size: 30px;
}

#about-page .section-line-gradient {
    margin-top: -3%;
}

.mn-has-sub i {
    float: right;
}

.inner-nav ul li .mn-sub li a, .mn-group-title {
    background: #efefef94;
}

@media (min-width: 768px) {
    .social-header {
        display: none;
    }
}

@media (max-width: 767px) {
    .category-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
}

.footer_get_touch_outer {
    /* margin-top: 40px; */
    /* color: var(--pc); */
}

.container-contact {
    width: 95%;
    max-width: 1140px;
    margin: auto;
}

.grid-70-30 {
    display: grid;
    grid-template-columns: 70% 30%;
}

.get_form_inner {
    display: block;
    padding: 50px 40px;
    background: #fff;
    box-shadow: -4px -2px 20px -7px #cfd5df;
}

input[type="text"], input[type="text"], input[type="email"], input[type="tel"] {
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    color: #333;
    height: 42px;
    padding: 0 0 0 20px;
    width: 100%;
    outline: 0;
}

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

.grid-full {
    margin: 20px 0;
}

textarea {
    border: 1px solid #dbdbdb;
    border-radius: 2px;
    color: #333;
    padding: 12px 0 0 20px;
    width: 100%;
    outline: 0;
    margin-bottom: 20px;
}

.get_form_inner_text {
    color: var(--sc);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
}

.get_say_form {
    display: inline-block;
    padding: 45px 0 25px 30px;
    background: #cb2020;
    position: relative;
    color: #fff;
}

    .get_say_form .section-title {
        color: #fff;
    }

    .get_say_form .link-hover-anim {
        color: #fff;
    }

    .get_say_form .ci-text {
        color: #fff;
    }

.card-category .card-body h4 {
    font-size: 15px;
}

.card-category .card-body {
    padding: 5px !important;
    text-align: center;
}

.card-category {
    border: 0;
}


    .card-category a {
        text-decoration: none;
    }

    .card-category:hover a {
        color: var(--sc);
    }


.card-categoreis {
    border: 0;
}

.card-categoreis {
    background-color: #fff;
    overflow: hidden;
}

    .card-categoreis a {
        text-decoration: none;
        overflow: hidden;
    }

    .card-categoreis .card-body h4 {
        font-size: 15px;
        color: var(--pc);
    }

.categoreis {
    height: 300px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease-in-out; /* Smooth zoom effect */
}

.card-categoreis:hover .categoreis {
    transform: scale(1.1); /* Slightly enlarge the image on hover */
}

.containerCustom h3 {
    color: var(--pc);
}
/* // --------------------------------------- */
.card-product {
    border: 1px solid #dddddd !important;
    overflow: hidden;
}

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
}

.layer-product {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.card-product:hover .layer-product {
    opacity: 1;
}


.layer-product i {
    color: var(--pc);
    font-size: 30px;
    background-color: var(--bg-color);
    padding: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
}


.product-img img {
    /* max-width: 100%; */
    height: 200px;
    transition: all 0.6s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

.body-product {
    text-align: center;
}

    .body-product a h5 {
        color: var(--black-color);
        font-weight: bold;
    }

    .body-product p {
        color: var(--pc);
        margin: 15px 0;
        font-weight: bold;
    }

.card-product:hover .product-img img {
    transform: rotatey(180deg);
    -webkit-transform: rotatey(180deg);
    -moz-transform: rotatey(180deg);
    -ms-transform: rotatey(180deg);
    -o-transform: rotatey(180deg);
}

.card-product:hover {
    border: 1px solid var(--pc) !important;
}



.number-control {
    display: flex;
    align-items: center;
}

.number-left::before,
.number-right::after {
    content: attr(data-content);
    background-color: var(--pc);
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid black; */
    width: 20px;
    color: white;
    transition: background-color 0.3s;
    cursor: pointer;
}

.number-left::before {
    content: "-";
}

.number-right::after {
    content: "+";
}

.number-quantity {
    padding: 0.25rem;
    border: 0;
    width: 50px;
    -moz-appearance: textfield;
    text-align: center;
    /* border-top: 1px solid black; */
    /* border-bottom: 1px solid black; */
}

.number-left:hover::before,
.number-right:hover::after {
    background-color: #666666;
}

.text-success {
    color: var(--pc) !important;
}

.btn-outline-success {
    color: var(--sc);
    border-color: var(--sc);
}

    .btn-outline-success:hover {
        color: var(--white-color);
        border-color: var(--sc);
        background-color: var(--sc);
    }



/* Variables */

/* Spacing */
:root {
    --base-spacing: 1em;
    --off-white: #F5F5F5;
    --base-accent-color: #34Bf49;
    --thumb-opacity-inactive: 0.75;
    --thumb-opacity-hover: 1;
    --thumb-opacity-active: 0.2;
    --icon-opacity-norm: 0.5;
    --icon-opacity-hover: 1;
    --base-transition-timing: cubic-bezier(0.455, 0.030, 0.515, 0.955);
    --base-transition-duration: .3s;
}

.zoom-container img {
    max-width: 100%;
}

/* Container Styles */
.zoom-container {
    max-width: var(--container-width);
    padding: 0 80px;
}

/* Helper Styles */
.ir {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/* Gallery Styles */
.gallery {
    overflow: hidden;
}

.gallery__hero {
    overflow: hidden;
    position: relative;
    padding: calc(var(--base-spacing) * 2);
    margin: 0 0 calc(var(--base-spacing) / 3);
    background: #fff;
}

    .gallery__hero.is-zoomed {
        cursor: move;
    }

        /* Increase the scale on zoomed image */
        .gallery__hero.is-zoomed img {
            max-width: none;
            position: absolute;
            z-index: 0;
            top: -50%;
            left: -50%;
            transform: scale(2.5); /* Increase zoom scale */
            transition: transform 0.3s ease; /* Smooth zoom transition */
        }


.gallery__hero-enlarge {
    position: absolute;
    right: calc(var(--base-spacing) / 2);
    bottom: calc(var(--base-spacing) / 2);
    z-index: 1;
    width: 30px;
    height: 30px;
    opacity: var(--icon-opacity-norm);
    background-image: url('zoom-in-icon.svg');
    background-repeat: no-repeat;
    transition: opacity var(--base-transition-duration) var(--base-transition-timing);
}

    .gallery__hero-enlarge:hover {
        opacity: var(--icon-opacity-hover);
    }

.gallery__hero.is-zoomed .gallery__hero-enlarge {
    background-image: url('zoom-out-icon.svg');
}

.gallery__thumbs {
    text-align: center;
    background: #fff;
}

    .gallery__thumbs a {
        display: inline-block;
        width: 20%;
        padding: calc(var(--base-spacing) / 2);
        opacity: var(--thumb-opacity-inactive);
        transition: opacity var(--base-transition-duration) var(--base-transition-timing);
    }

        .gallery__thumbs a:hover {
            opacity: var(--thumb-opacity-hover);
        }

        .gallery__thumbs a.is-active {
            opacity: var(--thumb-opacity-active);
        }

.zoom-content {
    float: right;
}

.product-d {
    padding-top: 5%
}

.table .head {
    color: #818181;
}

.color-options {
    /* margin-top: 20px; */
    /* padding: 0 20px !important; */
    /* background-color: #f7f7f7; */ /* Light background for the section */
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* text-align: center; */
    display: flex;
}

    .color-options h4 {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: #333;
    }

.color-boxes {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.color-box {
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    border: 2px solid #fff; /* White border for a clean look */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); /* Light shadow for depth */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .color-box:hover {
        transform: scale(1.1); /* Slight zoom on hover */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
    }

.price {
    color: var(--sc);
}

@media (max-width: 950px) {
    .gallery {
        overflow: visible;
    }

    .get_say_form .row {
        --bs-gutter-x: 0;
    }
    .mega-footer .text-gray {
        font-size: 15px;
    }
    .mobile-grid {
        width: 45%;
    }
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--pc);
}

.footer-menu li {
    position: relative;
}

.footer-menu .submenu {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
}

.footer-menu li:hover > .submenu {
    display: block;
}

/* Optional: Make submenu links smaller like navbar submenu */
.footer-menu .submenu li a {
    font-size: 14px;
    padding-left: 20px;
}

.red {
    color: var(--sc);
}

@media (min-width: 767px) and (max-width: 950px) {
   .display-d{
       display: none;
   }

    .hotline-container {
        width: 215%;
        margin-top: 18%;
    }

    .nav-logo-wrap {
        top: 55%;
        width: 50%;
    }

    .main-nav {
        height: 185px !important;
    }
}