/* My First Font */
@font-face {
    font-family: 'Prata-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/prata/Prata-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/inter/Inter_18pt-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/inter/Inter_18pt-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/inter/Inter_18pt-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/inter/Inter_18pt-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/inter/Inter_18pt-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/inter/Inter_18pt-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/inter/Inter_18pt-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/inter/Inter_18pt-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/inter/Inter_18pt-Thin.ttf) format('truetype');
}

@font-face {
    font-family: 'Raleway-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/raleway/Raleway-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'Raleway-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/raleway/Raleway-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Raleway-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/raleway/Raleway-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Raleway-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/raleway/Raleway-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'Raleway-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/raleway/Raleway-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Raleway-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/raleway/Raleway-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Raleway-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/raleway/Raleway-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Raleway-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/raleway/Raleway-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'Raleway-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/raleway/Raleway-Thin.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: #40B659;
    --main-sub-color: #DE5326;
    --main-blue-color: #0081C6;
    --black-color: #000;
    --dark-color: #333333;
    --menu-color: #333333;
    --main-dark-color: #005144;
    --text-color: #4A4A4A;
    --white-color: #fff;
    --light-bg-color: #FAFCFF;
    --h1HeadingFont: 'Raleway-Medium';
    --h2HeadingFont: 'Raleway-Medium';
    --h3HeadingFont: 'Raleway-Medium';
    --paraFont: 'Inter-Regular';
    --bodyFont: 'Inter-Regular';
    --menuFont: 'Inter-Bold';
}

* {
    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: 26px;
    color: var(--text-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: 1600px;
    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-main {
    background: var(--main-sub-color);
}

.bg-sub {
    background: var(--main-color);
}

.bg-black {
    background: var(--black-color);
}

.bg-light-color {
    background: var(--light-bg-color);
}

.bg-dark-color {
    background: var(--dark-color);
}

/* Background Image */

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.swiper-button-next {
    /* width: 40px;
    height: 40px;
    color: var(--black-color);
    background: var(--white-color); */
    right: 0;
}

.swiper-button-prev {
    /* width: 40px;
    height: 40px;
    color: var(--black-color);
    background: var(--white-color); */
    left: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-pagination {
  text-align: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  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: relative;
    z-index: 99;
    width: 100%;
    background-color: var(--white-color);
    padding: 10px 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;
}


.dropDownInnerMnb,
.navbarMain ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-direction: revert;
    flex-wrap: wrap;
    gap: 50px;
}



.dropdownMain {
    float: left;
    overflow: hidden;
}

.logobox a, .logobox a img {
    width: 180px;
    margin-top: 0;
    display: block;
}


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: var(--menu-color);
    position: relative;
    font-weight: 500;
    transition: 0.2s;
    text-decoration: none;
    /* padding-bottom: 25px; */
}

.dropdownMain .dropbtn.active,
.navbarMain a.active {
    color: var(--main-sub-color)
}

.menuListing ul {
    display: block;
    padding: 0;
}

.logobox a, .logobox a img {
    width: 170px;
    margin-top: -50px;
    display: block;
}




#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: 50px 0;
    border-top: 1px solid var(--themeColor);
}
.dropdownMain-content.full-megamenu {
    background: #1C2127;
    /* border-top: 2px solid var(--main-color); */
    /* border-bottom: 8px solid var(--themeColor); */
    /* position: relative; */
}

.dropdownMain-content.full-megamenu::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 25000px;
    z-index: -1;
    background: #1c2127;
    height: 100%;
    transform: translateX(-50%);
}

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: 0px;
}

.dropdown_menu-mega {
    -webkit-animation: growDown 500ms ease-in-out forwards;
    animation: growDown 500ms ease-in-out forwards;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    /* overflow: hidden; */
}


.navbarMain a {
    float: left;
    font-size: 18px;
    color: var(--menu-color);
    text-align: center;
    padding: 0 15px;
    font-family: var(--bodyFont);
}

