/* My First Font */
@font-face {
    font-family: 'myfirstfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/LuckiestGuy-Regular.ttf) format('truetype');
}

/* My Second Font */
@font-face {
    font-family: 'mysecondfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Geomini-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Geomini-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Geomini-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Geomini-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Geomini-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Geomini-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Geomini-ExtraLight.ttf) format('truetype');
}



html {
    min-height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}
    

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #042918;
}

:root {
    --main-color: #1C3D2E;
    --txt-color: #323232;
    --main-sub-color: #F75354;
    --main-dark-color: #000;
    --main-light-color: #538770;
    --light-color: #F4FFFA;
    --white-color: #fff;
    --gradient-color: linear-gradient(90deg, #E8C97A, #C9A84C);
    --gradient-sub-color: linear-gradient(90deg, #C9A84C, #E8C97A);
    --h1HeadingFont: 'myfirstfont-Regular';
    --h2HeadingFont: 'myfirstfont-Regular';
    --h3HeadingFont: 'myfirstfont-Regular';
    --paraFont: 'mysecondfont-Regular';
    --bodyFont: 'mysecondfont-Regular';
    --menuFont: 'mysecondfont-Regular';
    --menuFontSize: 16px;
    --menuLineHeight: 16px;
    --ease:cubic-bezier(.2,.7,.3,1);
    --ease-premium: cubic-bezier(.16,1,.3,1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --shadow-soft: 0 10px 30px rgba(28,61,46,.08);
    --shadow-lift: 0 24px 50px rgba(28,61,46,.16);
    --shadow-deep: 0 40px 80px rgba(10,20,15,.28);
    --ring-gold: 0 0 0 1px rgba(201,168,76,.35);
}

/* Respect reduced motion preference across the whole site */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

body {
    font-family: var(--bodyFont);
    background: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

html,
body {
    overflow-x: hidden;
}



.dropdown:hover>.dropdown-menu {
    display: block;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
}

p,
ul,
ol,
address,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a,
a:active,
a:focus,
button,
button:focus,
button:active,
.btn,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
    outline: none;
    outline: 0;
}

p, li, a {
    font-family: var(--bodyFont);
    font-size: 18px;
    line-height: 1.8;
    color: var(--txt-color);
}

a:hover,
a {
    text-decoration: none;
}

.form-control:focus {
    background-color: #fff;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
    /* border: 0; */
}

li {
    list-style: none;
}

.padd-top-bottom {
    padding: 85px 0;
}

.padd-top {
    padding-top: 85px;
}

.padd-bottom {
    padding-bottom: 85px;
}

.container.custom-container {
    max-width: 1580px;
}

.container.custom-container.sec-container {
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    height: auto;
}

.main-img {
    width: 100%;
    height: auto;
}

.scroll-margin-top {
    scroll-margin-top: 150px;
}



/* ── SCROLL ANIMATION ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
    will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Directional / stylistic scroll reveals, driven by data-reveal="..." in markup */
[data-reveal] {
    opacity: 0;
    transition: opacity .9s var(--ease-premium), transform .9s var(--ease-premium), filter .9s var(--ease-premium);
    will-change: opacity, transform, filter;
}
[data-reveal="up"]     { transform: translateY(42px); }
[data-reveal="down"]   { transform: translateY(-42px); }
[data-reveal="left"]   { transform: translateX(-52px); }
[data-reveal="right"]  { transform: translateX(52px); }
[data-reveal="scale"]  { transform: scale(.86); }
[data-reveal="blur"]   { filter: blur(14px); transform: translateY(18px); }
[data-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

/* Split-word heading reveal, driven by JS adding .split-heading spans */
.split-heading .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: .08em;
    margin-bottom: -.08em;
}
.split-heading .word-inner {
    display: inline-block;
    transform: translateY(115%);
    transition: transform .8s var(--ease-premium);
}
.split-heading.in-view .word-inner {
    transform: translateY(0);
}

/* Gradient underline shine for headings, opt-in via .shine-heading */
.shine-heading {
    background: linear-gradient(100deg, var(--main-color) 40%, #C9A84C 50%, var(--main-color) 60%);
    background-size: 220% auto;
    background-position: 0% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1.2s var(--ease-premium);
}
.shine-heading.in-view { background-position: -120% center; }



@-webkit-keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    80% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    100% {
        -webkit-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }
}

@keyframes growDown {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }

    80% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

/* Background Color */

.bg-color {
    background: var(--main-light-color);
}

.bg-color-light {
    background: #F4FFFA;
}

.bg-color-sub {
    background: #F5F3E6;
}

.bg-color-dark {
    background: #0A0B0F;
}

/* Background Image */

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.swiper-button-prev, .swiper-button-next {
    width: 50px;
    height: 50px;
    /* color: var(--main-dark-color);
    background: #ffffffb0; */
    border-radius: 50px;
    font-size: 20px;
}

.swiper-button-prev {
    left: 0%;
}

.swiper-button-next {
    right: 0%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-pagination {
    text-align: center;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: var(--main-color);
    transition:all .2s ease;
}

.swiper-pagination-bullet-active {
  opacity:1;
}



/* Header Css Start */

header.site-header.navbar-fixed {
    top: 0;
    z-index: 1000;
    position: fixed;
    width: 100%;
    background: var(--white-color);
    box-shadow: var(--shadow-soft);
}

@keyframes headerSlideIn {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}


header.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background-color: var(--white-color);
    padding: 0px 0;
}

.menuWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* position: relative; */
    justify-content: space-between;
    background: var(--themeThirdColor);
    border-radius: var(--borderRadiusSec);
}

header.site-header.navbar-fixed .logobox {
    position: relative;
}



.dropDownInnerMnb,
.navbarMain ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-direction: revert;
    flex-wrap: wrap;
    align-items: center;
}



.dropdownMain {
    float: left;
    overflow: hidden;
}

.logobox a img {
    /*width: 180px;*/
    width: 210px;
    margin-top: 0;
    position: relative;
}

.logobox a img.brand-logo {
    width: 140px;
    padding-left: 25px;
    border-left: 1px solid #adadad;
}

.logobox a img.logo {
    padding-right: 25px;
}

.logobox a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


header.site-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 19px 38px rgb(0 0 0 / 0%), 0 15px 12px rgb(0 0 0 / 6%);
    animation: 15s infinite gradient;
    z-index: 999;
    padding: 10px 0;
    transition: 0.3s ease-in-out;
}

header.site-header.sticky .dropdownMain .dropbtn,
header.site-header.sticky .navbarMain a {
    color: #585858;
    font-weight: 500;
}

.navbarMain a,
.dropdownMain .dropbtn {
    transition: 0.2s;
}

.dropdownMain .dropbtn,
.navbarMain a {
    color: #111;
    position: relative;
    font-weight: 500;
    transition: 0.2s;
    text-decoration: none;
    /* padding-bottom: 25px; */
}

.dropdownMain .dropbtn.active,
.navbarMain a.active {
    color: var(--themeColor)
}

.menuListing ul {
    display: block;
    padding: 0;
}




#myHeader.hide {
    top: 0;
}

#myHeader {
    width: 100%;
    z-index: 100;
    transition: all .3s ease;
}

.dropdownMain-content {
    display: none;
    position: absolute;
    background-color: var(--themeColor);
    width: 260px;
    z-index: 1;
    /* left: 0; */
    top: 100%;
}
.dropdownMain-content.full-megamenu {
    display: none;
    position: absolute;
    background-color: var(--themeColor);
    width: 100%;
    z-index: 1;
    right: 0%;
    top: 100%;
    padding: 10px;
    border-top: 2px solid var(--main-color);
}
.dropdownMain-content.full-megamenu {
    background: #F5F3E6;
}

