/* My First Font */

@font-face {
    font-family: 'myfirstfont-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Poppins-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Poppins-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Poppins-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Poppins-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Poppins-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Poppins-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Poppins-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Poppins-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Poppins-Thin.ttf) format('truetype');
}

/* My Second Font */
@font-face {
    font-family: 'mysecondfont-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Thin.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-dark-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #a10015;
}

:root {
    --main-color: #EF3B51;
    --main-sub-color: #FFEE58;
    --main-dark-color: #C4192F;
    --main-light-color: #F2EFD2;
    --txt-color: #1B1B1B;
    --light-color: #F2EFD2;
    --white-color: #fff;
    --gradient-color: linear-gradient(90deg, #E8C97A, #C9A84C);
    --gradient-sub-color: linear-gradient(90deg, #C9A84C, #E8C97A);
    --h1HeadingFont: 'myfirstfont-Medium';
    --h2HeadingFont: 'myfirstfont-Medium';
    --h3HeadingFont: 'myfirstfont-Medium';
    --paraFont: 'mysecondfont-Regular';
    --bodyFont: 'mysecondfont-Regular';
    --menuFont: 'mysecondfont-Medium';
    --menuFontSize: 16px;
    --menuLineHeight: 16px;
    --ease:cubic-bezier(.2,.7,.3,1);
    --ease-premium: cubic-bezier(.16,1,.3,1);
    --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 {
    font-family: var(--bodyFont);
    font-size: 18px;
    line-height: 1.5;
    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-color);
}

.bg-color-light {
    background: #FFFEF2;
}

.bg-gray {
    background: #FAF6EC;
}

.bg-color-sub {
    background: #E2D13C;
}

/* 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 */

.main-content {
    padding-top: 110px;
}

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: fixed;
    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, .logobox a img {
    width: 100px;
    margin-top: 0;
    display: block;
    position: relative;
}


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; */
}




#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: 1px solid var(--themeColor);
}
.dropdownMain-content.full-megamenu {
    background: #fff;
}

.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: 10px 0 15px;
}

.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-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;
}

.nav-link-menu.active {
    color: #CCAE65 !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;
    /* background: #000; */
    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: 50px;
    display: flex;
    align-items: center;
}

.menu-img img {
    width: 100%;
}

.menu-para p {
    color: #fff;
    font-family: 'mysecondfont-Medium';
}

header.site-header.navbar-fixed .menu-txt a {
    color: #fff;
}

.bg-menu-color {
    background: #000;
}

.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: 20px;
}

.heading h1 {
    font-size: 46px;
    line-height: 1.0;
    position: relative;
    font-family: var(--h1HeadingFont);
    color: var(--txt-color);
    letter-spacing: .2px;
}

.heading h2 {
    font-size: 36px;
    line-height: 1.2;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: var(--txt-color);
}

.heading h3 {
    font-size: 30px;
    line-height: 1.1;
    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-SemiBold';
    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: 50px;
}

.main-btn {
    background: var(--main-color);
    /* border: 1px solid var(--main-color); */
    color: var(--white-color);
    box-shadow: var(--shadow-soft);
}

.main-btn.main-btn1 {
    background: var(--main-sub-color);
    /* border: 1px solid var(--main-sub-color); */
    color: var(--main-color);
    box-shadow: var(--shadow-soft);
}

.main-btn.main-btn2 {
    background: var(--main-color);
    /* border: 1px solid var(--main-sub-color); */
    color: var(--white-color);
    box-shadow: var(--shadow-soft);
}

.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-sub-color);
    color: var(--main-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.main-btn.main-btn1:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.main-btn.main-btn2:hover {
    background: var(--white-color);
    color: var(--main-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;
}



.head-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--main-color);
    font-size: 18px;
    position: relative;
    transition: 0.35s ease;
    font-family: 'myfirstfont-SemiBold';
}

.head-btn:hover {
    color: var(--main-dark-color);
    letter-spacing: 1px;
}

.head-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--main-dark-color);
    border-radius: 10px;
    transition: 0.4s;
}

.head-btn.head-btn1::after {
    background: var(--white-color);
}

.head-btn:hover::after {
    width: 100%;
}

.arrow {
    font-size: 22px;
    line-height: 1;
    transition: 0.35s ease;
}

.head-btn:hover .arrow {
    transform: translateX(5px);
}

/* Text Animation */
.text {
    transition: 0.35s;
}

.head-btn:hover .text {
    letter-spacing: 1px;
}

.head-top-btn {
    text-align: right;
}






.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: #262624;
    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: #262624;
}

.ftr-wrap {
    flex-wrap: wrap;
}

.ftr-col1 {
    width: 20%;
}

.ftr-col2 {
    width: 17%;
}

.ftr-col3 {
    width: 29%;
}

.ftr-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid #5c897548;
}

