.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.navbar_nav {
  display: flex;
  gap: 45px;
}
.nav_link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  color: var(--pure-white);
  transition: all 0.5s;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer; 
}
.main-menu .nav_link {
  font-size: 18px;
}
.main_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s;
}
.brand-logo {
  background: var(--pure-white);
  padding: 20px 40px;
  border-radius: 0px 0px 20px 20px;
  transition: all 0.5s;  
  text-align: center;
}
.fixed-header {
  box-shadow: 0px 0px 20px 0px #0000001F;

}
.fixed-header .nav_link
 /* .inner-page .nav_link  */
 {
  color: var(--primary-color);
}
.fixed-header .brand-logo {
  padding: 10px 0;
  border-radius: 0;
  /* flex: 0 0 210px; */
}
.sidenav.open a.nav_link, .sidenav.open button.nav_link {
  color: var(--pure-white);
}
.language-selector {
  position: absolute;
  top: 0;
  right: 0;
}
.language-selector select {
  font-weight: 800;
  letter-spacing: 2px;
}
.language-selector details {
  background-color: #fff;
  position: relative;
}
.language-selector details summary {
  font-weight: 800;
  letter-spacing: 2px;
  list-style: none;
  padding: 7px 21px;
  cursor: pointer;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .language-selector details summary {
    letter-spacing: 1px;
    font-size: 14px;
    padding: 5px 10px; 
  }
}
.language-selector details ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
}
.language-selector details ul li {
  text-align: center;
}
.language-selector details ul li a {
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary-color);
  transition: all 0.5s;
  text-transform: uppercase;
  width: 100%;
  display: block;
  padding: 5px 0;
}
.language-selector details ul li a.active {
  color: #fff;
  background-color: var(--secondary-color);
}
.language-selector select:focus-visible {
  outline: none;
}

/* Style the sidenav */
.Hamburger {
  cursor: pointer;
}
.Hamburger svg line {
  transition: all 0.5s;
}
.fixed-header .Hamburger svg line {
  stroke: var(--primary-color)
}
.sidenav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 700px;
  height: 100%;
  background-color: var(--secondary-color);
  transition: all 0.5s;
  transform: translateX(100%);
  text-align: center;
  /* padding: 0 50px; */
}
.SideMenuScroll {
    /* height: 80vh; */
    max-height: calc(100% - 100px);
    overflow-y: auto;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding: 50px 0;
}
/* .SideMenuScroll::-webkit-scrollbar {
    width: 5px;
    background-color: var(--secondary-color);
}
.SideMenuScroll::-webkit-scrollbar-thumb {
    background-color: var(--yellow-color);
} */
.sidenav.open {
  transform: translateX(0);
}
.closebtn {
  position: absolute;
  left: 50px;
  cursor: pointer;
}
/* .fixed-header .Hamburger img, .inner-page .Hamburger img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(65%) saturate(1679%) hue-rotate(190deg) brightness(92%) contrast(97%);
} */
.fixed-header .language-selector select{background-color: var(--white-smoke-color);}
.Sidelogo {
  max-width: 150px;
  margin: 0px auto;
}
.sidenav h2 {
  color: var(--pure-white);
  font-family: "Sora";
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 0.75px;
  font-size: 32px;
}
.Sidenavbar {
  display: flex;
  flex-direction: column;
}
.Sidenavbar li + li {
  margin-top: 25px;
}
.Sidenav_link {
  font-family: "DMSans";
  color: var(--pure-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  transition: all 0.5s;
  font-size: 18px;
}
.Sidenav_link.active {
  color: var(--yellow-color);
}
.infobar {
  display: flex;
  flex-direction: column;
}
.infobar li + li {
  margin-top: 25px;
}
.info_link {
  display: flex;
  align-items: center;
  color: var(--pure-white);
  font-weight: 500;
  letter-spacing: 0.45px;
  transition: all 0.5s;
  font-size: 18px;
  gap: 10px;
  justify-content: center;
}
.Sidenav_link:hover,
.info_link:hover {
  color: var(--yellow-color);
}
.social_link svg path {
  transition: all 0.5s;
}
.social_link:hover svg path {
  fill: var(--yellow-color);
}
.main-menu {
  display: none;
}
.main-menu .navbar_nav {
  flex-direction: column;
  gap: 15px;
}

.body-no-scroll,
.html-no-scroll {
  overflow: hidden;
}

.main_header::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background: var(--pure-white);
  transition: all 0.9s;
  left: 0;
  /* right: 0; */
  margin: 0px auto;
  top: 0;
}
.main_header.fixed-header::before {
  width: 100%;
}

.logo img {transition: all 0.9s;}
.fixed-header .logo img {max-width: 75px;}

/* ==================================
  Inner Page Header Style
==================================*/
/* .inner-page {padding-top: 200px;} */
/* .inner-page .brand-logo{ background: var(--secondary-color); } */
/* .active_nav .nav_link{color: var(--light-primary-color);} */
/* .inner-page .nav_link:hover{color: var(--primary-color);} */
/* ===================================== Header End ===================================== */

