/* My First Font */
@font-face {
    font-family: 'myfirstfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/SpaceGrotesk-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/SpaceGrotesk-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/SpaceGrotesk-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/SpaceGrotesk-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/SpaceGrotesk-SemiBold.ttf) format('truetype');
}

/* My Second Font */
@font-face {
    font-family: 'mysecondfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/IBMPlexSans-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/IBMPlexSans-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/IBMPlexSans-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/IBMPlexSans-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/IBMPlexSans-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/IBMPlexSans-Thin.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/IBMPlexSans-ExtraLight.ttf) format('truetype');
}



html {
    min-height: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}
    

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    --main-color: #cea834;
    --txt-color: #fdd679;
    --main-sub-color: #082133;
    --main-dark-color: #242424;
    --main-light-color: #8D8D8D;
    --gray-color: #E8E8E8;
    --gradient-color: linear-gradient(90deg, #E8C97A, #C9A84C);
    --gradient-sub-color: linear-gradient(90deg, #C9A84C, #E8C97A);
    --h1HeadingFont: 'myfirstfont-Medium';
    --h2HeadingFont: 'myfirstfont-Light';
    --h3HeadingFont: 'myfirstfont-Light';
    --paraFont: 'myfirstfont-Light';
    --bodyFont: 'mysecondfont-Regular';
    --menuFont: 'myfirstfont-Medium';
    --menuFontSize: 16px;
    --menuLineHeight: 16px;
    --ease:cubic-bezier(.2,.7,.3,1);
}

* {
    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: 28px;
    color: var(--main-dark-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 ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }



@-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: #F3F3F3;
}

.bg-color-sub {
    background: #cea834;
}

.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: #fff;
    box-shadow: 0 19px 38px rgb(0 0 0 / 0%), 0 15px 12px rgb(0 0 0 / 6%);
    /* padding: 25px 0; */
}


header.site-header {
    position: absolute;
    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;
}



.dropdownMain {
    float: left;
    overflow: hidden;
}

.logobox a, .logobox a img {
    width: 150px;
    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; */
}

.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: 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: 14px;
    color: #fff;
    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: 1px;
    background: #CCAE65;
    transition: width .35s;
}

.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: 1;
    top: 0;
    right: 0;
    background: #fff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

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;
    border-bottom: 1px solid #3d2f03;
}

.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: #CCAE65 !important;
}

.nav-link-menu.active::after {
    width: 100%;
}



.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: 66px;
    line-height: 1.0;
    position: relative;
    font-family: var(--h1HeadingFont);
    color: #000;
    text-transform: capitalize;
    color: #08321D;
}

.heading h2 {
    font-size: 58px;
    line-height: 1.2;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: #000;
}

.heading h3 {
    font-size: 48px;
    line-height: 1.2;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: #000;
}

.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;
}

.text-white p {
    color: #fff;
}


/* Button Css */

