

/* 
Table Content  
--Global Css
--defa#ffbult css
*/

:root {
  --primary: #ffb224;
  --secondary: #4f3325;
}

/* Global Css  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



/* default css values  */

a:link,
a:visited {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}

a:link:active,
a:visited:active {
  color: var(--primary);
}

button:hover {
  color: var(--primary);
}



/************** home page css ******************/

/* top header css  */
#top-header {
  width: 100%;
  height: auto;
  background: var(--secondary);
}

#top-header .top-header-btn {
  padding: 5px;
}

#top-header .top-header-btn a {
  padding: 8px 15px;
  /* margin-right: 42px;   */
  background: white;
  color: var(--secondary);
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-align: left;
}

/* bottom header css  */
#bottom-header {
  width: 100%;
  height: auto;
  border: 1px solid #000000;
}

.navbar .nav-item {
  padding-left: 5px;
  padding-right: 5px;
}

.nav-cntnt li a {
  text-transform: uppercase;
  font-size: 0.8em !important;
  font-weight: 600 !important;
  color: black !important;
}

/* ----------------------new menu css start--------------------------- */
/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
}
nav{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 0px;
  text-transform: uppercase;
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
        flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 10px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #4f3325;
  font-size: 13px;
  font-weight: 600;
}
.links li:hover .about-arrow,
.links li:hover .fd-arrow,
.links li:hover .super-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #4f3325;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .about-sub-menu,
nav .navbar .links li:hover .fd-sub-menu,
nav .navbar .links li:hover .super-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(79,51,37,0.1);
}
.navbar .links li .sub-menu a{
  color: #4f3325;
  font-size: 13px;
  font-weight: 600;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .sub-menu .more1-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.navbar .links li .sub-menu .more-sub-menu1{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.links li .sub-menu .more1:hover .more-sub-menu1{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 3px 0px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    right: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #fff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 45px;
      color: #4f3325;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
    .navbar .links li .sub-menu .more-sub-menu1{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
    .navbar .links li .sub-menu .more-sub-menu1 li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .about-arrow,
    .links li:hover .fd-arrow,
    .links li:hover .super-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
    .navbar .links li .sub-menu .more-sub-menu1{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
    .links li .sub-menu .more:hover .more-sub-menu1{
    display: none;
  }
  nav .navbar .links li:hover .about-sub-menu,
      nav .navbar .links li:hover .fd-sub-menu,
    nav .navbar .links li:hover .more-sub-menu,
    nav .navbar .links li:hover .more-sub-menu1,
    nav .navbar .links li:hover .super-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .about-sub-menu,
    .navbar .nav-links.show2 .links .fd-sub-menu,
    .navbar .nav-links.show3 .links .more .more-sub-menu,
    .navbar .nav-links.show4 .links .more1 .more-sub-menu1,
    .navbar .nav-links.show5 .links .super-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .about-arrow{
        transform: rotate(180deg);
}
        .navbar .nav-links.show2 .links .fd-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show5 .links .super-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show3 .links .more-arrow{
      transform: rotate(90deg);
    }
    .navbar .nav-links.show4 .links .more1-arrow{
      transform: rotate(90deg);
    }

}

@media (max-width:1200px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    right: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #fff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 45px;
      color: #4f3325;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
    .navbar .links li .sub-menu .more-sub-menu1{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
    .navbar .links li .sub-menu .more-sub-menu1 li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .about-arrow,
    .links li:hover .fd-arrow,
    .links li:hover .super-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
    .navbar .links li .sub-menu .more-sub-menu1{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
    .links li .sub-menu .more:hover .more-sub-menu1{
    display: none;
  }
  nav .navbar .links li:hover .about-sub-menu,
      nav .navbar .links li:hover .fd-sub-menu,
    nav .navbar .links li:hover .more-sub-menu,
    nav .navbar .links li:hover .more-sub-menu1,
    nav .navbar .links li:hover .super-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .about-sub-menu,
    .navbar .nav-links.show2 .links .fd-sub-menu,
    .navbar .nav-links.show3 .links .more .more-sub-menu,
    .navbar .nav-links.show4 .links .more1 .more-sub-menu1,
    .navbar .nav-links.show5 .links .super-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .about-arrow{
        transform: rotate(180deg);
}
        .navbar .nav-links.show2 .links .fd-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show5 .links .super-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show3 .links .more-arrow{
      transform: rotate(90deg);
    }
    .navbar .nav-links.show4 .links .more1-arrow{
      transform: rotate(90deg);
    }

.fd-contact {
    margin-top: 25px;
    width: 93%;
}

.col-lg-6 {
    flex: 0 0 auto;
    width: 100%;
}


.fd-contact-m {
    display: inline-block !important;
}

.px-3 {
    padding-right: 0.3rem!important;
    padding-left: 0.3rem!important;
}

.whatsup_border {
    margin-top: 0px !important;
}

.call_border {
    margin-top: 0px !important;

}

}

@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}


/* -------------------------------new menu css end-------------------------------------------- */

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
    background: #ffffff!important;
    color: #4f3325!important;
    font-weight: bold;
    text-decoration: none;
    border-color: #fff;
}

/* menu css  */



.hvr-btn a:hover {
  background-color: var(--secondary) !important;
  color: white !important;
  transition: 0.4s;
}

.line-dvdr {
  font-weight: 500;
  font-size: 22px;
  padding-left: 15px;
  padding-right: 15px;
}

.login-icons a {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: black;
}

.login-icons a.active {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #fff0d3;
  display: flex;
  justify-content: center;
  align-items: center;
}



.cart-badge {
  background-color: var(--primary);
  border-radius: 50% !important;
  font-size: 0.5em;
  color: black;
  position: relative;
  left: 8px;
  bottom: 7px;
  font-weight: 600;
}

.cart-item {
  padding-right: 1.375rem !important;
  padding-left: 1.375rem !important;
}

.cntnr-abt {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.offcanvas {
  width: 70% !important;
}

.mobile-menu {
  left: 82%;
  position: absolute;
  bottom: 24px;
  outline: none !important;
  border: none !important;
}

@media screen and (max-width: 480px) {
 
  .drv-badge {
    margin: 0px !important;
  }


}

/* home slider css */

#home-slider .carousel-indicators button {
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: relative;
  margin: 0 10px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

#home-slider .carousel-indicators button:after {
  border-radius: 50%;
  position: absolute;
  content: "";
  top: -7px;
  left: -7px;
  bottom: -7px;
  right: -7px;
}

#home-slider .carousel-indicators button.active {
  background-color: white;
}

#home-slider .carousel-item .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
}

#home-slider .carousel-item .carousel-caption h5 {
  font-size: 45px;
  font-weight: 500;
  line-height: 54px;
  letter-spacing: 0em;
  text-align: center;
}

#home-slider .carousel-item .carousel-caption .slider-btn {
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 10px, 20px, 10px, 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 100px;
  width: 100px;
  background-size: 100%, 100%;
  background-image: none;
}