.dropdownMain-content.full-megamenu::before {
    content: url(../images/menu-texture.svg);
    position: absolute;
    left: -1px;
    bottom: -8px;
    width: 86%;
    z-index: -1;
}

header.site-header .blackLogo {
    display: none;
}

header.site-header.navbar-fixed .whiteLogo {
    display: none;
}

header.site-header.navbar-fixed .blackLogo {
    display: block;
}

header.site-header.navbar-fixed .dropdownMain-content {
    top: 100%;
}

.dropdownMain:hover .dropdownMain-content {
    display: block;
}
.full-megamenu .img-menu-ra {
    flex: 0 0 45%;
}

.full-megamenu .menu-others-sub {
    flex: 0 0 50%;
    padding-left: 50px;
}

.dropdown_menu-mega {
    -webkit-animation: growDown 800ms backwards;
    animation: growDown 800ms backwards;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    overflow: hidden;
}


.navbarMain.onlyDesktop {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.menu-btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.navbarMain a.main-btn {
    margin: 0 0px;
}


.navbarMain a {
    float: left;
    font-size: 16px;
    color: #000;
    text-align: center;
    margin: 0 20px;
    font-family: var(--menuFont);
    /* text-transform: uppercase; */
    position: relative;
    padding: 25px 0;
}

.navbarMain a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--main-color);
    transition: width .4s var(--ease-premium);
}

.navbarMain a:hover, header.site-header.navbar-fixed .navbarMain a:hover {
    color: var(--main-sub-color);
}

.navbarMain a:hover::after {
    width: 100%;
}

.navbarMain li:last-child a {
    margin-right: 0;
}

header.site-header.navbar-fixed .navbarMain a, 
header.site-header.navbar-fixed .top-menu a,
header.site-header.navbar-fixed .navbarMain a i {
    color: #000;
}


.navbarMain .menuListing a:after,
.onlyMobile,
header.site-header.sticky .whiteLogo {
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1051;
    top: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-deep);
    -webkit-transition: width .5s var(--ease-premium);
    -o-transition: width .5s var(--ease-premium);
    transition: width .5s var(--ease-premium);
}

.sidenav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(10,20,15,.45);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease-premium), visibility .4s var(--ease-premium);
}

.sidenav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

header.site-header.navbar-fixed .menuWrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

.sidenav,
body,
html {
    overflow-x: hidden;
}

.text-right {
    text-align: right;
}

.topnavigation ul li a {
    font-size: 16px;
    font-family: var(--menuFont);
    font-size: var(--menuFontSize);
    line-height: var(--menuLineHeight);
}

.main-navigation ul li a i {
    font-size: 12px;
    /* color: var(--themeColor); */
    color: #000;
}

.main-navigation ul li a {
    padding: 20px 20px 20px;
    font-family: var(--menuFont);
    font-size: var(--menuFontSize);
    line-height: var(--menuLineHeight);
    text-transform: uppercase;
}

.main-navigation ul li a:hover {
    color: var(--main-color) !important;
}

/* .navbarMain a, .navbarMain a, .top-menu a, .main-navigation ul li a i {
    color: #111 !important;
} */

header.site-header.navbar-fixed .main-navigation ul li:last-child a,
.main-navigation ul li:last-child a {
    padding-right: 0;
}


.topnavigation ul li a {
    color: #fff;
    margin-right: 0;
    margin-left: 55px;
}

.topnavigation ul li a:hover {
    color: var(--themeSecColor);
}

.topnavigation ul li:first-child a span {
    color: var(--themeSecColor);
    font-size: 20px;
    font-family: Poppins-SemiBold;
}

.topnavigation ul li:first-child a {
    border-right: 1px solid #ffffff54;
    margin: 0;
    padding-right: 55px;
    font-family: 'Inter_18pt-Regular';
}

.topnavigation ul li:first-child a i {
    color: var(--themeSecColor);
    font-size: 22px;
    margin-right: 10px;
}

.topnavigation {
    background: var(--themeColor);
    border-radius: var(--borderRadiusSec);
    padding: 15px 70px;
    margin: 10px 0;
}

.topnavigation ul {
    display: flex;
    justify-content: end;
}

.navbarMain .menu-others-sub a {
    padding: 10px 10px;
    float: left;
    width: 100%;
    text-align: left;
    /* border-bottom: 1px solid #ffffff29; */
    color: #000 !important;
    font-size: 14px;
    position: relative;
}
.navbarMain .menu-others-sub a::before {
    content: "-";
    position: absolute;
    left: 10px;
    display: none;
}
.navbarMain .menu-others-sub a:hover::before {
    display: block;
}
.navbarMain .menu-others-sub a:hover {
    padding-left: 25px;
}
.navbarMain .full-megamenu .menu-others-sub a {
    color: #fff;
    float: left;
    width: 50%;
}


.navbarMain .menu-others-sub a:hover
{
    color: #fff;
    background: var(--themeSecColor);
}

.navbarMain .full-megamenu .menu-others-sub a:hover
{
    color: var(--main-color);
    background: transparent;
}

.top-menu {
    text-align: right;
}
.top-menu a {
    padding: 10px 18px;
    font-family: var(--menuFont);
    font-size: var(--menuFontSize);
    line-height: var(--menuLineHeight);
    text-transform: uppercase;
    color: #111;
    text-align: center;
}

a.connect-ra {
    background: var(--themeColor);
    margin-left: 25px;
    font-family: var(--menuFont);
    font-size: var(--menuFontSize);
    line-height: var(--menuLineHeight);
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 10px 18px;
}


.top-menu {
    text-align: right;
}
.top-menu a {
    padding: 10px 18px;
    font-family: var(--menuFont);
    font-size: var(--menuFontSize);
    line-height: var(--menuLineHeight);
    text-transform: uppercase;
    color: #111;
    text-align: center;
}

a.connect-ra {
    background: rgb(28, 131, 201);
    background: linear-gradient(90deg, rgba(28, 131, 201, 1) 21%, rgba(198, 57, 22, 1) 100%);
    margin-left: 25px;
    font-family: var(--menuFont);
    font-size: var(--menuFontSize);
    line-height: var(--menuLineHeight);
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 10px 18px;
}

.navigationWrap {
    padding: 0px 0;
}

.navbar-fixed .navigationWrap {
    padding-bottom: 0;
    border-bottom: none;
    padding: 0;
}

.top-head {
    padding: 3px 0;
    background: var(--main-color);
}

.top-head ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-head ul li a {
    color: #fff;
    text-transform: uppercase;
    font-family: var(--menuFont);
    font-size: 16px;
    line-height: 16px;
}

.top-head ul li {
    padding: 0 20px;
}

.top-head ul li:last-child {
    padding-right: 0;
}

.top-head ul li:not(:first-child) {
    border-left: 1px solid var(--white-color);
}

.nav-link-menu.active {
    color: var(--main-sub-color) !important;
}

.nav-link-menu.active::after {
    width: 100%;
}

.navbarMain a.menu-main::after {
    display: none;
}

.navbarMain a.menu-main {
    padding: 5px 16px 8px;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    background: var(--white-color)
}

.navbarMain a.menu-main:hover {
    background: var(--main-color);
}



/* .menu-txt {
    padding: 20px 50px;
    height: 100%;
    border-left: 1px solid #ccae65a8;
    border-right: 1px solid #ccae65a8;
} */

.menu-txt a {
    padding: 0 !important;
    margin: 0 !important;
    font-family: 'myfirstfont-Medium';
    /* text-transform: none; */
    float: none;
    display: block;
    text-align: left;
    padding: 10px 10px !important;
    transition: all ease-in-out 0.4s;
}

.menu-txt a:hover {
    background: var(--main-color);
}