.hero_banner,
.hero-cover {
  position: relative;
}
.hero-cover {
  height: 100vh;
  max-height: 300px;
  padding: 200px 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

@media screen and (max-width: 1199px) {
  .hero-cover {
    max-height: 300px;
    padding: 100px 0;
  }
}
@media screen and (max-width: 575px) {
  .hero-cover {
    max-height: 150px;
  }
}
.hero-cover video {
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero-Content {
  /* position: absolute; */
  /* z-index: 1; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  /* left: 0; */
  /* right: 0; */
  position: relative;
  z-index: 2;
  width: 90%;
}
.hero-Content span,
.hero-Content h1 {
  color: var(--pure-white);
}
.hero-Content h1 {
  max-width: 520px;
  font-weight: 700;
}
.hero-Content span {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
} 
.hero-cover .overlay {
  /* background: linear-gradient(180deg, rgba(85, 85, 85, 0) 0%, rgba(85, 85, 85, 0) 43.78%, rgba(85, 85, 85, 0.395986) 58.89%, rgba(85, 85, 85, 0.5) 100%),
linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.301602) 9.83%, rgba(0, 0, 0, 0) 28.59%, rgba(0, 0, 0, 0) 100%); */

  opacity: 0.2;
  z-index: 1;
}
.hero-cover img, .mini-banner img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.mini-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  min-height: fit-content;
}
.mini-banner .container {
  position: relative;
  z-index: 2;
  padding-top: 175px;
  padding-bottom: 175px;
}
.mini-banner h1 {
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .mini-banner {
    height: 400px;
  }
  .mini-banner .container {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 575px) {
  .mini-banner {
    height: 300px;
  }
  .mini-banner .container {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}


/* ===================================== Hero Banner End ===================================== */

.home-tempate .Filters {margin-top: -90px;}
.FiltersGrid {
  background-color: var(--pure-white);
  padding: 45px 40px;
  border-radius: 20px;
  position: relative;
  display: flex;
  gap: 75px;
  align-items: center;
}
.filter-option {
  display: flex;
  justify-content: center;
  gap: 75px;
}
.select-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.filter-item .btn {
  width: 100%;
}
.filter-item .btn img {
  width: auto;
}
.filter-item {
  flex: 0 0 216px;
}
.flex1 {
  flex: 1;
}
.select-card label {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Montserrat", serif;
  letter-spacing: 2px;
}
.select-card input {
  padding: 10px 20px 10px 13px;
  width: 100%;
  max-width: 150px;
}
.select-card select, .select-card input {
  color: #8395ac;
  border: none;
  border-bottom: 1px solid #e1e1e1;
  margin-top: 20px;
  letter-spacing: 2px;
  font-family: "Varta", serif;
  font-weight: 700;
  cursor: pointer;
  /* padding-left: 0; */
}


/* ===================================== Filters End ===================================== */

.feature_products .section_header h3 {
  color: var(--primary-color);
}

.tour-image {
  position: relative;
  height: 300px;
}
.tour-price {
  position: absolute;
  right: 0;
  bottom: 40px;
  background: var(--pure-white);
  padding: 11px 20px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: "Sora";
  color: var(--primary-color);
}
.tour-price span {
  font-family: "DMSans";
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
}
.tour-icons {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  align-items: center;
  margin: 15px 0px;
}
.t-icon-text {
  display: flex;
  align-items:  center;
  gap: 5px;
  border-right: 1px solid var(--secondary-color);
  padding-right: 11px;
  margin-right: 11px;
}
.t-icon-text:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.t-text {
  color: var(--secondary-color);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: "Varta", serif;
  display: inline-block;
}
.tour-info h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 55px;
  font-family: "Sora";
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 2px;

}
@media (max-width: 768.5px) {
  .tour-info h3 {
    min-height: unset;
  }
}
.tour-duration {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.35px;
  display: flex;
  align-items: center;
  line-height: 100%;
}
.tour-description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 15px;
}
.tour-duration svg {
  margin-right: 5px;
}
.tour-type-text {
  color: var(--primary-color);
  font-family: "DMSans";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.35px;
  margin-bottom: 10px;
}
.tour-info p {
  color: #222222B2;
  letter-spacing: 0.35px;
  margin: 0;
}
.grid_item {
  margin-left: -12px;
}
.tour_card {
  margin-left: 34px;
  /* margin-top: 20px; */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.PrivateTours .slick-dots li button {
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50vh;
  background-color: var(--primary-color);
  transition: all 0.5s;
}
.PrivateTours .slick-dots li.slick-active button {
  width: 20px;
  height: 20px;
  background-color: #B37B2B;
}
.PrivateTours .slick-dots li button:before {
  display: none;
}
/* .PrivateTours .slick-dots li button:before {
  content: "";
  width: 25px;
  height: 25px;
  border: 1px solid var(--secondary-color);
  border-radius: 100px;
  opacity: 1;
}
.PrivateTours .slick-dots li.slick-active button:before {
  opacity: 1;
  background: var(--secondary-color);
} */
.PrivateTours .slick-dots li {
  margin: 0px 15px;
}

/* ===================================== Feature Products End ===================================== */

.video__wrapper {
  position: relative;
}
video {
  width: 100%;
  aspect-ratio: 16/5.5;
  object-fit: cover;
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}
.video__play-button {
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.35);
  -webkit-appearance: none;
  z-index: 2;
  transition: all 200ms ease-in-out;
}
.video_heading {
  color: var(--pure-white);
  margin-bottom: 30px;
}
.video_heading h6 {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-family: "Varta", serif;
}
.video_heading h2 {
  /* font-size: 45px; */
  font-family: "Montserrat", serif;
  font-weight: 700;
}
.video__play-button-icon {
  width: 15%;
  transition: all 200ms ease-in-out;
}
.video__play-button-icon--play polygon {
  transform-origin: 50% 50%;
  transition: all 200ms ease-in-out;
}
.video__play-button-icon--play:hover polygon {
  transform: scale(1.5);
}
.video__play-button[data-button-state="pause"] .video__play-button-icon--pause {
  display: none;
}
.video__play-button[data-button-state="play"] .video__play-button-icon--play {
  display: none;
}
.video__play-button[data-button-state="play"] .video_heading {
  display: none;
}
.video__play-button[data-button-state="play"] .video__play-button-icon {
  opacity: 0;
}
.video__play-button[data-button-state="play"]:hover .video__play-button-icon {
  opacity: 1;
}
.video__play-button[data-button-state="play"] {
  background-color: rgba(0, 0, 0, 0);
}
.video__play-button[data-button-state="play"]:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.video__fullscreen-button {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
  z-index: 3;
  transition: all 200ms ease-in-out;
}

.video__fullscreen-icon {
  padding: 10px;
  display: block;
  vertical-align: top;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease-in-out;
}

.video__wrapper[data-state="pause"] .video__fullscreen-icon,
.video__wrapper[data-state="play"]:hover .video__fullscreen-icon {
  opacity: 1;
  visibility: visible;
}
.video__fullscreen-icon polygon {
  fill: currentColor;
}

/*
Video Popup
*/
.video-pop-content {
  position: relative;
  height: fit-content;
  min-height: 520px;
}

.video-pop-content .video_heading {
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: calc(100% - 4px); */
    height: 100%;
    border: 0;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-appearance: none;
    z-index: 2;
    transition: all 200ms ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-pop-content .video__play {margin-top: 50px;}
.video-pop-content img {
  /* aspect-ratio: 16/5.5; */
  /* object-fit: cover; */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* ===================================== Full Sceen Video With Text Overlay End ===================================== */
.OurCategories .section_header {
  margin-bottom: 50px;
}
.OurCategories .section_header h3 {
  color: var(--green-color);
}
.OC_gallery {
  display: grid;
  grid-gap: 25px;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  grid-template-columns: 1.6fr 1fr 1fr;
  /* grid-auto-flow: dense; */
  grid-auto-rows: 320px;
}
.OC-gallery__item {
  align-items: center;
  display: flex;
  justify-content: center;
}
.OC-gallery__item--lg {
  /* grid-column: span 2; */
  grid-row: span 2;
}
.OC-gallery__item--half-full {
  grid-column: span 2;
  grid-row: span 1;
}
.OC-gallery_card {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  line-height: 0;
  width: 100%;
  height: 100%;
}
.OC-gallery_card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  ); */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 71.01%, rgba(0, 0, 0, 0.5) 100%);
}

.OC-heading {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  padding: 20px;
  color: #fff;
  align-items: flex-end;
  bottom: 0;
}
.OC-heading h3 {
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.5px;
}

/* ===================================== Our Categories End ===================================== */

.haveanidea {
  background: url(../images/heveanidea.jpg);
}
.OverlayContent-bg-img {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.overlay-bg {
  background-color: rgba(0, 0, 0, 0.45);
  padding: 9.6rem 5rem;
}
.overlay-text {
  display: flex;
  justify-content: end;
}
.overlay-text .section_header {
  max-width: 50%;
}
.overlay-text .section_header,
.overlay-text .section_header h2,
.arrowcrossup-round {
  color: var(--pure-white);
}
.overlay-text .section_header p {
  margin-top: 10px;
  line-height: 35px;
  font-family: "Varta", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.arrowcrossup-round {
  display: flex;
  align-items: center;
  transition: all 0.5s;
  font-family: "Sora";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.35px;
  width: max-content;
  min-width: 185px;
  margin-top: 35px;
  background-color: #514947;
  border-radius: 50vh;
  color: #fff;
  padding-right: 10px;
}
.arrowcrossup-round .site-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #514947;
  border-radius: 50%;
  margin-right: 10px;
}

/* ===================================== Text Overlay End ===================================== */

.display-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}
.AboutUs .section_header h2, .about-page-wrap h2 {
  font-size: 32px;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0.75px;
  line-height: 150%;
}
.AboutUs .section_header h3 {
  color: var(--red-color);
}
.about-img {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 20px;
  /* height: 100%; */
  height: 530px;
}
/* .about-img-gallery {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
} */
.about-img-gallery img {
  border-radius: 20px;
  max-height: 280px;
}
.about-details p {
  /* margin-top: 20px;
  line-height: 35px;
  font-family: "Varta", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px; */
  color: #222222B2;
  line-height: 160%;
}
/* .about-details .arrowcrossup-round {
  color: var(--secondary-color);
} */

.tour-histry {
  display: flex;
  gap: 35px;
  margin-top: 50px;
}
.tour-list {
  display: flex;
  flex-direction: column;
}
.tour-count {
  font-size: 64px;
  font-weight: 600;
  font-family: "Montserrat", serif;
  letter-spacing: 1px;
}
.tour-text-lable {
  letter-spacing: 2px;
  font-size: 18px;
  font-family: "Varta", serif;
  text-transform: uppercase;
}

/* ===================================== About Us End ===================================== */

.ClientReviews .section_header h3 {
  color: var(--yellow-color);
}
.ClientsSay {
  margin-top: 80px;
}
.clients_img {
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 100px;
  margin: 0px auto;
}
.quote-icon {
  font-family: "Sora";
  font-weight: 600;
  font-size: 100px;
  line-height: 100%;
  letter-spacing: 2px;
  text-align: center;
  color: #FE1037;
  margin-top: 50px;
}
.clients_card blockquote {
  max-width: 985px;
  margin: 0px auto;
  font-family: "DMSans";
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.35px;
  text-align: center;
  color: var(--primary-color);
}
.client-info h3 {
  font-family: "Montserrat", serif;
  margin-top: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.35px;
  text-align: center;
  color: var(--primary-color);

}
.ClientsSay.slick-slider .slick-list {
  max-width: 1140px;
  margin: 0px auto;
}
.slick-arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 40px;
  text-align: center;
}
.next-slick_arrow {
  right: 0;
}

/* ===================================== Client Reviews End ===================================== */

