/* Reset */
/* * { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    height: 100%;
}

#smooth-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#smooth-content {
    position: relative;
    width: 100%;
    will-change: transform;
}

.content {
    min-height: 100vh; 
} */

/* My First Font */
@font-face {
    font-family: 'myfirstfont-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Roboto-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Roboto-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Roboto-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Roboto-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Roboto-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Roboto-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Roboto-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Roboto-Thin.ttf) format('truetype');
}

@font-face {
    font-family: 'myfirstfont-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Roboto-Black.ttf) format('truetype');
}

/* My Second Font */
@font-face {
    font-family: 'mysecondfont-ExtraBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-ExtraBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Light';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Medium';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Regular';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-SemiBold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-SemiBold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-ExtraLight';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-ExtraLight.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Bold';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Thin';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Thin.ttf) format('truetype');
}

@font-face {
    font-family: 'mysecondfont-Black';
    font-style: Normal;
    font-display: swap;
    src: url(../font/Inter-Black.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: #513B2A;
    --main-sub-color: #E7B02B;
    --main-light-color: #FFE6A9;
    --main-shape-color: #A28269;
    --main-dark-color: #333333;
    --h1HeadingFont: 'myfirstfont-ExtraBold';
    --h1SubHeadingFont: 'myfirstfont-Light';
    --h1FontSize: 40px;
    --h1FontLineHeight: 45px;
    --h2HeadingFont: 'myfirstfont-Medium';
    --h2FontSize: 33px;
    --h2FontLineHeight: 43px;
    --h3HeadingFont: 'myfirstfont-Medium';
    --h3FontSize: 22px;
    --h3FontLineHeight: 32px;
    --paraFont: 'myfirstfont-Regular';
    --paraFontSize: 18px;
    --paraLineHeight: 32px;
    --bodyFont: 'mysecondfont-Regular';
    --menuFont: 'mysecondfont-SemiBold';
    --menuFontSize: 16px;
    --menuLineHeight: 26px;
    --borderWidth: 3px;
}

* {
    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);
    margin-bottom: 20px;
}

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;
}

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);
    }
}



/* Slick Slider Css */

.slick-track {
    display: flex;
}

.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: 40px;
    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;
  }



header.site-header.navbar-fixed {
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    background: #fff !important;
    box-shadow: 0 19px 38px rgb(0 0 0 / 0%), 0 15px 12px rgb(0 0 0 / 6%);
}

header.site-header.navbar-fixed ul li a, header.site-header.navbar-fixed ul li a i {
    color: var(--main-sub-color);
}

header.site-header.navbar-fixed ul li a.active,
header.site-header.navbar-fixed ul li a.active i {
    color: #000;
}

header.site-header {
    position: absolute;
    z-index: 2;
    width: 100%;
}

.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: 140px;
}


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 {
    color: var(--main-sub-color)
}

.menuListing ul {
    display: block;
    padding: 0;
}


header.site-header.navbar-fixed {
    padding: 5px 0;
}


#myHeader.hide
 {
    top: 0;
    background: #fff !important;
}

#myHeader {
    width: 100%;
    z-index: 100;
    transition: all .3s ease;
     /*background:#a28269 !important; */
    
    background:linear-gradient(rgb(0 0 0 / 40%) 40%, rgb(0 0 0 / 0%));
    /*background: linear-gradient(180deg, #000000d9, #0000002b);*/
}

.dropdownMain-content {
    display: none;
    position: absolute;
    background-color: #fff9e9;
    width: 260px;
    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: 100%;
    z-index: 1;
    left: 0%;
    top: 95%;
    padding: 0px;
    /* padding-bottom: 0; */
    /* border-top: 1px solid var(--main-color); */
}
.dropdownMain-content.full-megamenu {
    background: #fff9e9;
    /* border-bottom: 8px solid var(--themeColor); */
    /* position: relative; */
}

.dropdownMain-content.full-megamenu .img-menu-ra img {
    width: 100%;
}

.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;
    align-items: flex-start;
}
.full-megamenu .img-menu-ra
{
    flex: 0 0 50%;
}