.menu-head {
    color: var(--txt-color);
    font-size: 20px;
    font-family: 'myfirstfont-SemiBold';
    padding-bottom: 10px;
    border-bottom: 1px solid var(--txt-color);
    margin-bottom: 20px;
    width: 50%;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.menu-txt ul {
    display: block;
    /* column-count: 2;
    column-gap: 10px; */
}

.menu-txt li {
    width: 100%;
    text-align: left;
}

.menu-img {
    height: 100%;
    width: 100%;
    padding-left: 0px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
}

.menu-para p {
    color: #fff;
    font-family: 'mysecondfont-Medium';
}

header.site-header.navbar-fixed .menu-txt a {
    color: #fff;
}

.menu-para {
    padding-top: 20px;
    padding-right: 50px;
}

.menu-txt a::after {
    /* width: 100%; */
    background: #fff0;
}


/* Heading H2, H3 and Inner Para Css */

.heading {
    margin-bottom: 40px;
}

.heading h1 {
    font-size: 66px;
    line-height: 1.0;
    position: relative;
    font-family: var(--h1HeadingFont);
    text-transform: capitalize;
    color: var(--main-color);
    letter-spacing: .2px;
}

.heading h2 {
    font-size: 55px;
    line-height: 1.2;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: var(--main-color);
    /* text-transform: uppercase; */
    letter-spacing: .3px;
    width: fit-content;
    position: relative;
}

.heading h2::after {
    content: url(../images/head-btm.svg);
    position: absolute;
    bottom: -30px;
    right: 0;
}

.heading.text-white h2::after {
    content: url(../images/head-btm-white.svg);
    position: absolute;
    bottom: -30px;
    right: 0;
}

.heading h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, var(--main-sub-color) 50%, transparent);
}

.heading.text-white h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, var(--white-color) 50%, transparent);
}

.heading h3 {
    font-size: 48px;
    line-height: 1.2;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: var(--main-color);
}

.head-shape {
    position: relative;
}

.head-shape::after {
    content: url(../images/txt-shape.svg);
    position: absolute;
    right: -35px;
    top: -24px;
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
    color: var(--white-color);
}

.inner-para p {
    font-family: var(--bodyFont);
    color: #000;
}

.inner-para {
    margin-bottom: 50px;
}

.text-white p {
    color: #fff;
}


/* Button Css */

.main-btn,
.modal-btn {
    padding: 13px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content !important;
    position: relative;
    isolation: isolate;
    font-family: 'myfirstfont-Regular';
    font-size: 18px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: transform .45s var(--ease-premium), box-shadow .45s var(--ease-premium), color .3s ease, background .3s ease;
    border-radius: var(--radius-sm);
}

.main-btn {
    background: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-sub-color);
    box-shadow: var(--shadow-soft);
}

.main-btn:hover::after {
    transform: translateX(5px);
}

.modal-btn {
    background: var(--main-light-color);
    border: 1px solid var(--main-light-color);
    color: var(--white-color);
    box-shadow: var(--shadow-soft);
}

/* Shine sweep, sits above ripple, below label */
.main-btn::before,
.modal-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-20deg);
    transition: left .7s var(--ease-premium);
    z-index: 1;
    pointer-events: none;
}

.main-btn:hover::before,
.modal-btn:hover::before {
    left: 130%;
}

.main-btn:hover {
    background: var(--main-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.main-btn1:hover {
    background: var(--main-sub-color);
}

.modal-btn:hover {
    background: var(--main-sub-color);
    border-color: var(--main-sub-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

/* Click ripple, spawned by JS as a positioned span.btn-ripple */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,.55);
    pointer-events: none;
    animation: rippleGrow .6s var(--ease-premium);
    z-index: 0;
}

@keyframes rippleGrow {
    to { transform: scale(2.6); opacity: 0; }
}


.scroll-element {
    scroll-margin: 150px 0 0 50px;
    scroll-margin-top: 200px;
}






.hamburger {
    width: 30px;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    margin-left: 30px;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--main-color);
    margin: 6px 0;
    transition: .3s;
}

/* Cross */
.hamburger.active span:nth-child(1){
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu */
.menu{
    display: none !important;
}

.menu.active{
    display: block !important;
}



/* Footer Top Start */

.ftr-top-sec {
    background: #000;
    border: 1px solid #3d2f03;
}

.ftr-top-col:not(:last-child) .ftr-top-box {
    border-right: 1px solid #3d2f03;
}

.ftr-top-box {
    padding: 50px 30px;
    display: block;
    height: 100%;
}

.ftr-top-box h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.ftr-top-box p {
    color: #BFBFBF;
    width: 90%;
}

/* Footer Top End */



/* Footer Start */

.site-footer {
    background: #264537;
}

.ftr-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid #5c897548;
}

.ftr-logo img {
    width: 180px;
    margin-bottom: 50px;
}

.ftr-logo p {
    color: #fff;
    width: 90%;
}

.ftr-logo {
    margin-bottom: 40px;
}

.ftr-item:not(:last-child) {
    margin-bottom: 10px;
}

.ftr-item h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0px;
    font-family: 'myfirstfont-Regular';
}

.ftr-item-head {
    margin-bottom: 20px;
}

.ftr-txt p {
    width: 90%;
}

.ftr-logo p, .ftr-item p, .ftr-item a {
    font-size: 16px;
    color: #CFFFEA;
    font-family: 'mysecondfont-Regular';
    transition: all 0.4s ease-in-out;
    position: relative;
    margin-bottom: 10px;
}

.ftr-item a:hover {
    color: var(--main-sub-color);
    padding-left: 15px;
}

.ftr-item .fa-solid {
    color: #E8FFF3;
    font-size: 20px;
    margin-right: 10px;
}

.ftr-item ul li a::before {
    content: '-';
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all ease-in-out 0.4s;
    color: var(--main-sub-color);
}

.ftr-item ul li a:hover::before {
    opacity: 1;
}

.social-media {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: var(--main-light-color);
    padding: 5px;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 0.4s;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--main-sub-color);
}

.ftr-btm {
    padding: 20px 0;
}

.ftr-left a, .ftr-left p {
    font-size: 16px;
    color: #CFFFEA;
    font-family: 'mysecondfont-Regular';
    transition: all 0.4s ease-in-out;
}

.ftr-left a:hover {
    color: var(--main-sub-color);
}

.ftr-left {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    gap: 25px;
}

.ftr-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.ftr-item p {
    width: 85%;
}

.ftr-item a {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: start;
    margin-bottom: 15px;
}

.ftr-item a img {
    width: 25px;
    margin-right: 10px;
}

.ftr-item p:not(:last-child) {
    margin-bottom: 15px;
}

/* Footer End */


/* Sticky Icon */

.fixed-btn {
    position: fixed;
    right: -90px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    z-index: 2;
    color: #000;
    /* background: #f0d367; */
}

.sticky-icon {
    position: fixed;
    right: 0;
    bottom: 50px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-icon img {
    width: 50px;
}

button.btn-close {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    background: var(--main-light-color);
    opacity: 1;
    border-radius: 50%;
    box-shadow: none;
    font-size: 20px;
    font-weight: bold;
    color: var(--white-color);
    box-shadow: none;
    transition: all ease-in-out 0.4s;
}

button.btn-close:hover {
    opacity: 1;
    box-shadow: none;
    color: var(--white-color);
    background: var(--main-sub-color);
}

.enquir-form h3 {
    color: var(--main-color);
}





/* Accessibility: visible keyboard focus ring */
a:focus-visible,
button:focus-visible,
.main-btn:focus-visible,
.modal-btn:focus-visible {
    outline: 2px solid var(--main-sub-color);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Premium card lift, applied to infra-item / blog-item / product-item wrappers */
.infra-item,
.blog-item {
    transition: transform .5s var(--ease-premium), box-shadow .5s var(--ease-premium);
    box-shadow: var(--shadow-soft);
}

.infra-item:hover,
.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
}

.social-icon {
    transition: all .4s var(--ease-premium);
}

.social-icon:hover {
    transform: translateY(-4px) rotate(-6deg);
    box-shadow: var(--shadow-soft);
}

/* Shine CSS */
.shine {
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 0.4s;
}
.shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);        
    transform: skewX(-25deg);
    z-index: 2;
}
.shine img {
    transition: all ease-in-out 0.4s;
}
.shine:hover img {
    transform: scale(1.12);
}
.shine:hover::after {
    left: 160%;
    transition: 1s;
}