header.site-header.navbar-fixed .navbarMain a, 
header.site-header.navbar-fixed .top-menu a,
header.site-header.navbar-fixed .navbarMain a i {
    color: var(--text-color);
}


.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(--main-sub-color);
}

.main-navigation ul li a {
    padding: 16px 0px;
    font-family: var(--menuFont);
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    position: relative;
}

/* .main-navigation ul li a:hover {
    color: var(--main-sub-color);
} */

/* .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;
}

.menu-others-sub h3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'myfirstfont-Regular';
    border-bottom: 1px solid #ffffff63;
    padding-bottom: 25px;
}

.navbarMain .menu-others-sub a {
    padding: 10px 0px;
    float: left;
    width: 100%;
    text-align: left;
    /* border-bottom: 1px solid #ffffff29; */
    color: #fff !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%;
    font-family: 'myfirstfont-Regular' !important;
}


.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;
} */

.navigationWrap {
    padding: 0px 0;
}

.navbar-fixed .navigationWrap {
    padding-bottom: 0;
    border-bottom: none;
    padding: 0;
}

.top-head {
    padding: 3px 0;
}

.top-head ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}

.top-head ul li {
    line-height: normal;
}

.top-head ul li a {
    color: var(--menu-color);
    text-transform: uppercase;
    font-family: var(--menuFont);
    font-size: 16px;
    line-height: 16px;
    transition: 0.2s;
    padding: 16px 0px;
    position: relative;
}

.top-head ul li:last-child {
    padding-right: 0;
}

/* .top-head ul li a:hover {
    color: var(--main-sub-color);
} */

/* .top-head .main-btn {
    margin-left: 15px;
} */

.main-navigation ul li a::after,
.top-head ul li a:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 0px;
    height: 4px;
    background: var(--main-sub-color);
    transition: all ease-in-out 0.4s;
}

.main-navigation ul li a:hover::after,
.top-head ul li a:not(:last-child):hover::after {
    width: 20px;
}

.main-navigation ul li a.active::after,
.top-head ul li a.active::after {
    width: 20px;
}


/* Heading H2, H3 and Inner Para Css */

.heading {
    margin-bottom: 20px;
}

.head-shape {
    margin-bottom: 30px;
}

.heading span {
    display: block;
    position: relative;
    font-family: var(--h2HeadingFont);
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 30px;
}

.heading h1, .heading h2 {
    font-size: 44px;
    line-height: 54px;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: #303843;
}

.heading h3 {
    font-size: 38px;
    line-height: 50px;
    position: relative;
    font-family: var(--h3HeadingFont);
    color: #000;
}

.inner-para {
    margin-bottom: 35px;
}

.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: var(--text-color);
}

.text-white p {
    color: #fff;
}

.text-white .top-head {
    color: #fff;
}

.common-h3 h3 {
    font-size: 25px;
    line-height: 35px;
    position: relative;
    font-family: var(--h3HeadingFont);
    margin-bottom: 10px;
}


/* Image Css */

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Button Css */

.main-btn {
    padding: 13px 22px !important;
    background-color: var(--main-sub-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    font-family: 'Inter-Medium';
    font-size: 16px;
    text-transform: uppercase;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    border: none;
    outline: none;
}

.main-btn span {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    transition: all ease-in-out 0.4s;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--main-dark-color);
    z-index: 0;
    opacity: 0.2;
    transition: all ease-in-out 0.4s;
}

.main-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0%;
    background-color: var(--main-dark-color);
    z-index: 0;
    opacity: 0.2;
    transition: all ease-in-out 0.4s;
}

.main-btn:hover::before {
    width: 100%;
    opacity: 1;
}

.main-btn:hover::after {
    width: 100%;
    opacity: 1;
}

.main-btn:hover span {
    color: var(--white-color);
}

.main-btn1::before, .main-btn1::after {
    background: var(--main-color);
}