.carousel-control-next-icon:after {
  content: url("../img/icons/right-arrow.svg");
  font-size: 50px;
  color: white;
}

.carousel-control-prev-icon:after {
  content: url("../img/icons/left-arrow.svg");
  font-size: 50px;
  color: white;
}

.rounded-video-frame {
  border-radius: 20px;
  height: 210px;
}

/* featured-points css  */

#featured-points {
  width: 100%;
  height: auto;
  background-image: url("../img/background/1.png");
}


#featured-points h3 {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
}
h2.new-bold {
    font-size: 24px;
    font-weight:bold;
}

#featured-point h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
}

#featured-points .featured-card {
  padding: 10px;
}

.featured-card p {
  font-weight: 300;
}

/* drives css  */

#drives {
  width: 100%;
  height: auto;
  margin-top: 4em;
}

#drives .drives-item .nav-item .nav-link {
  color: black;
  font-size: 0.85em;
}

.image-box {
  position: relative;
  margin: auto;
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
}

.image-box img {
  max-width: 100%;
  transition: all 0.5s;
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
}

.image-box:hover img {
  transform: scale(1.1);
  cursor: pointer;
}

.drives-card .drv-img {
  max-height: 310px;
  max-width: 437px;
}

.drives-card .drv-img:hover {
  padding: 12px;
  transition: 0.6s;
}

.fd-content,
.fd-content .row {
  padding-left: 12px;
  padding-top: 2px;
}

.drv-details {
  font-weight: 300;
  /*margin-bottom: 4px;*/
  font-size: 14px;
  margin-bottom: 4px !important;
}

.drv-badge {
  padding-left: 14px;
  padding-right: 14px;
}

#drives .drives-item .nav-item .active {
  box-shadow: 0px 4px 19px 6px #00000012;
  background: linear-gradient(0deg, #d9d9d9, #d9d9d9),
    linear-gradient(0deg, #ffffff, #ffffff);
  border-radius: 100px;
  border: 1px solid rgba(217, 217, 217, 1);
  color: var(--primary);
  background: #fff;
}

.fd-content h6 {
  font-size: 18px;
}

.fd-content h6:hover {
  color: var(--primary);
  cursor: pointer;
}

#video-gallery .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-35px);
}

#video-gallery .owl-nav .owl-prev span,
#video-gallery .owl-nav .owl-next span {
  line-height: 50%;
  font-size: 70px;
  display: inline-block;
  color: var(--primary);
  transition: all 0.3s;
}

#video-gallery .owl-nav .owl-next {
  position: absolute;
  right: -50px;
}

#video-gallery .owl-nav .owl-prev {
  position: absolute;
  left: -50px;
}

.counter-num {
  font-weight: 600;
  font-size: 3.7em;
}

.counter-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 0.9!important;
}

.button-btn {
  border: 2px solid var(--secondary);
  color: var(--secondary) !important;
  border-radius: 30px;
  padding: 10px 15px;
  font-weight:700;
 
}

/* counter area css */
#counter-area {
  width: 100%;
  height: auto;
  background-color: #f3fbff;
}

/* tours section css  */
#tours {
  width: 100%;
  height: auto;
  background-image: url("../img/background/tours.png");
  /* height: 90vh; */
  background-size: 100% 100%;
}

.content-tour-box {
  padding-left: 15%;
  padding-right: 15%;
}

#tours .content-tour .tour-btn {
  padding: 8px 19px;
  border-radius: 30px;
  background-color: #fff;
  color: var(--secondary);
  border: 3px solid var(--secondary);
  font-weight: 600;
}

.explore-card {
  height: 235px;
  width: 235px;
  border-radius: 20px;
}

#tours .tour-card h3 {
  color: var(--primary);
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 30px;
  padding: 30px;
  /* justify-content: center; */
}

.grid-item1 {
  display: grid;
  grid-column-start: 1;
  grid-column-end: 6;
  grid-row-start: 1;
  grid-row-end: 6;
}

.grid-item2 {
  display: grid;

  grid-column-start: 1;
  grid-column-end: 6;
  grid-row-start: 6;
  grid-row-end: 12;
}

.grid-item3 {
  display: grid;
  grid-column-start: 6;
  grid-column-end: 12;
  grid-row-start: 4;
  grid-row-end: 8;
}

.grid-item-testimonial {
  border-radius: 20px;
}

#tours .tour-card img {
  width: 48px;
  height: 48px;
  margin-top: 1.5em;
}

