:root {
  --primary: #0d62e2;
  --on-surface: #121212;
  --surface: #f7f7f7;
  --secondary: #64666c;
  --line: #dfe2e7;
  --border: #49515b4d;
}

.tf-btn {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  background-size: 300%;
  white-space: nowrap;
}
.tf-btn.color-white {
  position: relative;
  color: var(--on-surface);
  border-radius: 8px;
  background-position: 100%;
  background-image: linear-gradient(
    -200deg,
    var(--primary) 50%,
    var(--white) 50%
  );
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tf-btn.color-white:hover {
  background-position: 0 0;
  color: var(--white);
}
.tf-btn.color-on-surface {
  padding: 11px 32px;
  color: var(--white);
  border-radius: 8px;
  background-position: 100%;
  background-image: linear-gradient(
    -200deg,
    var(--white) 50%,
    var(--on-surface) 50%
  );
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tf-btn.color-on-surface:hover {
  background-position: 0 0;
  color: var(--on-surface);
}
.btn-quantity {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
  position: relative;
}
.btn-quantity.minus-btn::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--on-surface);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.btn-quantity.plus-btn::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--on-surface);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-quantity.plus-btn::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: var(--on-surface);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tf-btn-search {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 100%;
  background-color: var(--primary);
  color: var(--white);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-btn-search i {
  font-size: 26px;
  padding-right: 7px;
}
.tf-btn-search:hover {
  background-color: var(--on-surface);
  color: var(--white);
}
.tf-button-filter i {
  font-size: 36px;
}
.tf-btn-arrow i {
  font-size: 20px;
  color: var(--on-surface);
}
.range-slider .range-two-val {
  margin-bottom: 10px;
  height: 4px;
  box-shadow: none;
  border: 0;
  background-color: var(--line);
}
.range-slider .range-two-val .noUi-connects .noUi-connect {
  background-color: var(--secondary);
}
.range-slider .range-two-val .noUi-origin .noUi-handle {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--on-surface);
  box-shadow: none;
  top: 3px;
  right: -20px;
  transform: translate(-50%, -50%);
}
.range-slider .range-two-val .noUi-origin .noUi-handle::after,
.range-slider .range-two-val .noUi-origin .noUi-handle::before {
  display: none;
}
.range-slider .range-two-val .noUi-origin .noUi-handle:active {
  right: -17px !important;
}
.range-slider .bottom {
  margin-top: 21px;
}
.range-slider .value {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
}
.range-slider .value .price-max,
.range-slider .value .price-min {
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 8px;
  width: 100%;
  position: relative;
}
.range-slider .value .price-min::before {
  content: "min";
  color: var(--Placehoder);
  font-size: 14px;
  line-height: 22px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.range-slider .value .price-max::before {
  content: "max";
  color: var(--Placehoder);
  font-size: 14px;
  line-height: 22px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.range-slider .value > div {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  color: var(--on-surface);
}
.range-slider .input-container div {
  position: absolute;
  width: max-content;
  padding: 5px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  top: 20%;
  background-color: var(--white);
}
.range-slider .input-container div::before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid var(--line);
  border-top-color: transparent;
  border-top-color: var(--white);
}
form {
  position: relative;
  z-index: 30;
}
form textarea,
form input[type="text"],
form input[type="password"],
form input[type="datetime"],
form input[type="datetime-local"],
form input[type="date"],
form input[type="month"],
form input[type="time"],
form input[type="week"],
form input[type="number"],
form input[type="email"],
form input[type="url"],
form input[type="search"],
form input[type="tel"],
form input[type="color"] {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--Soft-Text);
  overflow: hidden;
  margin-bottom: 0;
}
form textarea::placeholder,
form input[type="text"]::placeholder,
form input[type="password"]::placeholder,
form input[type="datetime"]::placeholder,
form input[type="datetime-local"]::placeholder,
form input[type="date"]::placeholder,
form input[type="month"]::placeholder,
form input[type="time"]::placeholder,
form input[type="week"]::placeholder,
form input[type="number"]::placeholder,
form input[type="email"]::placeholder,
form input[type="url"]::placeholder,
form input[type="search"]::placeholder,
form input[type="tel"]::placeholder,
form input[type="color"]::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--Placehoder);
}
form textarea.style-default,
form input[type="text"].style-default,
form input[type="password"].style-default,
form input[type="datetime"].style-default,
form input[type="datetime-local"].style-default,
form input[type="date"].style-default,
form input[type="month"].style-default,
form input[type="time"].style-default,
form input[type="week"].style-default,
form input[type="number"].style-default,
form input[type="email"].style-default,
form input[type="url"].style-default,
form input[type="search"].style-default,
form input[type="tel"].style-default,
form input[type="color"].style-default {
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background-color: transparent;
}
form button,
form input[type="button"],
form input[type="reset"],
form input[type="submit"] {
  background-color: transparent;
  overflow: hidden;
  padding: 0;
}
form textarea {
  height: 112px;
}
form textarea.h-204 {
  height: 204px;
}
select {
  border: 0;
}
select:focus {
  outline: 0;
}
fieldset {
  width: 100%;
}
fieldset.pb-20 {
  padding-bottom: 20px;
}
.cols {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 16px;
}
.mess-contact {
  height: 204px;
}
.check-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
.check-box input[type="checkbox"],
.check-box input [type="radio"] {
  width: 12px;
  height: 12px;
}
.check-box.style-2 input[type="checkbox"] {
  width: 15px;
  height: 15px;
}
.check-box.pl-3 {
  padding-left: 3px;
}
.check-box.gap-9 {
  gap: 9px;
}
.bottom-slide {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.bottom-slide .swiper-pagination-bullet {
  background-color: var(--on-surface);
  opacity: 0.4;
  margin: 5px 10px 5px 7px;
  width: 8px;
  height: 8px;
  position: relative;
}
.bottom-slide .swiper-pagination-bullet::after {
  position: absolute;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 5;
}
.bottom-slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.bottom-slide .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  border-color: var(--on-surface);
}
.image-avatar {
  cursor: pointer;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-avatar .image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 9;
  position: relative;
}
.image-avatar .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-avatar .overlay {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.swiper-avatar {
  margin-left: 0;
}
.swiper-avatar .swiper-slide-thumb-active .image-avatar::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary);
  border-radius: 50%;
  z-index: -1;
}
.swiper-avatar .swiper-slide-thumb-active .image-avatar .overlay {
  display: none;
}
.testimonial-swiper-3 .swiper-pagination {
  bottom: 0;
}
.testimonial-swiper-3 .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--on-surface);
  opacity: 0.4;
  margin: 5px 21px 5px 7px;
  width: 10px;
  height: 10px;
  position: relative;
}
.testimonial-swiper-3 .swiper-pagination .swiper-pagination-bullet::after {
  position: absolute;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 5;
}
.testimonial-swiper-3
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary);
}
.testimonial-swiper-3
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  border-color: var(--primary);
}
.btn-arrow {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(54, 95, 104, 0.1);
}
.btn-arrow i {
  font-size: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-arrow.style-2 {
  width: 48px;
  height: 48px;
}
.btn-arrow.style-2 i {
  font-size: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-arrow.style-3 {
  border: 1px solid var(--line);
  width: 52px;
  height: 52px;
  position: unset;
  transform: unset;
  visibility: visible;
  position: relative;
  box-shadow: none;
}
.btn-arrow.style-3.swiper-button-disabled::before {
  content: "";
  background-color: var(--white);
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.btn-arrow.style-3 i {
  font-size: 21px;
  font-weight: 400;
}
.btn-arrow.style-4 {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  position: unset;
  box-shadow: unset;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
}
.btn-arrow.style-4 i {
  color: var(--white);
}
.btn-arrow.home-next {
right: 40px;
}
.btn-arrow.home-prev {
left: 40px;
}
.btn-arrow.section-prev {
  left: -24px;
}
.btn-arrow.section-next {
  right: -24px;
}
.btn-arrow:hover {
  background-color: var(--primary);
}
.btn-arrow:hover i {
  color: var(--white);
}
.btn-arrow-page-title {
  opacity: 0;
  visibility: hidden;
}
.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.page-title-home-swiper-5.slider-5 .swiper-pagination {
  transform: rotate(90deg);
  bottom: 49.5%;
  right: -89.5%;
  width: auto !important;
}
.page-title-home-swiper-5.slider-5
  .swiper-pagination
  .swiper-pagination-bullet {
  background-color: var(--on-surface);
  opacity: 0.4;
  margin: 5px 21px 5px 7px;
  width: 16px;
  height: 16px;
  position: relative;
}
.page-title-home-swiper-5.slider-5
  .swiper-pagination
  .swiper-pagination-bullet::after {
  position: absolute;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  z-index: 5;
}
.page-title-home-swiper-5.slider-5
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary);
}
.page-title-home-swiper-5.slider-5
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  border-color: var(--primary);
}
.slider-arrow.style-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 24px;
}
.slider-arrow.style-3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  bottom: -5px;
  right: 38px;
}
.slider-arrow.style-3 .btn-arrow {
  width: 60px;
  height: 60px;
}
.section-prev-3 {
  border-radius: 12px 0 0 12px;
}
.section-next-3 {
  border-radius: 0 12px 12px 0;
}
.about-item .image {
  border-radius: 16px;
  overflow: hidden;
}
.about-item .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.slider-auto .swiper-slide {
  width: auto !important;
}
.wg-slider-recommended-5 {
  position: relative;
}
.wg-slider-recommended-5 .recommended-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-container:hover .btn-arrow-page-title {
  opacity: 1;
  visibility: visible;
}
.tour-grid-swiper {
  padding-bottom: 20px;
  margin-left: -15px;
  margin-right: -15px;
}
.tour-grid-swiper .tour-grid {
  margin: 0 15px;
}
.tour-grid-swiper.style-2 {
  padding-bottom: 0 !important;
}
.page-title-home .swiper-slide-active .fade-item-1 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}
.page-title-home .swiper-slide-active .fade-item-2 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}
.page-title-home .swiper-slide-active .fade-item-3 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.4s;
}
.tf-fade-top {
  transform: translateY(-30px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@keyframes arrows {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}
.categories-item {
  padding: 28px;
  position: relative;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 12px;
}
.categories-item::after {
  content: "";
  background-color: var(--primary);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.categories-item .icon {
  padding-bottom: 24px;
  z-index: 2;
  position: relative;
}
.categories-item .icon i {
  font-size: 60px;
  color: var(--on-surface);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.categories-item .categories-content {
  z-index: 2;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.categories-item .categories-content .title {
  padding-bottom: 8px;
}
.categories-item .categories-content .title a {
  color: var(--on-surface);
}
.categories-item .categories-content .text {
  color: var(--secondary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.categories-item span {
  background-color: var(--primary);
  color: var(--white);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  right: 12px;
  top: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.categories-item.bg-Surface {
  background-color: var(--surface);
}
.categories-item.style-2 {
  text-align: center;
  background-color: var(--surface);
  padding: 26.5px;
}
.categories-item.style-2 .icon {
  padding-bottom: 2px !important;
}
.categories-item.style-2 .icon i {
  font-size: 40px;
}
.categories-item.style-2 .title {
  padding-bottom: 0 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.categories-item:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.categories-item:hover .icon i {
  color: var(--white);
}
.categories-item:hover .categories-content a,
.categories-item:hover .categories-content .text {
  color: var(--white);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.categories-item:hover span {
  background-color: var(--white);
  color: var(--primary);
}
.categories-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 30px;
}
.tour-grid {
  background-color: var(--white);
  box-shadow: 0 10px 25px rgba(54, 95, 104, 0.1);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.tour-grid .image {
  position: relative;
  overflow: hidden;
  display: block;
}
.tour-grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-grid .image .caption-2 {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  padding: 2px 8px;
  z-index: 9;
  font-weight: 700;
  letter-spacing: 1px;
}
.tour-grid .image .caption-2:hover {
  background-color: var(--white);
  color: var(--primary);
}
.tour-grid .image .number {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: var(--white);
  background: rgba(18, 18, 18, 0.3);
  width: 38px;
  height: 20px;
  border-radius: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-grid .tour-grid-content {
  padding: 20px 20px 17px;
}
.tour-grid .tour-grid-content .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 7px;
}
.tour-grid .tour-grid-content .top.pb-3 {
  padding-bottom: 3px !important;
}
.tour-grid .tour-grid-content .top.pb-4 {
  padding-bottom: 4px !important;
}
.tour-grid .tour-grid-content .top .map-ping,
.tour-grid .tour-grid-content .top .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
  align-items: center;
}
.tour-grid .tour-grid-content .top .map-ping img {
  width: 15px;
  height: 15px;
}
.tour-grid .tour-grid-content .top .rating i {
  color: var(--Yellow);
}
.tour-grid .tour-grid-content .title {
  padding-bottom: 6px;
  line-height: 26px !important;
}
.tour-grid .tour-grid-content .title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-height: 26px !important;
}
.tour-grid .tour-grid-content .title.pb-7 {
  padding-bottom: 7px;
}
.tour-grid .tour-grid-content a {
  color: var(--on-surface);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tour-grid .tour-grid-content a i {
  font-size: 20px;
}
.tour-grid .tour-grid-content a:hover {
  color: var(--primary);
}
.tour-grid .tour-grid-content .tour-grid-details {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.tour-grid .tour-grid-content .price {
  color: var(--secondary);
  padding-top: 12px;
}
.tour-grid .tour-grid-content .price span {
  color: var(--on-surface);
  line-height: 26px !important;
}
.tour-grid.style-2 {
  position: relative;
}
.tour-grid.style-2 .overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 42.2%,
    rgba(0, 0, 0, 0.8) 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tour-grid.style-2 .overlay::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--on-surface);
  opacity: 0.35;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tour-grid.style-2 .image img {
  min-height: 410px;
}
.tour-grid.style-2 .top {
  padding-bottom: 2px;
}
.tour-grid.style-2 .top .map-ping {
  gap: 5px;
}
.tour-grid.style-2 .tour-grid-details {
  padding-bottom: 9px;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.tour-grid.style-2 .title {
  padding-bottom: 3px;
}
.tour-grid.style-2 .title.pb-7 {
  padding-bottom: 7px;
}
.tour-grid.style-2 .tour-grid-content {
  position: absolute;
  z-index: 9;
  bottom: 16px;
  right: 16px;
  left: 16px;
  padding: 0;
}
.tour-grid.style-2 .tour-grid-content .rating .number {
  color: var(--white);
}
.tour-grid.style-2 .tour-grid-content a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.tour-grid.style-2 .tour-grid-content a:hover {
  color: var(--primary);
}
.tour-grid.style-2 .tour-grid-content .price {
  color: var(--white);
}
.tour-grid.style-2 .tour-grid-content .price span {
  color: var(--white);
}
.tour-grid.style-2:hover .overlay::before {
  height: 100%;
}
.heart {
  position: absolute;
  right: 12px;
  top: 12px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 18, 0.3019607843);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 9;
  cursor: pointer;
}
.heart::before {
  content: "\e95f";
  color: var(--white);
  font-family: "icomoon";
}
.heart.active::before {
  content: "\e9db";
  color: var(--white);
  font-family: "icomoon";
}
.wg-video {
  position: relative;
  overflow: hidden;
  background-image: url(../image/wg-video.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.wg-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.wg-video .popup-youtube {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary);
}
.wg-video .popup-youtube i {
  font-size: 35.75px;
  color: var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-video .popup-youtube:hover {
  background-color: var(--primary);
}
.wg-video .popup-youtube:hover i {
  color: var(--white);
}
.wg-video .wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  animation: ripple 2s infinite;
}
.box-card-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.box-card-list.ml--8 {
  margin-left: -8px;
}
.box-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.box-card .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.box-card .box-card-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 15px 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-card .box-card-content h6 a {
  color: var(--on-surface);
  font-weight: 600;
}
.box-card .box-card-content h6 a:hover {
  color: var(--primary);
}
.box-card .box-card-content .number-tours {
  color: var(--secondary);
}
.box-card.style-2 {
  -webkit-box-flex: 0;
  flex: 0 0 15.8%;
  max-width: 200px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}
.box-card.style-2 .box-card-inner {
  position: relative;
  overflow: hidden;
  height: 546px;
  box-shadow: 0 5px 18px 5px rgba(64, 72, 87, 0.1490196078);
}
.box-card.style-2 .box-card-inner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.box-card.style-2 .box-card-inner .content {
  position: absolute;
  bottom: 81px;
  left: -10%;
  background: transparent;
  z-index: 99;
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-card.style-2 .box-card-inner .content .number-tours,
.box-card.style-2 .box-card-inner .content .name > a {
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box-card.style-2 .box-card-inner .content-abs {
  position: absolute;
  bottom: -10%;
  left: 16px;
  right: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 16px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-card.style-2 .box-card-inner .content-abs .tf-btn {
  padding: 11px 20px;
}
.box-card.style-2 .box-card-inner .content-abs h5 a {
  color: var(--on-surface);
  white-space: nowrap;
}
.box-card.style-2 .box-card-inner .content-abs h5 a:hover {
  color: var(--primary);
}
.box-card.style-2 .box-card-inner .overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 42.2%,
    rgba(0, 0, 0, 0.8) 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  top: 0;
  left: 0;
}
.box-card.style-2.active {
  -webkit-box-flex: 0;
  flex: 0 0 32.7%;
  max-width: 410px;
}
.box-card.style-2.active .box-card-inner .content {
  opacity: 0;
  visibility: hidden;
  left: -100%;
}
.box-card.style-2.active .box-card-inner .content-abs {
  opacity: 1;
  visibility: visible;
  bottom: 16px;
}
.box-card.style-2.active .box-card-inner .content-abs .name {
  padding-bottom: 3px;
}
.tour-layout-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(54, 95, 104, 0.1);
  border-radius: 12px;
  overflow: hidden;
  align-items: center;
}
.tour-layout-list .image {
  position: relative;
  max-width: 300px;
  overflow: hidden;
}
.tour-layout-list .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-layout-list .number {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: var(--white);
  background: rgba(18, 18, 18, 0.3);
  width: 38px;
  height: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.tour-layout-list .caption-2 {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  padding: 2px 8px;
  z-index: 9;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.tour-layout-list .caption-2:hover {
  background-color: var(--white);
  color: var(--primary);
}
.tour-layout-list .tour-layout-list-content {
  padding: 0 24px;
}
.tour-layout-list .tour-layout-list-content.w-full {
  width: 100%;
}
.tour-layout-list .tour-layout-list-content .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4px;
}
.tour-layout-list .tour-layout-list-content .top .map-ping,
.tour-layout-list .tour-layout-list-content .top .rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
  align-items: center;
}
.tour-layout-list .tour-layout-list-content .top .rating i {
  color: var(--Yellow);
}
.tour-layout-list .tour-layout-list-content a {
  color: var(--on-surface);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 5px;
  align-items: center;
}
.tour-layout-list .tour-layout-list-content a:hover {
  color: var(--primary);
}
.tour-layout-list .tour-layout-list-content .title {
  padding-bottom: 4px;
  line-height: 26px !important;
}
.tour-layout-list .tour-layout-list-content .title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.tour-layout-list .tour-layout-list-content .title.pb-7 {
  padding-bottom: 7px;
}
.tour-layout-list .tour-layout-list-content .tour-layout-list-detalis {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 28px;
}
.tour-layout-list .tour-layout-list-content .tour-layout-list-detalis a i {
  font-size: 20px;
}
.tour-layout-list .tour-layout-list-content .price {
  color: var(--secondary);
}
.tour-layout-list .tour-layout-list-content .price span {
  color: var(--on-surface);
}
.tour-layout-list .line {
  width: 100%;
  height: 1px;
  margin: 12px 0;
  background-color: var(--line);
}
.box-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.box-icon .icon {
  max-width: 60px;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.box-icon .box-icon-content .title {
  padding-bottom: 8px;
}
.box-icon .box-icon-content .title a {
  color: var(--on-surface);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.box-icon .box-icon-content .title a:hover {
  color: var(--primary);
}
.box-icon .box-icon-content .text {
  color: var(--secondary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.box-icon.style-2 {
  flex-direction: column;
  gap: 24px;
}
.box-icon.style-2 .icon {
  max-width: 48px;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.box-icon.style-2 .icon i {
  font-size: 48px;
}
.box-icon:hover .icon {
  transform: rotateY(360deg);
}
.wg-sidebar .wg-sidebar-content {
  padding-bottom: 24px;
  position: relative;
}
.wg-sidebar .wg-sidebar-content fieldset {
  position: relative;
}
.wg-sidebar .wg-sidebar-content .title {
  padding-bottom: 8px;
}
.wg-sidebar .wg-sidebar-content input[type="text"] {
  padding: 10px 0 10px 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 100%;
}
.wg-sidebar .wg-tour-type .nice-select {
  padding: 10px 0 10px 16px !important;
}
.wg-sidebar .wg-tour-type .nice-select::before {
  right: 18px;
}
.wg-sidebar .wg-location .nice-select {
  padding: 10px 0 10px 16px !important;
}
.wg-sidebar .wg-location .nice-select::before {
  right: 18px;
}
.wg-sidebar .wg-date .icon {
  position: absolute;
  left: 15px;
}
.wg-sidebar .form-people {
  padding-top: 0 !important;
}
.wg-sidebar .form-people .number-people {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.wg-sidebar .form-people .number-people::before {
  right: 18px;
}
.wg-sidebar .form-people .dropdown-menu {
  top: 5% !important;
  min-width: unset;
  right: 0 !important;
}
.wg-sidebar .form-people input[type="text"] {
  padding: unset !important;
  width: 10px !important;
}
.wg-sidebar .range-slider .title {
  padding-bottom: 45px;
}
.wg-sidebar .wg-review i {
  color: var(--Yellow);
}
.wg-sidebar .tf-btn {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wg-booking {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(54, 95, 104, 0.1);
  background-color: var(--white);
  border-radius: 12px;
}
.wg-booking .title {
  color: var(--on-surface);
}
.wg-booking .wg-booking-content .title-content {
  padding-bottom: 8px;
}
.wg-booking .wg-booking-content .title-content.pb-15 {
  padding-bottom: 15px;
}
.wg-booking .date-booking fieldset {
  position: relative;
}
.wg-booking .date-booking fieldset .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}
.wg-booking .date-booking fieldset input[type="text"] {
  border: 1px solid var(--line);
  padding: 6px 0 6px 40px;
  border-radius: 8px;
  width: 100%;
}
.wg-booking .select-time {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wg-booking .select-time .radio-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 58%;
}
.wg-booking .select-time .radio-box input[type="radio"] {
  width: 16px;
}
.wg-booking .booking-people input[type="text"] {
  outline: 0;
  border: unset !important;
  padding: 0;
  width: 10px;
  height: 16px;
}
.wg-booking .booking-people ul {
  padding: 0 !important;
}
.wg-booking .booking-people ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  align-items: center;
}
.wg-booking .booking-people ul li:last-child {
  padding-bottom: 1px;
}
.wg-booking .booking-people .quantity {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px;
}
.wg-booking .booking-people .btn-quantity {
  border: unset;
}
.wg-booking .line {
  width: 100%;
  height: 1px;
  background-color: var(--line);
}
.wg-booking .wg-add-extra .title-content {
  position: relative;
}
.wg-booking .wg-add-extra .title-content.pb-9 {
  padding-bottom: 9px;
}
.wg-booking .wg-add-extra .title-content::before {
  content: "\e900";
  position: absolute;
  top: 0;
  right: 3px;
  font-family: "icomoon";
  font-size: 7px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  transform: rotate(180deg);
}
.wg-booking .wg-add-extra .title-content:is(.collapsed)::before {
  content: "\e900";
  transform: rotate(0deg);
}
.wg-booking .wg-add-extra .service-per-booking {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}
.wg-booking .wg-add-extra .service-per-booking .price {
  text-align: end;
}
.wg-booking .wg-add-extra .service-per-booking .price span {
  font-weight: 400;
}
.wg-booking .wg-add-extra .service-per-booking:last-child {
  padding-bottom: 0;
}
.wg-booking .wg-total {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wg-booking .tf-btn {
  padding: 11px 0;
}
.wg-tour-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(54, 95, 104, 0.1);
  background-color: var(--white);
  border-radius: 12px;
}
.wg-tour-info .title {
  color: var(--on-surface);
}
.wg-tour-info .line {
  width: 100%;
  height: 1px;
  background-color: var(--line);
}
.wg-tour-info .wg-tour-info-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tf-sort {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tf-sort .tf-sort-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.tf-sort .tf-sort-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 13px;
}
.tf-sort .tf-sort-right p {
  width: 100%;
}
.tf-sort .tf-sort-right .nice-select {
  padding: 7px 12px !important;
  min-width: 164px;
}
.tf-sort .tf-sort-right .nice-select::before {
  right: 12px;
}
.tf-sort .tf-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 164px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.tf-sort .tf-btn i {
  font-size: 7px;
}
.tf-sort .fillter-btn {
  display: none;
}
.tf-sort .fillter-btn .btn-fillter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface);
  gap: 5px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.tf-sort .fillter-btn .btn-fillter .icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tf-sort .dropdown-menu {
  border: unset;
  background-color: var(--white);
  box-shadow: 0 10px 25px rgba(54, 95, 104, 0.1);
  border-radius: 12px;
}
.tf-sort .dropdown-menu.show {
  top: 0 !important;
  right: 0 !important;
  padding: 0 !important;
}
.tf-sort .select-item {
  cursor: pointer;
  padding: 5px 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-sort .select-item.active,
.tf-sort .select-item:hover {
  background-color: var(--primary);
}
.tf-sort .select-item.active span,
.tf-sort .select-item:hover span {
  color: var(--white);
}
.calendar-container {
  width: 100%;
}
.calendar-container .calendar-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 19px;
  width: 100%;
}
.calendar-container .title {
  color: var(--on-surface);
}
.calendar-container .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  overflow: auto;
}
.calendar-container .day-header {
  background-color: var(--primary);
  color: var(--white);
  text-align: end;
  padding: 15px 11px 13px 0;
  border-radius: 4px;
}
.calendar-container .day {
  text-align: end;
  padding: 4px 12px 30px 0;
  background-color: var(--line);
  border-radius: 8px;
  position: relative;
  min-width: 100px;
}
.calendar-container .price-day {
  background-color: var(--surface);
}
.calendar-container .price-day .price {
  color: var(--on-surface);
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 12px;
}
.calendar-container .empty {
  color: var(--Placehoder);
}
.progress-bars {
  padding-bottom: 10px;
}
.progress-bars .progress-bars-line {
  display: block;
  height: 6px;
  border-radius: 10px;
  background-color: var(--line);
  position: relative;
}
.progress-bars .progress-bars-line > div {
  display: block;
  height: 6px;
  border-radius: 10px;
  background-color: var(--primary);
}
.progress-bars .progress-bars-line > div .progress-bars-number {
  position: absolute;
  right: 0;
  top: -25px;
}
.progress-bars .progress-bars-line > div .progress-bars-text {
  position: absolute;
  left: 0;
  top: -25px;
}
.wg-gallery {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wg-gallery .gallery-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: column;
}
.wg-gallery .img-gallery {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.wg-gallery .img-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-gallery .gallery-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 12px;
  right: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-gallery .gallery-content .gallery-video {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 8px;
}
.wg-gallery .gallery-content .gallery-video i {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--on-surface);
  border-radius: 50%;
  color: var(--on-surface);
}
.wg-gallery .gallery-content .tf-btn {
  padding: 11px 24px;
  background-color: var(--white);
  color: var(--on-surface);
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-gallery .gallery-content .tf-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}
.wg-gallery .gallery-content.style-2 {
  gap: 5px;
  right: 6px;
}
.wg-gallery .gallery-content.style-2 .gallery-video {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}
.wg-gallery .gallery-content.style-2 .tf-btn {
  padding: 5px 10px;
}
.wg-gallery.style-2 {
  gap: 12px;
}
.wg-gallery.style-2 .gallery-item {
  gap: 12px;
}
.leader-item .image {
  border-radius: 16px;
  overflow: hidden;
}
.leader-item .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.leader-item .leader-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 21px;
}
.leader-item .leader-content .name h5 {
  padding-bottom: 4px;
}
.leader-item .leader-content .name h5 a {
  color: var(--on-surface);
}
.leader-item .leader-content .name h5 a:hover {
  color: var(--primary);
}
.leader-item .leader-content .sub-name {
  color: var(--secondary);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.leader-item .leader-content .social a {
  background-color: var(--surface);
  width: 48px;
  height: 48px;
}
.leader-item .leader-content .social a i {
  color: var(--on-surface);
  font-size: 20px;
}
.leader-item .leader-content .social a:hover {
  background-color: var(--primary);
}
.leader-item .leader-content .social a:hover i {
  color: var(--white);
}
.team-item .image {
  border-radius: 16px;
  overflow: hidden;
}
.team-item .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.team-item .team-content {
  padding-top: 20px;
}
.team-item .team-content .name h6 {
  padding-bottom: 9px;
}
.team-item .team-content .name h6 a {
  color: var(--on-surface);
}
.team-item .team-content .name h6 a:hover {
  color: var(--primary);
}
.wg-new-letter {
  max-width: 660px;
  background-color: var(--white);
  position: relative;
}
.wg-new-letter .btn-hide-popup {
  top: 12px;
  right: 12px;
  background-color: var(--surface);
}
.wg-new-letter .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.wg-new-letter .new-letter-content {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 50px;
}
.wg-new-letter .new-letter-content .title {
  color: var(--on-surface);
  padding-bottom: 8px;
}
.wg-new-letter .new-letter-content .text {
  color: var(--secondary);
  padding-bottom: 20px;
}
.wg-new-letter .new-letter-content .form-newsletter {
  width: 100%;
}
.wg-new-letter .new-letter-content fieldset {
  position: relative;
  border: 1px solid var(--line);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.wg-new-letter .new-letter-content fieldset input[type="email"] {
  padding: 11px 16px;
  border: 0;
  outline: 0;
  width: 100%;
}
.wg-new-letter .new-letter-content fieldset input[type="email"]::placeholder {
  color: var(--Placehoder);
}
.wg-new-letter .new-letter-content fieldset button {
  position: absolute;
  right: 0;
  border-radius: unset;
}
.wg-new-letter .new-letter-content .social a {
  border-color: var(--line);
}
.wg-new-letter .new-letter-content .social a i {
  color: var(--secondary);
}
.wg-new-letter .new-letter-content .social a:hover {
  background-color: var(--primary);
  border: var(--primary);
}
.wg-new-letter .new-letter-content .social a:hover i {
  color: var(--white);
}
.btn-hide-popup {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-hide-popup i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--on-surface);
}
.wg-login {
  position: unset;
}
.wg-login .title .login {
  color: var(--on-surface);
}
.wg-login .title .register {
  color: var(--Placehoder);
}
.wg-register {
  position: unset;
}
.wg-register .title .register {
  color: var(--on-surface);
}
.wg-register .title .login {
  color: var(--Placehoder);
}
.wg-register .agree {
  width: 100%;
  padding-bottom: 20px;
}
.wg-register .agree label {
  color: var(--secondary);
}
.wg-register .agree span {
  color: var(--on-surface);
}
.wg-popup {
  max-width: 480px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 20px;
  position: relative;
  padding: 40px 32px;
}
.wg-popup .btn-hide-popup {
  top: 0;
  right: 0;
  background-color: var(--white);
}
.wg-popup .title {
  padding-bottom: 24px;
}
.wg-popup .input-text {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.wg-popup .input-text label {
  padding-bottom: 12px;
}
.wg-popup .input-text label span {
  color: var(--Critical);
}
.wg-popup .input-text input[type="text"],
.wg-popup .input-text input[type="password"] {
  padding: 11.5px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.wg-popup .input-text input[type="text"]::placeholder,
.wg-popup .input-text input[type="password"]::placeholder {
  color: var(--Placehoder);
}
.wg-popup .input-pass {
  position: relative;
}
.wg-popup .input-pass .icon {
  position: absolute;
  right: 16px;
  top: 59%;
  transform: translateY(-50%);
}
.wg-popup .remember-fogotpassword {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
}
.wg-popup .remember-fogotpassword .text-body-3 {
  color: var(--secondary);
}
.wg-popup .remember-fogotpassword a {
  color: var(--primary) !important;
}
.wg-popup .btn-popup {
  width: 100%;
  padding-bottom: 12px;
}
.wg-popup .btn-popup .tf-btn {
  width: 100%;
  text-align: center;
  padding: 11px 0;
}
.wg-popup .text {
  color: var(--secondary);
  padding-bottom: 20px;
}
.wg-popup .text a {
  color: var(--on-surface);
}
.wg-popup .line {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
}
.wg-popup .line .line-1 {
  width: 100%;
  height: 1px;
  background-color: var(--line);
}
.wg-popup .line .line-2 {
  width: 100%;
  height: 1px;
  background-color: var(--line);
}
.wg-popup .line p {
  width: 72%;
  color: var(--secondary);
  text-align: center;
}
.wg-popup .social.style-2 {
  gap: 12px;
  align-items: center;
  width: 100%;
}
.wg-popup .social.style-2 .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 151.67px;
  background-color: var(--surface);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.wg-popup .social.style-2 .item .icon {
  max-width: 24px;
}
.wg-popup .social.style-2 .item a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
}
.wg-popup .social.style-2 .item .title-social {
  color: var(--on-surface);
}
.tf-list-image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
}
.tf-list-image .list-image-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.tf-list-image .list-image-right .text {
  text-transform: capitalize;
}
.tf-list-image .list-image {
  max-width: 52px;
  border-radius: 50%;
  border: 1px solid var(--white);
  overflow: hidden;
}
.tf-list-image .list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-list-image .list-image.list-image-4,
.tf-list-image .list-image.list-image-3,
.tf-list-image .list-image.list-image-2 {
  margin-left: -16px;
}
.tf-list-image .tf-list-image-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--white);
  overflow: hidden;
  color: var(--white);
  margin-left: -15px;
  margin-right: 15px;
}
.benefit {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.benefit .benefit-item .text {
  color: var(--white);
  text-transform: capitalize;
}
.benefit .benefit-item .text i {
  color: var(--primary);
}
.benefit.gap-20 {
  gap: 20px;
}
.benefit.style-2 {
  flex-direction: column;
  align-items: start;
}
.benefit.style-2 i {
  padding-right: 8px;
}
.benefit.style-2 .text {
  color: var(--on-surface);
  text-transform: unset;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.recommended-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recommended-item .image {
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.recommended-item .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.recommended-item span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  border-radius: 4px;
  background: rgba(18, 18, 18, 0.3);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
}
.recommended-item .address {
  padding-top: 20px;
  position: relative;
  padding-bottom: 5px;
}
.recommended-item .address a {
  display: inline-block;
  color: var(--on-surface);
}
.recommended-item .address::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--on-surface);
  left: 50%;
  bottom: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.recommended-item:hover .address::after {
  width: 100%;
  left: 0;
}
.help {
  margin-left: -8px;
}
.help.style-2 {
  position: relative;
}
.help.style-2 span {
  position: relative;
  background-color: var(--white);
  z-index: 2;
  padding: 0 7px;
}
.help.style-2::after {
  content: "";
  height: 1px;
  background-color: var(--line);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.btn-load-more {
  padding-top: 40px;
}
.title {
  text-transform: capitalize;
}
.preload-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999999999;
  height: 100%;
  width: 100%;
  background-color: var(--white);
}
.preload-container .middle {
  top: 50%;
  left: 50%;
  position: absolute;
  z-index: 100;
  margin: -50px 0 0 -50px;
}
.preload-container .middle .img-preload {
  max-width: 160px;
}
.preload-container .middle .img-preload .img {
  max-width: 80px;
  animation: tf-preload-1 0.7s linear infinite alternate;
}
.preload-container .middle .img-preload .img img {
  transform: rotate(46deg);
}
.preload-container .middle .img-preload .lines {
  position: relative;
}
.preload-container .middle .img-preload .lines .line {
  background-color: var(--line);
  width: 4px;
  height: 50px;
  top: 0;
  border-radius: 50%;
  animation: tf-preload-2 0.7s infinite;
}
.preload-container .middle .img-preload .lines .line.line-1 {
  position: absolute;
  left: 15%;
}
.preload-container .middle .img-preload .lines .line.line-2 {
  position: absolute;
  left: 30%;
  top: 10%;
}
.preload-container .middle .img-preload .lines .line.line-3 {
  position: absolute;
  right: 15%;
}
.preload-container .middle .img-preload .lines .line.line-4 {
  position: absolute;
  right: 30%;
  top: 10%;
}
.progress-wrap {
  position: fixed;
  bottom: 40px;
  right: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.2);
  box-shadow: inset 0 0 0 2px rgba(130, 130, 130, 0.2);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  background: var(--on-surface);
}
.progress-wrap::after {
  position: absolute;
  content: "\e900";
  font-family: "icomoon";
  text-align: center;
  line-height: 50px;
  color: var(--white);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  transform: rotate(180deg);
  font-size: 7px;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  box-sizing: border-box;
  stroke: var(--primary);
  stroke-width: 5;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
.wg-fillter {
  background-color: var(--white);
  padding: 10px;
  overflow-x: auto;
  max-width: 650px;
}
.wg-fillter .title-fillter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wg-fillter .title-fillter h4 {
  color: var(--on-surface);
}
.wg-fillter .wg-fillter-content {
  padding-bottom: 24px;
  position: relative;
}
.wg-fillter .wg-fillter-content fieldset {
  position: relative;
}
.wg-fillter .wg-fillter-content .title {
  padding-bottom: 8px;
}
.wg-fillter .wg-fillter-content input[type="text"] {
  padding: 10px 0 10px 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 100%;
}
.wg-fillter .wg-tour-type .nice-select {
  padding: 10px 0 10px 16px !important;
}
.wg-fillter .wg-tour-type .nice-select::before {
  right: 10px;
}
.wg-fillter .wg-location .nice-select {
  padding: 10px 0 10px 16px !important;
}
.wg-fillter .wg-location .nice-select::before {
  right: 10px;
}
.wg-fillter .wg-date .icon {
  position: absolute;
  left: 15px;
}
.wg-fillter .form-people {
  padding-top: 0 !important;
  position: relative;
}
.wg-fillter .form-people .box-content {
  min-width: unset;
  left: 0;
  right: 0;
}
.wg-fillter .form-people .number-people {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.wg-fillter .form-people .number-people::before {
  right: 11px;
}
.wg-fillter .form-people input[type="text"] {
  padding: unset !important;
  width: 10px !important;
}
.wg-fillter .form-people .dropdown-menu {
  top: 5% !important;
  min-width: unset;
  right: 0 !important;
}
.wg-fillter .range-slider .title {
  padding-bottom: 45px;
}
.wg-fillter .wg-review i {
  color: var(--Yellow);
}
.wg-fillter .tf-btn {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}
.tf-spacing-1 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.tf-spacing-2 {
  padding-top: 0;
  padding-bottom: 60px;
}
.tf-spacing-3 {
  padding-top: 0;
  padding-bottom: 80px;
}
.tf-spacing-4 {
  margin-top: 0;
  margin-bottom: 100px;
}
.tf-spacing-5 {
  padding-top: 0;
  padding-bottom: 100px;
}
.tf-spacing-6 {
  margin-top: 0;
  margin-bottom: 100.5px;
}
.tf-spacing-7 {
  margin-top: 0;
  margin-bottom: 110px;
}
.tf-spacing-8 {
  margin-top: 0;
  margin-bottom: 99.5px;
}
.tf-spacing-9 {
  margin-top: 100px;
  margin-bottom: 102px;
}
.tf-spacing-10 {
  margin-top: 0;
  margin-bottom: 80px;
}
.tf-spacing-11 {
  margin-top: 0;
  margin-bottom: 62px;
}
.tf-spacing-12 {
  padding-top: 0;
  padding-bottom: 78px;
}
.tf-spacing-13 {
  padding-top: 0;
  padding-bottom: 96px;
}
.tf-spacing-14 {
  margin-top: 0;
  margin-bottom: 102px;
}
.tf-spacing-15 {
  margin-top: 0;
  margin-bottom: 95px;
}
.tf-spacing-16 {
  margin-top: 100px;
  margin-bottom: 105px;
}
.tf-spacing-17 {
  margin-top: 0;
  margin-bottom: 84px;
}
.tf-spacing-18 {
  margin-top: 0;
  margin-bottom: 104px;
}
.tf-spacing-19 {
  padding-top: 0;
  padding-bottom: 75px;
}
.page-title {
  background-image: url(../image/page-title-blog.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 82px 0 79px;
}
.page-title .text {
  color: var(--text-color-1);
  padding-bottom: 4px;
}
.page-title .text a {
  color: var(--white);
}
.page-title .title {
  color: var(--white);
  font-weight: 600;
}
.page-title.style-2 {
  background-image: url(../image/page-title-2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 184px 0 188px;
  position: relative;
}
.page-title.style-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.6) 100%
  );
  transform: rotate(180deg);
}
.page-title.style-2 .form-date input[type="text"]::placeholder {
  color: var(--on-surface);
}
.page-title.style-2 .tf-btn-search {
  padding: 37px 36px !important;
}
.page-title.style-2 h1 {
  padding-bottom: 40px;
}
.page-title.style-2 .text {
  color: var(--on-surface);
}
.page-title.style-3 {
  background-image: unset;
  padding: 0;
}
.page-title.style-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: all 2s cubic-bezier(0.3, 1, 0.35, 1) 0s;
}
.hover-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.page-title-home .page-title-home-inner {
  position: relative;
}
.page-title-home .page-title-home-inner .page-title-home-content .title {
  color: var(--white);
  padding-bottom: 12px;
}
.page-title-home .page-title-home-inner .page-title-home-content .sub-title {
  color: var(--white);
  line-height: 30px;
}
.page-title-home .page-title-home-inner .page-title-home-content .tf-btn {
  margin-top: 40px;
  padding: 15px 32px;
  font-size: 20px;
  line-height: 28px;
}
.page-title-home.style-3 .page-title-home-inner {
  height: auto;
  padding: 140px 0 144px;
}
.page-title-home.style-3 .page-title-home-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.6) 100%
  );
  top: 0;
  left: 0;
}
.page-title-home.style-3 .page-title-home-inner.page-title-home-1 {
  background-image: url("../image/page-title-home-3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title-home.style-3 .page-title-home-inner.page-title-home-2 {
  background-image: url("../image/page-title-home-3-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title-home.style-3 .page-title-home-inner .page-title-home-content {
  max-width: 70%;
  margin: 0 auto;
}
.page-title-home.style-4 .page-title-home-inner {
  padding: 0 !important;
  height: auto;
}
.page-title-home.style-4 .page-title-home-inner::before {
  content: "";
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.6) 100%
  );
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-title-home.style-4 .page-title-home-inner .page-title-home-content {
  padding: 120px 0 342px;
}
.page-title-home.style-4
  .page-title-home-inner
  .page-title-home-content
  .title {
  max-width: 53%;
  margin: 0 auto;
}
.page-title-home.style-4 .page-title-home-inner.page-title-home-1 {
  background-image: url("../image/page-title-home-4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title-home.style-4 .page-title-home-inner.page-title-home-2 {
  background-image: url("../image/page-title-home-4-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title-home.style-4 .page-title-home-inner.page-title-home-3 {
  background-image: url("../image/page-title-home-4-3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title-home.style-4 .form-date input[type="text"] {
  padding: 0;
}
.page-title-home.style-4 .tf-form-search {
  position: relative;
  z-index: 9;
  margin-top: -342px;
}
.page-title-home.style-4 .tf-form-search .benefit {
  padding-bottom: 40px;
}
.page-title-home.style-5 .page-title-home-inner {
  background-color: var(--surface);
  height: auto;
  padding: 0 !important;
  z-index: -1;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.page-title-home.style-5 .page-title-home-inner::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/page-title-home-2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-title-home.style-5 .page-title-home-inner .image {
  flex: 1 1 50%;
}
.page-title-home.style-5 .page-title-home-inner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-title-home.style-5 .page-title-home-content {
  padding: 120px 0 301px;
  flex: 1 1 50%;
}
.page-title-home.style-5 .page-title-home-content .title-home {
  max-width: 644px;
  margin-left: auto;
  margin-right: 0;
  padding-right: 40px;
}
.page-title-home.style-5 .page-title-home-content .title {
  color: var(--on-surface);
  font-family: "Barlow", sans-serif;
  margin-left: 15px;
}
.page-title-home.style-5 .page-title-home-content .sub-title {
  color: var(--on-surface);
  padding-bottom: 40px;
  margin-left: 15px;
}
.page-title-home.style-5 .tf-form-search {
  position: relative;
  z-index: 9;
  margin-top: -300px;
}
.page-title-home.style-5 .tf-form-search .form-search {
  margin-bottom: 40px;
  max-width: 1070px;
}
.page-title-home.style-5 .tf-form-search .form-search .tf-btn-search {
  padding: 31px 40px;
}
.page-title-home.style-5 .page-title-home-2,
.page-title-home.style-5 .page-title-home-1 {
  background: unset;
}
.section-form-search {
  margin-top: -50px;
}
.heading-section {
  padding-bottom: 40px;
}
.heading-section.pl-12 {
  padding-left: 12px;
}
.heading-section .title {
  color: var(--on-surface);
  padding-bottom: 8px;
  text-transform: capitalize;
}
.heading-section .sub-title {
  color: var(--secondary);
}
.heading-section.style-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.heading-section.style-2 .title {
  max-width: 461px;
}
.heading-section.style-2 .sub-title {
  max-width: 641px;
  padding-bottom: 16px;
}
.about-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-inner .about-content {
  flex: 1 1 29.33%;
  max-width: 29.33%;
}
.about-inner .about-content .booking-number {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}
.about-inner .about-content .booking-number .icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-inner .about-content .booking-number .left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-inner .image-section {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 12px;
  flex-shrink: 1;
  flex-grow: 1;
  max-width: 412px;
  height: 410px;
}
.about-inner .image-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
.about-inner .about-details {
  flex: 1 1 29.33%;
  max-width: 29.33%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 32px;
  flex-direction: column;
}
.about-inner .about-details .line {
  width: 100%;
  height: 1px;
  background-color: var(--line);
}
.about-inner .about-details .details-item .title {
  padding-bottom: 8px;
  color: var(--on-surface);
}
.about-inner .about-details .details-item .sub-title {
  color: var(--secondary);
}
.section-slider-categories {
  background-color: var(--surface);
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.section-slider-categories::before {
  content: "";
  background-image: url("../image/bg-categories.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.section-slider-categories .heading-section {
  position: relative;
  z-index: 3;
}
.section-slider-categories .wg-categories-slider {
  position: relative;
  z-index: 9;
}
.section-slider-categories.style-2 {
  margin-top: -204px;
  background-image: unset;
  padding: 0 !important;
  background: unset;
  z-index: 1;
}
.section-slider-categories.style-2::before {
  display: none;
}
.section-slider-categories.style-2 .categories-item {
  padding-bottom: 30px;
}
.section-slider-categories.style-2 .categories-item .icon {
  padding-bottom: 21px;
}
.section-testimonial {
  background-color: var(--surface);
  position: relative;
}
.section-testimonial .bottom-slide {
  position: absolute;
  bottom: 18px;
  right: 0;
  display: block;
  opacity: 1;
  visibility: visible;
  width: calc(60%+3px);
  margin-left: auto;
}
.section-about-h-2 .about-left {
  padding-top: 27px;
  position: relative;
}
.section-about-h-2 .about-left .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-about-h-2 .about-left .image.image-1 {
  max-width: 560px;
  border-radius: 20px;
  overflow: hidden;
}
.section-about-h-2 .about-left .image.image-2 {
  position: absolute;
  max-width: 280px;
  bottom: -48px;
  right: 0;
  padding: 10px;
  background-color: var(--white);
  border-radius: 16px;
}
.section-about-h-2 .about-left .image.image-2 img {
  border-radius: 8px;
}
.section-about-h-2 .about-left .img-icon {
  position: absolute;
  z-index: -1;
}
.section-about-h-2 .about-left .img-icon.img-icon-1 {
  max-width: 193px;
  top: 1px;
  left: -83px;
  animation: ani4 5s infinite;
}
.section-about-h-2 .about-left .img-icon.img-icon-1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-about-h-2 .about-left .img-icon.img-icon-2 {
  max-width: 105px;
  top: -11px;
  right: 6px;
  animation: ani3 5s infinite;
}
.section-about-h-2 .about-left .img-icon.img-icon-3 {
  max-width: 155.36px;
  left: -72px;
  bottom: -8px;
}
.section-about-h-2 .about-right {
  padding: 21.5px 0 21.5px 71px;
}
.section-about-h-2 .details {
  padding-bottom: 20px;
}
.section-about-h-2 .details .title-icon {
  color: var(--on-surface);
}
.section-about-h-2 .details .title-icon i {
  color: var(--primary);
  font-size: 22px;
  padding-right: 5px;
}
.section-about-h-2 .details .sub-title-icon {
  color: var(--secondary);
}
.section-about-h-2 .details:last-child {
  padding-bottom: 0;
}
.section-about-recommended .heading-recommended {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.section-about-recommended .heading-recommended h3 {
  color: var(--on-surface);
}
.section-about-recommended .heading-recommended .slider-arrow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-about-recommended .swiper-wrapper {
  align-items: flex-end;
}
.section-step .step-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 80px;
  padding: 60px;
  background-color: var(--surface);
  border-radius: 20px;
}
.section-step .step-inner .step-left {
  max-width: 46.5%;
}
.section-step .step-inner .step-right .box-icon {
  padding-bottom: 32px;
}
.section-step .step-inner .step-right .box-icon:last-child {
  padding-bottom: 0;
}
.section-step .step-inner.style-2 {
  background-color: #fcf4ee;
}
.section-banner {
  background-image: url(../image/bg-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 51px 0 105px;
  position: relative;
}
.section-banner::before {
  background: linear-gradient(
    180deg,
    var(--white) 0,
    rgba(255, 255, 255, 0.1) 23.3%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.section-banner .banner-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 280px 0 280px;
  text-align: center;
}
.wg-location-slider {
  position: relative;
}
.section-about-h-3 .about-inner {
  gap: 0;
  padding: 47px 0;
  flex-direction: column;
  align-items: flex-start;
}
.section-about-h-3 .benefit .benefit-item i {
  font-size: 19px;
}
.section-about-h-3 .benefit .benefit-item .text {
  text-transform: capitalize;
}
.section-about-h-3 .booking-number {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 60px;
}
.section-about-h-3 .booking-number .icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-about-h-3 .booking-number .left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-about-h-3 .booking-number .number-phone h6 {
  color: var(--on-surface);
}
.section-about-h-3 .about-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
}
.section-about-h-3 .about-content .address .title a {
  color: var(--white);
}
.section-about-h-3 .about-content .address .sub-title {
  color: var(--white);
}
.section-about-h-3 .wg-slider-about {
  position: relative;
}
.section-tours .help {
  padding-top: 40px;
}
.section-connect .connect-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-connect .connect-inner .connect-left {
  max-width: 30%;
}
.section-connect .connect-inner .tf-btn.color-primary {
  padding: 11px 32px !important;
}
.section-connect.pl-10 {
  padding-left: 10px;
}
.section-testi .wg-testimonial-bottom {
  padding-top: 56px;
  position: relative;
}
.section-why {
  position: relative;
}
.section-why .why-inner {
  padding: 8px 0;
}
.section-why .why-inner .heading-section {
  padding-bottom: 27px;
}
.section-why .why-item {
  border-radius: 16px;
  overflow: hidden;
}
.section-why .why-item .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-why .why-item .why-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}
.section-why .why-item .why-content h5 {
  padding-bottom: 5px;
}
.section-why .why-item .why-content h5 a {
  color: var(--white);
}
.section-why .why-item .why-content h5.pb-1 {
  padding-bottom: 1px !important;
}
.section-why .why-item .why-content .sub-title {
  color: var(--white);
}
.section-why .benefit.style-2 {
  gap: 16px;
}
.section-why .benefit.style-2 i {
  padding-right: 10px;
}
.grid-layout-4 {
  display: grid;
  gap: 30px 30px;
  grid-template-columns: repeat(4, 1fr);
}
.grid-layout-4.loadmore-item .fl-item {
  display: none;
}
.grid-layout-4.row-gap-26 {
  row-gap: 26px;
}
.grid-layout-2 {
  display: grid;
  gap: 28px 30px;
  grid-template-columns: repeat(2, 1fr);
}
.grid-layout-2.gap-30 {
  gap: 30px 30px;
}
.grid-layout-2.loadmore-item2 .fl-item2 {
  display: none;
}
.section-about-destination .about-content {
  padding: 99px 0;
}
.section-about-destination .benefit-item .text {
  text-transform: capitalize;
}
.section-about-destination .benefit-item i {
  font-size: 20px;
}
.details-section {
  max-width: 69%;
}
.details-section .details-content .title {
  padding-bottom: 8px;
}
.details-section .details-content.open-time ul li {
  color: var(--secondary);
  padding-bottom: 4px;
}
.details-section .details-content.open-time ul li span {
  color: var(--on-surface);
}
.section-form .color-primary {
  padding: 11px 32px;
  text-transform: capitalize;
}
.section-form input[type="text"],
.section-form input[type="email"] {
  padding: 9px 15px;
}
.section-about-us .heading-section-about-us {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.section-about-us .heading-section-about-us .title {
  width: 30%;
  color: var(--on-surface);
}
.section-about-us .heading-section-about-us .sub-title {
  width: 57%;
  color: var(--secondary);
}
.section-about-us .image {
  border-radius: 16px;
  overflow: hidden;
}
.section-about-us .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section-about-us .line {
  width: 100%;
  height: 1px;
  background-color: var(--line);
  margin: 49px 0;
}
.wg-mission-vision {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 90px;
}
.wg-mission-vision .mission-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wg-mission-vision .mission-content .title {
  color: var(--on-surface);
}
.wg-mission-vision .mission-content .text {
  color: var(--secondary);
}
.section-fqas {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.section-fqas .section-fqas-inner .title {
  color: var(--on-surface);
  text-transform: capitalize;
}
.wg-price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wg-price .content-price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 11px;
}
.wg-price .content-price .line {
  width: 1px;
  height: 16px;
  background-color: var(--line);
}
.wg-price .content-price .map i {
  color: var(--secondary);
}
.wg-price .content-price .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 5px;
}
.wg-price .content-price .content i {
  font-size: 20px;
}
.wg-price .price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  color: var(--secondary);
}
.wg-price .price h5 {
  color: var(--on-surface);
  padding-left: 5px;
}
.wg-price .price-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wg-price .price-right .icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.wg-price .price-right .icon i {
  font-size: 24.5px;
}
.wg-price .price-right .icon.heart-1 i {
  color: var(--Critical);
}
.section-tours-details.style-2 {
  margin-top: -80px;
}
.section-tours-details.style-2 .section-tours-details-inner {
  margin: 0 -32px 80px;
  background-color: var(--white);
  padding: 32px 32px 0 34px;
  border-radius: 20px;
}
.section-tours-details.style-2 .content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-tours-details.style-2 .price-left {
  padding-left: 1px;
}
.section-tours-details.style-2 .details-content {
  gap: 24px 30px;
}
.section-tours-details.style-2 .details-content .details-item {
  flex: 0 0 auto;
  width: 28.1%;
}
.section-tours-details.style-2 .choose-star .rating i {
  font-size: 14px;
}
.section-tours-details-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section-tours-details-inner .line {
  height: 1px;
  width: 100%;
  background-color: var(--line);
}
.section-tours-details-inner .services-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
}
.section-tours-details-inner .services-list .services-item {
  flex: 0 0 auto;
  width: 33.3%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tours-details-inner .services-list .services-item i {
  color: var(--Success);
  font-size: 21px;
}
.section-tours-details-inner .services-list.style-2 {
  gap: 8px 153px;
}
.section-tours-details-inner .services-list.style-2 .services-item {
  width: 20%;
}
.section-tours-details-inner .details-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 26px 30px;
  flex-wrap: wrap;
}
.section-tours-details-inner .details-content .details-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  width: 30.8%;
}
.section-tours-details-inner .details-content .details-item .icon {
  padding: 12px;
  background-color: var(--surface);
  border-radius: 12px;
}
.section-tours-details-inner .details-content .details-item .icon i {
  font-size: 36px;
}
.section-tours-details-inner .details-content .details-item .item-content p {
  color: var(--secondary);
}
.section-tours-details-inner .details-content .details-item .item-content h6 {
  color: var(--on-surface);
}
.section-tours-details-inner .blog-comment .form-comment label {
  padding-bottom: 10px;
}
.section-tours-details-inner .blog-comment .form-comment .color-primary {
  padding: 11px 32px;
}
.details-content-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.details-content-2.gap-18 {
  gap: 18px;
}
.details-content-2 .title {
  color: var(--on-surface);
}
.details-content-2 .text {
  color: var(--secondary);
}
.details-content-2 .desc {
  margin-top: -2px;
}
.details-content-2 .desc .title-desc {
  color: var(--on-surface);
  padding-bottom: 8px;
}
.details-content-2 .ratings {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.details-content-2 .ratings h2 {
  color: var(--on-surface);
}
.details-content-2 .ratings .rating i {
  color: var(--Yellow);
  font-size: 25px;
}
.details-content-2 .rate {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -7px;
}
.details-content-2 .progress-rating {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30.5px 32px;
  flex-wrap: wrap;
  flex: 0 0 auto;
  width: 65%;
  padding: 27px 0 0;
}
.details-content-2 .progress-rating .progress-bars {
  flex: 0 0 auto;
  width: 47%;
}
.details-content-2 .choose-star {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: var(--surface);
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
}
.details-content-2 .choose-star .item {
  min-width: 120px;
}
.details-content-2 .choose-star .title {
  padding-bottom: 4px;
}
.details-content-2 .choose-star .rating i {
  color: var(--Yellow);
  font-size: 21px;
}
.details-content-2 .choose-star .rating i:last-child {
  color: var(--line);
}
.details-content-2 .bottom {
  margin-top: -20px;
}
.section-sidebar {
  top: 79px;
  position: sticky;
  padding-left: 30px;
}
.section-recommended .section-recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.section-recommended .section-recommended-grid.row-gap-28 {
  row-gap: 28px;
}
.section-recommended .tour-grid .top {
  padding-bottom: 5px;
}
.section-recommended .tour-grid .title {
  padding-bottom: 7px;
}
.section-featured .section-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 30px;
  margin: 0 -15px;
}
.section-featured .section-featured-grid .box-card {
  margin: 0 15px;
}
.grid-layout-3 {
  display: grid;
  gap: 30px 30px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-layout-3.loadmore-item .fl-item {
  display: none;
}
.recommended-swiper-6 {
  padding-bottom: 20px;
}
.seciton-recommeded.style-2 .help {
  padding-top: 40px;
}
.seciton-recommeded.style-2 .tour-grid.style-2 .title {
  padding-bottom: 7px;
  line-height: 26px !important;
}
.nav-tab-filter {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-tab-filter .nav-tab-item {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-tab-filter .nav-tab-item:hover {
  border-color: var(--on-surface);
}
.tad-content {
  position: relative;
}
.tad-content .tab-pane {
  display: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  transition-timing-function: ease-in;
  transition-duration: 0.2s;
}
.tad-content .tab-pane.active {
  pointer-events: all;
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}
@media (min-width: 992px) {
  .tour-grid-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
  }
  .section-featured-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 26px;
  }
  .section-featured-swiper .swiper-wrapper.row-gap-28 {
    row-gap: 28px;
  }
  .categories-swiper-2 .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 30px;
  }
  .wg-video {
    background-attachment: fixed;
  }
}
@media (max-width: 1500px) {
  .page-title-home-image .image-1 {
    right: 0 !important;
  }
  .page-title-home-image .image-2 {
    right: 43% !important;
  }
  .page-title-home-image .image-3 {
    right: 41% !important;
  }
  .page-title-home.style-1 .btn-arrow-page-title {
    display: none;
  }
  .header-inner.style-3 .menu-primary-menu {
    gap: 10px;
  }
}
@media (max-width: 1338px) {
  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-inner .pr-62 {
    padding-right: 0 !important;
  }
  .btn-arrow.style-2.section-next {
    right: 0;
  }
  .btn-arrow.style-2.section-prev {
    left: 0;
  }
}
@media (max-width: 1312px) {
  .about-inner {
    gap: 20px 20px;
  }
}
@media (max-width: 1300px) {
  .sidebar {
    padding-left: 0 !important;
  }
}
@media (max-width: 1275px) {
  .rate {
    align-items: center;
  }
  .progress-rating .progress-bars {
    width: 100% !important;
  }
  .header-inner.style-3 .main-menu {
    display: none;
  }
  .header-inner.style-3 .mobile-button {
    display: block;
  }
  .header-inner.style-3 .logo {
    position: unset;
    transform: translateX(0%);
  }
}
@media (max-width: 1250px) {
  .tour-layout-list .tour-layout-list-content .tour-layout-list-detalis {
    flex-wrap: wrap;
    gap: 0 !important;
  }
  .tour-layout-list .tour-layout-list-content .people {
    padding-right: 20px;
  }
  .header-inner.style-3 {
    padding: 0 15px;
  }
  .header-inner.style-3 .logo {
    position: relative;
    left: 0;
    transform: translateX(0%) !important;
  }
  .top-bar.style-3 {
    padding: 0 15px;
  }
  .wg-booking .select-time .radio-box {
    gap: 0;
    width: 65%;
  }
}
@media (max-width: 1229px) {
  .section-tours-details-inner .details-content .details-item {
    width: 28.8%;
  }
}
@media (max-width: 1218px) {
  .section-recommended .section-recommended-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wg-testimonial .testimonial-item {
    gap: 50px !important;
  }
  .wg-testimonial .testimonial-item.style-3 .testimonial-content {
    max-width: 100% !important;
    padding-bottom: 32px !important;
  }
  .wg-testimonial .swiper-pagination {
    bottom: 50px;
    width: calc(49%+3px);
  }
  .wg-testimonial .testimonial-content {
    max-width: 49% !important;
    padding-bottom: 0 !important;
  }
  .wg-testimonial.style-2 .testimonial-bottom {
    padding-top: 30px;
    position: unset;
    width: 100%;
  }
  .tour-grid .tour-grid-content .tour-grid-details {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 !important;
  }
}
@media (max-width: 1200px) {
  .section-slider-categories .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding-top: 30px;
  }
  .seciton-recommeded.style-2 .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding: 20px 0;
  }
  .section-categories-3 .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
  }
}
@media (max-width: 1190px) {
  .footer-inner {
    gap: 0 !important;
    justify-content: space-between;
  }
}
@media (max-width: 1157px) {
  .page-title-home.style-2 .title-page-title,
  .page-title-home.style-2 .sub-title {
    max-width: 100% !important;
  }
  .page-title-home-image {
    display: none;
  }
  .section-about-h-2 .about-right {
    padding: 0 !important;
  }
}
@media (max-width: 1150px) {
  .sub-menu-2 {
    transform: translateX(-40%) !important;
  }
  .page-title-home.style-4 .title {
    max-width: 100% !important;
  }
  .tour-layout-list .image {
    width: 100%;
    height: 200px;
  }
  .section-about-us .heading-section-about-us .title {
    width: 50%;
  }
  .section-about-us .heading-section-about-us .sub-title {
    width: 50%;
  }
  .section-banner {
    padding: 50px 0 50px !important;
  }
  .section-banner .banner-inner {
    padding: 0 !important;
  }
  .section-tours .pb-28 {
    padding-bottom: 0 !important;
  }
  .section-tours .tour-layout-list {
    margin: 14px 0;
  }
  .tour-layout-list .tour-layout-list-content {
    width: 100%;
  }
  .section-categories .pb-30 {
    padding-bottom: 0 !important;
  }
  .section-categories .categories-item {
    margin: 15px 0;
  }
  .section-tours .pb-30 {
    padding-bottom: 0 !important;
  }
  .section-tours .tour-grid {
    margin: 15px 0;
  }
  .box-card-list {
    gap: 20px 0;
  }
  .box-card-list .box-card.style-2 {
    -webkit-box-flex: 0;
    flex: 0 0 33%;
    max-width: 33%;
    padding: 0 10px;
  }
  .box-card-list .box-card.style-2.active {
    -webkit-box-flex: 0;
    flex: 0 0 66%;
    max-width: 66%;
  }
  .box-card-list.ml--8 {
    margin-left: 0 !important;
  }
}
@media (max-width: 1100px) {
  .about-inner {
    flex-wrap: wrap;
  }
  .about-inner .about-content {
    flex: 1 1 50%;
    max-width: 100%;
  }
  .about-inner .image-section {
    flex: 1 1 50% !important;
  }
  .about-inner .about-details {
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: row;
  }
  .about-inner .about-details .line {
    display: none;
  }
  .group-form {
    gap: 10px;
  }
}
@media (max-width: 1025px) {
  .page-title-home.style-5 .page-title-home-inner .image {
    display: none;
  }
  .page-title-home.style-5 .page-title-home-inner .page-title-home-content {
    flex: 1 1 100%;
  }
  .page-title-home.style-5
    .page-title-home-inner
    .page-title-home-content
    .title-home {
    max-width: 100%;
  }
  .page-title-home.style-5 .swiper-pagination {
    display: none;
  }
  .leader-item .leader-content {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .section-about-h-2 .about-left {
    margin-bottom: 30px;
  }
  .page-title-home .page-title-home-inner {
    padding: 50px 0 50px !important;
  }
  .page-title-home.style-1 .page-title-home-inner {
    padding: 124px 0 120px !important;
    height: auto;
  }
  .page-title-home.style-3 .page-title-home-inner {
    padding-bottom: 100px !important;
  }
  .page-title-home.style-3 .page-title-home-inner .page-title-home-content {
    max-width: 100%;
  }
  .page-title-home.style-4 .page-title-home-inner .page-title-home-content {
    padding-top: 50px;
  }
  .page-title-home.style-5 .swiper-pagination {
    display: none;
  }
  .page-title-home.style-5 .page-title-home-content {
    padding-top: 50px !important;
  }
  .top-bar {
    display: none;
  }
  .tf-spacing-1 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .tf-spacing-5,
  .tf-spacing-2,
  .tf-spacing-3 {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .tf-spacing-4,
  .tf-spacing-6,
  .tf-spacing-7,
  .tf-spacing-8,
  .tf-spacing-10,
  .tf-spacing-14,
  .tf-spacing-15 {
    margin-bottom: 50px;
  }
  .tf-spacing-9 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .section-why .why-inner {
    padding: 0 0 30px;
  }
  .section-why .why-inner .heading-section.pb-25 {
    padding-bottom: 0 !important;
  }
  .section-why .why-inner .heading-section.pr-62 {
    padding-right: 0 !important;
  }
  .wg-filter .open-filter.active {
    top: 101%;
  }
  .section-about-us .heading-section-about-us .title {
    width: 100%;
    padding-bottom: 20px;
  }
  .section-about-us .heading-section-about-us .sub-title {
    width: 100%;
  }
  .section-about-us .wg-mission-vision {
    flex-direction: column;
    gap: 30px;
  }
  .section-connect .connect-inner {
    flex-direction: column;
  }
  .section-connect .connect-inner .connect-left {
    max-width: 100%;
    padding-bottom: 30px;
  }
  .section-connect.pl-10 {
    padding-left: 0 !important;
  }
  .section-about-h-3 .about-inner {
    padding: 0 0 47px;
  }
  .btn-arrow {
    display: none;
  }
  .btn-arrow.style-4 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .nice-select::after {
    right: 15px;
  }
  .section-box-icon .pb-46 {
    padding-bottom: 0 !important;
  }
  .section-box-icon .box-icon.style-2 {
    margin: 15px 0;
    gap: 15px;
  }
  .section-step .step-inner {
    gap: 30px;
  }
  .section-about-h-2 .about-left .image-1 {
    margin: 0 auto 30px;
  }
  .section-about-h-2 .about-left .image-2 {
    bottom: 0 !important;
  }
  .section-about-h-2 .about-left .img-icon-1,
  .section-about-h-2 .about-left .img-icon-3 {
    display: none !important;
  }
  .section-about-h-2 .about-right .pb-32 {
    padding-bottom: 20px !important;
  }
  .section-about-recommended .heading-recommended {
    padding-bottom: 30px;
  }
  .section-slider-categories {
    padding: 50px 0;
  }
  .section-recommended .pb-30 {
    padding-bottom: 0 !important;
  }
  .section-recommended.section-recommended-5 .pb-30 {
    padding-bottom: 30px !important;
  }
  .section-recommended .pb-28 {
    padding-bottom: 0 !important;
  }
  .group-form {
    gap: 0 !important;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 !important;
    justify-content: space-between;
  }
  .group-form .form-location {
    margin: 20px 20px 0 !important;
    padding-bottom: 20px;
    width: calc(50% - 40px);
    border-bottom: 1px solid var(--line);
  }
  .group-form .form-location .title {
    padding-bottom: 10px;
  }
  .group-form .form-tour-type {
    margin: 20px 20px 0 !important;
    padding-bottom: 20px;
    width: calc(50% - 40px);
    border-bottom: 1px solid var(--line);
  }
  .group-form .form-tour-type .title {
    padding-bottom: 10px;
  }
  .group-form .form-date {
    margin: 20px 20px 0 !important;
    padding-bottom: 20px;
    width: calc(50% - 40px);
    border-bottom: 1px solid var(--line);
  }
  .group-form .form-date .title {
    padding-bottom: 9px;
  }
  .group-form .form-people {
    margin: 20px 20px 0 !important;
    padding-bottom: 20px;
    width: calc(50% - 40px);
    border-bottom: 1px solid var(--line);
  }
  .group-form .form-people .title {
    padding-bottom: 10px;
  }
  .group-form .form-people .dropdown-menu {
    top: 0 !important;
    min-width: unset;
  }
  .group-form .line {
    display: none;
  }
  .group-form .form-search-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 0;
  }
  .group-form .btn-form-search {
    padding: 15px;
  }
  .group-form .btn-form-search .wg-filter {
    width: max-content;
  }
  .group-form .btn-search .tf-btn-search {
    padding: 10px 20px !important;
    border-radius: 8px;
  }
  .image-blog-post .image-item {
    width: 100%;
  }
  .sidebar {
    padding-top: 40px;
  }
  .footer-inner {
    flex-wrap: wrap;
    padding: 50px 0 !important;
    row-gap: 15px;
  }
  .footer-inner .footer-left {
    flex: 1 1 50%;
    max-width: unset !important;
    padding-right: 30px;
    padding-bottom: 30px;
  }
  .footer-inner .menu-footer {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .footer-inner .about-us-footer {
    padding-right: 30px;
  }
  .footer-inner .contact-us-footer {
    flex: 1 1 50%;
    max-width: unset !important;
  }
  .main-menu {
    display: none;
  }
  .mobile-button {
    display: block;
  }
  .wg-pagination {
    padding-top: 20px;
  }
  .btn-load-more {
    padding-top: 20px;
  }
  .wg-sidebar {
    padding-bottom: 50px;
  }
  .grid-layout-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-layout-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-layout-2.style-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .section-sidebar {
    padding-left: 0 !important;
    padding-top: 50px;
  }
  .section-tours-details.style-2 .section-tours-details-inner {
    margin: 0 0 50px !important;
  }
  .header-inner-wrap {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .header-inner-wrap .header-right .language,
  .header-inner-wrap .header-right .line {
    display: none;
  }
  .section-about-h-2 .about-left .image {
    width: max-content;
    max-width: 100% !important;
  }
  .section-featured .section-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }
  .section-featured .section-featured-grid .box-card {
    margin: 0 5px;
  }
  .grid-layout-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wg-sidebar {
    display: none;
  }
  .fillter-btn {
    display: block !important;
  }
  .recommended-item .image {
    max-width: 100%;
  }
  .section-recommended .tour-grid-swiper .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding-top: 40px;
  }
  .section-featured .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding-top: 30px;
  }
  .section-slider-categories.style-2 {
    margin-top: 50px;
  }
  .section-about-recommended .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
  }
  .wg-testimonial {
    padding-top: 50px;
  }
  .testimonial-item.style-2 .testimonial-content {
    padding-top: 0 !important;
  }
  .testimonial-item.style-2 .testimonial-content .text {
    font-size: 23px !important;
    line-height: 30px !important;
  }
  .blog-item.style-2 .image {
    max-width: 100%;
  }
  .section-new-2 .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding-top: 40px;
  }
  .help {
    margin-left: 0 !important;
  }
  .section-tours .help {
    padding-top: 20px;
  }
  .section-tours .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
  }
  .seciton-recommeded.style-2 .help {
    padding-top: 20px;
  }
  .section-location.style-2 .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
  }
  .recommended-swiper-6 .bottom-slide {
    opacity: 1;
    visibility: visible;
    padding-top: 30px;
  }
}
@media (max-width: 920px) {
  .testimonial-icon {
    display: none !important;
  }
}
@media (max-width: 880px) {
  .about-inner .about-content {
    max-width: 48%;
  }
  .about-inner .image-section {
    max-width: 48%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .wg-gallery.style-2 .gallery-content {
    display: none;
  }
  h1 {
    font-size: 36px !important;
    line-height: 44px !important;
  }
  h2 {
    font-size: 22px !important;
    line-height: 44px !important;
  }
  h3 {
    font-size: 20px;
    line-height: 42px;
  }
  h4 {
    font-size: 16px;
    line-height: 35px;
  }
  .page-title-home .page-title-home-content .tf-btn {
    font-size: 16px;
    line-height: 26px;
  }
}