.full-megamenu .menu-others-sub {
    flex: 0 0 50%;
    padding: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.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);
}

/*header.site-header.navbar-fixed .navbarMain a, 
header.site-header.navbar-fixed .top-menu a {
    color: #c8ad4a;
}*/

header.site-header .colorLogo {
    display: none;
}

header.site-header.navbar-fixed .colorLogo {
    display: block !important;
}

header.site-header.navbar-fixed .whiteLogo {
    display: none !important;
}


.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: #2f2117ed;
    -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;
}

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: var(--themeColor); */
    color: #000;
}

.main-navigation ul li a {
    padding: 30px 0px 30px;
    font-family: var(--menuFont);
    font-size: var(--menuFontSize);
    line-height: var(--menuLineHeight);
    text-transform: uppercase;
    color: #fff;
}

.main-navigation ul li a i {
    color: #fff;
}

.main-navigation ul li a:hover, .main-navigation ul li a:hover i {
    color: var(--main-sub-color);
}

.main-navigation ul li a.active {
    color: var(--main-sub-color);
}

#myHeader.hide .main-navigation ul li a,
#myHeader.hide .main-navigation ul li a i
{
    color: var(--main-sub-color);
}
#myHeader.hide .main-navigation ul li a.active,
#myHeader.hide .main-navigation ul li a.active i
{
    color: #000;
}

header.site-header.navbar-fixed .main-navigation ul li:last-child a,
.main-navigation ul li:last-child a {
    padding-right: 0;
}


.topnavigation ul li a {
    color: #fff;
    margin-right: 0;
    margin-left: 55px;
}

.topnavigation ul li a:hover {
    color: var(--themeSecColor);
}

.topnavigation ul li:first-child a span {
    color: var(--themeSecColor);
    font-size: 20px;
    font-family: Poppins-SemiBold;
}

.topnavigation ul li:first-child a {
    border-right: 1px solid #ffffff54;
    margin: 0;
    padding-right: 55px;
    font-family: 'Inter_18pt-Regular';
}

.topnavigation ul li:first-child a i {
    color: var(--themeSecColor);
    font-size: 22px;
    margin-right: 10px;
}

.topnavigation {
    background: var(--themeColor);
    border-radius: var(--borderRadiusSec);
    padding: 15px 70px;
    margin: 10px 0;
}

.topnavigation ul {
    display: flex;
    justify-content: end;
}

.navbarMain .menu-others-sub a {
    padding: 10px 10px;
    float: left;
    width: 100%;
    text-align: left;
    /* border-bottom: 1px solid #ffffff29; */
    color: #000;
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid #898989b0;
}

.navbarMain .full-megamenu .menu-others-sub a {
    padding: 28px 10px;
    border-bottom: 1px solid #8989894f;
}
.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 .menu-others-sub a {
    color: #000 !important;
    width: 100%;
}

.navbarMain .full-megamenu .menu-others-sub a {
    width: 48%;
}


.navbarMain .menu-others-sub a:hover {
    color: var(--main-sub-color) !important;;
}

.navbarMain .full-megamenu .menu-others-sub a:hover
{
    color: var(--main-sub-color) !important;
    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 {
    /*border-bottom: 1px solid #7c7e86;*/
    padding: 10px 0;
}

.navbar-fixed .navigationWrap {
    padding-bottom: 0;
    border-bottom: none;
    padding: 0;
}

.img-menu-ra img {
    transition: all ease-in-out 0.4s;
}







/* ------- Custom CSS------------------------ */

.inner-text-para h1 {
    font-family: var(--h1HeadingFont);
    font-size: var(--h1FontSize);
    line-height: var(--h1FontLineHeight);

}

.inner-text-para h2 {
    font-family: var(--h2HeadingFont);
    font-size: var(--h2FontSize);
    line-height: var(--h2FontLineHeight);
    margin-bottom: 20px;
    color: #333333;
}

.inner-text-para h3 {
    font-family: var(--h3HeadingFont);
    font-size: var(--h3FontSize);
    line-height: var(--h3FontLineHeight);
    color: #313131;
    margin-bottom: 10px;
}

.inner-text-para .subHead {
    font-family: var(--h3HeadingFont);
    font-size: 17px;
    line-height: 26px;
    color: var(--themeBlueLight);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
}


.main-btn {
    font-family: 'mysecondfont-Medium';
    font-size: 18px;
    line-height: 26px;
    color: #000;
    background: var(--main-light-color);
    padding: 12px 25px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
    border-radius: 50px;
    display: block;
    width: fit-content;
}

.main-btn:hover {
    overflow: hidden;
}

.main-btn span {
    position: relative;
    z-index: 2;
    transition: all ease-in-out 0.5s;
    padding-left: 30px;
}

.main-btn span i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all ease-in-out 0.3s;
}