@media screen and (max-width: 480px) {
  .explore-card {
    height: 150px;
    width: 150px;
    padding: 1px !important;
  }
 

  .grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 30px;
    padding: 30px;
    justify-content: center;
  }

  .grid-item1 {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 6;
  }

  .grid-item2 {
    display: grid;

    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 6;
    grid-row-end: 12;
  }

  .grid-item3 {
    display: grid;
    grid-column-start: 6;
    grid-column-end: 12;
    grid-row-start: 4;
    grid-row-end: 8;
  }

  .grid-item-testimonial {
    border-radius: 20px;
  }

  .carousel-item img {
    height: 180px !important;
  }

  #video-gallery {
    margin-left: 15px;
    margin-right: 15px;
  }

  .drives-head {
    text-align: center !important;
  }

  .drives-head2 {
    display: flex;
    justify-content: center;
  }

  .great-man {
    text-align: center;
  }

  .great-man p {
    font-size: 0.7em;
  }

  .great-man img {
    height: 170px;
    width: 150px;
  }

  .roadmap {
    text-align: center;
  }

  .col-7 {
    width: 50% !important;
  }

  .tour-card h3,
  .tour-card h5 {
    font-size: 0.9em;
  }

  .slick-slide .card-img-top {
    /*height: 220px !important;*/
    height: auto !important;
  }


}

/* testimonial card css  */
#testimonial-section {
  width: 100%;
  height: auto;
}

#testimonial-section .card {
  border: 0;
  margin: 1px;
  outline: none;
  cursor: pointer;
}

#testimonial-section .card img {
  transition: all 0.3s ease;
}

/*#testimonial-section .card:hover img {*/
/*  filter: grayscale(100%);*/
/*}*/

.testimonial-body {
  background-color: var(--primary) !important;
  color: white;
  line-height: 1.3;
  margin-top: -5px;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}



.testimonial-body .testi-text {
    min-height: 65px;
}


p.testi-text {
    font-size: 15px;
}

#items .card-img-top {
  position: absolute !important;
}

.quote-img {
  border-radius: 50%;
  padding: 15px;
  height: 50px;
  width: 50px;
  background-color: white !important;
  position: absolute;
  top: 250px;
  left: 12px;
}

/*.testimonial-head {*/
/*  margin-top: 6%;*/
/*}*/

.slick-dots li button {
  background-color: var(--primary);
  height: 15px;
  background-image: none;
  width: 15px;
  border-radius: 50%;
}

/*.card-img-top {*/
/*  height: 155px !important;*/
/*}*/

.slick-dots li.slick-active button {
  background-color: gray;
  height: 15px;
  background-image: none;
  width: 15px;
  border-radius: 50%;
}



.slick-dots {
  display: flex;
  justify-content: end;
  bottom: 22px !important;
  
}

#testimonial-section .slick-prev,
#testimonial-section .slick-next {
  background-color: var(--primary);
  height: 32px;
  width: 32px;
  background-image: none;
  top: 90%;
  z-index: 10;
  padding-bottom: 5px;
}

#testimonial-section .slick-prev {
  left: 10px;
}

#testimonial-section .slick-next {
  left: 42px;
}

#testimonial-section .slick-next:hover,
#testimonial-section .slick-prev:hover {
  background-color: var(--secondary);
}

#testimonial-section .slick-next:before {
  content: url("../img/icons/small-right.svg");
  color: white;
  font-weight: 600;
}

#testimonial-section .slick-prev:before {
  content: url("../img/icons/small-left.svg");
  color: white;
  font-weight: 600;
  padding-bottom: 1px;
}

.slick-prev:before, .slick-next:before {

  font-size: 23px;}

/* blog section css  */

#blog-section .blog-card span {
  padding: 8px 18px;
  background: white;
  color: var(--secondary);
  border-radius: 20px;
  z-index: 10;
  position: absolute;
  font-weight: 600;
  margin: 10px;
}

.drv-badge {
  /* margin-left: -32px; */
  display: inline-block;
  padding: 0.55em 1.1em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 1.25rem !important;
}

.blog-card h5:hover {
  color: var(--primary);
  cursor: pointer;
}

/* footer css  */
#footer-top {
  width: 100%;
  height: auto;
  background: #000000;
}

#footer-top .ao-promise {
  max-width: 1440px !important;
}

#footer-top .footer-card {
  background: var(--secondary);
  padding: 16px;
}

#footer-top .newslatter-form form input[type="text"],
.newslatter-form form input[type="email"] {
  width: 100%;
  padding: 5px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid var(--primary);
  border-width: 0px 0px 2px 0px;
  background: #000000;
  color: white;
}

#footer-top .newslatter-form form input[type="text"]:focus,
.newslatter-form form input[type="email"]:focus {
  outline: none;
  border-image: linear-gradient(to right, #fff 0%, #fff 100%) 1;
  border-width: 0px 0px 2px 0px;
  color: white;
}

#footer-middle {
  width: 100%;
  height: auto;
  background: #2b2b2b;
  border-top: 1px solid white;
}

#footer-middle .quick-link a {
  font-weight: 600;
  font-size: 0.8em;
}

#footer-middle a {
  color: white;
}

#footer-middle a:hover {
  text-decoration: underline;
}

#footer-middle .footer-social-media a {
  color: white;
  padding: 10px;
  border-radius: 10px;
}

#footer-middle .footer-social-media a:hover {
  color: #ffb224;
}

#footer-bottom {
  background: #fff;
}


.Blogs_text {
  font-family: Fira Sans;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;

}

.Blogs_highlight {
  font-family: Fira Sans;
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: center;
  text-transform: uppercase;
}

.Blog_new__tag {
  height: 26px;

  padding: 2px 15px 5px 15px !important;
  border-radius: 0px 100px 100px 0px !important;

  margin: 12px 0px 0px 0px !important;



}

.slider-butt span {
  top: 40%;
}

.slick-slider {
  overflow: hidden;
  margin-top: 25px;
  
}

.slick-slide {
  padding: 7px;
}



.slide-arrow-left {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 45%;
  left: 25px;
  text-align: center;
  background: #FFB224;
  color: #FFFFFF;
  font-size: 26px;

}

.slide-arrow-right {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 45%;
  right: 25px;
  text-align: center;
  background: #FFB224;
  color: #FFFFFF;
  font-size: 26px;

}

