/* My First Font */
@font-face {
    font-family: 'myfirstfont-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Lato-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Lato-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Lato-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Lato-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Lato-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: #15A74D;
    --main-sub-color: #209BD6;
    --black-color: #000;
    --dark-color: #1F271C;
    --main-dark-color: #3D3E46;
    --text-color: #555;
    --white-color: #fff;
    --light-bg-color: #FAFCFF;
    --h1HeadingFont: 'myfirstfont-Bold';
    --h2HeadingFont: 'myfirstfont-Bold';
    --h3HeadingFont: 'myfirstfont-Bold';
    --paraFont: 'myfirstfont-Regular';
    --bodyFont: 'myfirstfont-Regular';
    --menuFont: 'myfirstfont-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, .heading .top-head, .bnr-txt .sub-txt {
    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: 1440px;
    position: relative;
    z-index: 2;
}

.container.header-container {
    max-width: 1690px;
    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;
}

.colorgreen{
    color: var(--main-color);
}

.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.inner-headermenu.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: 0px 0;
    top: 0;
    left: 0;
}

header.site-header.inner-headermenu {
    position: relative;
}

.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;
}



.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(--text-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) !important;
}

.top-head ul li a.active {
    color: var(--main-sub-color) !important;
}

.navbarMain a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    /* height: 2px; */
    height: 1px;
    background: var(--main-sub-color);
    transition: .35s;
}

.navbarMain a:hover:after {
    width: 100%;
}

.menuListing ul {
    display: block;
    padding: 0;
}

.logobox a, .logobox a img {
    width: 220px;
    margin-top: 0px;
    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: 85%;
    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 .row {
    width: 100%;
}

.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(--text-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: #555555;
}

.main-navigation ul li a {
    padding: 40px 16px;
    font-family: var(--menuFont);
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
}

.main-navigation ul li a:hover {
    color: var(--main-sub-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;
}

.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: 16px 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;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
}

.navbarMain .full-megamenu .menu-others-sub a img {
    width: 35px;
    margin-right: 10px;
}


.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;
}

.top-head ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-head ul li a {
    color: var(--text-color);
    text-transform: uppercase;
    font-family: var(--menuFont);
    font-size: 16px;
    line-height: 16px;
    transition: 0.2s;
    padding: 16px 16px;
}

.top-head ul li:last-child a {
    padding-right: 0;
}

.top-head ul li a i {
    color: var(--main-color);
    margin-right: 5px;
}

/* .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);
}

.top-head ul li a:hover {
    color: var(--main-sub-color);
}


/* Heading H2, H3 and Inner Para Css */

.heading {
    margin-bottom: 20px;
}

.heading .top-head {
    color: var(--main-dark-color);
    text-transform: uppercase;
    position: relative;
    font-size: 18px;
    line-height: 18px;
    width: fit-content;
    margin: 0 auto 15px;
    display: block;
}

.heading .top-head::before,
.heading .top-head::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 1px;
}

.heading .top-head::before {
    background: linear-gradient(90deg, transparent, #C3C3C3);
    right: 110%;
}

.heading .top-head::after {
    background: linear-gradient(90deg, #C3C3C3, transparent);
    left: 110%;
}

.heading h2 {
    font-size: 40px;
    line-height: 50px;
    position: relative;
    font-family: var(--h2HeadingFont);
    color: #303843;
}

.heading h3 {
    font-size: 38px;
    line-height: 50px;
    position: relative;
    font-family: var(--h3HeadingFont);
    color: #000;
}

.heading h2 span {
    color: var(--main-color);
}

.heading h3 span {
    color: var(--main-color);
}

.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(--main-dark-color);
}

.text-white p {
    color: #fff;
}

.text-white .top-head {
    color: #fff;
}


/* Button Css */

.main-btn {
    padding: 15px 30px;
    background-color: #E0E6EE;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    font-family: 'myfirstfont-Bold';
    font-size: 16px;
    text-transform: uppercase;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    outline: none;
    border: none;
}

.main-btn:focus {
    outline: none;
    border: none;
}

.main-btn span {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-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-sub-color);
    z-index: 0;
    opacity: 0;
    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-sub-color);
    z-index: 0;
    opacity: 0;
    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 {
    background: #fff;
    color: var(--text-color);
}*/

.main-btn1::before {
    background-color: var(--main-color);
}

.main-btn1::after {
    background-color: var(--main-color);
}

.main-btn2 {
    background-color: var(--black-color);
}

.main-btn2:hover {
    color: var(--white-color);
}

