/* My First Font */
@font-face {
    font-family: 'myfirstfont-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Merienda/Merienda-Black.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Merienda/Merienda-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Merienda/Merienda-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Merienda/Merienda-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Merienda/Merienda-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Merienda/Merienda-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Merienda/Merienda-SemiBold.ttf) format('truetype');
}


/* My Second Font */
@font-face {
    font-family: 'mysecondfont-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter/Inter_18pt-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter/Inter_18pt-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter/Inter_18pt-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter/Inter_18pt-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter/Inter_18pt-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter/Inter_18pt-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter/Inter_18pt-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter/Inter_18pt-Thin.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter/Inter_18pt-Black.ttf) format('truetype');
}


/* My Third Font */
@font-face {
    font-family: 'mythirdfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Great_Vibes/GreatVibes-Regular.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: #C11B1B;
    --main-sub-color: #830F0F;
    --main-dark-color: #2B2B2B;
    --black-color: #000;
    --white-color: #fff;
    --h1HeadingFont: 'myfirstfont-Regular';
    --h2HeadingFont: 'myfirstfont-SemiBold';
    --h3HeadingFont: 'myfirstfont-SemiBold';
    --paraFont: 'myfirstfont-Regular';
    --bodyFont: 'mysecondfont-Regular';
    --menuFont: 'mysecondfont-SemiBold';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
}

body {
    font-family: var(--bodyFont);
    background: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

html,
body {
    overflow-x: hidden;
}



.dropdown:hover>.dropdown-menu {
    display: block;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
}

p,
ul,
ol,
address,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a,
a:active,
a:focus,
button,
button:focus,
button:active,
.btn,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn.active.focus {
    outline: none;
    outline: 0;
}

p, li {
    font-family: var(--bodyFont);
    font-size: 18px;
    line-height: 28px;
    color: var(--main-dark-color);
}

a:hover,
a {
    text-decoration: none;
}

.form-control:focus {
    background-color: #fff;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
    /* border: 0; */
}

li {
    list-style: none;
}

.padd-top-bottom {
    padding: 85px 0;
}

.padd-top {
    padding-top: 85px;
}

.padd-bottom {
    padding-bottom: 85px;
}

.container.custom-container {
    max-width: 1580px;
    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-red {
    background: var(--main-color);
}

.bg-black {
    background: var(--black-color);
}

.bg-gray {
    background: #808080;
}

.bg-light-white {
    background: #f4f4f4;
}

/* 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;
}



/* Header Css Start */

header.site-header.navbar-fixed {
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    background: var(--black-color);
    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(--black-color);
}

header.site-header .header-shape {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.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;
    gap: 40px;
}



.dropdownMain {
    float: left;
    overflow: hidden;
}

.logobox a, .logobox a img {
    width: 120px;
}


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: #fff;
    font-weight: 500;
}

.navbarMain a,
.dropdownMain .dropbtn {
    transition: 0.2s;
}

.dropdownMain .dropbtn,
.navbarMain a {
    color: #fff;
    position: relative;
    font-weight: 500;
    transition: 0.2s;
    text-decoration: none;
    /* padding-bottom: 25px; */
}

.dropdownMain .dropbtn.active, 
.navbarMain a.active, 
.navbarMain a.active i, .navbarMain a.active {
    color: var(--main-color) !important;
}

.navbarMain a:hover {
    color: var(--main-color)
}

.menuListing ul {
    display: block;
    padding: 0;
}


header.site-header.navbar-fixed {
    padding: 10px 0;
}


#myHeader.hide {
    top: 0;
}

#myHeader {
    width: 100%;
    z-index: 100;
    transition: all .3s ease;
    overflow-x: clip;
}