/*.rounded {*/
/*  border-radius: 1rem !important*/
/*}*/

.section-headline {
  color: #FFB224;
  text-transform: uppercase;

}

.blog-detail {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  position: relative;

}

.border__comment {
  border-bottom: 3px solid #4F3325;
}

.border_tag {
  border: 1px solid #4F3325;
  height: 25px;
}

.small-commnet {
  font-family: Fira Sans;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  color: #787878;
  padding: 3px 0px 0px 13px
}

.auther-btn {

  padding: 1px 10px 1px 10px;
  border-radius: 5px;
  background: #FFB224;
  height: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  margin-left: 12px;
}

.blog-sidebar {
  color: #4F3325;
}

.borer_sectiona {
  border-bottom: 5px solid #4F3325;
  width: 74px;
  height: -1px;
  position: absolute;
}

.blog-sidebarsss224 .Blogs_text {
  font-size: 17px;
}

.blog-sidebarcontect span {
  font-size: 12px !important;
  top: 30%;
}

.section-rating {
  color: #C3C3C3;
  font-size: 14px;
}

.secrion_p_headibg {

  color: #C3C3C3;
}

.slide-arrow-left1 {
  width: 29px;
  height: 36px;
  background: #7D5D4D;
  color: #FFB224;
  font-size: 23px;
  position: absolute;
  text-align: center;

}

.slide-arrow-right1 {
  width: 29px;
  height: 36px;
  background: #7D5D4D;
  color: #FFB224;
  font-size: 23px;
  position: absolute;
  text-align: center;
  margin-left: 35px;

}

.testimonial_arrow_prew .slick-prev {

  top: 50% !important;
  left: 0px !important;

}

.testimonial_arrow_prew .slick-next {
  top: 50% !important;
  right: 0px !important;
  left: inherit !important;

}


.client-say {
  background-color: #f3fbff;
  padding: 40px 0px;
}


.border_left_clinet {
  border-left: 1px solid #6c757d;
  position: absolute;
  height: 130px;
  /*margin-top: 20px;*/
}

.client-say_slider .slick-slide img {
  width: 50%;
}


.tabs-section {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px 0px #0000001A;



}


.tabs-section ul {
  width: 100%;
    padding: 0px 0px;
    margin: 0 !important;
}

.tabs-section ul li {
  float: left;
  padding: auto;

  list-style: none;
  padding-right: 30px;

}

.tabs-section ul li a {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  padding: 6px 0px;
}

.tabs-section ul li a:hover{
  border-bottom: 4px solid #EA9800;
color: #EA9800;
}

.tabs-section ul li .active {
  color: #EA9800;
  margin-top: 10px;
  font-weight: 600;
  border-bottom: 4px solid #EA9800;
 


}

.tabs-section ul li .active:after {

  border-bottom: 3px solid #EA9800;



}

/* accordiam */
.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: inherit;
  box-shadow: inherit;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, .125);
  border-top: none;
  border-left: none;
  border-right: none;
}

.accordion-button {
  padding: 0.2rem 0.0rem;
  font-size: 18px;
}

.accordion-body {
  padding: 0rem 0rem 0.8rem 0rem;
}

.accordion-button::after {
  content: "+";
  background-image: inherit !important;
  font-size: 36px;
  width: auto;
  height: auto;
}

.accordion-button:not(.collapsed)::after {
  background-image: inherit !important;
  font-size: 36px;
  width: none;
  height: none;
  transform: none
}

.slick-dots li.slick-active button:before {
  color: inherit
}

.slick-dots li button:before {
  color: inherit
}




/* broucher */
.client-say_broucher {
  background-color: #f3fbff;
  padding: 40px 0px 20px;
}

.btn-brochure {
  border: 2px solid #EA9800 !important;
  background-color: #fff;

}

.hvr-btn .btn-brochure:hover {
  border: 2px solid var(--secondary) !important;
}

.hvr-btn .btn-brochure:hover i {
  color: #fff !important;
}

.whatsup_border {
  border: 1px solid #EA9800;
  background-color: #fff;
  border-radius: 50%;
  margin-top: -20px;
  width: 68px;
  height: 68px;
  text-align: center;
}

.whatsup_border i {
  color: #EA9800;
  font-size: 30px;
  padding-top: 19px;
}

.whatsup_border:hover {
  background-color: #EA9800;
}

.whatsup_border:hover i {
  color: #fff;
}


.call_border {
    border: 1px solid #EA9800;
    background-color: #EA9800;
    border-radius: 50%;
    margin-top: -20px;
    width: 58px;
    height: 58px;
    text-align: center;
}

.call_border i {
    color: #fff;
    font-size: 28px;
    padding-top: 14px;
}

.call_border:hover {
  background-color: #fff;
}

.call_border:hover i {
  color: #EA9800;
}


/* itinerary */

#itinerary {
  text-align: justify;
}

.itinerary {
  padding: 30px 0px;
}


#itinerary .accordion-button::after {
  background: #C3C3C3;
  border: 1px solid #C3C3C3;
  /* background: #C3C3C3; */
  /* border: 1px solid #C3C3C3; */
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  font-size: 28px;

}


#itinerary .accordion-button::before {
  content: url("../img/icons/pin_icon.png");
  width: 28px;
  height: 20px;
  position: relative;
  left: -9.512px;
  z-index: 999;
  display: inline-block;
  background: #fff;
}

#itinerary .accordion-body {
  padding: 1rem 0rem 0rem 2rem;
}

/* #itinerary .accordion-body ::after{
          border-left: 2px solid #ffc720;
        } */
#itinerary .accordion-item {
  border: none;
  padding: 5px 0px;
}


#itinerary .accordion-item {
  border-left: 2px dashed #ffc720;

}


.btn-warning {
  background-color: #FFB224 !important;
}

.border_dashed_faq {
  border: 1px dashed #ADADAD;
  background: #F2F2F2;
  padding: 5px 10px;


}