.main-btn {
    padding: 12px 26px;
    background: linear-gradient(135deg, #C9A227 0%, #ffecba 50%, #C9A227 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content !important;
    position: relative;
    font-family: 'mysecondfont-Medium';
    font-size: 16px;
    transition: all ease-in-out 0.4s !important;
    cursor: pointer;
    outline: none;
    border: none;
    overflow: hidden;
    text-transform: uppercase;
    /* clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%); */
    transition: all ease-in-out 0.4s;
}

.main-btn span {
    position: relative;
    z-index: 3;
    transition: all ease-in-out 0.4s;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.main-btn:hover span {
    color: #000;
}

.main-btn:hover {
    background: linear-gradient(90deg, #C9A227 0%, #F5E6C0 40%, #E8C97A 60%, #C9A227 100%);
    background-size: 200% 100%;
    transform: translateX(4px);
}



.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: #000;
}

.ftr-top {
    padding: 80px 0 60px;
    /* border-bottom: 1px solid #092F1C; */
}

.ftr-logo img {
    width: 180px;
    margin-bottom: 20px;
}

.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: var(--main-color);
    margin-bottom: 10px;
    font-family: 'mysecondfont-SemiBold';
}

.ftr-txt p {
    width: 90%;
}

.ftr-logo p, .ftr-item p, .ftr-item a {
    font-size: 16px;
    color: #B7B7B7;
    font-family: 'mysecondfont-Regular';
    transition: all 0.4s ease-in-out;
    position: relative;
    margin-bottom: 10px;
}

.ftr-item a:hover {
    color: var(--main-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-color);
}

.ftr-item ul li a:hover::before {
    opacity: 1;
}

/* .ftr-item {
    padding: 0 20px;
} */

.social-media {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 0;
    background-color: #000;
    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: #000;
}

.ftr-btm {
    padding: 20px 0;
    border-top: 1px solid #3d2f03;
}

.ftr-btm p, .ftr-btm a, .ftr-right p {
    font-size: 14px;
    color: #BFBFBF;
    font-family: 'mysecondfont-Regular';
    transition: all 0.4s ease-in-out;
}

.ftr-btm a:hover {
    color: var(--main-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: center;
}

.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(--gradient-color);
    opacity: 1;
    border-radius: 50%;
    box-shadow: none;
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
}

button.btn-close:hover {
    opacity: 1;
    box-shadow: none;
}

.enquir-form h3 {
    color: var(--main-color);
}



.section-btn {
    margin-top: 40px;
}



/* Responsive Css Start */

@media (max-width: 1600px) {

    .container.custom-container {
        max-width: 1380px;
    }

    p, li {
        font-size: 16px;
        line-height: 26px;
    }

    .heading h2 {
        font-size: 50px;
    }

    .heading h3 {
        font-size: 40px;
    }

}

@media (max-width: 1440px) {

    .container.custom-container {
        max-width: 1240px;
    }

    .heading h2 {
        font-size: 46px;
    }

    .navbarMain a {
        margin: 0 14px;
    }

    .logobox a, .logobox a img {
        width: 130px;
    }

    .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: 13px;
    }

    .menu-img {
        padding-left: 30px;
    }

    .menu-item a {
        padding: 6px 10px !important;
    }

}

@media (max-width: 1399px) {

    .container.custom-container {
        max-width: 1180px;
    }

    p, li {
        font-size: 15px;
        line-height: 25px;
    }

    .heading h2 {
        font-size: 42px;
    }

    .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: 36px;
    }

    .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%;
    }

}

@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: 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 .accordion-item::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 70%;
        height: 2px;
        background: linear-gradient(45deg, #fff0, var(--main-color), #fff0);
    } */

    .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: #000;
        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;
    }

    .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(--main-color) !important;
        background: var(--gradient-color);
    }
    
}

@media (max-width: 991px) {

    .container.custom-container {
        max-width: 750px;
    }

    .main-btn {
        margin-left: auto;
        margin-right: auto;
        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: 30px;
    }

    .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;
    }

}

@media (max-width: 767px) {

    .container.custom-container {
        max-width: 560px;
    }

    p, li {
        font-size: 14px;
        line-height: 24px;
    }

    .padd-top-bottom {
        padding: 55px 0;
    }

    .padd-top {
        padding-top: 55px;
    }

    .padd-bottom {
        padding-bottom: 55px;
    }

    .inner-para {
        margin-bottom: 20px;
    }

    .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: 13px;
        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;
    }

    /* header.site-header {
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
    } */

    .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;
    }

    /* .site-footer {
        margin-bottom: 40px;
    } */

    .main-btn {
        font-size: 12px;
        padding: 9px 16px;
    }

    .ftr-btm {
        background: #fff0;
    }

    .ftr-btm p, .ftr-btm a, .ftr-right p {
        color: #727C77;
    }

    .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;
    }

}

@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: 230px;
    }

    .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%;
    }

}