/* My First Font */
@font-face {
    font-family: 'myfirstfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/OldStandardTT-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/OldStandardTT-Bold.ttf) format('truetype');
}

/* My Second Font */
@font-face {
    font-family: 'mysecondfont-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Onest-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Onest-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Onest-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Onest-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Onest-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Onest-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Onest-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Onest-Thin.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Onest-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: #233B7A;
    --main-sub-color: #AE6B28;
    --main-dark-color: #000;
    --main-light-color: #FFEFCF;
    --gray-color: #E8E8E8;
    --h1HeadingFont: 'myfirstfont-Regular';
    --h2HeadingFont: 'myfirstfont-Regular';
    --h3HeadingFont: 'myfirstfont-Regular';
    --paraFont: 'myfirstfont-Light';
    --bodyFont: 'mysecondfont-Light';
    --menuFont: 'mysecondfont-Medium';
    --menuFontSize: 16px;
    --menuLineHeight: 16px;
}

* {
    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%;
    /*cursor: none;*/
}

html,
body {
    overflow-x: hidden;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.cursor-ring {
    position: fixed;
    width: 35px;
    height: 35px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
    z-index: 9998;
}

.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;
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    height: auto;
}


.scroll-margin-top {
    scroll-margin-top: 150px;
}


@-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-sub {
    background: #AE6B28;
}

.bg-color-dark {
    background: #231F20;
}

/* 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: 3%;
}

.swiper-button-next {
    right: 3%;
}

.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: 100;
    position: fixed;
    width: 100%;
    background: #fff;
    box-shadow: 0 19px 38px rgb(0 0 0 / 0%), 0 15px 12px rgb(0 0 0 / 6%);
}


header.site-header {
    position: absolute;
    z-index: 99;
    width: 100%;
    background-color: var(--white-color);
    padding: 15px 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);
}


.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: 180px;
    margin-top: 0;
    display: block;
    position: relative;
}

/* .logobox a::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -75px;
    width: 330px;
    height: 80px;
    background: radial-gradient(#737780, transparent);
    border-radius: 100px;
    filter: blur(15px);
    z-index: -1;
} */

header.site-header.navbar-fixed .logobox a::after {
    opacity: 0;
}


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;
    left: 0%;
    top: 100%;
    padding: 30px;
    border-top: 1px solid var(--themeColor);
}
.dropdownMain-content.full-megamenu {
    background: #f8f8f8;
    border-top: 2px solid var(--main-color);
    /* border-bottom: 8px solid var(--themeColor); */
    /* position: relative; */
}

.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: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.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 a {
    float: left;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin: 0 25px;
    font-family: var(--menuFont);
    text-transform: uppercase;
}

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: #fffdf9;
    -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 {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
} */

.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;
}

/* .navbarMain .menu-others-sub a::before {
    content: '';
    background: var(--themeSecColor);
    width: 6px;
    height: 6px;
    position: absolute;
    top: 35px;
    left: 0;
} */

.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);
    /* 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;
}


.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-color) !important;
    border-bottom: 2px solid var(--main-color);
}

/* .nav-link-menu.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 122px;
    background: var(--main-color);
    z-index: -1;
    transform: translateY(-50%);
} */


/* Heading H2, H3 and Inner Para Css */

.heading {
    margin-bottom: 20px;
}

.heading h1 {
    font-size: 64px;
    line-height: 84px;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: #000;
    text-transform: capitalize;
}

.heading h2 {
    font-size: 44px;
    line-height: 54px;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: #000;
    text-transform: capitalize;
}

.heading h3 {
    font-size: 34px;
    line-height: 44px;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: #000;
    text-transform: capitalize;
}

.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: 15px 30px;
    background-color: #233B7A;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    color: #fff;
    position: relative;
    font-family: 'mysecondfont-Regular';
    font-size: 16px;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.main-btn span {
    position: relative;
    z-index: 3;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #28335b;
    z-index: 0;
    transition: all ease-in-out 0.4s;
}

.main-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0%;
    background-color: #28335b;
    z-index: 0;
    transition: all ease-in-out 0.4s;
}

.main-btn:hover::before,
.main-btn:hover::after {
    width: 100%;
}

.main-btn:hover {
    color: #fff;
}

.main-btn span img {
    animation: animate 1.5s infinite;
    margin-right: -5px;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: translateX(0px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(10px);
    }
}



.scroll-element {
    scroll-margin: 150px 0 0 50px;
    scroll-margin-top: 200px;
}



/* Footer Start */

.site-footer {
    background: #917355;
}

.ftr-logo img {
    width: auto;
}

.ftr-item:not(:last-child) {
    margin-bottom: 10px;
}

.ftr-item h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.ftr-txt p {
    width: 90%;
}

.ftr-item p, .ftr-item a {
    font-size: 16px;
    color: #fff;
    font-family: 'mysecondfont-Light';
    transition: all 0.4s ease-in-out;
}

.ftr-item a:hover {
    color: var(--main-light-color);
}

.ftr-item .fa-solid {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.social-media {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 0;
    background-color: var(--main-light-color);
    padding: 7px;
    color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-dark-color) !important;
}

.ftr-btm {
    padding: 25px 0;
    background: #816243;
}

.ftr-btm p, .ftr-btm a, .ftr-right p {
    font-size: 16px;
    color: #fff;
    font-family: 'mysecondfont-Light';
    transition: all 0.4s ease-in-out;
}

.ftr-btm a:hover {
    color: var(--main-color);
}

.ftr-left {
    text-align: center;
}