.menu-logo {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

.menu-logo::after {
    display: none;
}

.menu-point p {
    font-family: 'mysecondfont-Medium';
    color: var(--main-color);
    margin-top: 15px;
    transition: all ease-in-out 0.4s;
    position: relative;
    width: fit-content;
}

.menu-point p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--main-color);
    transition: width .4s var(--ease-premium);
    transition: all ease-in-out 0.4s;
}

.menu-logo:hover .menu-point p {
    letter-spacing: 1px;
}

.menu-logo:hover .menu-point p::after {
    width: 100%;
}

.menu-logo h3, .menu-box h3 {
    font-family: 'myfirstfont-Regular';
    color: var(--main-color);
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
    text-align: left;
}

.menu-logo p, .menu-box p {
    text-align: left;
    font-size: 14px;
    font-family: 'mysecondfont-Medium';
    line-height: 1.8;
}

.menu-box p {
    height: 125px;
}

.menu-point p {
    height: auto !important;
}

.menu-logo-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    padding: 20px;
    margin-bottom: 10px;
}

.menu-logo-img::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 104%;
    clip-path: polygon(99.8% 54.9%, 99.4% 53.5%, 99.2% 53.2%, 98.9% 53%, 98.9% 52%, 99% 50.3%, 99.1% 50.2%, 99.4% 49.7%, 99.4% 49.2%, 99.1% 48.9%, 99% 47.9%, 99.1% 47.2%, 99% 46.8%, 99% 46.3%, 98.8% 45.9%, 98.8% 44.8%, 98.7% 43.7%, 98.4% 41.9%, 98.2% 40.5%, 97.7% 38.2%, 97.4% 37.2%, 97.3% 36.6%, 97.2% 36.4%, 97% 35.7%, 97% 35.6%, 96.8% 35%, 96.8% 34.6%, 96.9% 34.5%, 96.9% 34.1%, 96.7% 34%, 96.7% 33.5%, 96.9% 33.2%, 97% 33.1%, 97.2% 32.9%, 97.1% 32.5%, 97.1% 32.5%, 97.1% 32.4%, 97.1% 32.3%, 96.9% 31.6%, 96.6% 30.8%, 96.3% 29.9%, 95.9% 29.6%, 95.9% 29.6%, 95.9% 29.3%, 95.8% 29.1%, 95.4% 28.8%, 95.2% 28.5%, 95.1% 28%, 95.1% 27.8%, 95% 27.6%, 94.8% 27.1%, 94.6% 26.7%, 94.5% 26.4%, 94.5% 26.4%, 94.3% 26.2%, 94.1% 25.8%, 94% 25.7%, 93.9% 25.4%, 93.8% 25.4%, 93.8% 25.3%, 93.7% 25.3%, 93.4% 25.2%, 93.2% 24.8%, 92.9% 24.4%, 92.6% 24%, 92.6% 23.9%, 92.5% 23.8%, 92.4% 23.7%, 92.3% 23.6%, 92.1% 23.3%, 92% 23.1%, 92% 23%, 91.9% 22.9%, 91.7% 22.4%, 91% 21.4%, 90.2% 20.3%, 89.6% 19.5%, 88.9% 18.6%, 88.9% 18.6%, 88.9% 18.6%, 88.7% 18.4%, 88.1% 17.6%, 87.9% 17.5%, 88% 17.4%, 87.6% 17%, 87.4% 16.8%, 86.4% 15.8%, 86% 15.3%, 85.5% 14.9%, 85.1% 14.4%, 85% 14.4%, 85% 14.3%, 84.9% 14.2%, 84.6% 13.9%, 84.5% 13.9%, 84.5% 13.8%, 84% 13.4%, 83.3% 12.7%, 82.7% 12.2%, 82.2% 11.8%, 81.7% 11.4%, 81.8% 11.4%, 81.3% 11.1%, 80.6% 10.5%, 79.9% 10%, 79.3% 9.5%, 78.3% 8.8%, 77.5% 8.2%, 77.1% 7.9%, 77% 7.7%, 77.1% 7.5%, 77% 7.3%, 76.6% 7.1%, 76.1% 7%, 75.9% 7.1%, 75.7% 7.1%, 75.5% 7.1%, 74.8% 6.8%, 73.9% 6.3%, 73.6% 6.1%, 73.6% 6.1%, 72.9% 5.8%, 72.3% 5.2%, 70.6% 4.6%, 70.3% 4.3%, 69.8% 3.9%, 69.2% 3.9%, 68.8% 3.7%, 68.1% 3.7%, 68.1% 3.6%, 67.9% 3.4%, 66.5% 2.9%, 65.1% 2.8%, 64.7% 2.6%, 63.4% 2.2%, 62.9% 1.9%, 62.2% 1.9%, 62% 1.8%, 61.4% 1.5%, 61.4% 1.5%, 61.3% 1.5%, 59.6% 1.2%, 58.9% 1.2%, 58.1% 1.1%, 57.8% 0.9%, 57.2% 0.9%, 56.6% 0.8%, 56% 0.6%, 56% 0.5%, 55.8% 0.2%, 55% 0.2%, 54.7% 0.4%, 54% 0.4%, 52.1% 0.3%, 51.9% 0.2%, 51.5% 0%, 51.2% 0.1%, 50.2% 0.1%, 50.1% 0.2%, 49.6% 0.3%, 49.3% 0.4%, 47.7% 0.5%, 45.7% 0.6%, 45.3% 0.6%, 45.1% 0.4%, 44.6% 0.4%, 44.6% 0.5%, 44.5% 0.5%, 44.4% 0.6%, 44.3% 0.6%, 43.9% 0.8%, 43.3% 0.9%, 41.2% 1.2%, 38.9% 1.6%, 38.4% 1.8%, 36.4% 2.2%, 35% 2.6%, 32.7% 3.3%, 31.3% 3.9%, 30.5% 4.2%, 30.5% 4.2%, 29.6% 4.5%, 29.6% 4.5%, 29.3% 4.7%, 27.6% 5.3%, 26.1% 6.1%, 26.1% 6.1%, 25.7% 6.2%, 24.3% 6.9%, 23.4% 7.4%, 22.6% 7.8%, 21.9% 7.8%, 21.8% 7.9%, 21.1% 8.3%, 20.7% 8.8%, 20.4% 8.8%, 20.3% 8.8%, 20.2% 8.8%, 20.2% 8.8%, 20% 8.8%, 19.6% 9%, 19.6% 9.5%, 19.2% 9.8%, 18.9% 10.1%, 18.2% 10.6%, 18% 10.8%, 17.8% 10.9%, 17.4% 11.2%, 17.1% 11.5%, 16.8% 11.8%, 16% 12.3%, 15.7% 12.6%, 15.5% 12.7%, 15.4% 12.9%, 15% 13.1%, 14.7% 13.3%, 14.7% 13.4%, 14.6% 13.5%, 14.1% 14.1%, 13.4% 14.3%, 13.4% 14.3%, 13.2% 14.4%, 13.2% 14.7%, 13.1% 14.9%, 13.1% 14.9%, 13% 15.2%, 12.7% 15.5%, 12.3% 15.4%, 12.3% 15.1%, 12.5% 15%, 12.8% 14.9%, 12.8% 14.9%, 12.8% 14.8%, 12.9% 14.5%, 12.7% 14.4%, 12.5% 14.6%, 12.2% 14.7%, 11.8% 14.9%, 11.7% 15.3%, 11.6% 15.3%, 11.3% 15.5%, 11.1% 15.9%, 10.6% 16.2%, 10.5% 16.5%, 10% 16.9%, 9.9% 17.1%, 9.8% 17.2%, 9.7% 17.2%, 9.7% 17.3%, 9.7% 17.3%, 9.7% 17.3%, 9.5% 17.4%, 9.3% 17.7%, 8.7% 18.7%, 8.6% 19.4%, 8.5% 19.4%, 8.4% 19.5%, 8.3% 19.5%, 8.2% 19.7%, 7.7% 20.3%, 7.7% 20.4%, 7.7% 20.4%, 7.5% 20.7%, 7.3% 21%, 7.2% 21.3%, 7.5% 21.2%, 7.4% 21.4%, 7.1% 21.9%, 6.8% 22.1%, 6.8% 21.7%, 6.6% 21.7%, 6.4% 21.7%, 6.3% 21.6%, 6.2% 21.6%, 6.1% 21.6%, 6.2% 21.6%, 6% 21.6%, 5.8% 22%, 5.7% 22.7%, 5.7% 22.8%, 5.6% 23.1%, 5.4% 23.4%, 5.4% 23.6%, 5.4% 23.6%, 5.4% 23.8%, 5.5% 24%, 5.1% 24.1%, 5% 24.6%, 4.8% 24.9%, 4.7% 25%, 4.4% 25.7%, 4.3% 25.7%, 3.8% 25.8%, 3.5% 25.6%, 3.5% 25.6%, 3.5% 25.6%, 3.1% 25.4%, 3.1% 25.4%, 3% 25.4%, 2.4% 25.4%, 2.3% 25.7%, 2.2% 26%, 2.2% 25.9%, 2.2% 26.2%, 2.4% 26.3%, 2.5% 26.5%, 2.3% 26.9%, 2.2% 27.1%, 2.2% 27.1%, 2.1% 27.7%, 2.1% 27.8%, 2.1% 28.1%, 2.4% 28.4%, 2.6% 28.5%, 2.6% 29.2%, 2.3% 29.1%, 2% 29.1%, 2% 29.1%, 1.7% 29.1%, 1.5% 29.2%, 1.6% 29.6%, 2.1% 29.8%, 2% 30.6%, 1.9% 30.6%, 1.9% 30.1%, 1.8% 30.1%, 1.8% 30.1%, 1.6% 30%, 1.4% 30%, 1.4% 30%, 1.3% 30%, 1.3% 30%, 1.2% 30%, 1.2% 30.1%, 1.2% 30.1%, 1.2% 30.2%, 1.2% 30.3%, 1.2% 30.4%, 1.2% 30.4%, 1.3% 30.4%, 1.6% 30.7%, 1.3% 31.2%, 1.2% 31.6%, 1.4% 31.8%, 1.8% 32%, 2.1% 32.3%, 2.1% 32.6%, 1.9% 33.2%, 1.5% 34.3%, 1.5% 34.9%, 1% 36.7%, 0.9% 37%, 0.5% 37%, 0.5% 37.3%, 0.7% 37.5%, 0.5% 38%, 0.2% 40.4%, 0.2% 40.5%, 0.1% 41%, 0.1% 43.7%, 0.1% 45.4%, 0.1% 46.8%, 0% 47%, 0% 48.2%, 0.1% 48.6%, 0.2% 50.7%, 0.4% 52.5%, 0.5% 53.2%, 0.9% 55.9%, 1.3% 57.8%, 1.9% 60.4%, 2.2% 61.2%, 2.4% 61.9%, 2.9% 63.2%, 3.3% 64.2%, 3.3% 64.3%, 3.6% 65%, 4.1% 66.2%, 4.8% 67.6%, 5% 68%, 5% 68%, 5.4% 68.7%, 5.4% 68.7%, 5.7% 69.2%, 6.6% 70.8%, 7.3% 71.8%, 7.3% 71.9%, 7.3% 71.9%, 7.4% 72%, 7.5% 72.1%, 7.5% 72.1%, 8% 72.9%, 8.5% 73.6%, 8.7% 73.9%, 8.8% 74%, 8.9% 74.2%, 9.1% 74.4%, 9.1% 74.4%, 9.2% 74.5%, 9.9% 75.4%, 10.6% 76.3%, 10.7% 76.4%, 10.8% 76.6%, 11.3% 77.2%, 11.5% 77.4%, 11.5% 77.4%, 11.6% 77.4%, 12.1% 78.1%, 12.9% 78.9%, 13.3% 79.4%, 14.5% 80.6%, 15.3% 81.3%, 15.8% 81.7%, 16.4% 82.2%, 17.3% 82.9%, 18.1% 83.5%, 19.1% 84.3%, 20.1% 84.9%, 21.6% 85.9%, 23.2% 86.8%, 24.3% 87.5%, 25.7% 88.2%, 26.9% 88.8%, 28.1% 89.4%, 29.5% 90%, 29.9% 90.2%, 30.4% 90.4%, 30.4% 90.4%, 31.2% 90.7%, 31.3% 90.8%, 31.7% 91%, 32.3% 91.1%, 32.6% 91.2%, 32.7% 91.2%, 32.8% 91.2%, 34% 91.6%, 34.6% 91.8%, 34.6% 91.8%, 35% 91.9%, 35.9% 92.2%, 36.2% 92.3%, 36.7% 92.4%, 38% 92.8%, 38.2% 92.8%, 38.2% 92.8%, 39.4% 93.1%, 39.5% 93.5%, 39.5% 93.6%, 40.1% 94%, 40.7% 94.3%, 41.2% 94.3%, 41.4% 94.2%, 41.4% 94.2%, 41.8% 94.1%, 41.8% 94%, 42.1% 93.9%, 42.4% 93.6%, 43.4% 93.7%, 46.3% 93.9%, 48.3% 93.9%, 50% 93.9%, 53% 93.9%, 54.8% 93.8%, 54.8% 93.8%, 55.5% 93.7%, 56.7% 93.6%, 57.1% 93.6%, 57.5% 93.5%, 57.5% 93.5%, 57.9% 93.5%, 58.5% 93.5%, 58.5% 95.4%, 58.6% 96.3%, 58.8% 96.7%, 59% 97.5%, 58.9% 97.9%, 59% 98.5%, 58.9% 99.1%, 59.1% 99.3%, 59.9% 99.4%, 60% 99.7%, 60.2% 99.8%, 60.4% 99.8%, 60.5% 99.7%, 60.5% 99.7%, 60.8% 99.4%, 60.9% 98.8%, 61% 98.1%, 61.1% 98.1%, 61.1% 98.6%, 61.2% 99.4%, 61.3% 99.5%, 61.3% 99.5%, 61.4% 99.6%, 61.6% 99.6%, 61.6% 99.5%, 61.9% 99.5%, 62% 99.5%, 62% 99%, 61.9% 98.9%, 61.9% 98.7%, 62% 98.6%, 62.3% 98.1%, 62.6% 97.8%, 62.5% 97.6%, 62.6% 96.8%, 63.1% 96.6%, 63.1% 96.5%, 63.3% 95.2%, 63.4% 95%, 63.4% 95%, 63.6% 94.8%, 63.6% 94.7%, 63.6% 94.7%, 63.7% 94.5%, 64% 93.3%, 64.2% 93.2%, 64.2% 92.6%, 64.3% 92.4%, 65.3% 92.4%, 65.3% 94.1%, 65.4% 94.2%, 65.6% 94.5%, 65.8% 94.6%, 65.9% 94.4%, 66.1% 94.1%, 66.1% 93.3%, 66.2% 93.5%, 66.4% 93.5%, 66.4% 93.2%, 66.1% 93.1%, 66.1% 92.8%, 66.1% 92.5%, 66.1% 92.5%, 66.3% 92.3%, 66.5% 92.2%, 66.5% 92.1%, 66.6% 92%, 66.6% 92%, 66.7% 91.8%, 67% 91.8%, 67% 92.4%, 67.1% 92.5%, 67.2% 92.5%, 67.5% 92%, 67.5% 91.4%, 67.5% 91.1%, 67.6% 91.1%, 67.6% 91.6%, 67.6% 93.1%, 67.6% 94.1%, 67.5% 94.1%, 67.5% 94.5%, 67.5% 94.6%, 67.5% 94.7%, 67.6% 94.8%, 67.7% 94.8%, 67.7% 94.8%, 67.8% 94.8%, 67.8% 94.7%, 67.8% 94.7%, 68% 94.1%, 68.1% 93.7%, 68.3% 93%, 68.3% 93%, 68.4% 92.7%, 68.6% 92.2%, 68.6% 91.6%, 68.7% 91.3%, 68.8% 90.8%, 68.9% 90.4%, 69.3% 90.4%, 69.3% 91.2%, 69.6% 91.5%, 69.6% 91.9%, 69.4% 92.1%, 69.4% 92.6%, 69.6% 92.7%, 69.6% 93%, 69.4% 93%, 69.3% 93.1%, 69.3% 93.5%, 69.5% 93.6%, 69.6% 93.7%, 69.7% 94.1%, 69.7% 94.8%, 69.8% 95.2%, 69.8% 95.9%, 69.8% 95.9%, 70% 96.4%, 69.9% 96.7%, 70% 97%, 69.9% 97.8%, 69.9% 98.3%, 69.8% 98.4%, 69.8% 98.7%, 69.9% 98.8%, 70.1% 98.8%, 70.1% 98.8%, 70.1% 98.8%, 70.1% 98.7%, 70.2% 98.6%, 70.2% 97.2%, 70.3% 97%, 70.4% 96.5%, 70.3% 95.9%, 70.4% 95.8%, 70.6% 95.1%, 70.5% 94.5%, 70.5% 94.4%, 70.6% 94.4%, 70.6% 94.3%, 70.6% 94.3%, 70.6% 94.3%, 70.7% 94%, 70.9% 93.8%, 71% 93.2%, 71.1% 93%, 71.2% 92.8%, 71.3% 92.8%, 71.6% 92.5%, 71.5% 92.2%, 71.6% 92%, 71.7% 91.9%, 71.7% 92.1%, 72.1% 92.1%, 72.2% 92.6%, 72.2% 93.1%, 72.1% 93.3%, 72.2% 93.5%, 72.8% 93.5%, 72.9% 93.4%, 72.9% 92.1%, 73.1% 91.8%, 73.2% 91.7%, 73.5% 91.5%, 73.9% 91.1%, 73.9% 90.7%, 74% 89.6%, 74.1% 89.3%, 74.6% 89%, 74.6% 88.7%, 74.5% 88.5%, 74.5% 88.2%, 74.5% 88.1%, 74.6% 87.7%, 74.8% 87.4%, 75.4% 86.9%, 76.4% 86.4%, 77.4% 85.8%, 77.9% 85.5%, 78.4% 85.1%, 78.4% 85%, 78.5% 85%, 79% 84.8%, 79.2% 84.5%, 79.5% 84.4%, 79.8% 84.9%, 79.8% 84.9%, 79.9% 85%, 80.2% 85.3%, 80.1% 85.8%, 80.3% 86%, 80.6% 85.3%, 80.8% 85.1%, 81.3% 85%, 81.4% 84.6%, 81.7% 84.6%, 81.9% 85.1%, 82.1% 85.1%, 82.2% 84.7%, 82.4% 84.1%, 82.6% 84%, 82.7% 84%, 82.9% 83.9%, 83.2% 83.4%, 83.2% 83.1%, 83% 82.8%, 82.9% 82.5%, 83.1% 82.3%, 83.4% 81.9%, 83.5% 81.8%, 83.5% 81.8%, 84.1% 81.5%, 84.2% 81.1%, 84.6% 80.8%, 84.6% 80.8%, 84.7% 80.7%, 84.7% 80.7%, 84.8% 80.4%, 84.8% 80.3%, 84.8% 80.3%, 84.7% 80.1%, 84.7% 80.1%, 84.7% 80.1%, 84.6% 80%, 84.5% 80%, 84.4% 80%, 84.3% 80.1%, 84.1% 80.1%, 84% 79.7%, 84.2% 79.7%, 84.4% 79.6%, 84.9% 79.6%, 85.2% 79.5%, 85.3% 79.2%, 85.8% 78.7%, 86% 78.7%, 86.2% 78.7%, 86.3% 78.7%, 86.3% 78.6%, 86.4% 78.6%, 86.5% 78.5%, 86.7% 78.4%, 86.8% 78.3%, 86.9% 78.1%, 86.9% 78.1%, 87% 78%, 87.2% 77.8%, 87.4% 77.6%, 87.5% 77.5%, 87.5% 77.5%, 88.1% 76.9%, 88.1% 76.2%, 88.1% 76.1%, 88.4% 75.9%, 88.9% 75.9%, 89% 75.9%, 88.9% 76.4%, 88.9% 77.2%, 89.1% 78.3%, 89.3% 78.4%, 89.3% 79.1%, 89.4% 79.6%, 89.4% 80%, 89.7% 80.1%, 89.9% 80.6%, 90% 80.6%, 90.1% 80.4%, 90.6% 80.4%, 90.8% 80.3%, 90.8% 79.7%, 91% 79.7%, 91.2% 79.1%, 91.4% 78.4%, 91.4% 77.8%, 91.4% 77.7%, 91.3% 76.1%, 91.4% 76%, 91.8% 75.7%, 92.4% 75.7%, 92.6% 75.6%, 92.9% 75.6%, 93.4% 75.7%, 93.5% 76.2%, 93.9% 76.1%, 94% 76.4%, 94.2% 76.4%, 94.2% 76.3%, 94.5% 76.1%, 94.6% 76%, 94.6% 76%, 94.9% 75.7%, 95.2% 75.7%, 95.3% 75.8%, 95.4% 75.8%, 95.5% 75.6%, 95.5% 74.8%, 95.4% 74.4%, 95.3% 74%, 95.2% 73.1%, 95.5% 73%, 96% 72.7%, 96.2% 72.6%, 96.4% 71.9%, 96.7% 71.5%, 96.7% 70.8%, 97.4% 70.7%, 97.4% 70.7%, 97.4% 70.6%, 97.6% 70.4%, 97.8% 70.3%, 97.8% 70.2%, 97.6% 69.7%, 97.6% 69.2%, 97.6% 68.7%, 97.4% 68.4%, 97.4% 67.8%, 97.9% 67.7%, 97.9% 67.3%, 97.8% 67.2%, 97.8% 66.8%, 97.9% 66.7%, 97.9% 66.2%, 98% 65.8%, 97.9% 65.2%, 98.2% 64.5%, 98.5% 64.2%, 98.5% 63.8%, 98.7% 63.3%, 98.8% 62.7%, 99% 62.5%, 99% 61.8%, 99% 61.8%, 99.1% 60.9%, 99.2% 60.5%, 99.2% 60.3%, 99.3% 60%, 99.3% 59.8%, 99.3% 59.6%, 99.6% 58.3%, 99.7% 57.7%, 100% 55.9%, 100% 55.1%, 99.8% 54.9%, 83.2% 79.5%, 83.4% 79.4%, 83.7% 79.4%, 83.6% 79.6%, 82.9% 79.6%, 83% 79.3%, 83.2% 79.2%, 83.2% 79.5%, 83.3% 79.3%, 83.2% 79.2%, 83.4% 79.1%, 83.7% 79.1%, 83.7% 79.3%, 83.3% 79.3%, 83.2% 79.1%, 82.9% 79.1%, 82.9% 79.1%, 82.9% 79%, 83% 78.9%, 83.2% 78.9%, 83.2% 79%, 83.2% 79.1%, 81.4% 83.7%, 81.4% 83.6%, 81.8% 83.7%, 81.8% 83.8%, 81.4% 83.7%, 81.4% 83.9%, 81.6% 84%, 81.6% 83.9%, 81.8% 84%, 81.8% 84%, 81.7% 84.1%, 81.4% 84.1%, 81.4% 83.9%, 71.7% 91.2%, 71.8% 91.2%, 71.8% 91.2%, 71.8% 91.3%, 71.7% 91.2%, 71.7% 91.2%, 9.9% 19.2%, 9.7% 19.2%, 9.6% 18.9%, 9.7% 18.8%, 9.9% 18.9%, 9.9% 19.2%, 10.5% 16.6%, 10.9% 16.3%, 11.1% 16.1%, 11.4% 16%, 11.7% 15.7%, 11.7% 15.7%, 11.8% 15.7%, 11.9% 15.6%, 12.2% 15.7%, 12.2% 15.9%, 12% 16%, 11.7% 16.3%, 11.4% 16.6%, 11.4% 17.3%, 11.3% 17.4%, 10.9% 17.6%, 10.7% 17.6%, 10.2% 17.9%, 9.8% 18%, 9.7% 17.7%, 9.9% 17.5%, 10% 17.3%, 10.1% 17.2%, 10.2% 17.1%, 10.2% 17.1%, 10.5% 16.6%);
    z-index: -1;
    background: var(--white-color);
}