@media (max-width:576px){

#itinerary .accordion-button::before {
  width: 15px;
}

}




/* overiew */
.Overview {
  padding: 10px 0px 0px 0px;
  text-align: justify;
}

.about_trip {
  padding: 20px 0px 10px;

}

.border_about_trip {
  border: 1px solid #C3C3C3;
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 10px 0px 5px 0px;
}

.border-bottom_last_ne {
  border-bottom: 1px solid #C3C3C3;

}

.small_text {
  color: #787878;

}

.route_map {
  padding: 40px 0px 10px;
}



/* gallery */

.Gallery {
  padding: 30px 0px;

}

.btn-Gallery {
  border: 2px solid #fff !important;
  background-color: #fff;
  color: #000 !important;

}

.btn-Gallery i {

  color: #FFB224 !important;

}

.hvr-btn .btn-Gallery:hover {
  border: 2px solid var(--secondary) !important;
}

.btn_galleryy_position {
  display: flex;
  position: absolute;
  margin-top: -50px;
}

.main_image {
  height: 100%;
}

.sidebar_pricing {
  padding: 10px 0px;
}

.pricing_card {
  border-radius: 1.25rem;
}

.pricing_uperr {
  background-color: #EA9800;
  border-radius: 1.25rem 1.25rem 0px 0px !important;
  padding: 10px;
}

.pricing_uperr {
  line-height: 0.4 !important
}

.tabs_section_pricing {
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px #0000001A;


}

.pricing_body {
  padding: 0px;
  background:transparent !important;
  --bs-bg-opacity:0 !important;
}
.Get_help{
  color: #EA9800 !important;
}
.pricing__tabs {
  padding: 0px;
}

.pricing__tabs li {
  list-style: none;
}

.pricing__tabs li a {
  padding: 10px 0px;
  font-size: 15px !important;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  text-align: left;
}

.pricing_border1 {
  padding: 0.1rem 1rem;
}


.border_bottom_border {
  border-bottom: 1px solid #C3C3C3;
}


.custum_select {
  padding: 3px 8px !important;
  font-size: 15px;
  width: 170px;
  height: 32px;
  font-weight: bold;
  margin-top: -4px;
}

.form-select:focus {
  border-color: inherit;
  box-shadow: none
}


.pricing_input input {
  width: 40px;
  border: none;
  background: transparent;
  /* padding: 0px 10px; */
  text-align: center;
}

.pricing_input .plus {
  background-color: #C3C3C3;
  border: 1px solid #C3C3C3;
  font-size: 18px;
  padding: 0px 6px;
  border-radius: 50%;
  color: #000;
  font-weight: bold;
}

.pricing_input .minus {
  background-color: #C3C3C3;
  border: 1px solid #C3C3C3;
  font-size: 18px;
  padding: 1px 8px;
  border-radius: 50%;
  color: #000;
  font-weight: bold;
}

.pricing_border-small {

  font-size: 13px;
  color: #787878;
  position: relative;
  top: -5px;
}

.total_pricing{
  color: #EA9800;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type='number'],
input[type='number']:hover,
input[type='number']:focus {
  -moz-appearance: textfield;
}


.get_help-section{
  background-color: #FFF0D3;
  border-radius: 1.25rem;
}

.Download_sidebar {
  border-color: #EA9800;
  color:#EA9800 !important;
  background-color: #fff
}

.get_help_Contact{
  position: relative;
  top: -12px;
  left: 9px;
}

.form-label{
  margin-bottom:0px
}

#footer-top .newslatter-form form input[type="text"], .newslatter-form form input[type="email"]{
  margin: 1px 0 8px 0px;
}


#enquiry-form form   input[type="text"], .enquiry-form form input[type="email"] ,#enquiry-form form textarea{
  width: 100% ;
  padding: 0px;
  margin: 3px 0;
  box-sizing: border-box;
  border: 1px solid var(--primary);
  border-width: 0px 0px 1px 0px;
  background: transparent;
  color: #757575;
}

#enquiry-form form input:focus-visible ,#enquiry-form form textarea {
  box-shadow:none;
  outline: 0;
}

.tabs_section_pricing .pricing__tabs .active{
  color: #EA9800 !important;
  border-bottom: 5px solid #EA9800;

}




/* responsive */
@media only screen and (min-width: 300px) and (max-width: 500px)  {
    
    .grid-container {
    justify-content: center;
}
    
    .bookslink .linkdiv {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 13px;
}

.bookslink {
    display: initial;
    gap: 30px;
}
    
  .offcanvas {
    width: 100% !important;
  }
  .container-fluid{
    padding-right: var(--bs-gutter-x, 0.5rem) !important;
    padding-left: var(--bs-gutter-x, 0.5rem) !important;
    overflow: hidden;
  }
  .btn{
    font-size: 12px;
    padding: 6px 8px;
    margin-right: 10px !important;
    min-width: 68px;
    
  }

  .accordion-button {
    font-size: 16px;
  }
  p{
    font-size: 15px;
  }

  .items_testimonial {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .h5, h5{
    font-size: 1rem;
  }

  .h4, h4 {
    font-size: 24px;
}

.tabs-section ul li .active{
  border-bottom: 2px solid #EA9800;
}
.tabs-section ul li{
  padding-bottom: 10px;
}
.tabs-section ul li a:hover{
  border-bottom: 2px solid #EA9800;

}
#home-slider .carousel-item .carousel-caption h5 {
  font-size: 28px;
  line-height: 30px;
  margin-top: 2px !important;
} 
.navbar1 ul li:hover, .login-icons a:hover{
  background:transparent
}
#home-slider .carousel-item .blog-detail_slider{
  top: 40% !important;
}

.image_banner_commetn img{
  width: 20px;
  height: 20px;
}
.blog-detail{
  padding: 30px 2px;
}
.cntnr-abt{
  padding-left: 14px !important;
  padding-right: 0rem!important;
}
#blog-section .blog-card span{
  margin: 21px;
}