.right-btn {
    display: flex;
    justify-content: flex-end;
}

.section-btn .main-btn {
    margin: 0 auto;
}



/* Shape top and bottom Css */

.shape-top {
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.shape-btm {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    z-index: 1;
}



/* Slick Slider Css */

.slick-dotted.slick-slider {
    margin-bottom: 0;
}
  
.slide-content {
    padding: 10px 20px 10px 0;
  }
  
  .slide-content .h1 {
    font-size: 62px;
  }
  
  .slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  
  .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 4px;
    padding: 0;
    cursor: pointer;
  }

  .slick-dots li button:before {
    content: '';
  }

  .slick-dots li button {
    width: 10px;
    height: 10px;
    background-color: var(--main-sub-color);
    border-radius: 50px;
    padding: 5px;
    opacity: 0.75;
    position: relative;
  }

  .slick-dots li.slick-active button {
    opacity: 1;
    width: 13px;
    height: 13px;
  }



/* Footer Start */

.ftr-top-shape {
    position: absolute;
    width: 100%;
    top: -28px;
    z-index: 3;
    height: 55px;
    object-fit: contain;
}

.top-ftr {
    background: #002133;
    padding-bottom: 60px;
}

.top-ftr-con img {
    width: 160px;
    margin-bottom: 30px;
}

.ftr-item h4 {
    font-size: 20px;
    font-family: 'Inter-SemiBold';
    color: var(--main-sub-color);
    margin-bottom: 15px;
}

.top-ftr .ftr-item:last-child {
    margin-top: 20px;
}

.ftr-item ul li a, .ftr-item p {
    color: #ffffff;
    font-family: 'Inter-Regular';
    font-size: 16px;
    line-height: 26px;
    transition: all ease-in-out 0.4s;
    position: relative;
}

.ftr-item-link ul li a::before {
    content: '-';
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all ease-in-out 0.4s;
}

.ftr-item-link ul li a:hover::before {
    opacity: 1;
}

.ftr-item-link ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.ftr-item1 ul li a::before {
    content: '';
}

.ftr-item ul li:not(:last-child) {
    margin-bottom: 10px;
}

.ftr-item1 ul li a {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
}

.ftr-item1 ul li a:hover {
    padding-left: 0;
}

.social-media {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.social-media li {
    margin-bottom: 0 !important;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #fff;
    padding: 7px;
    color: #002133 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ftr-item1 .social-icon {
    margin-right: 15px;
}

.ftr-item1 ul li:not(:last-child) {
    margin-bottom: 40px;
}

.ftr-item1 ul li:last-child a p {
    font-size: 26px;
    color: #fff;
}

.ftr-item-image {
    text-align: right;
}

.ftr-map {
    margin-bottom: 20px;
}

.ftr-shape {
    position: absolute;
    bottom: 5%;
    right: 0;
    width: 50%;
}

.btm-ftr {
    padding: 30px 0;
    background: #001B29;
}

.ftr-btm-con {
    text-align: center;
}

.ftr-btm-con p, .ftr-btm-con a {
    color: #fff;
    transition: all ease-in-out 0.4s;
    font-family: 'Inter-Regular';
    font-size: 16px;
    line-height: 26px;
}

.ftr-btm-con a:hover {
    color: var(--main-sub-color);
}

/* Footer End */

/* Enqury Section CSS Start */

.enqury-form {
    padding: 30px;
    background: var(--main-dark-color);
}

.btn-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    color: var(--main-color);
    background: #fff;
    opacity: 1;
    font-weight: 600;
}

.btn-close:hover {
    opacity: 1;
}

.enqury-form .form-control {
    color: #fff;
    box-shadow: none;
    padding: 11px 0;
    font-size: 16px;
    padding-left: 10px;
    background: transparent;
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #fff;
}

.enqury-form .form-control::placeholder {
    color: #fff;
}