.menu-img-box {
    width: 100px;
    height: 100%;
    margin-bottom: 0;
    object-fit: contain;
}

.menu-box {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 40px !important;
}

.menu-box::after {
    display: none;
}



.no-break {
    white-space: nowrap;
}




/* Responsive Css Start */

@media (max-width: 1600px) {

    .container.custom-container {
        max-width: 1380px;
    }

    p, li, a, .main-btn, .modal-btn {
        font-size: 16px;
        line-height: 26px;
    }

    .heading h2 {
        font-size: 50px;
    }

    .heading h3 {
        font-size: 40px;
    }

    .menu-box p {
        height: 170px;
    }
    
    .ftr-logo p, .ftr-item p, .ftr-item a, .ftr-left a, .ftr-left p {
        font-size: 14px;
    }

}

@media (max-width: 1440px) {

    .container.custom-container {
        max-width: 1240px;
    }

    .heading h2 {
        font-size: 45px;
    }

    .navbarMain a {
        margin: 0 14px;
    }

    .logobox a, .logobox a img {
        width: 160px;
    }

    .heading h3 {
        font-size: 36px;
    }

    .ftr-top-box h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .ftr-item h4 {
        font-size: 18px;
    }

    .navbarMain a {
        font-size: 14px;
    }

    .menu-item a {
        padding: 6px 10px !important;
    }

    .ftr-logo p, .ftr-item p, .ftr-item a, .ftr-left a, .ftr-left p {
        font-size: 13px;
    }

    .ftr-logo p {
        width: 84%;
    }

    .menu-logo-img {
        width: 130px;
        height: 130px;
    }

    .menu-logo h3, .menu-box h3 {
        font-size: 22px;
        line-height: 22px
    }

    .menu-logo p, .menu-box p {
        font-size: 12px;
    }

    .menu-img-box {
        width: 75px;
    }

    .menu-box p {
        height: 135px;
    }

    .menu-box {
        padding-top: 20px !important;
    }

}