.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: -57px;
    top: 45%;
    transform: translateY(-55%) rotate(-90deg);
    z-index: 2;
    background: #D7B186;
    color: #000;
}

.fixed-btn:hover {
    color: #fff;
}

.sticky-icon {
    position: fixed;
    right: 0;
    bottom: 35%;
    transform: translateY(60%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-icon img {
    width: 50px;
}

.enquiryNow {
    position: fixed;
    top: 50%;
    right: -95px !important;
    transform: translateY(-50%) rotate(-90deg);
    box-shadow: 0px 0px 10px 0px #0818433d;
    background: #fff;
    z-index: 5;
}

.enquiry-btn {
    display: flex;
    justify-content: center;
    gap: 0px;
    align-items: center;
}

.enquiry-btn button {
    outline: none;
    border: none;
    background: #f39f5b;
    color: #000;
    text-transform: uppercase;
    font-family: 'mysecondfont-Medium';
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 16px;
}

.enquiryDetails {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiryIcon {
    padding: 8px;
    display: block;
}

.whatsenq {
    border-right: 1px solid #233b7a80;
}


/* Responsive Css Start */

@media (max-width: 1600px) {

    .container.custom-container {
        max-width: 1380px;
    }

    p, li, .navbarMain a {
        font-size: 17px;
        line-height: 27px;
    }
    
    .heading h1 {
        font-size: 54px;
        line-height: 64px;
    }

}

@media (max-width: 1440px) {

    .container.custom-container {
        max-width: 1240px;
    }

}

@media (max-width: 1399px) {

    .container.custom-container {
        max-width: 1180px;
    }

    p, li, .navbarMain a {
        font-size: 16px;
        line-height: 26px;
    }

    .main-btn {
        font-size: 14px;
    }

    .heading h1 {
        font-size: 48px;
        line-height: 58px;
    }

    .heading h2 {
        font-size: 38px;
        line-height: 48px;
    }

    .heading h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .ftr-item h4 {
        font-size: 16px;
    }

    .main-navigation ul li a, .top-head ul li a {
        font-size: 14px;
        line-height: 14px;
    }

    .ftr-item p, .ftr-item a, .ftr-btm p, .ftr-btm a {
        font-size: 14px;
    }

    .navbarMain a {
        font-size: 14px;
        margin: 0 15px;
    }

}

@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 h1 {
        font-size: 44px;
        line-height: 54px;
    }

    .heading h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .heading h3 {
        font-size: 24px;
        line-height: 34px;
    }

}

@media (max-width: 1024px) {

    .top-head {
        display: none;
    }

    .logobox a, .logobox a img {
        width: 140px;
    }

    header.site-header.navbar-fixed .logobox img {
        width: 140px;
    }

    span.hamburgers {
        font-size: 29px;
        color: var(--themeColor);
    }

    .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: 50px 15px 0;
        float: left;
        width: 100%;
    }
    .mobileBoxLogo.InsideSideBar img {
        width: 140px;
    }    

    .mobmenuList .accordion .accordion-body {
        float: left;
        padding: 10px;
        width: 100%;
        background: #00000052;
        margin-top: 10px;
    }

    .mobmenuList .accordion .accordion-item .accordion-button {
        padding: 0;
        font-family: 'myfirstfont-Regular';
        background: transparent;
        color: #fff;
        font-size: 20px;
        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: #fff;
        background-color: initial;
        box-shadow: none;
        font-weight: 700;
    }

    .mobmenuList .accordion .accordion-item {
        border: 0;
        position: relative;
        float: left;
        width: 100%;
        background: transparent;
        font-size: 15px;
        padding: 10px 0;
        border-bottom: 1px solid #3d3d3d;
    }

    .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: 16px;
        position: relative;
        padding: 6px 10px;
        float: left;
        font-family: 'myfirstfont-Regular';
    }

    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: 5px 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: #fff !important;
        background-color: var(--main-dark-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: 20px;
    }

    .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;
    }

}

@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;
    }

    .heading h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .heading h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .heading h3 {
        font-size: 20px;
        line-height: 30px;
    }

    /* .heading h3 {
        font-size: 20px;
        line-height: 30px;
    } */

    .heading {
        margin-bottom: 10px;
    }

    .inner-para {
        margin-bottom: 20px;
    }

    .ftr-item1 ul li:not(:last-child) {
        margin-bottom: 12px;
    }

    /* .ftr-btm-right ul {
        justify-content: center;
    }

    .ftr-item h4 {
        text-align: center;
    }

    .ftr-item1 {
        text-align: center;
    }

    .ftr-item1 ul {
        display: inline-block;
        text-align: left;
        width: 60%;
        margin-bottom: 40px;
    } */

    .top-ftr {
        padding-bottom: 35px;
    }

    .ftr-btm-right ul {
        gap: 10px;
    }

    .ftr-item h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .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: 14px;
    }

    header.site-header {
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
    }

    .sideNaviMob span img {
        filter: none;
    }

    header.site-header .whiteLogo {
        display: none;
    }

    header.site-header .blackLogo {
        display: block;
    }

    .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: #816243;
    }

    .mobile-bar-item:nth-child(2) {
        background: #128C7E;
    }

    .mobile-bar-item:nth-child(3) {
        background: #453424;
    }

    .site-footer {
        margin-bottom: 42px;
    }

}

@media (max-width: 575px) {

    .container.custom-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .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';
    }

    .heading h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .heading h2 {
        font-size: 25px;
        line-height: 35px;
    }

}