.icon-row {
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: 35px;
}
.icon-flex {
  flex: 1 1 1;
}
.icon-with-text {
  display: flex; 
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
.icon-with-text img {
  max-width: 190px;
  height: 170px;
  object-fit: contain;
  object-position: center;
}
.SText h5 {
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
/* ===================================== ServiceIcon End ===================================== */
.FeatureBlogs .section_header h3 {
  color: var(--red-color);
}
.blog-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.article-card {
    position: relative;
}
.article-img {
  /* width: 100%; */
  /* aspect-ratio: 1/1.066; */
  /* object-fit: cover; */
  /* max-width: 100%; */
  /* display: inline-block; */
  /* vertical-align: top; */
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  height: 470px;
  /* border: 1px solid #fff; */
}
.article-img img {
  transition: all 0.5s;
}
.article-card:hover .article-img img {
  transform: scale(1.1);
}
.post-date {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 16px 43px;
  border-radius: 0px 20px 0px 0px;
  color: #B37B2B;
  font-size: 16px;
  letter-spacing: 0.35px;
  font-weight: 600;
}
.article-content {
  margin-top: 20px;
}
.article-content h2 {
  font-size: 24px;
  letter-spacing: 0.5px;
  line-height: 35px;
  min-height: 70px;
  margin-bottom: 10px;

  display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.article-content p {
  color: #222222B2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* Add ellipsis when text overflows */
}
@media screen and (max-width: 1399px) {
  .article-img {
    height: 400px;
  }
}
@media screen and (max-width: 768.5px) {
  .article-content h2 {
    min-height: unset;
    font-size: 20px;
    line-height: 28px;
  }
  .article-img {
    height: 300px;
  }
}
@media screen and (max-width: 450px) {
  .article-content h2 {
    font-size: 18px;
    line-height: 26px;
  }
  .article-img {
    height: 250px;
  }
  .post-date {
    padding: 15px 30px;
  }
}
/* ===================================== Feature Blogs End ===================================== */

.social_media {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-20px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  height: 100%;
  justify-content: center;
  text-align: center;
}
.social_media h6 {
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: rotate(90deg);
  margin-bottom: 60px;
}
.v-blank-spacin {
  width: 1px;
  height: 72px;
  background: var(--pure-white);
}
.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 45px;
  margin-top: 45px;
}

.nav-social-title {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase; 
  color: #fff;  
}
.nav-social li + li {
  margin-left: 45px;
}
.nav-social-footer {
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding-top: 0;
  margin-top: 0;
  border-right: 1px solid #FFFFFF33;
  border-top: none;
  margin-right: 30px;
}
.nav-social-footer svg {
  width: 200px;
  height: 200px;
  max-width: 25px;
  max-height: 25px;
}
.nav-social-footer li + li {
  margin-left: 0;
  margin-top: 35px;

}
@media screen and (max-width: 575px) {
  .nav-social-title {
    display: none;
  }
  .nav-social li + li {
    margin-left: 20px;
  }
  .nav-social:not(.nav-social-footer) li:nth-child(2) {
    margin-left: 0;
  }

}
/* ===================================== Social Media End ===================================== */


/* ===================================== Excursion Details Star ===================================== */
.excursion-details {margin-top: 120px;}
.ExcursionsVSlider {display: flex;gap: 30px;}
.EVSliderMain {flex: 0 0 75%;}
.ED-banner-image, .ED-thumb-image {border-radius: 30px;overflow: hidden;position: relative;}
.ED-banner-image .tour-price {left: 45px; right: auto; background: transparent; color: #fff; bottom: 30px; padding: 0; font-weight: 800; font-size: 45px;}
.ED-banner-image .tour-price span {font-size: 24px;font-family: "Montserrat Alternates";}
.ED-thumb-image{margin: 12px 0px;}
.Vslider-nav .slick-arrow {top: 12px; left: 0; right: 0; margin: 0px auto; background: rgba(0, 174, 239, 0.80); width: 100%; border-radius: 30px 30px 0px 0px;z-index: 1;}
.EVSliderThumb {border-radius: 30px;overflow: hidden;}
.Vslider-nav .next-slick_arrow {top: auto;bottom: 12px;border-radius: 0px 0px 30px 30px;}
.Vslider-nav .next-slick_arrow svg {transform: rotate(90deg);}
.Vslider-nav .slick-arrow svg path {fill: #fff;}
.Vslider-nav .prev-slick_arrow svg {transform: rotate(90deg);}

.ECD-part { margin-top: 50px; }
.ECR-Row {display: flex;gap: 50px; position: relative;}
.ECR-main {flex-basis: 75%;}
.ECR-Sidbar {flex-basis: 25%; height: fit-content;
    position: sticky;
    top: 130px;}
/* .ECR-main .section_header h1 {font-family: "Montserrat Alternates";font-weight: 800;} */
.ECR-main .section_header {margin: 0 0 40px;}
.tour_type {
font-weight: 700;
font-size: 24px;
letter-spacing: 0.8px;
display: flex;
align-items: center;
color: var(--primary-color);
}
.tour_type svg {
  margin-right: 10px;
}
/* .ECD-Full-Details {font-family: "Varta", serif;font-size: 18px;line-height: 35px;letter-spacing: 1px;font-weight: 600;border-right-width: 2px;} */
.ECR-main .t-icon-text {margin-right: 25px;padding-right: 25px;gap: 10px;align-items: center;}
.ECR-main .t-icon-text .t-text {font-size: 24px;}
.ECR-main .t-icon-text .t-icon .icon-tempo {width: 60px;}
.ECR-main .t-icon-text .t-icon .icon-parking {width: 30px;}
.ECR-main .section_header .tour-duration { 
  font-weight: 400;
 }
.ECR-main .section_header .tour-duration span {
  font-weight: 600;
}
.ECD-Full-Details h2 {
  margin-top: 50px;
  margin-bottom: 35px;
  font-size: 32px;
  letter-spacing: 0.75px;

}
.tick-mark-list ul {
  /* column-count: 2;max-width: 380px; */
  display: grid;
  grid-template-columns: 1fr 1fr; 
  column-gap: 20px;
}
@media screen and (max-width: 575px) {
  .tick-mark-list ul {
    grid-template-columns: 1fr;
  }
}
.IncludedPrice ul li {font-weight: 700; padding-left: 40px;position: relative;margin-bottom: 28px;}
.tick-mark-list ul li::before {position: absolute; content: ""; width: 30px; height: 30px; left: 0; top: 0; background-image: url(../images/tickmark.svg); background-position: center; background-size: contain;}
.indicator_dots {flex: 0 0 22px;width: 22px; height: 22px; background-color:var(--light-primary-color); border-radius: 100px;position: relative;}
.indicator_dots::before { position: absolute; content: ""; width: 12px; height: 12px; border-radius: 100px; background: var(--pure-white); left: 0; right: 0; margin: 0px auto; top: 50%; transform: translateY(-50%); }
.fill_dots::before{display: none;}
.timeline {display: flex;align-items: center;gap: 12px;position: relative;}
.timeline::after { position: absolute; content: ""; width: 2px; height: 70px; background: var(--light-primary-color); left: 10px; top: 48px; }
.timeline:last-child::after {display: none;}

.tour-time-details { line-height: normal; display: flex; flex-direction: column; line-height: 24px; }
.Itinerary h2 { margin-bottom: 50px; }
.indicator { display: flex; flex-wrap: wrap; flex-direction: column; gap: 68px; }

.ECR-Sidbar h2 { 
  margin-bottom: 25px;
  font-size: 32px;
  letter-spacing: 0.75px;
  text-align: center;

}
/* .pick-up-location h6 {text-transform: uppercase;font-weight: 600;font-family: "Varta", serif;} */
.pick-up-location {
  /* border: 1px solid var(--secondary-color); */
  border-radius: 20px;
  padding: 30px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px #0000001F;

}
.pick-up-location form {display: flex;flex-direction: column;gap: 30px;}
.form-control {border: none;border-bottom: 1px solid var(--secondary-color);width: 100%; background-color: transparent; padding-left: 0; padding-right: 0; padding-bottom: 0px;font-family: "Varta", serif; font-weight: 600; font-size: 18px; letter-spacing: 1px;}
.pick-up-location form .form-group {display: flex;flex-direction: column;gap: 10px;position: relative;}
.form-group label {text-transform: uppercase;letter-spacing: 1px;}
/* .pick-up-location button{background: var(--light-primary-color);font-size: 24px;margin-top: 10px; letter-spacing: 1px; text-transform: uppercase; font-family: "Montserrat Alternates"; font-weight: 600; color: var(--pure-white);} */
/* .pick-up-location button:hove{background: var(--secondary-color)} */
.pick-up-location form select.form-control {
  padding: 0 10px;
  cursor: pointer;
}
.icon-input { position: absolute; right: 0; top: auto; width: 30px; height: 20px; bottom: 5px; z-index: 1; background: var(--white-smoke-color); line-height: 0; }
.icon-input img {
  object-fit: contain;
  object-position: right;
}
.text-transform-none h2 {text-transform: none;}

.ST_Row {display: grid;column-gap: 25px; row-gap: 50px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));}
.ST_Grid-Iteam .tour_card {margin-left: 0;}

/* ===================================== Excursion Details End ===================================== */

/* ===================================== Excursion Stat ===================================== */

.filter-by{padding: 50px 0;}
.filter-by label {  text-transform: uppercase; font-weight: 700; letter-spacing: 0.35px; margin-right: 5px;}
.filter-by select { background-color: transparent;  font-weight: 400; letter-spacing: 0.35px; font-size: 16px; color: var(--primary-color); border: 1px solid; border-radius: 10px; min-width: 189px; text-align: left; background-position: calc(100% - 8px) center; background-size: 12px; padding: 14px 20px 14px 13px;}

.card-white .tour_card {background-color: var(--pure-white);height: 100%;}
.card-white .tour-info {padding: 30px 20px;}
.card-white .t-text {letter-spacing: 1px;}
.reco-card { padding: 12px 15px; text-transform: uppercase; font-family: 'Varta'; font-size: 18px; letter-spacing: 1px; font-weight: 600; border-radius: 0px 10px 10px 0px;top: 60px;}

.DiscoverKotor .one-five {flex: 0 0 calc(40% - 60px);}
.DiscoverKotor .one-saven {flex: 0 0 calc(60% - 60px);}
.DKimage-card { overflow: hidden; border-radius: 30px; line-height: 0; }
.DiscoverContent p { font-family: 'Varta'; font-size: 18px; line-height: 35px; letter-spacing: 1px;color:var(--pure-black); }
.DKimage-card + .DiscoverContent, .DiscoverContent + .DKimage-card  {margin-top: 40px;}
.DiscoverContent .section_header p {margin-top: 25px;}

.faqs-items{margin: 0; padding: 0;display: flex ; flex-direction: column; gap: 30px;}
.faqs-items li{list-style: none;}
.faqs-items .qa {
  border: 2px solid #FFFFFF;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px #0000001F;
  border-radius: 50vh;
  padding: 20px 35px;
  transition: all 0.5s;
}
.faqs-items .qa:has(.expanded) {
  border-radius: 20px;
}
.faqs-items li a{cursor: pointer;display: flex ; width: 100%; color: var(--primary-color); text-decoration: none; position: relative; align-items: center; justify-content: space-between; gap: 30px; font-family: 'Sora'; font-weight: 600; font-size: 24px; line-height: normal; letter-spacing: 0.5px;}
.box-arrow { height: 60px; background-color: var(--primary-color);display: flex ; justify-content: center; align-items: center; border-radius: 50vh; width: 100%; max-width: 60px; }
.box-arrow img {height: 10px;width: 15px;margin: 0px auto;transition: all .5s cubic-bezier(.39,.58,.57,1);}
.faqs-items li a.expanded .box-arrow img {transform: rotate(180deg);}
.faqs-items li a.expanded .box-arrow{background-color: var(--yellow-color);}
.sub-faqs-items{display: none; padding: 0px; margin: 0; position: relative;padding-top: 20px; border-top: 1px solid #22222233; margin-top: 20px;}
/* .sub-faqs-items p { font-family: 'Montserrat'; line-height: 25px; font-weight: 400; letter-spacing: 1px; } */
.sub-faqs-items p {
  margin: 0;
}

/* ===================================== Excursion End ===================================== */

/* ===================================== Excursion Booking Start ===================================== */
.filter-by-info h1 { font-family: 'Montserrat Alternates'; text-transform: uppercase;}
.Vdivider { flex: 0 0 1px; height: 134px; background-color: var(--soft-gray); }
.green-text-color .t-text{color: var(--green-color);}

.tour-booking-form .one-nine {flex: 0 0 calc(75% - 15px);}
.tour-booking-form .one-third {flex: 0 0 calc(25% - 15px);}

/* .all-information h2{font-family: 'Montserrat Alternates';margin-bottom: 50px;} */
/* .BasicInformation h2 {color: var(--red-color);} */
/* .Tour-Details h2 {color: var(--yellow-color);} */
/* .AdditionalDetails h2 {color: var(--light-primary-color);} */

.tour-total-cost {background-color: var(--pure-white);border-radius: 30px;text-align: center;}

.tour-total-cost span {
  padding-top: 20px; 
  display: block; 
  padding-bottom: 20px;
  font-family: "Sora";
font-weight: 700;
font-size: 32px;
letter-spacing: 0.75px;
text-align: center;
color: #B37B2B;  
}
.formfiled .icon-input{width: 20px;}
.form-col-6 { flex: 0 0 calc(50% - 50px); }
.formfiled label{display: inline-block;margin-bottom: 25px;}

.Tour-Details {margin-top: 50px;}
.Tour-Details .formfiled .w30 {width: 30px;}

.AdditionalDetails { margin-top: 50px; }
.form-btn {text-align: right;margin-top: 50px;}
.AdditionalDetails label {text-transform: inherit;}

/* ===================================== Excursion Booking End ===================================== */

/* ===================================== Excursion Booking Overview Start ===================================== */
/* .overview-details h2 {color: var(--green-color);font-family: 'Montserrat Alternates';} */
.o-grid .o-cal-6 {flex: 0 0 calc(50% - 10px);}
.overview-details {display: flex;flex-direction: column;gap: 50px;}
.Overview-list {display: flex;flex-direction: column;gap: 10px;}
.o-list_item {letter-spacing: 0.35px;font-size: 16px;}
.o-list_item label {text-transform: uppercase;}
.o-list_item span {font-weight: 700;}
.confirm-details {position: relative;display: flex;flex-direction: column;gap: 50px;justify-content: space-between;align-items: end;height: 100%;}
.confirm-details::before {position: absolute;content: "";width: 1px;height: 80.5%;background-color: var(--soft-gray);left: 0;}
.confirm-details .tour-total-cost {min-width: 360px;}
/* ===================================== Excursion Booking Overview End ===================================== */


/* ===================================== Thank You Message Start ===================================== */

.TYMessageContent {display: flex;flex-direction: column;gap: 50px;}

/* ===================================== Thank You Message End ===================================== */


/* ===================================== Tailor Made Start ===================================== */
.feature-img_top {max-width: 445px;}
.feature-img_bottom {max-width: 378px;margin-top: -340px;height: 421px;margin-left: 200px;}
.feature_text .section_header h2{font-weight: 800;font-size: 36px;}
.feature_text .section_header h3{color: var(--green-color);}
.feature_text p {font-family: 'Varta';font-size: 18px;line-height: 35px;letter-spacing: 1px;}
.Feature-Overlay-Content .section_header h2 {font-size: 32px;color: var(--pure-white);font-weight: 800;line-height: 45px;}
.Feature-Overlay-Content {
    position: absolute;
    right: 0;
    top: 0;
    max-width: calc(50% - 25px);
    height: 99.5%;
    display: flex;
    align-items: center;
    padding: 0px 50px;
    color: #fff;
    background-color: rgba(8, 35, 69, 0.75);
    font-family: 'Varta';
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 1px;
}

.Feature-Overlay-Content .section_header {max-width: 590px;}
.Feature-Overlay-Text img {height: 590px;}
/* ===================================== Tailor Made End ===================================== */


/* ===================================== About Us Start ===================================== */
.about-kotor-content p {font-family: 'Varta';font-size: 18px;line-height: 35px;letter-spacing: 1px;}
.about-kotor-content a {color: var(--secondary-color);}
.about-kotor-content {display: grid;grid-gap: 30px;}

.OurGallery .section_header h3{color: var(--yellow-color);}
.GalleryGrid {height: 100%;display: grid;grid-template-columns: 1fr 1fr;grid-template-rows: 1fr;grid-gap: 20px;}
.GalleryGrid img {border-radius: 20px;}
.gallery-card {line-height: 0;position: relative;}
/* .grid-item.main-image {grid-row: 1;grid-column: 1; height: 100%;} */
.grid-item.main-image .gallery-card {height: 100%;}
/* .more-gallery {max-height: 300px;} */
/* @media (max-width: 768.5px) {
  .more-gallery {max-height: 160px;}
} */
.grid-item.sub-image .gallery-card {display: grid;grid-template-columns: 1fr 1fr;grid-gap: 20px; grid-auto-rows: 245px;}
.grid-item.sub-image {display: grid;}
.gallery-links { 
  right: 0; 
  top: 0; 
  height: 100%; 
  background: #B37B2BB2; 
  width: 65%; 
  border-radius: 20px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  text-align: center; 
}
.gallery-links span {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: #fff;
  font-family: "Sora";
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.gallery-links a {color: var(--pure-white);}
.gallery-links p {margin: 0;font-family: 'Varta';letter-spacing: 5px;text-transform: uppercase;
  /* margin-bottom: -10px; */
}
.ClientReviews + footer {margin-top: 0;}
@media (max-width: 768.5px) {
  .grid-item.sub-image .gallery-card {
    grid-auto-rows: 200px;
  }
}
@media (max-width: 575px) {
  .grid-item.sub-image .gallery-card {
    grid-auto-rows: 150px;
  }
  .gallery-links span {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
}
/* ===================================== About Us End ===================================== */

/* ===================================== Contact Us Start ===================================== */
.ContactUsForm h2 {margin-bottom: 0;}
.ContactUsForm h2 + p {margin-top: 5px;margin-bottom: 50px;}
.getin-touch a {color: var(--secondary-color);}
.getin-touch h2 {font-family: 'Montserrat Alternates';}
.Info h2 {color: var(--light-primary-color);}
.Followus h2 {color: var(--yellow-color);}
.get-nav-social {display: flex;justify-content: center;column-gap: 70px;align-items: center;flex-wrap: wrap;row-gap: 35px;}
.get-nav-social li {flex: 0 0 40px;}
.getin-touch a img {filter: brightness(0) saturate(100%) invert(11%) sepia(32%) saturate(3087%) hue-rotate(190deg) brightness(92%) contrast(97%);transition: all 0.9s;}
.getin-touch a:hover img {filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(2937%) hue-rotate(164deg) brightness(101%) contrast(101%);}
.before-line::before {position: absolute; content: ""; width: 1px; height: 85.5%; background-color: var(--soft-gray); right: -90px;}
/* ===================================== Contact Us End ===================================== */

/* ===================================== CMS Pages Start ===================================== */
.count {font-family: 'BrushScriptMT';font-weight: normal;font-size: 32px;}
.cms_header h2 {font-family: "Montserrat Alternates", serif;color: var(--secondary-color);font-weight: 800;margin-bottom: 30px;}
.cms_header p {font-family: 'Varta';font-size: 18px;line-height: 35px;letter-spacing: 1px;}
/* ===================================== CMS Pages Us End ===================================== */


/* ========================================== 
Pagination
============================================= */
.pagination {display: flex;justify-content: center;gap: 20px;align-self: center;flex-wrap: wrap;}
.p-leval {flex: 0 0 50px;height: 50px;display: flex;align-self: center;justify-content: center;}
.pagination li a {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s; 
  width: 100%; 
  height: 100%; 
  display: flex ; 
  justify-content: center; 
  align-items: center; 
  font-size: 24px; 
  font-weight: 600; 
  color: var(--primary-color); 
  border-radius: 100%;
}
.pagination li a.active, .pagination li.p-leval a:hover {background-color: var(--yellow-color);color: var(--pure-white);}
@media screen and (max-width: 575px) {


}
/* ========================================== 
Blog Details
============================================= */
.blog-details_tempate footer {margin-top: 0;}
.BlogDetails {margin-top: 20px;}
.BlogDetails .breadcrumb, .excursion-details .breadcrumb, .booking-top .breadcrumb {
  text-transform: none;
}
.BlogDetails .breadcrumb a, .excursion-details .breadcrumb a, .booking-top .breadcrumb a {
  color: var(--primary-color);
}
.BlogDetails .breadcrumb li:first-child, .excursion-details .breadcrumb li:first-child, .booking-top .breadcrumb li:first-child {
  text-transform: uppercase;
}
@media screen and (max-width: 1399px) {
.BlogDetails {margin-top: 40px;}
}

@media screen and (max-width: 575px) {
.BlogDetails {margin-top: 50px;}
}
.BcolumnS{grid-template-columns: 1fr 50px;}

.artical-main-img {
  border-radius: 20px;
  overflow: hidden;
  height: 70vh;
  max-height: 600px;
  position: relative;
  margin-top: 50px;
}
.artical-main-img .post-date {
  background-color: rgba(179, 123, 43, 0.6); 
  color: #fff;
  font-family: "Sora";
  font-size: 24px;
  letter-spacing: 0.5px;
  padding: 25px 60px;
}
/* .artical-main-img img {border-radius: 20px;} */
/* .article-cms h1 {
  font-weight: 800; 
  margin-bottom: 50px;
} */
.article-cms h2 {
  /* font-family: 'Montserrat Alternates';
  font-weight: 800;
  margin-bottom: 35px; */
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 32px;
  letter-spacing: 0.75px;
}
.article-cms h3 {
  margin: 20px 0;
}
/* .article-cms p, .article-cms {
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 1px;
} */
.article-cms ul li {
  /* position: relative; */
  /* padding-left: 15px; */
  list-style: disc;
  list-style-position: inside;
}

/* .article-cms ul li::before { position: absolute; content: ""; width: 5px; height: 5px; left: 0; right: 0; top: 12px; background-color: var(--secondary-color); border-radius: 100px; } */
.social-share {display: flex;flex-direction: column;margin-top: 10px;}
.share_link img {filter: brightness(0) saturate(100%) invert(11%) sepia(32%) saturate(3087%) hue-rotate(190deg) brightness(92%) contrast(97%);}
.share-title {
  font-size: 16px;
  /* transform: rotate(90deg) translateX(30px) translateY(-42px); */
  margin-top: -20px;
  font-weight: 700;
  letter-spacing: 1px;
  writing-mode: vertical-rl; 
  text-orientation: mixed; 
}
.sharepost {display: flex;flex-direction: column;align-items: end;padding-top: 70px;position: sticky; top: 100px;}

@media (max-width: 1199.5px) {
.BcolumnS{grid-template-columns: 1fr;}
.sharepost {
  flex-direction: row;
  align-items: center;
  padding-top: 0;
}
.share-title {
  writing-mode: horizontal-tb;
  margin: 0;
}
.social-share {
  margin-top: 0;
  margin-left: 10px;
}
.social-share svg {
  transform: rotate(-90deg);
}

}
/* ========================================== 
Demo Template
============================================= */
.demo-tempate-style h1 {font-family: 'Montserrat Alternates';font-weight: 800;}
.demo-tempate-style h2 {font-family: 'Montserrat Alternates';font-weight: 800;margin-bottom: 35px;margin-top: 50px;}
.demo-tempate-style p, .demo-tempate-style {font-family: 'Varta';font-size: 18px;line-height: 35px;letter-spacing: 1px;}
.BulletPoints li {position: relative;padding-left: 15px;}
.BulletPoints li::before { position: absolute; content: ""; width: 5px; height: 5px; left: 0; right: 0; top: 12px; background-color: var(--secondary-color); border-radius: 100px; }
.demo-tempate-style ul li a {color:var(--secondary-color);font-weight: 800; font-family: 'Montserrat'; }

/* ===================================== Footer Start ===================================== */
.main_footer {
  background: var(--secondary-color);
  /* padding: 5rem 0px; */
  padding-top: 5rem;
  border-radius: 20px 20px 0px 0px;
  position: relative;
  z-index: 8;
}
.logo-with-nesw-latter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_latter {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 50px;
  width: 100%;
  max-width: fit-content;
}
.logo-with-nesw-latter h2 {
  color: #fff;
  font-size: 32px;
  letter-spacing: 0.75px;
}
.newsletter-form {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
}
.newsletter-form .email-input, .newsletter-form .email-input::placeholder {
  letter-spacing: 0.35px;
  font-size: 16px;
  color: #514947;
  font-weight: 600;
  font-family: "DMSans";
}
.newsletter-form .email-input {
  border: none;
  border-radius: 20px;
  padding: 26px 20px 24px;
  flex: 1;
}
.newsletter-form .subscribe-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #B37B2B;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  border-radius: 20px;
  padding: 19px 43px 15px;
  transition: all 0.5s;
  cursor: pointer;
  letter-spacing: 0.35px;

}
.newsletter-form .subscribe-btn:hover {
  background: var(--secondary-color);
}
.newsletter-form .email-input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--secondary-color);
  letter-spacing: 2px;
}
.newsletter-form .email-input::-moz-placeholder {
  /* Firefox 19+ */

  color: var(--secondary-color);
  letter-spacing: 2px;
}
.newsletter-form .email-input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--secondary-color);
  letter-spacing: 2px;
}
.newsletter-form .email-input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--secondary-color);
  letter-spacing: 2px;
}
.fotoer-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 5rem;
}
.Footer_Nav {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr 1fr;
  /* margin-top: 50px; */
  /* gap: 20px; */
}
.footer_accordian, .nav-social-footer {
  padding-top: 50px;
  padding-bottom: 5rem;
}
.footer_accordian_title h3 {
  color: var(--pure-white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-get-info {
  display: flex;
  gap: 20px;
}
/* .footer-get-info .nav-social {
  gap: 20px;
  width: 25px;
  border-right: 1px solid #fff;
  padding-right: 15px;
}
.footer-get-info .nav-social img{
 object-fit: contain;
} */
.footer-nav-info-link img {
width: 22px;
}
.footer-nav-info-link {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  color: var(--pure-white);
  font-size: 16px;
  letter-spacing: 0.35px;
  font-weight: 500;
  transition: all 0.5s;
  margin-bottom: 20px;
  line-height: normal;

}
.footer-nav-info-link svg {
  margin-right: 7px;
}
.footer-nav-info-link svg path {
  transition: all 0.5s;
}
.footer-nav-info-link:hover {
  color: #B37B2B;
}
.footer-nav-info-link:hover svg path {
  fill: #B37B2B;
}
/* .footer-nav-info-link {
  display: flex;
  line-height: 1;
  margin-bottom: 10px;
} */
.footer-nav-link {
  color: var(--pure-white);
  font-size: 16px;
  letter-spacing: 0.35px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  transition: all 0.5s;
  /* border-bottom: 1px solid transparent; */
  position: relative;
  line-height: normal;
}
.footer_accordian_content ul li:last-child .footer-nav-link {
  margin-bottom: 0;
}
.footer-nav-link::before {
  content: "";
  height: 1px;
  background: var(--red-color);
  transition: all 0.5s;
  margin-right: 0;
  width: 0;
}
.footer-nav-link:hover {
  color: var(--red-color);
}
.footer-nav-link:hover::before {
  width: 20px;
  margin-right: 5px;

}
.CopyRight { padding: 15px 0px; }
.CopyRight p, .CopyRight a {
    margin: 0;
    letter-spacing: 0.35px;
    font-weight: 500;
    color: var(--primary-color);
}
@media screen and (max-width: 575px) {
  .CopyRight p, .CopyRight a {
    font-size: 14px;
    letter-spacing: 0;
  }
  .footer-nav-info-link {
    word-break: break-all;
  }
  .CopyRight { padding: 10px 0px; }
}
/* ===================================== Footer End ===================================== */
.privacy-text table, .privacy-text table td {
  border: none;
}
.privacy-text h2 {
  font-size: 32px;
  letter-spacing: 0.75px;
}
.privacy-text a {
  color: var(--yellow-color);
}
.privacy-text h2 {
  margin-top: 30px;
}
.privacy-text tbody tr:first-child h2:first-child {
  margin-top: 0;
}
.privacy-text ul, .privacy-text h4, .privacy-text h3  {
  margin: 20px 0;
}
.privacy-text ul li + li {
  margin-top: 10px;
}
.iti {
  display: block;
}
.form-group textarea {
  resize: none;
}
button.footer-nav-link {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}
.no-tour {
  margin-top: 50px;
  color: var(--red-color);
}

/* input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} */

/* input[type=number] {
  -moz-appearance: textfield;
} */

.video-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  visibility: hidden;
}
.video-popup-wrap.open-video {
  visibility: visible;
}
.video-popup-wrap iframe {
  width: 100%;
  height: 80%;
  max-width: 900px;
  max-height: 500px;
}
.video-popup-wrap .close-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 2px solid #fff;
  border-bottom-left-radius: 10px;
  background-image: url('../images/close.png');
  background-position: center;
  background-size: 45%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 575px) {
  .video-popup-wrap iframe {
    max-height: 300px;
  }
}