.main-btn2:hover::before {
    background-color: var(--main-color);
}

.main-btn3 {
    background-color: var(--black-color);
}

.main-btn3::before {
    background-color: var(--white-color);
}

.main-btn3:hover {
    color: var(--main-color);
}

.main-btn4 {
    background-color: var(--main-color);
}

.main-btn4 span {
    color: #fff;
}

.main-btn4::before, .main-btn4::after {
    background-color: var(--main-dark-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;
  }


  /* New Menu */
/* ==========================
   Right Side Menu
========================== */

.sideMenuOverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.45);
    visibility: hidden;
    opacity: 0;
    transition: .35s;
    z-index: 9998;
}

.sideMenuOverlay.active {
    visibility: visible;
    opacity: 1;
}

.sideMenu {
    position: fixed;
    top: 0;
    right: -23%;
    width: 23%;
    max-width: 100%;
    height: 100vh;
    background: #1582B7;
    box-shadow: -8px 0 25px rgba(0, 0, 0, .12);
    transition: .35s ease;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px 25px 0 35px;
}

.sideMenu.active {
    right: 0;
}

.sideMenuHeader {
    display: flex;
    justify-content: end;
    align-items: center;
    /* padding: 28px 30px; */
    /* border-bottom: 1px solid #ececec; */
}

.menubtn-box {
    padding: 50px 0;
}

.sideMenuHeader h3 {
    margin: 0;
    font-family: var(--menuFont);
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    color: #fff;
}

.sideMenuHeader span {
    cursor: pointer;
    font-size: 28px;
    transition: .3s;
    color: #fff;
}

.sideMenuHeader span:hover {
    transform: rotate(90deg);
}

.sideMenuList {
    list-style: none;
    padding: 0;
    margin: 0;
}


.main-navigation .sideMenu ul.sideMenuList li a{
    color: #fff !important;
    width: 100%;
    text-align: left;
}   

.sideMenuList li {
    /* border-bottom: 1px solid #f3f3f338; */
    width: 100%;
}

.sideMenuList li:last-child {
    border-bottom: none;
}

.sideMenuList li a {
    display: block;
    padding: 15px 0px !important;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: .3s;
}

.sideMenuList li a:hover {
    background: #209bd6;
    color: #ffffff;
    padding-left: 20px !important;
}

.main-navigation ul.sideMenuList li a:hover {
    color: #fff;
    background: transparent;
}

.main-navigation ul.sideMenuList li a:hover:after {
    width: 0%;
}

body.menu-open {
    overflow: hidden;
}

.navbarMain a#openSideMenu:after {
    width: 0;
}
.main-navigation .sideMenu ul.sideMenuList li .accordion-header .accordion-button {
    padding: 15px 0px;
    font-family: var(--menuFont);
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    color: #fff;
    transition: transform 0.3s ease;
    transition: .3s;
}

.main-navigation .sideMenu ul.sideMenuList li .accordion-header .accordion-button:hover{
    padding-left: 20px;
}

.sideMenu ul.sideMenuList li .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);
    /* background-color: var(--main-color); */
    transform: rotate(180deg);
}

.sideMenu ul.sideMenuList li .accordion-button::after {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.sideMenu ul.sideMenuList li .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.sideMenu ul.sideMenuList li .accordion-button:not(.collapsed) {
    background: transparent;
}

.subMenuList.othersSubmenu {
    padding: 20px 20px;
    width: 100%;
    float: left;
    background: #2c90c0;
    border-top: 1px solid #459ac4;
}

.main-navigation .sideMenu ul.sideMenuList li .menu-others-sub-list a {
    color: #fff !important;
    width: 100%;
    text-align: left;
    padding: 14px 15px;
    font-size: 14px;
    line-height: 14px;
    transition: .3s;
}

.main-navigation .sideMenu ul.sideMenuList li .menu-others-sub-list a:hover{
    background: transparent !important;
    padding-left: 20px;
}

.main-navigation ul li a#openSideMenu i {
    font-size: 20px;
    color: var(--main-color);
}

.navbarMain a#openSideMenu:hover:after {
    width: 0;
}

.menusocial-icon ul li a img{
     width: 25px;
}

.ftr-btm-right.menusocial-icon ul {
    justify-content: center;
}
[id] {
    scroll-margin-top: 84px
}
.scroll-margin-top{
    scroll-margin-top: 150px;
}
.policylist {
    width: 100%;
    float: inline-end;
}

.policylist ul {
    justify-content: flex-start;
}