#home-slider .carousel-item .Blogs_landing{

top: 40% !important;
}

#testimonial-section .slick-prev, #testimonial-section .slick-next{
  display: block !important;
}

.slick-dotted.slick-slider{
  padding-bottom: 24px;
}
.slick-dots{
  bottom: 9px !important;
}

#home-slider .carousel-item .carousel-caption{
  top: 38%;
}
.issueh6{
  font-size: 14px !important;
  padding-top: 2px !important;

}
.issueh4{
  font-size: 18px !important;
}
.whatsup_border i{
  font-size: 20px;
  padding-top: 14px;
}
.call_border i{
  font-size: 20px;
  padding-top: 14px;
}
.whatsup_border ,.call_border{
  width: 50px;
  height: 50px;
}
}
@media only screen and (min-width: 501px) and (max-width: 900px)  {
  
  .slick-dotted.slick-slider{
    padding-bottom: 24px;
  }
  .slick-dots{
    bottom: 9px !important;
  }
  #testimonial-section .slick-prev, #testimonial-section .slick-next{
    display: none !important;
  }
  #home-slider .carousel-item .carousel-caption {
    top: 55%;
  }
  .image_banner_commetn img{
    width: 40px;
  height: 40px;
  }
  #blog-section .blog-card span{
    margin: 46px;
  }
  .container-fluid{
    padding-right: var(--bs-gutter-x, 1.75rem) !important;
    padding-left: var(--bs-gutter-x, 1.75rem) !important;
  }
  .tabs-section ul li {
    padding-right: 18px;
  }
  .tabs-section ul li a {
    font-size: 12px;
  }
  #home-slider .carousel-item .carousel-caption h5 {
    font-size: 30px;
    line-height: 16px;
  }
  .navbar1 ul li:hover, .login-icons a:hover{
    background:transparent
  }
}


@media only screen and (min-width: 901px) and (max-width: 1300px)  {
  .image_banner_commetn img{
    width: 50px;
  height: 50px;
  }
  .nav-cntnt li a{
    font-size: 0.7em !important;
  }
  #download_brochure h4{
    font-size:  18px;
  }
  #download_brochure .whatsup_border , #download_brochure .call_border {
    width: 50px;
    height: 50px; 
  }
  #download_brochure .call_border i {
    font-size: 18px;
    padding-top: 14px;
  }
  #download_brochure .whatsup_border i {
    font-size: 18px;
    padding-top: 16px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1330px)  {
.sidebar_pricing h3{
    font-size: 18px !important;
    padding-top: 5px;
}
.pricing__tabs li a {
  font-size: 14px !important;
}
.custum_select{
  width: 144px;
  font-size: 12px;
}
}

@media only screen and (min-width: 1200px) and (max-width: 1400px)  {
.sidebar_pricing h3{
    font-size: 20px !important;
    padding-top: 5px;
}

}



@media screen and (max-width: 1200px) {
  .blog-detail{
    margin-top:0px
  }
}

.slide-arrow-right{
  z-index: 99;
}
.slide-arrow-left{
  z-index: 99;
}
.cntnr-abt{
  overflow: hidden;
}

.custumer_login{
  right: 46px !important;
  left: inherit !important;
  min-width: 16rem;
  text-align: center;
  padding: 1.5rem 1.5rem;
}

.btn-outline-warning{
  color: #FFB224 !important;
  border-color: #FFB224 !important;
}

.btn-outline-warning:hover{
  color: #fff !important;
  background: #FFB224 !important;
}


.showdow-boxxx{
  position: absolute;
  width: 40px;
  height: 40px;
  /* border: 1px solid red; */
  top: -27px;
  right: 0;
}

/*.slick-dots {*/
/*  bottom: 9px !important;*/
/*}*/

.slick-dotted.slick-slider {
  padding-bottom: 50px;
}

#testimonial-section .slick-prev, #testimonial-section .slick-next {
  top: 95%;
}

.user_image{
  width: 60px ;
  height: 60px;
  border-radius: 50%;
}

.offcanvas-header{
  padding: 1.2rem 1.2rem;
  background:#f3f3f3;
}

.user_names{
  font-size: 18px !important;
  margin-bottom: 0; 
}

.offcanvas-header .btn-close{
  margin-top: -1rem;
}


.fixed-top{
  position: static;
}

/********books css*****/
.book-tab_section .custom-tab {
    margin-bottom: 0px;
}

.buy-books_title {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
margin-top: 15px;
}

.buy-books_block .btn+.btn {
    margin-left: 10px;
}

.tab-content>.active {
    display: block;
}
.tab-block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tab-left_block {
    flex: 0 0 auto;
    width: 30%;
    padding: 15px;
    border: 1px solid #ccc;
}
.tab-img_block {
    max-width: 300px;
    margin: 0 auto;
}
.custom-tab img {
    width: 100%;
}

.tab-right_block {
    flex: 0 0 auto;
    width: 60%;
    padding-left: 30px;
}

.btn_theme {
    font-size: 14px;
    padding: 13px 26px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    color: white;
    border: 1px solid #ffb224;
    border-radius: 40px;
    text-decoration: none;
}

.btn_theme:hover {
    background: #ffb224;
    text-decoration: none;
}

.Commendations-title {
    font-size: 28px;
    line-height: 34px;
    color: #4e3324;
    margin-bottom: 30px;
}

.Commendations-details {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 30px;
}

.Commendations-details:last-child {
    margin: 0;
}

.Commendations-img_block {
    flex: 0 0 auto;
    width: 14%;
}

.Commendations-text_block {
    flex: 0 0 auto;
    max-width: 86%;
    padding-left: 30px;
}

.Commendations-name {
    color: #2b2b2b;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.Commendations-text_block small {
    color: #ffb224;
    font-weight: 500;
    line-height: 1.5;
    display: block;
}