.main-btn:hover span {
    padding-right: 30px;
    padding-left: 0;
}

.main-btn:hover span i {
    left: 100%;
    transform: translate(-100%, -50%);
}

.main-btn::after, .main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--main-color);
    z-index: 1;
    transition: all ease-in-out 0.5s;
    opacity: 0;
}

.main-btn::after {
    left: 0;
}

.main-btn::before {
    right: 0;
}

.main-btn:hover span {
    color: #fff;
}

.main-btn:hover::after, .main-btn:hover::before {
    width: 100%;
    opacity: 1;
}

.main-btn2::after, .main-btn2::before {
    background-color: #fff;
}

.main-btn2:hover span {
    color: var(--main-color);
}


.sec-footer {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ft-logo {
    width: 150px;
}
.quick-head {
    font-family: var(--menuFont);
    font-size: var(--menuFontSize);
    line-height: var(--menuLineHeight);
    text-transform: uppercase;
    color: var(--themeColor);
    margin-bottom: 25px;
}

.quick-list a {
    float: left;
    width: 100%;
    color: #B2BBDC;
    margin-bottom: 15px;
}
.quick-list a:hover
{
    color: #fff;
}

.sec-footer .inner-text-para h4 {
    font-size: 45px;
}

.cont-text {
    font-size: 20px;
    margin-top: 20px;
}


.cont-text i {
    display: inline-block;
    background: linear-gradient(151deg, #75a8ca, #d14826);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}

.socialLinks {
    text-align: right;
}

.social-list .fa-icon {
    color: #000;
    background: #fff;
  }
.socialLinks a:last-child i {
    margin-right: 0px;
}


.copyright-info {
    text-align: left;
    padding: 35px 0;
    border-top: 1px solid #485377;
    margin-top: 50px;
}

.copyright-info p a,
.copyright-info p {
    color: var(--paraColor);
    font-size: 13px;
}

.ft-contact-info {
    padding-left: 190px;
}


.swiper-button-next {
    width: 50px;
    height: 50px;
    color: var(--themeColor);
    border: 1px solid var(--themeColor);
    border-radius: 50%
}

.swiper-button-prev {
    width: 50px;
    height: 50px;
    color: var(--themeBlueLight);
    border: 1px solid var(--themeBlueLight);
    border-radius: 50%
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

button.btn-close {
    position: absolute;
    top: -30px;
    right: -30px;
    background: #fff0;
    width: 3em;
    opacity: 1;
}


.form-control:focus {
    background: #fff0;
    color: #fff;
}

.form-control::placeholder {
    color: #fff;
    opacity: 0.6;
}

.form-control:-ms-input-placeholder {
    color: #fff;
    opacity: 0.6;
}

.form-control::-ms-input-placeholder {
    color: #fff;
    opacity: 0.6;
}

.modal-content {
    background-color: transparent;
}

.modal-body {
    padding: 0;
}

.flat-whatsapp {
    position: fixed;
    right: 50px;
    bottom: 150px;
    width: 65px;
    z-index: 1;
}

.innerBanner {
    background: #000000;
}
.innerBanner img {
    position: absolute;
    top: 0;
}

.innerBanner .inner-text-para {
    padding: 325px 0 180px;
}
.innerBanner .inner-text-para span {
    float: left;
    width: 100%;
    font-family: 'myfirstfont-Light';
    color: var(--themeColor);
}

.innerBanner.quote-inner .inner-text-para {
    padding: 260px 0 125px;
}

.innerBanner.quote-inner.about-page .inner-text-para {
    padding: 260px 0 40px;
}

/*--------------------
 Back to Top Button
---------------------*/
.scrollToTopBtn {
    background-color: var(--themeColor);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 20px;
    line-height: 48px;
    width: 48px;
    /* place it at the bottom right corner */
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* keep it on top of everything else */
    z-index: 100;
    /* hide with opacity */
    opacity: 0;
    /* also add a translate effect */
    transform: translateY(100px);
    /* and a transition */
    transition: all 0.5s ease;
}

.showBtn {
    opacity: 1;
    transform: translateY(0);
}


[data-aos]{min-height:50px}


.contact-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 30px;*/
    position: relative;
}
.contact-sec input[type="text"], .contact-sec input[type="email"], .contact-sec input[type="tel"], .contact-sec select, .contact-sec textarea {
    border: 0;
    border-radius: 0 !important;
    border-bottom: 1px solid #dcdcdc;
    background: none;
    outline: none;
    box-shadow: none;
    padding: 6px 0;
    font-size: 14px;
    font-family: var(--bodyFont);
    width: 100%;
    color: #ffffff;
    font-weight: 600;
}
.contact-sec input[type="file"]::-webkit-file-upload-button {
    background: #000;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    outline: none;
    padding: 7px 25px;
    transition: all 1s ease;
}
.contact-sec input[type="file"]::-webkit-file-upload-button:hover {
    background: #fff;
    border: 2px solid #fff;
    color: #000 !important;
}
.contact-sec input[type="file"] {
    border: 0;
    border-radius: 0 !important;
    border-bottom: 1px solid #464646;
    background: none;
    outline: none;
    box-shadow: none;
    padding: 6px 0;
    font-size: 14px;
    font-family: var(--bodyFont);
    width: 100%;
    color: #111;
    font-weight: 600;
}
input[type="file"] {
    padding-left: 38px;
    color: #111;
}
textarea.form-control {
    min-height: calc(1.5em + 44px + 35px);
}
select.form-control {
    background-image: url(../images/down-arrow.png);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
    color: #565656;
}
.contact-sec select option {
    color: #000;
}

.innerBanner.quote-inner .inner-page-btn .btn-more a.watch-video {
    background: transparent;
    border: 2px solid #681e0c;
    color: #681e0c;
}

.heading .sub-head {
    font-family: 'myfirstfont-Regular';
    font-size: 20px;
    line-height: 30px;
    color: var(--main-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.heading h1 {
    font-family: 'myfirstfont-Bold';
    color: var(--main-color);
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 40px;
}

.heading h2 {
    font-family: 'myfirstfont-Bold';
    color: var(--main-color);

    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
}

.heading h1 span {
    color: var(--main-sub-color);
}

.heading h2 span {
    color: var(--main-sub-color);
}
.heading.text-white h2, .heading.text-white .sub-head {
    color: #fff;
}

.heading.text-black h2, .heading.text-black .sub-head {
    color: #362519;
}




/*animation element*/
/* .animation-element {
    opacity: 0;
  } */
  
  /*animation element sliding left*/
  /* .animation-element.slide-left {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(-100px, 0px, 0px);
  }
  
  .animation-element.slide-left.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }
  
  .animation-element.slide-right {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(100px, 0, 0);
  }
  
  .animation-element.slide-right.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }
  
  .animation-element.slide-up {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(0, 100px, 0);
  }
  
  .animation-element.slide-up.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  }
  
  .animation-element.slide-down {
    opacity: 0;
    transition: all 500ms linear;
    transform: translate3d(0, -100px, 0);
  }
  
  .animation-element.slide-down.in-view {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
  } */



  /* footer CSS start */

  .sec-footer {
    background-color: #C49118;
    padding-top: 85px;
    z-index: 5;
  }

  .ftr-logo img {
    width: 170px;
  }

  .ftr-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
  }

  .sec-footer .container {
    position: relative;
    z-index: 1;
  }

  .sec-footer h4 {
    font-family: 'myfirstfont-Regular';
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .sec-footer .ftr-item {
    padding: 0 25px;
  }

  .sec-footer .ftr-item ul li,.sec-footer .ftr-item p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
  }

  .sec-footer .ftr-item ul li a {
    color: #fff;
    transition: all ease-in-out 0.5s;
  }

  .sec-footer .ftr-item ul li a:hover {
    margin-left: 10px;
  }

  .sec-footer .ftr-item1 ul li a:hover {
    margin-left: 0px;
  }

  .sec-footer .ftr-item ul li img {
    width: 24px;
    height: auto;
    margin-right: 10px;
  }

  /* .social-icon a {
    margin-right: 10px;
  } */

  .stroke {
    -webkit-text-stroke: 1px #976F0E;
    color: #fff0;
    font-size: 250px;
    font-family: 'myfirstfont-ExtraBold';
  }

  .ftr-btm p, .ftr-btm li {
    font-size: 16px;
    line-height: 26px;
  }

  .ftr-btm p, .ftr-btm li, .ftr-btm a {
    color: #fff;
    transition: all ease-in-out 0.4s;
  }

  .ftr-btm a:hover {
    color: var(--main-color);
  }

  .ftr-btm ul {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .ftr-btm {
    padding: 50px 0 30px;
  }

  .ftr-btm p.text-ftr {
    text-align: right;
  }

  .ftr-btm p.text-ftr,  .ftr-btm p.text-ftr a {
    color: #523C06;
  }

  .ftr-btm p.text-ftr a:hover {
    color: #fff;
  }

  .fa-icon {
    color: #c49118;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #fff;
    font-size: 16px;
  }

  .social-icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

.scroll-element {
    scroll-margin: 150px 0 0 50px;
    scroll-margin-top: 200px;
}

.ftr-txt-big {
    font-size: 240px;
    line-height: 240px;
    font-family: 'myfirstfont-Bold';
    color: #e5a50c;
    text-align: center;
    text-shadow: 
        1px 1px 1px #bf8702,    
        2px 2px 1px #bf8702,
        3px 3px 1px #bf8702,
        4px 4px 1px #bf8702,
        5px 5px 1px #bf8702,
        6px 6px 1px #bf8702,
        7px 7px 1px #bf8702,
        8px 8px 1px #bf8702,
        25px 25px 8px rgb(0 0 0 / 42%);
}

.map-buttn
{
    color: #fff;
    border: 1px solid #fff;
   padding: 12px 25px;
    font-size: 18px;
    line-height: 26px;
    border-radius: 50px;
    margin-top: 10px;
    text-transform: uppercase;
}


/* Responsive CSS Start */

@media (max-width: 1600px) {

    .container.custom-container {
        max-width: 1320px;
    }

    .heading h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .ftr-txt-big {
        font-size: 200px;
        line-height: 200px;
    }

    .sec-footer .ftr-item ul li, .sec-footer .ftr-item p {
        font-size: 15px;
        line-height: 25px;
    }

}

@media (max-width: 1399px) {

    .container.custom-container {
        max-width: 1140px;
    }

    .main-navigation ul li a {
        padding: 20px 0px 20px;
    }

    .navbarMain ul {
        gap: 25px;
    }

    .main-btn {
        font-size: 16px;
        line-height: 24px;
    }

    .heading h1 {
        font-size: 40px;
        line-height: 50px;
    }
    /* .heading h2 {
        font-size: 40px;
        line-height: 50px;
    } */

    .sec-footer h4 {
        font-size: 18px;
        font-weight: 600;
    }

    .sec-footer .ftr-item ul li, .sec-footer .ftr-item p, .ftr-btm p, .ftr-btm li {
        font-size: 14px;
        line-height: 24px;
    }

    .ftr-txt-big {
        font-size: 170px;
        line-height: 170px;
    }

}

@media (max-width: 1280px) {

    .main-navigation ul li a {
        font-size: 14px;
    }

    .ftr-btm ul {
        gap: 15px;
    }

}

@media (max-width: 1199px) {

    .container.custom-container {
        max-width: 960px;
    }

    .navbarMain ul {
        gap: 20px;
    }
    
    .heading h1 {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 20px;
    }

    .heading h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .ftr-logo img {
        width: auto;
    }

    p, li, .heading .sub-head {
        font-size: 16px;
        line-height: 26px;
    }

    .sec-footer .ftr-item ul li, .sec-footer .ftr-item p, .ftr-btm p, .ftr-btm li {
        font-size: 13px;
        line-height: 23px;
    }

    .ftr-txt-big {
        font-size: 140px;
        line-height: 140px;
    }

}

@media (max-width: 1024px) {
    .logobox a, .logobox a img {
        width: 120px;
        margin-top: 0px;
    }
    /*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 .sideNaviMob span img {
        filter: brightness(0);
    }

    /* 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: #00000052;
        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: center;
        gap: 0px;
    }

    header.site-header.navbar-fixed ul li a.active {
        color: #fff;
    }

    .mobmenuList .accordion .accordion-item .accordion-button::after {
        margin-left: 0;
    }

    .mobmenuList .accordion .accordion-button:focus {
        z-index: 3;
        border-color: inherit;
        outline: 0;
        box-shadow: none
    }

    .mobmenuList .accordion .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: initial;
        box-shadow: none;
        font-weight: 700;
        font-size: 22px;
    }

    .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: 13px;
        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';
    }

    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: center;
    }

    .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 {
        /*border-bottom: 1px solid #7c7e86;*/
        padding: 15px 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;
    }

    .padd-top-bottom {
        padding: 50px 0;
    }

    .padd-top {
        padding-top: 55px;
    }

    .padd-bottom {
        padding-bottom: 55px;
    }
}

@media (max-width: 991px) {

    .container.custom-container {
        max-width: 760px;
    }

    .ftr-btm p, .ftr-btm li, .ftr-btm p.text-ftr {
        text-align: center;
        margin-bottom: 5px;
    }

    .o1 {
        order: 1;
    }

    .o2 {
        order: 2;
    }

    .o3 {
        order: 3;
    }

    .ftr-btm {
        padding: 30px 0 30px;
    }

    .ftr-top {
        padding-bottom: 30px;
        border-bottom: 1px solid #ffffff54;
    }

    .sec-footer .ftr-item ul li img {
        width: 18px;
        height: auto;
        margin-right: 5px;
    }

    .sec-footer .ftr-item {
        padding: 0 0px;
    }

    .ftr-btm ul {
        justify-content: flex-end;
    }
    

}

@media (max-width: 767px) {

    p, li, .heading .sub-head {
        font-size: 15px;
        line-height: 25px;
    }
    header.site-header.navbar-fixed ul li a, header.site-header.navbar-fixed ul li a i {
        color: #fff;
    }
    
        .ftr-logo {
    text-align: center;
}
  

    .main-btn {
        font-size: 14px;
        line-height: 24px;
        margin-left: auto;
        margin-right: auto;
        padding: 10px 16px;
    }

    /* .container.custom-container {
        max-width: 540px;
    } */

    .navigationWrap {
        padding: 5px 0;
    }
    
    .heading h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .heading h1 br {
        display: none;
    }

    .heading h2 {
        font-size: 25px;
        line-height: 35px;
    }

    .heading h2 br {
        display: none;
    }

    .page-btn {
        font-size: 14px;
    }

    /* .animation-element.slide-left {
        transform: translate3d(-50px, 0px, 0px);
    }
    
    .animation-element.slide-right {
        transform: translate3d(50px, 0, 0);
    }
    
    .animation-element.slide-up {
        transform: translate3d(0, 50px, 0);
    }
    
    .animation-element.slide-down {
        transform: translate3d(0, -50px, 0);
    } */

    .ftr-btm ul {
        justify-content: center;
    }

    .dropdown-btn, .sidenav a, .mobmenuList .accordion .accordion-item .accordion-button {
        font-size: 18px;
    }

    .sidenav .subMenuList a {
        font-size: 16px;
    }

    .mobmenuList .accordion .accordion-item {
        padding: 0;
    }

    .sec-footer .ftr-item {
        padding: 0 0px;
        text-align: center;
    }

    .social-icon {
        justify-content: center;
    }

}

@media (max-width: 575px) {

    .container.custom-container {
        max-width: none;
    }

}