@media (max-width: 1399px) {

    .container.custom-container {
        max-width: 1180px;
    }

    p, li, a, .main-btn, .modal-btn {
        font-size: 15px;
        line-height: 25px;
    }

    .heading h3 {
        font-size: 32px;
    }

    .main-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .fixed-btn {
        right: -78px;
    }

    .menu-img-box {
        width: 65px;
    }

}

@media (max-width: 1199px) {

    .container.custom-container {
        max-width: 980px;
    }

    .padd-top-bottom {
        padding: 65px 0;
    }

    .padd-top {
        padding-top: 65px;
    }

    .padd-bottom {
        padding-bottom: 65px;
    }

    .heading h2 {
        font-size: 40px;
    }

    .navbarMain a {
        margin: 0 12px;
    }

    .logobox a, .logobox a img {
        width: 100px;
    }

    .heading h3 {
        font-size: 28px;
    }

    .ftr-top-box {
        padding: 50px 20px;
    }

    .ftr-top-box p {
        width: 100%;
    }

    .ftr-logo p, .ftr-item p, .ftr-item a, .ftr-left a, .ftr-left p {
        font-size: 12px;
    }

    .ftr-logo p {
        width: 90%;
    }

    .menu-img-box {
        width: 50px;
    }

    .menu-box p {
        height: 165px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .social-media {
        gap: 4px;
    }

}

@media (max-width: 1024px) {

    .top-head {
        display: none;
    }

    .logobox a, .logobox a img {
        width: 120px;
    }

    header.site-header.navbar-fixed .logobox img {
        width: 120px;
    }

    span.hamburgers {
        font-size: 29px;
        color: var(--main-color);
    }

    .sidenav .quick-list.social-list {
        float: left;
        padding: 20px 15px;
    }

    header.site-header {
        padding-top: 0;
    }

    header.site-header.navbar-fixed {
        padding: 0;
    }

    .sideNaviMob {
        display: flex;
        justify-content: end;
        float: left;
        width: 100%;
        align-items: center;
    }

    .sideNaviMob span img {
        width: 30px;
    }

    /* .sideNaviMob span img {
        filter: brightness(1000);
    } */

    header.site-header.navbar-fixed .sideNaviMob span img {
        filter: none;
    }

    .onlyMobile {
        display: block;
        width: 100%;
    }

    .mobmenuList ul {
        padding: 40px 15px;
        float: left;
        width: 100%;
    }

    .navbarMain.onlyDesktop {
        display: none;
    }

    .mobileBoxLogo.InsideSideBar {
        padding: 20px 15px 0;
        float: left;
        width: 100%;
    }
    .mobileBoxLogo.InsideSideBar img {
        width: 140px;
    }    

    .mobmenuList .accordion .accordion-body {
        float: left;
        padding: 10px;
        width: 100%;
        background: #f5f3e6;
        margin-top: 10px;
    }

    .mobmenuList .accordion .accordion-item .accordion-button {
        padding: 0;
        font-family: 'mysecondfont-Medium';
        background: transparent;
        color: var(--main-color);
        font-size: 16px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        text-transform: uppercase;
    }

    .mobmenuList .accordion .accordion-item .accordion-button::after {
        margin-left: 0;
    }

    .mobmenuList .accordion .accordion-button:focus {
        z-index: 3;
        border-color: inherit;
        outline: 0;
        box-shadow: none
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        color: #000;
        background-color: initial;
        box-shadow: none;
    }

    .mobmenuList .accordion .accordion-item {
        border: 0;
        position: relative;
        float: left;
        width: 100%;
        background: transparent;
        font-size: 14px;
        padding: 15px 0;
        border-bottom: 1px solid var(--main-light-color);
    }

    .mobmenuList .accordion-button::after {
        background-size: 18px;
        transition: transform 0.2s ease-in-out;
        padding: 12px;
        background-position: center;
        background-image: url(../images/down-arrow.png);
    }

    .mobmenuList .accordion-button:not(.collapsed)::after {
        background-image: url(../images/down-arrow.png);
        transform: rotate(180deg);
    }

    .sidenav .subMenuList a {
        font-size: 14px;
        position: relative;
        padding: 6px 10px;
        float: left;
        font-family: 'mysecondfont-Medium';
        color: var(--main-dark-color);
    }

    .sidenav .subMenuList a img {
        width: 140px;
        height: auto;
        margin-bottom: 15px;
    }

    a.closebtn {
        position: absolute;
        z-index: 999;
        width: 50px;
        right: 10px;
        top: 5px;
    }

    .dropdown-btn,
    .sidenav a {
        text-decoration: none;
        color: var(--main-color);
        width: 100%;
        float: left;
        font-family: 'mysecondfont-Medium';
        font-size: 18px;
        text-align: left;
        text-transform: uppercase;
    }

    .logobox {
        padding-bottom: 0px;
    }

    a.closebtn {
        text-align: right;
    }

    .logobox {
        padding-bottom: 0px;
    }

    .menuWrap {
        padding-left: 0%;
        padding-right: 0%;
    }

    header.site-header .whatsapp {
        text-align: center;
        width: 40px;
        height: 40px;
        display: inline-block;
        line-height: 40px;
        font-size: 25px;
        border-radius: 15px;
    }

    header.site-header .call {
        text-align: center;
        width: 40px;
        height: 40px;
        display: inline-block;
        line-height: 40px;
        font-size: 25px;
        border-radius: 15px;
        margin-right: 30px;
        margin-left: 15px;
    }

    .navigationWrap {
        padding: 10px 0 !important;
    }
    .flat-whatsapp {
        position: fixed;
        right: 20px;
        bottom: 30px;
        width: 48px;
        z-index: 1;
    }
    .social-list .socialLinks {
        text-align: center;
        margin-top: 10px;
        float: left;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 50px;
        gap: 10px;
    }

    .social-list .socialLinks a {
        flex: 0 0 11%;
        margin: 0;
        text-align: center;
    }

    .sticky-footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        border-radius: var(--borderRadiusSec);
        overflow: hidden;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        z-index: 2;
    }
    .sticky-footer a {
        padding: 7px 0;
        width: 50%;
        float: left;
        font-size: 16px;
        text-align: center;
        color: #fff;
        font-family: var(--h1HeadingFont);
        background: #6a96b4;
        text-transform: uppercase;
    }
    .sticky-footer a.booking {
        background: #a93316;
    }

    .mobSidebar .mobmenuList .social-icon {
        color: var(--white-color) !important;
        background: var(--main-color);
    }

    
}