/* Enqury Section CSS End */


/* Responsive Css Start */

@media (max-width: 1600px) {

    .container.custom-container {
        max-width: 1320px;
    }

    .heading h1, .heading h2 {
        font-size: 38px;
        line-height: 48px;
    }

    .heading span {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .common-h3 h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .heading h3 {
        font-size: 30px;
        line-height: 42px;
    }

    .main-navigation ul li a, .top-head ul li a {
        font-size: 14px;
        line-height: 14px;
    }

    .menu-others-sub h3 {
        font-size: 26px;
        line-height: 26px;
    }

    .navbarMain .menu-others-sub a {
        font-size: 12px;
    }

    .overview-sec .inner-para {
        width: 90%;
        margin: 0 auto;
    }

    .navbarMain ul, .top-head ul {
        gap: 40px;
    }

    .ftr-item ul li a, .ftr-item p,
    .ftr-btm-con p, .ftr-btm-con a {
        font-size: 15px;
        line-height: 25px;
    }

    .ftr-item h4 {
        font-size: 18px;
    }

}

@media (max-width: 1440px) {

    .container.custom-container {
        max-width: 1220px;
    }

    .heading h1, .heading h2 {
        font-size: 34px;
        line-height: 44px;
    }

}

@media (max-width: 1399px) {

    .container.custom-container {
        max-width: 1100px;
    }

    p, li {
        font-size: 16px;
        line-height: 26px;
    }

    .navbarMain .menu-others-sub a {
        font-size: 13px;
    }

    .menu-others-sub h3 {
        font-size: 23px;
        line-height: 23px;
        padding-bottom: 15px;
        margin-bottom: 10px;
    }

    .main-btn {
        font-size: 14px;
    }

    .main-navigation ul li a, .top-head ul li a {
        padding: 16px 0px;
    }

    .ftr-item p, .ftr-item ul li a, .ftr-btm-left p, .ftr-btm-left p a {
        font-size: 14px;
    }

    .ftr-item1 ul li:last-child a p {
        font-size: 23px;
    }

    .ftr-item h4 {
        font-size: 16px;
    }

    .main-navigation ul li a, .top-head ul li a {
        font-size: 14px;
        line-height: 14px;
    }

    .navbarMain ul, .top-head ul {
        gap: 20px;
    }

}

@media (max-width: 1299px) {

}

@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, .heading h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .heading span {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    .common-h3 h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .ftr-logo {
        text-align: center;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .top-ftr .inner-para {
        text-align: center;
    }

    .ftr-btm-left p {
        text-align: center;
    }

    .ftr-btm-right ul {
        justify-content: center;
    }
    
    .ftr-map {
        text-align: center;
    }

}

@media (max-width: 1024px) {

    .container.custom-container {
        max-width: 900px;
    }

    .top-head {
        display: none;
    }

    .logobox a, .logobox a img {
        width: 170px;
        margin-top: 0;
    }
    header.site-header.navbar-fixed .logobox img {
        width: 170px;
    }
    span.hamburgers {
        font-size: 29px;
        color: var(--themeColor);
    }


    /* header.site-header.navbar-fixed {
        top: -175px;
    } */

    .sidenav .quick-list.social-list {
        float: left;
        padding: 20px 15px;
    }

    header.site-header {
        padding: 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;
    }

    .onlyMobile {
        display: block;
        width: 100%;
    }

    .mobmenuList ul {
        padding: 30px 15px;
        float: left;
        width: 100%;
    }

    .navbarMain.onlyDesktop {
        display: none;
    }

    .mobileBoxLogo.InsideSideBar {
        padding: 20px 15px 0;
        float: left;
        width: 100%;
    }
    .mobileBoxLogo.InsideSideBar img {
        width: 180px;
    }    

    .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: 'Inter-SemiBold';
        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) {
        background-color: initial;
        box-shadow: none;
    }

    .mobmenuList .accordion .accordion-item {
        border: 0;
        position: relative;
        float: left;
        width: 100%;
        background: transparent;
        font-size: 16px;
        padding: 10px 0;
        /* border-bottom: 1px solid #00000054; */
    }

    .mobmenuList .accordion li a {
        padding: 8px 0;
        /* border-bottom: 1px solid #00000054; */
    }

    .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 20px !important;
        float: left;
        font-family: 'Inter-Medium';
        border: none !important;
    }

    a.closebtn {
        position: absolute;
        z-index: 999;
        width: 50px;
        right: 10px;
        top: 5px;
    }

    .dropdown-btn, .sidenav a {
        text-decoration: none;
        color: #000000;
        width: 100%;
        float: left;
        font-size: 16px;
        text-align: left;
        text-transform: uppercase;
        font-family: 'Inter-SemiBold';
    }

    .sidenav li a::after, .mobmenuList .accordion .accordion-item .accordion-button::before {
        content: url(../images/inner/leaf.png);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .sidenav ul li a, .mobmenuList .accordion .accordion-item .accordion-button {
        padding-left: 25px !important;
        position: relative;
    }

    .mobmenuList .accordion .accordion-body a::after {
        content: '';
    }

    .logobox {
        padding-bottom: 0px;
    }

    a.closebtn {
        text-align: right;
        color: var(--main-dark-color);
    }

    .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;
    }

    .mobSidebar .social-icon {
        background: var(--main-color);
        color: #fff !important;
    }

    .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;
    }

    .othersSubmenu h3 {
        font-size: 18px;
        color: #fff;
        font-family: 'myfirstfont-Bold';
        border-bottom: 1px solid #ffffff9c;
        padding: 15px 0;
        margin-bottom: 10px;
    }

    .menu-others-sub-list:not(:last-child) {
        margin-bottom: 20px;
    }

    .menu-others-sub-list {
        display: flex;
        flex-direction: column;
    }
    
}