.dropdownMain-content {
    display: none;
    position: absolute;
    background-color: var(--main-color);
    width: 240px;
    z-index: 1;
    /* left: 0; */
    top: 95%;
    color: #000;
}
.dropdownMain-content.full-megamenu {
    display: none;
    position: absolute;
    background-color: var(--main-sub-color-color);
    width: 70%;
    z-index: 1;
    left: 30%;
    top: 95%;
    padding: 30px;
    padding-bottom: 0;
    border-top: 1px solid var(--main-color);
}
.dropdownMain-content.full-megamenu {
    background: #000;
    /* 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.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 25%;
}

.full-megamenu .menu-others-sub {
    flex: 0 0 70%;
    padding-left: 50px;
}

.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: #111;
    text-align: center;
    padding: 0 15px;
    font-family: var(--bodyFont);
    position: relative;
}

header.site-header.navbar-fixed .navbarMain a, 
header.site-header.navbar-fixed .top-menu a {
    color: #fff;
}

header.site-header.navbar-fixed .navbarMain a:hover, 
header.site-header.navbar-fixed .top-menu a:hover, 
header.site-header.navbar-fixed .top-menu a:hover i {
    color: var(--main-color);
}

.navbarMain a::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 1px;
    width: 6px;
    height: 6px;
    background-color: #c61b1c;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    display: none;
}

.navbarMain a::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: #c61b1c;
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
}

.navbarMain a.active::before {
    display: block;
}

.navbarMain a.active::after {
    width: 88%;
    right: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
}


.navbarMain .menuListing a:after,
.onlyMobile,
header.site-header.sticky .whiteLogo {
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background: #000000;
    -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;
}

header.site-header.navbar-fixed .menuWrap ul li.active::after {
    bottom: 0;
}

.sidenav,
body,
html {
    overflow-x: hidden;
}

.text-right {
    text-align: right;
}

header.site-header .navbarMain ul li {
    margin-bottom: 0;
    position: relative;
}

header.site-header .navbarMain ul li.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--main-sub-color);
}

.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: #fff;
}

.main-navigation ul li a {
    padding: 20px 0px 20px;
    font-family: var(--menuFont);
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    color: #fff;
}

.main-navigation ul li a:hover, .main-navigation ul li a:hover i {
    color: var(--main-color);
}


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: 15px 10px;
    float: left;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ffffff36;
    color: #ffffff;
    font-size: 14px;
    position: relative;
}
.navbarMain .menu-others-sub a::before {
    content: "-";
    position: absolute;
    left: 10px;
    display: none;
    bottom: auto;
    width: auto;
    height: auto;
}
.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: #ffffff !important;
}

.navbarMain .full-megamenu .menu-others-sub a:hover
{
    color: var(--themeColor);
    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: 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: 10px 0;
}

.navbar-fixed .navigationWrap {
    padding-bottom: 0;
    border-bottom: none;
    padding: 0;
}

.fa-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--main-color);
    margin: 0 10px;
}


/* Heading H2, H3 and Inner Para Css */

.heading {
    margin-bottom: 20px;
}

.heading h2 {
    font-size: 36px;
    line-height: 46px;
    position: relative;
    font-family: var(--h2HeadingFont);
    width: fit-content;
    z-index: 1;
    text-transform: capitalize;
}

.heading h2::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 22px;
    height: 22px;
    background-color: var(--main-color);
    border-radius: 50px;
    z-index: -1;
}

.heading h3 {
    font-size: 26px;
    line-height: 36px;
    position: relative;
    font-family: var(--h3HeadingFont);
}

.inner-para {
    margin-bottom: 35px;
}

.inner-para p {
    font-family: var(--bodyFont);
}

.text-white p {
    color: #fff;
}


/* Button Css */

button.main-btn {
    outline: 0 !important;
    border: 0 !important;
}

.main-btn {
    padding: 15px 30px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    font-family: 'mysecondfont-SemiBold';
    font-size: 16px;
    text-transform: uppercase;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
}

.main-btn span {
    position: relative;
    z-index: 1 !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all ease-in-out 0.4s;
}