.policylist ul li{
    flex: 0 0 25%;
}

.policylist ul li a {
    color: #fff !important;
    padding: 28px 0px !important;
    font-size: 14px;
    text-transform: capitalize;
}

.policylist ul li a:hover{
    color: #fff !important;
}

.policylist ul li a img{
    width: 20px;
}

.policylist ul.socialmenu li{
    flex: 0 0 12%;
}

ul.socialmenu {
    padding-top: 30px;
}

.menubtn-box .box-txt h3 {
    font-size: 24px;
    line-height: 34px;
    font-family: 'myfirstfont-Regular';
    margin-bottom: 30px;
}

.menubtn-box a.main-btn.main-btn1{
    padding: 15px 30px;
    background-color: #E0E6EE;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    font-family: 'myfirstfont-Bold';
    font-size: 16px;
    line-height: 18px;
}

.main-navigation ul li a.menu-bar {
    padding: 26px 16px !important;
}


a.menu-bar img {
    width: 40px;
}

/* Footer Start */

.site-footer {
    background: #1582B7;
    z-index: 5;
}

.ftr-item h4 {
    font-size: 20px;
    font-family: 'myfirstfont-Bold';
    color: #fff;
    margin-bottom: 30px;
}

.ftr-item ul li a {
    color: #ffffff;
    font-family: 'myfirstfont-Regular';
    font-size: 16px;
    transition: all ease-in-out 0.4s;
    position: relative;
}

.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;
}

.ftr-item ul li a:hover::before {
    opacity: 1;
}

.ftr-item ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.ftr-item1 ul li a::before {
    content: '';
}

.ftr-item ul li {
    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-icon img {
    width: 25px;
}

.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-social li {
    margin-bottom: 10px;
}

.top-ftr {
     padding-bottom: 0px; 
    /*border-bottom: 1px solid #ffffff85;*/
}

.btm-ftr {
    padding: 20px 0;
    background: #054463;
}

.ftr-btm-left p, .ftr-btm-left p a {
    font-size: 16px;
    color: #fff;
    font-family: 'myfirstfont-Regular';
    transition: all ease-in-out 0.4s;
    margin-bottom: 0;
    text-align: center;
}

.ftr-btm-right {
    font-size: 14px;
    color: #fff;
    font-family: 'myfirstfont-Regular';
}

.ftr-btm-right ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.ftr-btm-left p a:hover {
    color: #fff;
}

.ftr-btm-right ul li a .social-icon {
    transition: all ease-in-out 0.4s;
}

.ftr-btm-right ul li a:hover .social-icon {
    color: #fff;
}

.ftr-map {
    margin-bottom: 20px;
}

.ftr-item-image li i {
    width: 30px;
}

.ftr-item-image ul li a::before {
    content: "";
}

.ftr-item ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /*gap: 10px;*/
}

.ftr-item ul li {
    width: 48%;
}

.ftr-item-social li .contact-link {
    color: #fff;
    margin-bottom: 5px;
    font-family: 'myfirstfont-Bold';
}

.ftr-item-social li a {
    color: #fff;
}

/* Footer End */

/* Sticky Icon */

.sticky-enquir {
    position: fixed;
    right: -57px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    z-index: 2;
}

#enquerymodal .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0;
}

button.btn-close {
    z-index: 3;
}

.model-form {
    padding: 20px;
}

.form-btn button.main-btn {
    margin: 0 auto;
}



.header-social-list .social-icon {
    color: var(--main-color);
    /*border: 1px solid var(--main-color);*/
}

.scroll-element {
    scroll-margin: 150px 0 0 50px;
    scroll-margin-top: 200px;
}


/* Responsive Css Start */

@media (max-width: 1600px) {

    .container.custom-container {
        max-width: 1320px;
    }

    .container.header-container {
        max-width: 1440px;
    }

    .heading h2 {
        font-size: 36px;
        line-height: 48px;
    }

    .heading h3 {
        font-size: 30px;
        line-height: 42px;
    }

    .main-navigation ul li a, .top-head ul li a,
    .main-navigation .sideMenu ul.sideMenuList li .accordion-header .accordion-button  {
        padding: 24px 15px;
        font-size: 13px;
        line-height: 13px;
    }
    .main-navigation ul li a#openSideMenu i {
        font-size: 16px;
    }

    .main-navigation .sideMenu ul.sideMenuList li .accordion-header .accordion-button {
        padding: 15px 0px;
    }

    .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;
    }

    .logobox a, .logobox a img {
        width: 205px;
    }

    .sideMenuHeader span {
        font-size: 20px;
    }
    .main-navigation ul li a.menu-bar {
        padding: 16px 16px !important;
        width: 85%;
    }
}

