html {
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #444;
  font-family: 'Open Sans', sans-serif;
}

a {
  color: #baad85;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #baad85;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #baad85;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

button:focus, button:visited, .btn:focus, .btn:visited{
  outline: none;
  box-shadow: none;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #1bb1dc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
  padding: 0 0 10px 0;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar .social-links {
  text-align: right;
}

#topbar .social-links a {
  color: #535074;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
}

#topbar .social-links a:hover {
  color: #1bb1dc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  /* height: 110px; */
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-pages {
  padding: 5px 0;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled #topbar,
#header.header-pages #topbar {
  display: none;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #413e66;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  max-width: 180px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.banner-section{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 800px;
  position: relative;
  display: flex;
  align-items: center;
}
.banner-section::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content:'';
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); */
  background-color: #00000054;
}

.banner-content{
  text-align: center;
  color: #FFFFFF;
  padding-top: 60px;
}
.banner-content h1{
  font-weight: 600;
  font-size: 75px;
  text-transform: capitalize;
}
.banner-content p{
  font-size: 24px;
  margin-bottom: 40px;
}
.btn-get-started{
  font-size: 20px;
  font-weight: 600;
  padding: 14px 50px;
  background: #BAAD85;
  box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  color: #fff;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  display: inline-block;
}

.main-nav a {
  display: inline-block;
  position: relative;
  color: #ffffff;
  padding: 6px 14px;
  transition: 0.3s;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
#header.header-scrolled .main-nav a{
  color: #000;
}
.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #baad85 !important;
  text-decoration: none;
}