.ftr-logo img {
    width: 150px;
    margin-bottom: 50px;
}

.ftr-item:not(:last-child) {
    margin-bottom: 10px;
}

.ftr-item h4 {
    font-size: 16px;
    color: #A3A3A3;
    margin-bottom: 0px;
    font-family: 'myfirstfont-Regular';
    text-transform: uppercase;
}

.ftr-item-head {
    margin-bottom: 20px;
}

.ftr-item1 ul {
    column-count: 2;
    column-gap: 0px;
}

.ftr-logo p, .ftr-item p, .ftr-item a {
    font-size: 16px;
    color: #FFFFFF;
    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-start;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: var(--main-sub-color);
    padding: 5px;
    color: var(--main-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-color);
    color: var(--white-color);
}

.ftr-btm {
    padding: 20px 0;
}

.ftr-left a, .ftr-left p, .ftr-right p, .ftr-right a {
    font-size: 16px;
    color: #7e7e7e;
    font-family: 'mysecondfont-Regular';
    transition: all 0.4s ease-in-out;
}

.ftr-right 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: 10px;
}

.ftr-item a img {
    width: 25px;
    margin-right: 10px;
}

.ftr-item p:not(:last-child) {
    margin-bottom: 10px;
}

/* 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);
}





/* 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;
}




/* Top Head CSS */
.menu-con {
    width: 70%;
}

.top-navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    padding: 15px 0 5px;
}

.location {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-info i {
    color: var(--main-color);
    font-size: 20px;
    margin-top: 2px;
}

.location-info small {
    display: block;
    color: #1B1B1B;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'mysecondfont-Medium';
}

.location-info span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    font-family: 'mysecondfont-Medium';
}

.detect-btn {
    border: none;
    background: var(--main-color);
    color: #fff;
    height: 35px;
    padding: 0 18px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.35s;
    font-size: 14px;
    font-family: 'mysecondfont-Bold';
}

.search-box {
    flex: 1;
    position: relative;
}

.search-box input {
    width: 100%;
    height: 40px;
    border: 1px solid #666;
    border-radius: 50px;
    padding: 0 55px 0 22px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
    font-family: 'mysecondfont-Medium';
    color: #333;
}

.search-box input::placeholder {
    color: #666;
}

.search-box input:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 4px rgba(239, 60, 85, 0.12);
}

.search-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--main-color);
    font-size: 17px;
    cursor: pointer;
}

.right-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.right-menu a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: 0.3s;
    font-family: 'mysecondfont-Medium';
}

.right-menu a:hover {
    color: var(--main-color);
}

.right-menu i {
    color: var(--main-color);
    font-size: 18px;
}




/* Responsive Css Start */

@media (max-width: 1600px) {

    .container.custom-container {
        max-width: 1380px;
    }

    p, li, .main-btn, .modal-btn {
        font-size: 16px;
        line-height: 26px;
    }

    .heading h2 {
        font-size: 30px;
    }

}

@media (max-width: 1440px) {

    .main-content {
        padding-top: 110px;
    }

    .container.custom-container {
        max-width: 1240px;
    }

    .navbarMain a {
        margin: 0 14px;
    }

    .logobox a, .logobox a img {
        width: 94px;
    }

    .ftr-top-box h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .navbarMain a {
        font-size: 14px;
    }

    .location-info small {
        font-size: 10px;
    }

    .detect-btn {
        font-size: 12px;
        height: 32px;
    }

    .search-box input {
        height: 32px;
        font-size: 13px;
    }

    .location-info span, .right-menu a {
        font-size: 13px;
    }

    .menu-img {
        padding-left: 30px;
    }

    .menu-item a {
        padding: 6px 10px !important;
    }

    .ftr-logo p, .ftr-item p, .ftr-item a, .ftr-left a, .ftr-left p, .ftr-item h4, .ftr-right p, .ftr-right a  {
        font-size: 14px;
    }

    .ftr-logo p {
        width: 84%;
    }

}

@media (max-width: 1399px) {

    .container.custom-container {
        max-width: 1180px;
    }

    p, li, .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;
    }

}

@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: 26px;
    }

    .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, .ftr-item h4, .ftr-right p, .ftr-right a  {
        font-size: 12px;
    }

    .ftr-logo p {
        width: 90%;
    }

}