@media (max-width: 1440px) {

    .container.custom-container {
        max-width: 1220px;
    }

    .container.header-container {
        max-width: 1340px;
    }

    .overview-sec .inner-para {
        width: 100%;
    }
   

}

@media (max-width: 1399px) {

    .container.custom-container {
        max-width: 1100px;
    }

    .container.header-container {
        max-width: 1260px;
    }

    p, li, .heading .top-head, .bnr-txt .sub-txt {
        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,
    .main-navigation .sideMenu ul.sideMenuList li .accordion-header .accordion-button  {
       padding: 24px 15px;
    }

    .heading h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .heading h3 {
        font-size: 25px;
        line-height: 35px;
    }

    .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: 18px;
    }

    .main-navigation ul li a, .top-head ul li a,
    .main-navigation .sideMenu ul.sideMenuList li .accordion-header .accordion-button  {
        font-size: 14px;
        line-height: 14px;
    }

 
}

@media (max-width: 1299px) {

    .container.custom-container {
        max-width: 1080px;
    }

    .container.header-container {
        max-width: 1180px;
    }

    /* .main-navigation ul li a, .top-head ul li a {
        padding: 16px 5px;
    } */

}

@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: 30px;
        line-height: 40px;
    }

    .heading h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .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;
    }

    .container.header-container {
        max-width: 990px;
    }

    .top-head {
        display: none;
    }

    .logobox a, .logobox a img {
        width: 220px;
        margin-top: 0;
    }
    header.site-header.navbar-fixed .logobox img {
        width: 220px;
    }
    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; */
        padding: 10px 0;
        position: relative;
    }

    header.site-header.navbar-fixed {
        padding: 10px 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: 15px 15px;
        float: left;
        width: 100%;
    }

    .navbarMain.onlyDesktop {
        display: none;
    }

    .mobileBoxLogo.InsideSideBar {
        padding: 20px 15px 0;
        float: left;
        width: 100%;
    }
    .mobileBoxLogo.InsideSideBar img {
        width: 170px;
    }    

    .mobmenuList .accordion .accordion-body {
        float: left;
        padding: 10px;
        width: 100%;
        background: #f5f7fd;
        margin-top: 10px;
    }

    .mobmenuList .accordion .accordion-item .accordion-button {
        padding: 0;
        font-family: 'myfirstfont-Bold';
        background: transparent;
        color: var(--main-dark-color);
        font-size: 16px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        text-transform: uppercase;
    }

    .mobmenuList .accordion .accordion-item .accordion-button::after {
        margin-left: 0;
    }

    .mobmenuList .accordion .accordion-button:focus {
        z-index: 3;
        border-color: inherit;
        outline: 0;
        box-shadow: none
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        color: var(--main-dark-color);
        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: 16px;
        padding: 15px 0;
        border-bottom: 1px solid #c1c1c1;
    }

    .mobmenuList .accordion li a {
        padding: 15px 0;
        border-bottom: 1px solid #c1c1c1;
    }

    .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);
        background-color: var(--main-color);
    }

    .mobmenuList .accordion-button:not(.collapsed)::after {
        background-image: url(../images/up-arrow.png);
        transform: none;
    }

    .sidenav .subMenuList a {
        font-size: 14px;
        position: relative;
        padding: 6px 10px !important;
        float: left;
        font-family: 'myfirstfont-Bold';
        border: none !important;
        display: grid;
        grid-template-columns: auto auto;
        justify-content: start;
        align-items: center;
    }
    
    .sidenav .subMenuList a img {
        width: 30px;
        margin-right: 10px;
    }

    a.closebtn {
        position: absolute;
        z-index: 999;
        width: 50px;
        right: 10px;
        top: 5px;
    }

    .dropdown-btn,
    .sidenav a {
        text-decoration: none;
        color: var(--main-dark-color);
        width: 100%;
        float: left;
        font-family: 'myfirstfont-Bold';
        font-size: 16px;
        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: 0 !important;
    }
    .flat-whatsapp {
        position: fixed;
        right: 20px;
        bottom: 30px;
        width: 48px;
        z-index: 1;
    }
    .social-list .socialLinks {
        text-align: center;
        margin-top: 30px;
        float: left;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 20px;
        gap: 15px;
    }

    .social-list .socialLinks a {
        /* flex: 0 0 11%; */
        flex: 0 0 5%;
        margin: 0;
        text-align: center;
        background: #15a74d;
        padding: 10px;
    }

    .social-icon img {
        width: 25px;
        filter: brightness(0) invert(1);
    }

    .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;
    }

    .social-header li {
        display: grid;
        grid-template-columns: auto auto auto auto;
        gap: 10px;
        justify-content: flex-start;
        align-items: center;
    }
    
    .social-header li a, .other-link li a {
        font-size: 14px;
        text-transform: none;
    }
    
    .social-header ul, .other-link ul {
        display: flex;
        gap: 0px;
        flex-wrap: wrap;
    }
    
    .social-header li {
        width: 100%;
    }
    
    .other-link li {
        width: 33.3333%;
    }
    
    .other-link ul {
        padding: 10px 15px;
    }
    
    .social-header ul {
        padding-bottom: 5px;
    }
    .ftr-item-social ul {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }
    /* .ftr-item-social ul li {
        display: flex;
        justify-content: center;
    } */
    .ftr-item-social ul li {
        padding: 0 10px;
    } 
    .ftr-btm-right ul {
        margin-bottom: 0;
    }
    