.Commendations-text_block p {
    margin-bottom: 0 !important;
}

.custom-tab {
    margin-bottom: 40px;
}

.custom-tab a {
    color: #000;
}

.custom-tab .nav-tabs>li>a {
    border: none !important;
    border-radius: 100px;
    font-weight: 500;
    font-size: 18px;
    color: #2b2b2b;
padding: 15px;
}

.custom-tab .nav-tabs>li.active>a {
    background-color: #ffb224;
}

.custom-tab ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: none;
}



[data-tab-content] {
  display: none;
}

.active[data-tab-content] {
  display: block;
}
    
.tab {
  cursor: pointer;
  padding: 15px;
  border-radius: 50px;
}

.tab.active {
  font-weight: 500;
background-color: #ffb224;
}

.tab:hover {
    background-color: transparent;
}

/********books css end****/

.asia_overview {
    box-shadow: rgb(0 0 0 / 9%) 0px 3px 12px;
    padding: 80px 80px 40px 80px;
    border-radius: 50px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.title_with_bordor {
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 10px;
    margin-bottom: 28px;
    font-size: 18px;
}

.title_with_bordor {
    margin-bottom: 20px !important;
}

.highlights h3.head1 {
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 15px;
    font-size: 25px;
}

.blogcontent h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    text-align: left;
    letter-spacing: -0.07em;
    color: #2b2b2b;
    margin-bottom: 30px;
}

@media only screen and (max-width: 1600px){
.hero_section.nobg {
    height: 506px;
    }
    }
    
    .hero_section.nobg {
    background: none;
    padding: 0;
    height: auto;
}

@media (min-width: 767px)
.mobile-banner {
    display: none;
}

.mobile-banner {
    width: 100%;
    position: relative;
}



.hero_content {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.hero-title {
    padding-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.tours-row {
    display: flex;
    flex-wrap: wrap;
    height: 311px;
    overflow: hidden;
    margin-bottom: 50px;
}

.tours-col {
    flex: 0 0 auto;
    width: 50%;
    height: 100%;
}
.tours-col.col-right {
    padding: 30px 0 30px 0;
    background: #fff;
}
.tours-col {
    flex: 0 0 auto;
    width: 50%;
    height: 100%;
}

.tour-img_box {
    width: 100%;
    height: 100%;
}

.tour-img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-text_box {
    background: #fff;
    padding: 0px 10px 0px 10px;
    height: 100%;
    overflow-y: auto;
}
.tour-text_box p, .tour-text_box {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #111111;
}

.tour-text_box p {
    text-align: justify;
}
.tours-row:nth-child(2n) .col-left {
    order: 2;
}

.indian_upcomingTrip-title p, .indian_upcomingTrip-title {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #111111;
}
.indian_upcomingTrip-title {
    text-align: center;
    margin-bottom: 50px;
}

.indian_Trip-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 30px;
}


.indian_upcomingTrip-title p {
    max-width: 1000px;
    margin: 0 auto 15px auto;
    text-align: justify;
}

.indian-upcomingTrip_section .trip-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.indian-upcomingTrip_section .trip-col_left {
    flex: 0 0 auto;
    width: 30%;
}

.indian-upcomingTrip_section .trip-img_box {
    height: 360px;
    width: 100%;
}
.indian-upcomingTrip_section .trip-col_right {
    flex: 0 0 auto;
    width: 70%;
}
.indian-upcomingTrip_section .trip-col {
    padding: 0 15px;
}
.indian-upcomingTrip_section .trip__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 20px;
}

.indian-upcomingTrip_section .trip-text_box .upcoming-trip_list {
    margin: 0;
    padding: 10px 0 20px 0;
}

.indian-upcomingTrip_section .trip-text_box .upcoming-trip_list li {
    list-style: none;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #111111;
    margin-bottom: 3px;
    text-align: justify;
}


.indian-upcomingTrip_section .trip-text_box .upcoming-trip_list li span {
    font-weight: 700;
    margin-right: 5px;
}

.download-pdf_link {
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #111111;
    border: 1px solid #FFB224;
    border-radius: 52px;
    background: transparent;
    padding: 15px 24px;
    display: inline-block;
}


.indian-upcomingTrip_section .trip-row {
    margin-bottom: 30px;
}

.indian-upcomingTrip_section .trip-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.pd-t5 {
    padding-top: 50px !important;
}

.tour__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 31px;
    text-transform: uppercase;
    color: #2B2B2B;
    margin-bottom: 30px;
}

.tour-text_box p, .tour-text_box {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #111111;
}
.indian-tours_section{
    padding: 50px 0;
}






@media (min-width: 767px){
.modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
}
    
}



.zcwf_lblLeft .zcwf_col_lab {
    width: 100%!important;
    word-break: break-word;
    padding: 0px 6px 0px;
    margin-right: 10px;
    margin-top: 5px;
    float: left;
    min-height: 1px;
}


.zcwf_rowlist {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}


.zcwf_rowlist .zcwf_row {
    width: 48%;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 10px;
}

.zcwf_rowlist .zcwf_col_lab {
    font-size: 20px!important;
}
.zcwf_rowlist .zcwf_col_lab label {
    font-weight: 500;
}

.zcwf_col_fld {
    display: flex;
    gap: 2px;
}


.zcwf_lblLeft .zcwf_col_fld {
    float: left;
    width: 100%!important;
    padding: 0px 6px 0px;
    position: relative;
    margin-top: 5px;
}



.zcwf_rowlist .zcwf_row.submit_row {
    width: 99%;
    border: none;
    padding: 20px 0;
}


.zcwf_rowlist .zcwf_row.submit_row .zcwf_col_fld input {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    color: #000;
    border: 1px solid #FFB223!important;
    border-radius: 40px;
    text-decoration: none;
    height: 50px;
}