@media (max-width: 1024px) {

    .logobox a, .logobox a img {
        width: 80px;
    }

    header.site-header.navbar-fixed .logobox img {
        width: 80px;
    }

    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;
        padding-bottom: 5px;
    }

    .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: var(--main-color);
        margin-top: 10px;
    }

    .mobmenuList .accordion .accordion-item .accordion-button {
        padding: 0;
        font-family: 'mysecondfont-Medium';
        background: transparent;
        color: #000;
        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: 'myfirstfont-Medium';
        color: #fff;
    }

    a.closebtn {
        position: absolute;
        z-index: 999;
        width: 50px;
        right: 10px;
        top: 5px;
    }

    .dropdown-btn,
    .sidenav a {
        text-decoration: none;
        color: var(--txt-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);
    }

    .location-info span, .right-menu a {
        font-size: 12px;
    }

    .location-info small {
        font-size: 8px;
        margin-bottom: -5px;
    }

    .detect-btn {
        font-size: 11px;
        height: 28px;
        padding: 0 12px;
    }

    .search-box input {
        height: 28px;
        font-size: 12px;
        padding: 0 35px 0 10px;
    }

    .search-box button {
        right: 0;
        font-size: 15px;
    }

    .top-navbar {
        gap: 15px;
    }

    .location, .right-menu {
        gap: 10px;
    }

    .main-content {
        padding-top: 100px;
    }
    
}

@media (max-width: 991px) {

    .container.custom-container {
        max-width: 750px;
    }

    .main-btn {
        padding: 5px 20px;
    }

    .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: 25px;
    }

    header.site-header.navbar-fixed {
        padding: 0px 0;
    }

    .social-media {
        justify-content: center;
    }

    /* .ftr-item-head {
        text-align: center;
    } */

    .section-btn {
        justify-content: center;
        margin-top: 40px;
    }

    .right-menu a {
        gap: 4px;
    }

    .humble-txt .inner-para {
        width: 100%;
    }

    .ftr-col1 {
        width: 100%;
    }

    .ftr-col2 {
        width: 22%;
    }

    .ftr-col3 {
        width: 34%;
    }

    .social-media {
        margin-top: 30px;
    }

    .ftr-left {
        justify-content: center;
    }

}

@media (max-width: 767px) {

    .container.custom-container {
        max-width: 560px;
    }

    p, li, .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-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;
    }

    span.hamburgers, .sideNaviMob a, .search-btn {
        font-size: 20px;
        color: var(--main-color);
        margin-left: 10px;
    }

    .top-navbar {
        gap: 8px;
    }

    .location-info {
        gap: 5px;
    }

    .location-info i {
        font-size: 15px;
    }

    .logobox a, .logobox a img {
        width: 75px;
    }

    .main-content {
        padding-top: 80px;
    }

    .search-box input {
        height: 50px;
        font-size: 16px;
        padding: 0 35px 0 10px;
    }

    .search-box button {
        right: 0;
        font-size: 22px;
    }

    .top-navbar {
        padding: 10px 0 5px;
    }

    .detect-btn {
        font-size: 12px;
        height: 28px;
        padding: 0 12px;
    }

    .location-info small {
        font-size: 9px;
    }

    .location-info i {
        font-size: 17px;
    }

    /* Search Icon */
    .search-btn {
        outline: none;
        border: none;
        background: #fff0;
    }

    .search-btn:focus {
        outline: none;
        border: none;
        background: #fff0;
    }

    .search-btn i {
        font-size: 20px;
        color: var(--main-color);
    }

    /* Popup */
    .search-popup{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.45);
        display:flex;
        justify-content:center;
        align-items:flex-start;
        padding-top:120px;
        opacity:0;
        visibility:hidden;
        transition:.35s;
    }

    .search-popup.active {
        opacity: 1;
        visibility: visible;
    }

    /* Search Box */
    .search-box{
        width:min(90%,500px);
        background:#fff;
        border-radius:50px;
        display:flex;
        align-items:center;
        overflow:hidden;
        transform:translateY(-40px) scale(.9);
        transition:.35s;
        box-shadow:0 20px 50px rgba(0,0,0,.18);
    }

    .search-box input{
        width:100%;
        height:60px;
        border:none;
        outline:none;
        padding:0 22px;
        font-size:18px;
    }

    .search-box button{
        width:65px;
        height:60px;
        border:none;
        background:#fff;
        color:#ff2d2d;
        font-size:22px;
        cursor:pointer;
    }

    /* Close */
    .close-btn {
        position: absolute;
        top: 14px;
        right: 22px;
        width: 30px;
        height: 30px;
        border: none;
        border-radius: 50%;
        background: #fff;
        font-size: 17px;
        cursor: pointer;
        transition: .3s;
    }

    .close-btn:hover{
        transform:rotate(90deg);
    }

}

@media (max-width: 575px) {

    .container.custom-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .heading h2 {
        font-size: 20px;
    }

    .heading h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .ftr-item1 ul {
        width: 90%;
    }

    .ftr-logo img {
        width: 170px;
        margin-bottom: 30px;
    }

    .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-col2 {
        width: 50%;
    }

    .ftr-col3 {
        width: 100%;
    }

    .ftr-item a {
        margin-bottom: 0;
    }

    .ftr-item-head {
        margin-bottom: 10px;
    }

}