.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #065e77;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #1bb1dc;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #795548;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #baad85;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #795548;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgb(121 85 72 / 62%);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/
.section-header{
  margin-bottom: 60px;
  text-align: center;
}
.section-pad{
  padding: 100px 0px;
}
.section-header h3 {
  font-size: 45px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-header h3 span{
  color: #BAAD85;
}

.section-header p {
  font-size: 24px;
  margin-bottom: 10px;
  color: #545454;
}


/* Section with background
--------------------------------*/

.section-bg {
  background: #f5f8fd;
}

/* About Us Section
--------------------------------*/
.signin-btn{
  margin-left: 14px;
  background-color: #BAAD85;
  color: #fff !important;
  border-radius: 5px;
}
.about-left-video{
  position: relative;
  margin-right: 84px;
  border-radius: 0px 30px 30px 0px;
  box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.about-left-video .youtube-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.about-left-video .youtube-btn img{
  width: 76px;
}
.about-left-video video{
  width: 100%;
  height: 665px;
  object-fit: cover;
  object-position: 50% top;
}
.about-left-video .thumbnail-img{
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% top;
}
.about-right-content{
  padding-left: 46px;
  padding-right: 100px;
}
.about-right-content h4{
  font-size: 30px;
  font-weight: 600;
  color: #000;
}
.about-right-content p{
  font-size: 18px;
  color: #545454;
}
.experience-bx{
  height: 100%;
  /* padding-bottom: 40px; */
  transition: all 0.3s;
}
.experience-bx:hover{
  transform: translateY(-10px);
  transition: all 0.3s;
}
.exper-inner-bx{
  height: 100%;
  box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}
.exper-inner-bx img{
  width: 100%;
  transition: all 0.3s;
}
.experience-bx:hover .exper-inner-bx img{
  transform: scale(1.2);
  transition: all 0.3s;
}
.exper-inner-img{
  overflow: hidden;
}
.exper-bx-content{
  text-align: center;
  padding: 24px 40px;
}
.exper-bx-content h4{
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
  color: #000;
}
.exper-bx-content p{
  font-size: 16px;
  color: #545454;
  margin: 0;
}
.desti-bx-content{
  padding: 16px 20px;
}
.desti-bx-top{
  padding-right: 60px;
  position: relative;
  margin-bottom: 20px;
}
.desti-bx-top span{
  width: 42px;
  height: 42px;
  background-color: #E7B20E;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 100%;
  text-align: center;
  color: #fff;
}
.desti-bx-top span img{
  width: 12px !important;
  margin: 0px auto;
  margin-top: 4px;
}
.desti-bx-top h4{
  font-weight: 600;
  font-size: 24px;
  color: #000;
  margin-bottom: 10px;
}
.desti-bx-top ul li{
  display: inline-block;
  font-size: 18px;
  color: #545454;
  padding-right: 14px;
}
.desti-bx-content p{
  font-size: 16px;
  color: #545454;
  margin-bottom: 20px;
}
.price-tag span{
  font-weight: 600;
  font-size: 16px;
  color: #545454;
  line-height: 22px;
}
.price-tag h3{
  font-weight: bold;
  font-size: 24px;
  color: #BAAD85;
  margin: 0;
}
.book-btn{
  padding: 7px 20px;
  background-color: #BAAD85;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
}
.owl-navs{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.owl-navs .owl-prev, .owl-navs .owl-next{
  width: 24px;
  height: 44px;
  background: #BAAD85;
  border-radius: 4px;
  border: none;
  color: #fff;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.destination-carousel{
  padding: 0px 20px 20px;
}
.features-list ul li{
  padding-bottom: 20px;
  text-transform: uppercase;
}
.features-list ul li img{
  width: 50px;
  margin-right: 30px;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #545454;
}
.features-list p{
  font-size: 16px;
  color: #545454;
}
.hotel-img{
  padding-left: 20px;
}
.hotel-img img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.15);
}
.customer-review{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 0px;
  position: relative;
}
.customer-review::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  content: '';
}
.customer-bx{
  text-align:center;
}
.customer-bx img{
  width: 110px;
  margin-bottom: 30px;
}
.customer-bx h3{
  font-weight: 800;
  font-size: 35px;
  color: #fff;
}
.customer-bx h4{
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0;
}
.gallery-img {
  overflow: hidden;
  margin-bottom: 30px;
}
.gallery-img img{
  width: 100%;
  transition: all 0.3s;
}
.gallery-img:hover img{
  transform:scale(1.2);
  transition: all 0.3s;
}
.testimonial-content {
  text-align: center;
}
.testimonial-content img{
  width: 60px !important;
  margin: 0px auto 30px;
}
.testimonial-content p{
  font-size: 18px;
  color: #545454;
}
.testimonial-author{
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-author img{
  width: 80px !important;
  height: 80px;
  border-radius: 100%;
  margin-right: 20px;
  margin-left: 0px;
  margin-bottom: 0;
}
.testimonial-author h4{
  font-weight: 600;
  font-size: 24px;
  color: #545454;
  margin: 0;
  letter-spacing: 0.01em;
}
.partner-content{
  text-align: center;
}
.partner-content img{
  height: 90px;
  object-fit: contain;
  object-position: 50% center;
}
.footer-bg{
  background-color: #000;
}
.footer-top{
  padding: 40px 0px 20px;
  border-bottom: 1px solid #fff;
}
.footer-box{
  margin-bottom: 20px;
}
.footer-box h4{
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.footer-box p{
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  line-height: 22px;
  margin: 0;
}
.footer-box ul li{
  padding-bottom: 10px;
  position: relative;
  color: #fff;
}
.footer-box ul li a{
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.social-links ul li{
  display: inline-block;
  padding-right: 20px;
}
.contact-bx ul li{
  padding-left: 40px;
}
.contact-bx ul li img{
  position: absolute;
  top: 0;
  left: 0;
}
.footer-bottom{
  color: #fff;
  padding: 20px;
  text-align: center;
}
.footer-bottom p{
  font-size: 14px;
  margin: 0;
}
.book-btn:hover{
  color:#fff;
}
.service-bx{
  height: 100%;
  padding-bottom: 30px;
}
.service-inner-bx{
  height: 100%;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  box-shadow: 3px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.service-inner-bx img{
  width: 95px;
  margin-right: 30px;
}
.service-bx-content h4{
  font-weight: 600;
  font-size: 24px;
  margin: 0;
}
.service-bx-content p{
  font-size: 16px;
  color: #545454;
}
.service-bx-content a{
  font-weight: 600;
  font-size: 20px;
}
.travel-content{
  padding: 20px 30px;
  text-align: center;
}
.travel-content h4{
  font-size: 30px;
  color: #F51E10;
  padding-bottom: 10px;
  position: relative;
  font-weight: 700;
}
.travel-content h4:before{
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80%;
  transform: translateX(-50%);
  height: 4px;
  content: '';
  background-color:#F51E10 ;
}
.travel-content p{
  width:90%;
  margin: 0px auto;
}
.tx-brown h4{
  color: #BE9928;
}
.tx-brown h4::before{
  background-color:#BE9928 ;
}
.tx-green h4{
  color: #64DF50;
}
.tx-green h4::before{
  background-color:#64DF50;
}
.about-pg-content h4{
  font-weight: 600;
  font-size: 45px;
}
.about-pg-content h4 span{
  color:#BAAD85;
}
.about-pg-content p{
  font-size: 16px;
}
.about-pg-img img{
  width: 100%;
  filter: drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.25));
  border-radius: 10px;
}
.benefit-img{
  padding-right: 20px;
}
.benefit-img img{
  width: 100%;
  filter: drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.25));
  border-radius: 10px;
}
.benefit-right-content{
  padding-left: 20px;
}
.benefit-right-content h4{
  font-weight: 600;
  color: #000;
  font-size: 30px;
}
.benefit-right-content ul{
  margin-bottom: 10px;
}
.benefit-right-content ul li{
  padding-bottom: 30px;
  padding-left: 60px;
  font-size: 20px;
  position: relative;
}
.benefit-right-content ul li img{
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
}
.happy-trip-bx{
  box-shadow: 3px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.happy-trip-img img{
  width: 100%;
}
.happy-trip-content {
  padding:20px 40px;
}
.happy-trip-content h4{
  font-weight: 600;
  font-size: 24px;
  color: #B99C43;
}
.happy-trip-content p{
  font-size: 16px;
  line-height: 22px;
  color: #545454;
  margin: 0;
}
.activity-bx{
  position: relative;
}
.activity-bx img{
  width: 100%;
}
.activity-bx-content{
  position: absolute;
  left: 0;
  bottom: 26px;
  margin-right: 40px;
  background-color: #fff;
  padding: 7px 20px;
  min-height:91px ;
}
.activity-bx-content h4{
  font-weight: bold;
  font-size: 20px;
  color: #BAAD85;
  margin-bottom: 5px;
}
.activity-bx-content p{
  font-size: 16px;
  color: #545454;
  margin: 0;
}
.summer-activity-bx{
  position: relative;
  margin-bottom: 30px;
}
.summer-activity-bx img{
  width: 100%;
}
.summer-activity-bx h4{
  position: absolute;
  bottom: 0;
  left: 0;
  width:100%;
  margin: 0;
  padding: 12px 20px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
.destination-bx img{
  width:100%;
}
.destination-bx{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  filter: drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.2));
  margin-bottom: 30px;
}
.destination-bx-content{
  position: absolute;
  bottom:0;
  left: 0;
  width: 100%;
  padding:20px 10px;
  border-radius: 10px;
  background-color: #fff;
}
.destination-bx-content h4 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  color: #545454;
  position: relative;
  padding-left: 38px;
}
.destination-bx-content h4 img{
  width: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.services-bx{
  height: 100%;
  padding-bottom: 30px;
}
.services-bx-inner{
  display: flex;
  box-shadow: 3px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 30px 40px;
  height: 100%;
}
.services-bx-inner img{
  width:95px;
  height: 95px;
  object-fit: cover;
  margin-right: 30px;
}
.services-bx-content h4{
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
}
.services-bx-content p{
  font-size: 16px;
  margin: 0;
  color: #545454;
}
.map-img{
  padding-right: 35px;
}
.map-img img{
  width: 100%;
}
.contacts-content{
  padding: 40px 100px 40px 35px;
}
.contacts-content h4{
  font-weight: 600;
  font-size: 24px;
  color: #000;
}
.contacts-content p{
  font-weight: 600;
  font-size: 16px;
  color: #545454;
}
.contacts-content ul li{
  padding-bottom: 20px;
}
.contacts-content ul li a{
  display: inline-block;
  padding-left: 50px;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #545454;
}
.contacts-content ul li a img{
  width:24px;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-form-area{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.contact-form h4{
  text-align:center;
  font-weight: 600;
  font-size: 35px;
  color: #fff;
  margin-bottom: 60px;
}
.form-control:focus{
  box-shadow: none;
}
.contact-form .form-control{
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 10px 20px;
}
.contact-form .form-control::placeholder{
  color: #fff;
}
.submit-btn{
  padding: 6px 35px;
  background-color: #fff;
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
}
.sigin-img img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 50% center;
}
.sigin-right-content{
  padding-left:90px;
  padding-right: 115px;
}
.sigin-right-content h2{
  font-weight: bold;
  font-size: 45px;
  margin-bottom: 40px;
  color: #000;
}
.sigin-right-content label{
  font-weight: 600;
  font-size: 16px;
  color: #545454;
  margin-bottom: 20px;
  display: inline-block;
}
.sigin-right-content .form-group{
  margin-bottom: 30px;
}
.sigin-right-content .form-control{
  background: #FFFFFF;
  border: 1px solid #BDBDBD;
  border-radius: 30px;
  height: 44px;
  padding: 10px 20px;
}
.sigin-right-content a{
  font-weight: 600;
  font-size: 16px;
  color: #545454;
}
.login-btn{
  background: #BAAD85;
  border-radius: 5px;
  padding: 7px 30px;
  font-weight: 600;
  font-size: 20px;
  color: #fff !important;
}
.privacy-content h4{
  font-weight: 600;
  font-size: 24px;
  color: #000;
}
.privacy-content p{
  font-size: 16px;
  color: #545454;
}
.dashboard-banner{
  height: 500px;
}
.dashboard-link{
  background-color: #795548;
  height: 100%;
  overflow-x: auto;
  min-height: 100vh;
  padding: 20px;
  position: fixed;
  width: 320px;
  box-shadow: 0px 0px 15px #0000005c;
  top: 0;
  left: 0;
}
.dashboard-link::-webkit-scrollbar{
  display: none;
}
.dashboard-link ul li a{
  padding: 10px 20px 10px 40px;
  display: inline-block;
  width: 100%;
  position: relative;
  color: #fff;
  transition: all 0.3s;
}

.dashboard-link ul li.active a, .dashboard-link ul li a:hover{
  color: #BAAD85;
  transition: all 0.3s;
}
.dashboard-link ul li a i{
  position: absolute;
  left: 5px;
  top: 50%;
  transform:translateY(-50%);
  font-size:20px;
}
.dashboard-content{
  padding: 20px 40px;
  background-color: #e3e3e3;
  min-height: 100vh;
  margin-left: 320px;
  overflow-y: auto;
}
.dashboard-inner-banner h4{
  font-size: 20px;
  margin-bottom: 30px;
}
.credit-card{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 30px;
  box-shadow: 2px 6px 20px rgb(0 0 0 / 15%);
  border-radius: 30px;
  padding: 20px;
  color: #fff;
}
.chip-img img{
  width: 60px;
}
.card-logo-img img{
  height: 60px;
}
.card-head{
  margin-bottom:20px;
}
.card-head h4{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.card-head h3{
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}
.card-no{
  margin-bottom: 20px;
}
.card-details h6{
  margin-bottom: 10px;
}
.profile-card{
  padding: 20px;
  box-shadow: 2px 6px 20px rgb(0 0 0 / 15%);
  border-radius: 30px;
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}
.user-profile-pic img{
  width: 80px;
  height: 80px;
  border-radius: 100%;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 20px;
}
.user-profile-pic{
  text-align: center;
}
.profile-card h4{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.dashboard-desk{
  position: relative;
}
.profile-details table th, .profile-details table td{
  font-size: 16px;
  padding: 6px;
}
.profile-details h4, .user-package-details h4{
  font-size: 24px;
  font-weight: 700;
}
.profile-details table {
  width: 100%;
}
.profile-details table td img {
  height: 150px;
}
.profile-card-area{
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 2px 6px 20px rgb(0 0 0 / 15%);
  margin-bottom: 30px;
}
.card-details p{
  margin-bottom: 20px;
}
.skeleton-loader{
  width: 100%;
  height: 300px;
  display: block;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 80%
    ),
    lightgray;
  background-repeat: repeat-y;
  background-size: 50px 500px;
  background-position: 0 0;
  animation: shine 1s infinite;
}
.docment-box{
  height: 100%;
  padding-bottom: 30px;
}
.docment-box-inner{
  box-shadow: 0px 0px 15px #0000003d;
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.docment-box-inner::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #0000003d;
  opacity: 0;
  transition: all 0.3s;
}
.docment-box-inner:hover::before{
  opacity: 1;
  transition: all 0.3s;
}
.doc-link{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 15px;
  background-color: #E73F80;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.docment-box-inner:hover .doc-link{ 
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}
.docment-box-inner img{
  width: 100%;
}
.docment-box-inner h5{
  padding: 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
}

.rating>input {
  display: none
}

.rating>label {
  position: relative;
  font-size: 40px;
  color: #FFD600;
  cursor: pointer;
  margin-right: 10px;
}

.rating>label::before {
  content: "\2605";
  position: absolute;
  opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
  opacity: 1 !important
}

.rating>input:checked~label:before {
  opacity: 1
}

.rating:hover>input:checked~label:before {
  opacity: 0.4
}
.img-upload-btn{
  position: relative;
  padding: 5px 20px;
  background-color: #bf8b30;
  color: #fff  !important;
}
.img-upload-btn input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#image_preview{
  margin: 0px -10px;
}
#image_preview img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center;
  margin: 10px;
}
.bok-history-list{
  padding: 10px ;
  box-shadow: 0px 0px 15px #0000003d;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 30px;
}
.booking-date{
  background-color: #979393;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 5px 0px 0px 5px;
  margin-right: 10px;
  padding: 5px;
}
.booking-date span{
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}
.booking-hist-cont{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.booking-hist-cont h4{
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.pdf-box-inner{
  padding: 10px;
  box-shadow: 0px 0px 15px #0000003d;
  border-radius: 10px;
  height: 100%;
}
.pdf-box-inner h4{
  padding-top: 10px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.doc-pdf{
  height: 150px;
  width: 100%;
  text-align: center;
  background-color: #BAAD85;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff !important;
  letter-spacing: 0.5px;
}
@keyframes shine {
  to {
    background-position: 100% 0;
  }
}
.view-btn{
  padding: 5px 10px;
  border-radius: 2px;
  background-color: #BAAD85;
  color: #fff !important;
}
.menu-btn{
  position: absolute;
  top: 10px;
  right: 15px;
  border: 1px solid #474646;
  padding: 5px 15px;
  font-size: 12px;
  display: none;
}
.dashboard-link .menu-btn{
  color: #fff;
  border: 1px solid #fff;
}

.partner-content{
  background-color: #dedede;
  padding: 10px;
  border-radius: 5px;
}

.packages-box{
  background: #FFFFFF;
  box-shadow: 3px 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  text-align: center;
  overflow: hidden;
}

.packages-box-top{
  padding: 20px 30px;
}

.packages-box-top h4{
  font-weight: 800;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 0;
}
.packages-box-top span{
  font-size: 14px;
  display: inline-block;
  margin-bottom: 30px;
  color: #979494;
}
.packages-box-top p{
  font-weight: 600;
  font-size: 16px;
  color: #979494;
  margin-bottom: 10px;
}
.packages-box-top h2{
  font-weight: 600;
  font-size: 30px;
  color: #545454;
  margin: 0;
}
.packages-box-bottom{
  padding:15px 20px 30px;
  color: #fff;
}
.packages-box-bottom.purple-bg{
  background-color: #800080;
}
.packages-box-bottom h4{
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
.packages-box-bottom p{
  font-size: 14px;
  margin-bottom: 10px;
}
.packages-box-bottom h2{
  font-weight: bold;
  font-size: 30px;
  margin: 0;
}
.packages-box-bottom.red-bg{
  background-color: #BA0000;
}
.packages-box-bottom.green-bg{
  background-color: #05A608;
}
.packages-box-bottom.blue-bg{
  background-color: #005ECE;
}
.packages-terms h4{
  font-size: 30px;
  color: #000;
  font-weight: 700;
  text-align: center;
}
.packages-terms ul li{
  padding-bottom: 20px;
  font-size: 16px;
  color: #999999;
}
.packages-terms ul li i{
  margin-right: 15px;
}
.packages-area p{
  text-align: center;
  font-size: 16px;
}