.zcwf_lblLeft .zcwf_button {
    font-size: 12px;
    color: var(--baseColor);
    border: 1px solid #c0c6cc;
    padding: 3px 9px;
    border-radius: 4px;
    cursor: pointer;
    max-width: 100%!important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zcwf_lblLeft .zcwf_col_fld input[type=text], .zcwf_lblLeft .zcwf_col_fld textarea {
    width: 100%!important;
    resize: vertical;
    border-radius: 2px;
    float: left;
}


#crmWebToEntityForm.zcwf_lblLeft {
    width: 100%;
    padding: 0px!important;
    margin: 0 auto;
    box-sizing: border-box;
}



.zcwf_col_fld select, .zcwf_rowlist .zcwf_col_fld textarea {
    border: none!important;
    border-bottom: 1px solid #000!important;
    width: 100%;
    outline: none;
    height: 40px;
}

.zcwf_rowlist .zcwf_col_fld input, .zcwf_rowlist .zcwf_col_fld select, .zcwf_rowlist .zcwf_col_fld textarea {
    border: none!important;
    border-bottom: 1px solid #000!important;
    width: 100%;
    outline: none;
    height: 40px;
}




.zcwf_lblLeft .zcwf_col_fld_slt {
    width: 100%!important;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    font-size: 16px;
    float: left;
    resize: vertical;
    padding: 2px 5px;
}

#gform_fields_1{
    
    list-style-type: none;
    padding: 0px;
    margin-left: 5px;
    margin-right: 5px;
}

#gform_fields_1 .gfield{
    margin-bottom: 18px;
}

.sub-menu ol, ul {
    padding-left: 0px;
}


.rfqemail input {
    background-color: transparent;
    border: 0px;
    width: 97%;
    border-bottom: 1px solid #ffb224;
    color: #757575!important;
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.rfqtext input {
    background-color: transparent;
    border: 0px;
    width: 100%;
    border-bottom: 1px solid #ffb224;
    color: #000;
}

.gfield_label {
    position: fixed;
    text-indent: -99999em;
}

.gform_footer {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    
    
}

.rfqform input[type="submit"] {
    width: 166px;
    font-size: 14px;
    padding: 10px 26px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    color: white;
    border: 1px solid #ffb224;
    border-radius: 40px;
    background: none;
    margin: 0 auto;
}

.rfqform input:hover[type="submit"] {
background-color: #4f3325;
color: #ffffff !important;
border: 1px solid #4f3325 !important;
}

select#LEADCF9 {
    background-color: transparent;
    border: 0px;
    width: 97%;
    border-bottom: 1px solid #ffb224;
    color: gray;
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.ginput_container_capcta {
    height: 50px;
}

.breadcrumbs {
    margin: 10px 0;
    font-size: 13px;
}



.g-recaptcha {
    transform:scale(0.85);
    transform-origin:0 0;
}


#bttbtn {
  display: inline-block;
  background-color: #dbdbdb;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
text-decoration: none;
  visibility: hidden;
  z-index: 1000;
}
#bttbtn::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  line-height: 40px;
  color: #fff;
}
#bttbtn:hover {
  cursor: pointer;
  background-color: #FF9800;
}
#bttbtn:active {
  background-color: #dbdbdb;
}
#bttbtn.show {
  opacity: 1;
  visibility: visible;
}




@media screen and (max-width: 480px){
.carousel-item img {
    height: auto!important;
}
}



/********FD FAQ's Accordion Start****/

.faq-drawer {
      margin-bottom: auto;
}

.faq-drawer__content-wrapper {
  font-size: 1em;
  line-height: 1.4em;
  max-height: 0px;
  overflow: hidden;
  transition: 0.25s ease-in-out;
  margin-top: 20px;
}

.faq-drawer__title {
  border-top: #c6c6c6 1px solid;
    cursor: pointer;
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0 0 0;
    position: relative;
    margin-bottom: 0;
    transition: all 0.25s ease-out;
}

.faq-drawer__title::after {
  content: "+";
  display: inline-block;
  float: right;
  height: 10px;
font-size: 25px;
  left: 2px;
  position: relative;
  right: 20px;
  top: 2px;
  transition: 0.35s ease-in-out;
  vertical-align: top;
  width: 20px;
}

/* OPTIONAL HOVER STATE */
.faq-drawer__title:hover { 
  color: #4E4B52  ;
}

.faq-drawer__trigger:checked
  + .faq-drawer__title
  + .faq-drawer__content-wrapper {
  max-height: 950px;
}

.faq-drawer__trigger:checked + .faq-drawer__title::after {
  content: "-";
  transition: 0.25s ease-in-out;
}

input[type="checkbox"] {
  display: none;
}

/********FD FAQ's Accordion End****/


/********FD Itinerary Accordion Start****/

.iti-drawer {
  margin-bottom: 5px;
}

.iti-drawer__content-wrapper {
  font-size: 1em;
  line-height: 1.4em;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}

.iti-drawer__title {
display: flex !important;
  cursor: pointer;
  display: block;
  font-size: 1em !important;
  font-weight: 700;
  padding: 30px 0 0 0;
  position: relative;
  margin-bottom: 0;
  transition: all 0.25s ease-in-out;
}

.iti-drawer__title::after {
  content: "+";
  display: inline-block;
  float: right;
  height: 10px;
font-size: 25px;
  left: 2px;
  position: relative;
  right: 20px;
  top: 2px;
  transition: all 0.25s ease-in-out;
  vertical-align: top;
  width: 20px;
}

/* OPTIONAL HOVER STATE */
.iti-drawer__title:hover { 
  color: #4E4B52  ;
}

.iti-drawer__trigger:checked
  + .iti-drawer__title
  + .iti-drawer__content-wrapper {
  max-height: 100%;
}

.iti-drawer__trigger:checked + .iti-drawer__title::after {
  content: "-";
  transition: 0.25s ease-in-out;
}

input[type="checkbox"] {
  display: none;
}


.Ao_pihu {
 padding: 8px!important;
}

/********FD Itinerary Accordion End****/