.subMenuList.othersSubmenu {
    padding: 0;
    width: 100%;
    float: left;
    background: transparent;
    border-top: 0px solid #459ac4;
}
}

@media (max-width: 991px) {

    .container.custom-container {
        max-width: 750px;
    }

    .container.header-container {
        max-width: 800px;
    }

    .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: left;
    }

    .ftr-item1 {
        text-align: center;
    }

    .ftr-item1 ul {
        display: inline-block;
        text-align: left;
        width: 60%;
        margin-bottom: 40px;
    }
    
    .sticky-enquir {
        right: -50px;
    }
    
    .ftr-item ul {
        text-align: left;
    }
    
    .ftr-item ul li {
        list-style: square;
        margin-left: 20px;
    }
    
    .ftr-item ul li::marker {
        font-size: 20px;
        color: #fff;
    }

}

@media (max-width: 767px) {

    .container.custom-container {
        max-width: 560px;
    }

    .container.header-container {
        max-width: 620px;
    }

    .padd-top-bottom {
        padding: 55px 0;
    }

    .padd-top {
        padding-top: 55px;
    }

    .padd-bottom {
        padding-bottom: 55px;
    }

    p, li, .heading .top-head, .bnr-txt .sub-txt {
        font-size: 15px;
        line-height: 25px;
    }

    .heading h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .heading h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .heading {
        margin-bottom: 10px;
    }

    .heading .top-head::before, .heading .top-head::after {
        width: 120px;
    }

    .sidenav .subMenuList a img {
        width: 20px;
        margin-right: 15px;
    }

    .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;
    }

    .opening-con .accordion-button {
        padding: 15px 15px;
    }
    
    .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: 'myfirstfont-Bold';
        background-color: var(--main-sub-color);
        border-top: 1px solid #fff;
    }

    .sticky-enquir .main-btn span{
        color: #fff;
    }
    
    /*.site-footer {
        margin-bottom: 45px;
    }*/

    .social-list .socialLinks a {
        flex: 0 0 11%;
    }

}

@media (max-width: 575px) {

    .container.custom-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .container.header-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .logobox a, .logobox a img {
        width: 170px;
    }

    .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: 200px;
    }
    
    .btm-ftr {
        padding: 10px 0;
    }
    
    .ftr-item-1 ul {
        text-align: left;
        display: flex;
        flex-wrap: wrap;
    }
    
    .ftr-item-1 ul li {
        width: 42%;
    }
    
    .ftr-item-social li {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .ftr-btm-right ul {
        margin-top: 20px;
        margin-bottom: 0;
    }
    
    .ftr-item-social {
        margin-top: 10px;
    }
    
    .ftr-item h4 {
        text-align: center;
        display: none;
    }
    
    .ftr-item-social ul {
        display: flex;
        align-items: center;
        gap: 0px;
        flex-direction: column;
    }
    
    .ftr-item-social ul li {
        /* width: 46%; */
        width: 100%;
    }

    .ftr-item-social ul li {
        padding: 0 5px;
    }
    .ftr-item-social li .contact-link i,
    .ftr-item-social li a i{
        margin-right: 5px;
    }
    
    .ftr-btm-right ul li {
        width: auto;
    }
    
    .ftr-btm-right ul {
        gap: 25px
    }
    .ftr-logo {
        margin-bottom: 0;
        margin-right: 0;
    }

}