.main-btn .btn-icon {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    position: absolute;
    right: -15px;
    z-index: 2;
    color: var(--black-color);
    top: 50%;
    transform: translateY(-50%);
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--black-color);
    z-index: 0;
    transition: all ease-in-out 0.4s;
}

.main-btn:hover::before {
    width: 100%;
}

.main-btn1::before {
    background-color: var(--white-color);
}

.main-btn1:hover span {
    color: var(--main-color) !important;
}

.main-btn1 .btn-icon {
    background-color: var(--black-color);
    color: var(--white-color);
}

.main-btn2 {
    background-color: var(--black-color);
}

.main-btn2:hover span {
    color: var(--main-color) !important;
}

.main-btn2:hover::before {
    background-color: var(--white-color);
}

.main-btn2 .btn-icon {
    background-color: var(--main-color);
    color: var(--white-color);
}



/* Shape top and bottom Css */

.shape-top {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.shape-btm {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    z-index: 1;
}



/* Slick Slider Css */

/*slick slider*/

.secSliderWrap {
  position: relative;
}

.secSliderNavWrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.secSliderNav {
  pointer-events: all;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background: #fff0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--main-color);
  padding: 8px;
}

.secSliderNav img {
  width: auto;
  height: 13px;
}

.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;
  }





/* Subscription Start */

.subscrip-con {
    text-align: center;
    padding-bottom: 50px;
}

.subscrip-con h2 {
    font-size: 50px;
    line-height: 70px;
    position: relative;
    font-family: var(--h3HeadingFont);
    margin-bottom: 40px;
}

.subscrip-con input {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #757579;
    padding: 10px 0;
}

.subscrip-con button {
    border: none;
    outline: none;
}

#ErrEmail {
    text-align: left;
}

.subscription .shape-top {
    z-index: -2;
}

.ftr-top-shape1 {
    position: absolute;
    right: 0;
    top: 10%;
}

.ftr-top-shape2 {
    position: absolute;
    right: 0;
    top: -80px;
    z-index: 4;
}

/* Subscription End */



/* Footer Start */

.ftr-top {
    padding: 150px 0 40px;
    border-bottom: 1px solid #373737;
}

.ftr-top ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.ftr-top ul li a {
    color: #fff;
    transition: all ease-in-out 0.4s;
    font-size: 16px;
}

.ftr-top ul li a:hover {
    color: var(--main-color);
}

.ftr-logo {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.social-icon {
    padding-top: 40px;
}

.social-icon li a {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #fff;
    color: #000 !important;
}

.social-icon li a:hover {
    color: var(--main-color) !important;
}

.social-icon p {
    color: #fff;
}

.ftr-btm {
    padding: 20px 0;
}

.ftr-btm p {
    font-size: 14px;
    color: #878787;
}

.ftr-btm p a {
    color: #878787;
    transition: all ease-in-out 0.4s; 
}

.ftr-btm p a:hover {
    color: var(--white-color);
}

.subscrip-btn {
    display: flex;
    justify-content: center;
}

/* Footer End */


/* Responsive Css Start */

@media (max-width: 1600px) {

    .container.custom-container {
        max-width: 1380px;
    }

}

@media (max-width: 1399px) {

    .container.custom-container {
        max-width: 1180px;
    }

    p, li {
        font-size: 16px;
        line-height: 26px;
    }

    .main-navigation ul li a {
        font-size: 16px;
        line-height: 16px;
    }

    .heading h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .heading h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .main-btn {
        font-size: 14px;
        padding: 13px 28px;
    }

    .subscrip-con h2 {
        font-size: 42px;
        line-height: 62px;
    }

    .heading h2::after {
        top: 0px;
        left: -1px;
        width: 18px;
        height: 18px;
    }

}

@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;
    }

}