@media (max-width: 991px) {

    .container.custom-container {
        max-width: 750px;
    }

    .main-btn {
        padding: 12px 22px;
    }

    .ftr-btm-left p, .ftr-btm-left p a {
        font-size: 12px;
    }

    .ftr-logo {
        text-align: center;
    }

    .ftr-right {
        justify-content: center;
        margin-top: 0;
    }

    .ftr-logo p, .ftr-item h4, .ftr-item p, .ftr-item a, .ftr-btm p, .ftr-btm a {
        text-align: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .heading h2 {
        font-size: 35px;
    }

    .heading h3 {
        font-size: 25px;
    }

    header.site-header.navbar-fixed {
        padding: 0px 0;
    }

    .ftr-head h3 {
        text-align: center;
    }

    .social-media {
        justify-content: center;
    }

    .ftr-logo {
        margin-bottom: 30px;
    }

    .ftr-item h4 {
        font-size: 16px;
    }

    .ftr-item-head {
        text-align: center;
    }

}

@media (max-width: 767px) {

    .container.custom-container {
        max-width: 560px;
    }

    p, li, a, .main-btn, .modal-btn {
        font-size: 14px;
        line-height: 24px;
    }

    .padd-top-bottom {
        padding: 55px 0;
    }

    .padd-top {
        padding-top: 55px;
    }

    .padd-bottom {
        padding-bottom: 55px;
    }

    .ftr-item1 ul li:not(:last-child) {
        margin-bottom: 12px;
    }

    .top-ftr {
        padding-bottom: 35px;
    }

    .ftr-btm-right ul {
        gap: 10px;
    }

    .ftr-item h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .ftr-logo p, .ftr-item p, .ftr-item a, .ftr-btm p, .ftr-btm a {
        font-size: 12px;
    }

    .sticky-enquir {
        right: -50px;
    }

    .ftr-logo {
        text-align: center;
    }

    .ftr-txt p {
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .ftr-item {
        text-align: center;
    }

    .dropdown-btn, .sidenav a {
        font-size: 16px;
    }

    .sideNaviMob span img {
        filter: none;
    }

    .mobile-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 4;
        background: #fff;
        gap: 1px;
    }

    .mobile-bar-item {
        width: 33.3333%;
        text-align: center;
        font-size: 14px;
        color: #fff;
        padding: 10px;
        outline: none;
        border: none;
        height: 100%;
        display: block;
    }

    .mobile-bar-item img {
        padding-right: 5px;
        width: 20px;
    }

    .mobile-bar-item:nth-child(1) {
        background: var(--main-color);
    }

    .mobile-bar-item:nth-child(2) {
        background: #128C7E;
    }

    .mobile-bar-item:nth-child(3) {
        background: #453424;
    }

    .mobile-bar-item:nth-child(1) {
        background: var(--main-color);
        width: 100%;
        color: #fff;
        font-family: 'mysecondfont-Medium';
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    .main-btn {
        padding: 9px 16px;
    }

    .ftr-btm {
        background: #fff0;
    }

    .ftr-btm a:hover {
        color: var(--main-sub-color-color);
    }

    .scroll-element {
        scroll-margin: 150px 0 0 50px;
        scroll-margin-top: 120px;
    }

    .ftr-top-col .ftr-top-box {
        border: 1px solid #3d2f03 !important;
    }

    .section-btn {
        display: flex;
        justify-content: center;
    }

}

@media (max-width: 575px) {

    .container.custom-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .heading h2 {
        font-size: 26px;
    }

    .heading h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .ftr-item1 ul {
        width: 90%;
    }

    .ftr-logo img {
        width: 170px;
        margin-bottom: 20px;
    }

    .sticky-enquir {
        position: fixed;
        right: auto;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 2;
        transform: none;
    }

    .sticky-enquir .main-btn {
        width: 100%;
        font-family: 'mysecondfont-SemiBold';
    }

    button.btn-close {
        right: -10px;
        top: -10px;
        width: 30px;
        height: 30px;
    }

    .ftr-top {
        padding: 40px 0 20px;
    }

    .heading h3 {
        font-size: 24px;
        line-height: 35px;
    }

    .ftr-top-box h4 {
        font-size: 16px;
        line-height: 26px;
    }

    .ftr-top-box {
        padding: 30px 10px;
    }

    .ftr-logo p {
        width: 100%;
    }

    .ftr-logo {
        margin-bottom: 0px;
    }

    .social-media {
        margin-top: 0;
    }

    .ftr-item a {
        margin-bottom: 10px;
    }

    .ftr-item-head {
        margin-bottom: 10px;
    }
    
    .mob-brandbody{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        justify-content: space-between;
    }
    
    .sidenav .subMenuList a img {
        width: 80px;
        height: auto;
        margin: 10px;
    }

}