@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-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;
    }

    .ftr-item ul li a, .ftr-item p, .ftr-btm-con p, .ftr-btm-con a {
        font-size: 12px;
        line-height: 22px;
    }

}

@media (max-width: 767px) {

    .container.custom-container {
        max-width: 560px;
    }

    .padd-top-bottom {
        padding: 55px 0;
    }

    .padd-top {
        padding-top: 55px;
    }

    .padd-bottom {
        padding-bottom: 55px;
    }

    p, li {
        font-size: 15px;
        line-height: 25px;
    }

    .heading {
        margin-bottom: 10px;
    }

    .heading .top-head::before, .heading .top-head::after {
        width: 120px;
    }

    .inner-para {
        margin-bottom: 20px;
    }

    .head-shape {
        margin-bottom: 16px;
        width: 80px;
    }

    .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;
    }

    .opening-con .accordion-button {
        padding: 15px 15px;
    }

    .heading span {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .ftr-item ul,
    .ftr-item p {
        text-align: center;
    }

    .top-ftr-con {
        text-align: center;
    }

    .ftr-shape {
        bottom: 0;
        width: 100%;
    }

    .main-btn {
        padding: 10px 18px !important;
        font-size: 12px;
    }

    .mobileBoxLogo.InsideSideBar img {
        width: 120px;
    }

    .social-media {
        justify-content: center;
    }

    .ftr-item ul li a, .ftr-item p, .ftr-btm-con p, .ftr-btm-con a {
        font-size: 13px;
        line-height: 23px;
    }

}

@media (max-width: 575px) {

    .container.custom-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .logobox a, .logobox a img {
        width: 110px;
    }

    .heading h1, .heading h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .heading .top-head::before, .heading .top-head::after {
        width: 100px;
    }

    .ftr-item1 ul {
        width: 90%;
    }

    .ftr-logo img {
        width: 150px;
    }

    .ftr-item2 {
        margin-top: 0 !important;
    }

}