@media (max-width: 1024px) {

    .logobox a, .logobox a img {
        width: 120px;
        margin-top: 0px;
    }
    header.site-header.navbar-fixed .logobox a, header.site-header.navbar-fixed .logobox a img {
        margin-top: 10px;
    }
    header.site-header .header-shape {
        bottom: -10px;
    }
    header.site-header.navbar-fixed .logobox img {
        width: 100px;
        padding-bottom: 10px;
    }
    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-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;
    }

    .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: 100px;
    }    

    .mobmenuList .accordion .accordion-body {
        float: left;
        padding: 10px;
        width: 100%;
        background: #292929;
        margin-top: 22px;
    }

    .mobmenuList .accordion .accordion-item .accordion-button {
        padding: 0;
        font-family: 'myfirstfont-SemiBold';
        background: transparent;
        color: #fff;
        font-size: 20px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .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-size: 20px;
    }

    .mobmenuList .accordion .accordion-item {
        border: 0;
        position: relative;
        float: left;
        width: 100%;
        background: transparent;
        font-size: 15px;
        padding: 10px 0;
    }

    .mobmenuList .accordion-button::after {
        background-size: 18px;
        transition: transform 0.2s ease-in-out;
        padding: 12px;
        background-position: center;
        background-image: url(../images/down.png);
    }

    .mobmenuList .accordion-button:not(.collapsed)::after {
        background-image: url(../images/down.png);
        transform: rotate(180deg);
    }

    .sidenav .subMenuList a {
        font-size: 18px;
        position: relative;
        padding: 10px;
        float: left;
        font-family: 'myfirstfont-Medium';
        z-index: 1;
    }
    
    .sidenav .subMenuList a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border-radius: 50px;
        background: var(--main-color);
        z-index: -1;
    }

    a.closebtn {
        position: absolute;
        z-index: 999;
        width: 50px;
        right: 10px;
        top: 5px;
    }

    .dropdown-btn,
    .sidenav a {
        text-decoration: none;
        color: #ffffff;
        width: 100%;
        float: left;
        font-family: 'myfirstfont-SemiBold';
        font-size: 20px;
        text-align: left;
        margin-bottom: 0px;
    }

    .logobox {
        padding-bottom: 0px;
    }

    a.closebtn {
        text-align: right;
    }

    .logobox {
        padding-bottom: 0px;
    }

    .menuWrap {
        padding-left: 0%;
        padding-right: 0%;
    }

    header.site-header .whatsapp {
        text-align: center;
        width: 40px;
        height: 40px;
        display: inline-block;
        line-height: 40px;
        font-size: 25px;
        border-radius: 15px;
    }

    header.site-header .call {
        text-align: center;
        width: 40px;
        height: 40px;
        display: inline-block;
        line-height: 40px;
        font-size: 25px;
        border-radius: 15px;
        margin-right: 30px;
        margin-left: 15px;
    }

    .navigationWrap {
        padding: 10px 0;
    }
    .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;
    }
    
}

@media (max-width: 991px) {

    .container.custom-container {
        max-width: 750px;
    }

}

@media (max-width: 767px) {
    .ftr-logo {
        width: 120px;
    }
    .container.custom-container {
        max-width: 560px;
    }
    
    .main-btn {
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }

    .ftr-top ul li a {
        font-size: 14px;
    }

    .ftr-top ul {
        gap: 20px;
    }

    .ftr-btm p {
        text-align: center;
        font-size: 12px;
    }

    .social-icon {
        padding-top: 0px;
    }

    .subscrip-con h2 {
        font-size: 30px;
        line-height: 50px;
    }

    .secSliderNav {
        width: 35px;
        height: 35px;
    }

    .ftr-top-shape2 {
        display: none;
    }

    .site-footer .shape-top {
        top: -10px;
    }

}

@media (max-width: 575px) {

    .container.custom-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .shape-top {
        top: -15px;
    }

    .shape-btm {
        bottom: -15px;
    }

    .padd-top-bottom {
        padding: 55px 0;
    }

    .padd-top {
        padding-top: 55px;
    }

    .padd-bottom {
        padding-bottom: 55px;
    }

    .heading h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .subscrip-con h2 {
        font-size: 25px;
        line-height: 40px;
    }

}