.tour-details-swiper {
  position: relative;
  height: 700px;
}
.tour-details-swiper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}
.tour-details-swiper .bigSwiper {
  height: 100%;
  width: calc(100% - 340px);
  /* margin-left: auto; */
  margin-right: 0;

  margin-left: auto;
}
.tour-details-swiper .smallSwiper {
  position: absolute;
  top: 0;
  /* right: 0; */
  left: 320px;
  height: 320px;
  width: 700px;
  /* transform: rotate(90deg) translateX(100%); */
   /* transform-origin: top right;  */

  transform: rotate(90deg) translateX(0%);
    transform-origin: top left;
}
.tour-details-swiper .smallSwiper img {
  transform: rotate(-90deg);
  width: 320px;
  max-width: unset;
}
.tour-details-swiper .big-button-next, .tour-details-swiper .big-button-prev {
  /* background-color: #B37B2B; */
  background-color: rgba(179, 123, 43, 0.6);

  cursor: pointer;
  height: 60px;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.tour-details-swiper .big-button-next::after, .tour-details-swiper .big-button-prev::after {
  display: none;
}
.tour-details-swiper .big-button-next svg, .tour-details-swiper .big-button-prev svg {
  transform: rotate(90deg) scale(0.6);
}
.tour-details-swiper .big-button-next {
  bottom: 0;
  /* right: 0; */
  right: unset;
  left: 0; 
  top: unset;
  left: unset;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.tour-details-swiper .big-button-prev {
  bottom: unset;
  /* right: 0;  */
  right: unset;
  left: 0;
  top: 0;
  left: unset;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tour-details-price {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: fit-content;
  max-width: 100%;
  /* height: 40%; */
  /* display: flex; */
  /* align-items: end; */
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  font-family: "Sora";
  letter-spacing: 0.75px;
  padding: 20px 40px;
  border-radius: 0 20px 0 20px;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 51.01%, rgba(0, 0, 0, 0.6) 100%); */
  /* background-color: #B37B2B; */
  background-color: rgba(179, 123, 43, 0.6);

}
.tour-details-price span {
  font-size: 16px;
  letter-spacing: 0.35;
  font-weight: 600;
}

@media screen and (max-width: 1600px) {
  .tour-details-swiper {
    height: 500px;
  }
  .tour-details-swiper .smallSwiper {
    width: 500px;
  }
}
@media screen and (max-width: 1200px) {
  .tour-details-swiper {
    height: 600px;
  }
  .tour-details-swiper .bigSwiper {
    width: 100%;
    height: 380px;
    margin-bottom: 20px;
  }
  .tour-details-swiper .smallSwiper {
    position: static;
    transform: none;
    transform-origin: unset;
    width: 100%;
    height: 200px;
  }
  .tour-details-swiper .smallSwiper img {
    transform: none;
    width: 100%;
  }
  .tour-details-swiper .big-button-next, .tour-details-swiper .big-button-prev {
    width: 50px;
    height: 200px;
  }
  .tour-details-swiper .big-button-next svg, .tour-details-swiper .big-button-prev svg {
    transform: scale(0.4);
  }
  .tour-details-swiper .big-button-next {
    bottom: 0;
    right: 0;
    top: unset;
    left: unset;
    border-bottom-left-radius: 0;
    border-top-right-radius: 2cqmax;
  }
  .tour-details-swiper .big-button-prev {
    bottom: 0;
    right: unset; 
    top: unset;
    left: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
  }
}

@media screen and (max-width: 575px) {
  .tour-details-swiper {
    height: 400px;
    margin-top: 10px !important;
  }
  .tour-details-swiper .bigSwiper {
    height: 290px;
    margin-bottom: 10px;
  }
  .tour-details-swiper .smallSwiper {
    height: 100px;
  }
  .tour-details-swiper .big-button-next, .tour-details-swiper .big-button-prev {
    width: 30px;
    height: 100px;
  }
  .tour-details-price {
    font-size: 24px;
    padding: 20px;
  }
  .tour-details-price span {
    font-size: 14px;
  }
  .artical-main-img {
    margin-top: 0 !important;
  }
}

.video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 105;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.video-wrap.open-video {
  opacity: 1;
  visibility: visible;
}

.videoWindow {
  background-color: transparent;
  padding: 20px;
  width: 90%;
  height: 80%;
  max-width: 800px;
  max-height: 500px;
  position: relative;
  border: 3px solid #fff;
}

.close-video {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #fff;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  top: -25px;
  right: -25px;
  cursor: pointer;
  background-image: url("../images/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
}
.tour-detail-h1 {
font-size: 32px;
letter-spacing: 0.75px;
margin: 20px 0;
}
body:has(.tour-booking-form), body:has(.confirm-details) {
  overflow: visible;
}
.tour-booking-form .flex-wrap, .confirm-details {
  position: relative;
}
.tour-booking-form .flex-wrap .one-third, .confirm-details .tour-total-cost {
  position: sticky;
  top: 130px;
  /* margin-bottom: 70px; */
  height: fit-content;
}
.padd-top {
  padding-top: 70px;
}
.mar-top {
  margin-top: 200px;
}
.g-recaptcha {
  display: flex;
  justify-content: end;
  margin-bottom: 20px;  
}

@media screen and (max-width: 768px) {
  .confirm-details .tour-total-cost {
      position: static;
      top: unset;
      margin-bottom: 0;
  }
  .g-recaptcha {
     justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .padd-top {
  padding-top: 50px;  
}
.mar-top {
  margin-top: 90px;
}
  .tailor-image {
    display: none !important;
  }
  .videoWindow {
    height: 40%;
    padding: 10px;
  }
  .close-video {
    width: 36px;
    height: 36px;
    top: -16px;
    right: -16px;
  }
  .filter-heading img {
    max-width: 150px;
  }
  .select-card select, .select-card input {
    margin-top: 5px;
    font-size: 14px;
    padding: 5px 20px 5px 10px;
  }
  .select-card label {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .select-card input {
    max-width: calc(100% - 20px);
  }
  .FiltersGrid {
    gap: 20px !important;
  }
  .filter-item:has(.btn) {
    width: 100%;
    display: flex;
    flex: 1;
    justify-content: center;
  }
  .filter-item .btn {
    padding: 7px;
    margin: 0 auto;
    width: 100% !important;
  }
  .filter-item .btn img {
    width: 20px;
    object-fit: contain;
  }

  .filter-by .gap40 {
    gap: 0;
  }
  .filter-by .flex-item {
    text-align: left !important;
    font-size: 14px;
    width: 100%;
    max-width: 49%;
    display: flex;
    flex-direction: column;
    
  }
  .filter-by .d-flex {
    justify-content: space-between;
  }
  .filter-by select {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .fixed-header .logo img {
    max-width: 60px;
  }
  .tour-detail-h1 {
  font-size: 24px;
  letter-spacing: 0.5px;
  margin: 10px 0;
  }
  .tour_type {
    font-size: 18px;
  letter-spacing: 0.5px;

  }
  .breadcrumb {
    font-size: 12px !important;
    letter-spacing: 1px;
  }
  .ECR-inner .tour-icons {
    flex-wrap: wrap;
  }
  .ECR-main .t-icon-text {
    margin-top: 10px;
  }
  .SimilarTours {
    padding-bottom: 50px;
    position: relative;
  }
  .SimilarTours .text-right {
    position: absolute;
    bottom: 0;
    right: 1rem;
  }
  .SimilarTours h2 {
    margin-bottom: 30px;
  }
  .btn-overview-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* max-width: 250px; */
    font-size: 14px !important;
    letter-spacing: 1px;
    padding: 10px 0;  
  }
  .mobile-btn {
    gap: 5px !important;
  }

}

.OC-gallery-card-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 5;
}
.iti__country-container {
  top: -4.5px;
}


.whatsapp-icon, .mail-fixed {
  position: fixed;
  right: 30px;
  bottom: 15px;
  z-index: 11;
}
.mail-fixed {
  bottom: 78px;
  border-radius: 10px;
  background-color: var(--yellow-color);
  width: 48px;
  height: 48px;
  z-index: 10;

}
.mail-fixed, .mail-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mail-fixed a svg {
  width: 30px;
  height: 30px;
}
.whatsapp-icon, .whatsapp-icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-icon img {
  width: 48px;
  height: 48px;
}

.whatsapp-icon img {
  cursor: pointer;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}

.whatsapp-box {
  position: fixed;
  right: 30px;
  bottom: 90px;
  z-index: 11;
  background-color: white;
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  margin-right: 0;
  margin-left: auto;
  -webkit-box-shadow: 0px 10px 20px 1px rgb(0 0 0 / 20%); 
  box-shadow: 0px 10px 20px 1px rgb(0 0 0 / 20%);
  display: none;
}

.whatsapp-box.open {
  display: block;
}

.whatsapp-box .input {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px;
}

.whatsapp-box .input svg {
  cursor: pointer;
}

.whatsapp-box .input input {
  border: none;
  outline: none;
  width: 80%;
  height: 40px;
  padding-right: 15px;
}

.whatsapp-box button {
  outline: none;
  background: none;
  border: none;
}

.whatsapp-box .txt {
  /* background: #00AEEF; */ 
  background: linear-gradient(317deg, #B37B2B 40%, #55360a 100%); 
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.whatsapp-box .txt p {
  color: white;
} 

@media screen and (max-width: 575px) {
  .whatsapp-icon {
    bottom: 10px;
    right: 1rem;
  }
  .whatsapp-box {
    right: 1rem;
    bottom: 72px;
  }
  .mail-fixed {
    right: 1rem;
    bottom: 68px;
  }
}

.awards-section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 45px;
  background-color: #514947B2;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 8;
  margin-top: -135px;
}
.white-smoke-bg-color:has(.awards-section-wrap) {
  padding-bottom: 70px;
}
.awards-section-wrap .awards {
  display: flex;
  align-items: center;
  justify-content: end;

}
.awards-section-wrap .awards img {
  width: 170px;
  height: 180px;
  border-radius: 15px;
}
.awards-section-wrap .awards img + img {
  margin-left: 20px;
}
.awards-section-wrap .awards-title h2, .awards-section-wrap .awards-title span {
  color: #fff;
  /* max-width: 200px; */
  line-height: 130%;
}
.awards-section-wrap .awards-title h2 {
  margin-top: 5px;
}
.awards-section-wrap .awards-title span {
  letter-spacing: 1px;
  font-size: 14px;
  font-family: "Sora";
  text-transform: uppercase;
}
.tours_page_sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.tours_page_sub img {
  border-radius: 20px;
}
.tours_page_sub p {
  color: #222222B2;
}
.tours_page_sub h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.75px;
}
.footer-logo {
  width: 100%;
  max-width: 176px;
}
.numbers-wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.numbers-wrap .num {
  width: 100%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
}
.numbers-wrap .num:nth-child(2) {
  border-left: 2px solid #5555551A;
  border-right: 2px solid #5555551A;
  max-width: 35%;
}
.numbers-wrap .num span {
  font-family: "Sora";
  font-weight: 700;
  font-size: 100px;
  line-height: 80%;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  display: block;
  color: #55555526;
}
.numbers-wrap .num p {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  color: #B37B2B;
  margin-top: 10px;
}
.about-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;

}
.about-page-wrap img {
  height: 550px;
  border-radius: 20px;
  margin-top: 35px;
}

.about-page-wrap p {
  color: #222222B2;
  line-height: 150%;
}

.contact-page-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}
.contact-page-wrap h2, .all-information h2, .tour-total-cost h2, .overview-details h2, .TYMessageContent h2 {
  font-size: 32px;
  letter-spacing: 0.75px;
  margin-bottom: 35px;
}
.tour-total-cost h2 {
  margin-bottom: 25px;
  font-weight: 400;
}
.overview-details h2, .TYMessageContent h2 {
  margin: 0;
}
.TYMessageContent h2 {
  font-weight: 700;
}
.grey-form-grid {
  display: grid;
  gap: 35px;
}
.grey-form-grid .inputs2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.grey-form label {
font-family: "Sora";
font-weight: 600;
font-size: 14px;
letter-spacing: 0;
color: var(--primary-color);
display: block;
margin-bottom: 8px;
}
.grey-form .input-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  background-color: #F5F5F5;
  padding: 0 10px;
  height: 50px;
}
.grey-form .input-icon svg {
  width: 100%;
  max-width: fit-content;
}
.grey-form input, .grey-form textarea, .grey-form select, 
.grey-form input::placeholder, .grey-form textarea::placeholder,
.iti .iti__selected-dial-code {
font-family: "DMSans";
font-weight: 400;
font-size: 14px;
letter-spacing: 0;

}
.grey-form textarea, .grey-form select {
  background-color: #F5F5F5;
  border-radius: 5px;
}

.grey-form input::placeholder, .grey-form textarea::placeholder, .iti .iti__selected-dial-code {
  color: #222222B2;
}
.grey-form input, .grey-form textarea, .grey-form select {
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  color: var(--primary-color);
}
.grey-form .input-icon input, .grey-form .input-icon select {
  max-width: calc(100% - 25px);
  border-right: 1px solid #2222221A;
  height: 100%;
  background-color: transparent;
}
.grey-form textarea {
  height: 220px;
  resize: none;
  padding: 20px;
  max-width: calc(100% - 40px);
}
.contact-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.contact-btn {
font-family: "Sora";
font-weight: 700;
font-size: 18px;
letter-spacing: 0.5px;
text-align: center;
color: #fff;
background-color: #B37B2B;
border: none;
border-radius: 50vh;
width: 100%;
max-width: 280px;
min-width: 280px;
padding: 15px;
text-transform: uppercase;
cursor: pointer;
}
.contact-btn-white {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: #fff;
  font-weight: 400;
}
.contact-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.iti {
  height: 100%;
  width: 100%;
  max-width: calc(100% - 25px);
}
.iti input {
  max-width: 100% !important;
}
.iti .iti__selected-dial-code {
  transform: translateY(2.5px);
}
.iti__selected-country-primary {
  padding-top: 6px;
}

.contact-info-wrap {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px #0000001F;
  padding: 70px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-info-wrap a {
font-weight: 500;
font-size: 18px;
letter-spacing: 0.35px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
transition: all 0.5s;
}
.contact-info-wrap a svg path {
transition: all 0.5s;

}
.contact-info-wrap a:hover {
  color: var(--yellow-color);
}
.contact-info-wrap a:hover svg path {
  fill: var(--yellow-color);
}
.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;

}
.contact-socials a + a {
  margin-left: 35px;
}

.team-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-member img {
  height: 300px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.team-member h2 {
font-weight: 700;
font-size: 24px;
line-height: normal;
letter-spacing: 0.5px;
text-align: center;

}

.team-member p {
font-weight: 300;
font-size: 14px;
line-height: 120%;
letter-spacing: 0;
text-align: center;
color: #222222CC;
}
.team-member .member-role p {
font-weight: 700;
font-size: 16px;
letter-spacing: 0.35px;
text-align: center;
display: block;
color: #B37B2B;
margin: 10px 0 20px;
}

.tour-details-text ol, .tour-details-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tour-details-text > ol > li + li {
  margin-top: 50px;
}
.tour-details-text ol h3 {
  letter-spacing: 0.5px;
  display: flex;
}
.tour-details-text ol h3 + ol {
  margin-top: 15px;
}
.tour-details-text ol h3::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 32px;
  height: 32px;
  background-image: url('../images/iteration2.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  transform: translateY(-6px);
}
.tour-details-text > ol > li:first-child h3::before , .tour-details-text > ol > li:last-child h3::before {
  background-image: url('../images/iteration1.svg');
}
.tour-details-text ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: -20px;
}
/* .tour-details-text ul li + li {
  margin-left: 35px;
} */
.tour-details-text ul li {
  display: flex;
  letter-spacing: 0.35px;
  margin-top: 20px;
  margin-right: 35px;
}
.tour-details-text h3 {
  margin: 30px 0;
}
.tour-details-text ul li::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 24px;
  height: 24px;
  background-image: url('../images/tickmark.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
  transform: translateY(-3px);
}
.select-non select {
  appearance: none;
  cursor: pointer;
}
.mt-custom {
  margin-top: 20px;
}
.booking-top .breadcrumb {
  margin-bottom: 70px;
}
.booking-top h1 {
  margin: 10px 0;
}
.booking-top .tour_type {
  margin: 0 auto;
  width: fit-content;
}
.booking-form2 .form-group .d-flex{
  column-gap: 50px;
  row-gap: 35px;
}
.bike-rental {
  display: flex;
  align-items: center;
font-weight: 700;
font-size: 24px;
letter-spacing: 0.8px;

}
.bike-rental img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}
.bike-rental-text h2:first-child {
  margin-top: 20px;
}
@media screen and (max-width: 1399px) {
.numbers-wrap .num span {
  font-size: 80px;
}
.numbers-wrap .num p {
  font-size: 20px;
}
}
@media screen and (max-width: 1299px) {
  .awards-section-wrap {
    flex-direction: column;
  }
  .awards-section-wrap .awards-title {
    margin-bottom: 30px;
  }
  .awards-section-wrap .awards-title h2, .awards-section-wrap .awards-title span {
    display: block;
    text-align: center;
  }
  .awards-section-wrap .awards {
    justify-content: space-between;
  }
  .awards-section-wrap .awards img {
    width: 19%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .awards-section-wrap .awards img + img {margin-left: 0;}
}
@media screen and (max-width: 1199px) {
  .awards-section-wrap {
    margin-top: -70px;
  }
  .tours_page_sub {
    grid-template-columns: 1fr;
  }
  .numbers-wrap .num {
    height: 100px;
  }
  .numbers-wrap .num span {
    font-size: 60px;
    letter-spacing: 1px;
  }
  .numbers-wrap .num p {
    font-size: 18px;
  }
  .about-page-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-page-wrap img {
    height: auto;
    margin-top: 20px;
  }
  .contact-page-wrap {
    grid-template-columns: 1fr;
  }
  .team-wrap {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .OC_gallery {
    grid-template-columns: 1fr 1fr;
  }
  .OC-gallery__item--lg {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media screen and (max-width: 992px) {
  .numbers-wrap {
    flex-direction: column;
  }
  .numbers-wrap .num, .numbers-wrap .num:nth-child(2) {
    max-width: 100%;
    height: fit-content;
  }
  .numbers-wrap .num:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 2px solid #5555551A;
    border-bottom: 2px solid #5555551A;
    margin: 25px 0;
    padding: 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .grey-form-grid .inputs2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grey-form-grid {
    gap: 20px;
  }
  .tour-details-text ul li::before {
    max-width: 20px;
    height: 20px;
    transform: translateY(3px);
  }
  .OC_gallery {
    gap: 10px;
  }
}
@media screen and (max-width: 576px) {
  .OC_gallery {
    grid-auto-rows: 200px;
  }
  .awards-section-wrap {
    padding: 30px 10px;
  }
  .awards-section-wrap .awards {
    flex-wrap: wrap;
    justify-content: center;
  }
  .awards-section-wrap .awards img {
    min-width: 45px;
    margin: 5px;
  }
  .awards-section-wrap .awards-title {
    margin-bottom: 10px;
  }
  .tours_page_sub h2, .contact-page-wrap h2, .privacy-text h2, .ECD-Full-Details h2, .all-information h2, .tour-total-cost h2, .overview-details h2, .TYMessageContent h2 {
    font-size: 24px;
    letter-spacing: 0.5px;
  }
  .numbers-wrap .num span {
    font-size: 40px;
    letter-spacing: 0;
  }
  .numbers-wrap .num p {
    font-size: 16px;
  }
  .numbers-wrap .num:nth-child(2) {
    margin: 20px 0;
    padding: 20px 0;
  }
  .contact-info-wrap {
    padding: 50px 10px;
  }
  .grey-form textarea {
    height: 150px;
  }
  .contact-btn {
    font-size: 16px;
    max-width: unset;
    min-width: unset;
  }
  .contact-btn-link {
    max-width: calc(100% - 30px);
  }
  .privacy-text a {
    word-break: break-all;
  }
  .team-wrap {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
  .mt-custom {
    margin-top: 50px;
  }
  .tour-details-text ul li {
    margin-top: 10px;
  }
  .bike-rental {
    font-size: 18px;
  }
  .hero-Content h1, .awards-section-wrap .awards-title h2 {
    font-size: 26px;
  }
  .hero-Content span, .awards-section-wrap .awards-title span {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  .awards-section-wrap {
    margin-top: -20px;
  }
  .d-none-sm {
    display: none;
  }
  .AboutUs .display-grid {
    gap: 0;
  }
  .clients_img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .quote-icon {
    font-size: 40px;
    letter-spacing: 1px;
    margin-top: 20px;
  }
  .ClientsSay {
    margin-top: 40px;
  }
  .clients_card blockquote {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
  }
  .logo-with-nesw-latter h2 {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 10px !important;
  }
  .newsletter-form .email-input, .newsletter-form .email-input::placeholder, .newsletter-form .subscribe-btn {
    font-size: 14px;
    letter-spacing: 0;
  }
  .newsletter-form .email-input, .newsletter-form .subscribe-btn {
    height: 40px;
    padding: 0 20px !important;
  }
  .nav-social-footer svg {
    width: 200px;
    height: 200px;
    max-width: 30px;
    max-height: 30px;
  }
  .navbar {
    height: 60px;
  }
  .brand-logo {
    max-height: 40px;
  }
  .brand-logo .logo, .brand-logo .logo img {
    max-height: 40px;
  
  }
}
.before-footer {
  padding-bottom: 20px;
  margin-bottom: -20px; 
}
.pdf {
font-weight: 700;
font-size: 16px;
letter-spacing: 0.35px;
color: var(--primary-color);
display: flex;
width: fit-content;
}
.pdf svg {
  margin-right: 5px;
  transform: translateY(-3px);
}
.tour_type_img {
  width: auto;
  height: auto;
  margin-right: 5px;
}
.pay_select .input-icon select {
  border: none;
  max-width: 100%;
}

.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background-color: var(--yellow-color);
  border-color: var(--yellow-color);
}

/* ////////////////////////////////////////////// */ 

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  width: 100%;
  max-width: calc(100% - 25px);
  cursor: pointer;
  border-right: 1px solid #2222221A;
  height: 100%;

}

.select-selected {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.select-items div {
  color: var(--primary-color);
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: -10px;
  right: 0;
  z-index: 88;
  border: 1px solid #2222221A;
  border-radius: 5px;
  overflow: hidden;
  width: calc(100% + 43px);
  height: fit-content;
  max-height: 150px;
  overflow-y: auto;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #F5F5F5;
}

.pay_select .input-icon .custom-select {
    border: none;
    max-width: 100%;
}
.pay_select .input-icon .custom-select .select-items {
  width: calc(100% + 18px);
}

/* /////////////////////////////////////////////////////////// */

.custom-select select{
display:none;
}

.select-display{
display: flex;
align-items: center;
height: 100%;
cursor:pointer;
}

.select-options{
display:none;
background-color: #fff;
  border: 1px solid #2222221A;
  border-radius: 5px;
  overflow: hidden;
  height: fit-content;
  max-height: 150px;
  overflow-y: auto;
}

.select-options.open{
display:block;
}

.select-options div{
padding:10px;
cursor:pointer;
}

.select-options div:hover{ 
background:#F5F5F5; 
}