@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap);
body {
  font-family: "Poppins", sans-serif;
  background: #FAF9F7;
}

p {
  font-size: 16px;
  font-weight: 300;
}

.theme-btn {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: #BF3946;
  border: 3px solid #BF3946;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
}
.theme-btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.theme-btn.secondary-btn {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}
.theme-btn.secondary-btn:hover {
  background: #000;
  color: #ffffff;
}
.theme-btn.lighter-btn:hover {
  background: rgb(151.7217741935, 45.2782258065, 55.6048387097);
  border-color: rgb(151.7217741935, 45.2782258065, 55.6048387097);
}

.section-head {
  margin-bottom: 40px;
}
.section-head .section-title {
  color: #000;
  font-size: 3.35rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2px;
  font-family: "Cormorant Garamond", serif;
}
.section-head .section-description {
  font-size: 13px;
  color: #444444;
  line-height: 1.7;
  max-width: 480px;
  font-family: "Poppins", sans-serif;
}

.default-page-wrap {
  max-width: 1100px;
  display: block;
  padding: 80px 15px;
  margin: 0 auto;
}

.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FAF9F7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.site-loader .loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: #BF3946;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.75s ease;
  background: rgba(0, 0, 0, 0.25);
}
.site-header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.site-header .header-wrapper .nav-left {
  flex: 0 0 auto;
}
.site-header .header-wrapper .nav-left.brand-logo {
  position: relative;
}
.site-header .header-wrapper .nav-left.brand-logo a {
  display: inline-block;
}
.site-header .header-wrapper .nav-left.brand-logo img {
  top: -60px;
  height: 200px;
  position: absolute;
  transition: all 0.75s ease;
}
.site-header .header-wrapper .nav-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.site-header .header-wrapper .nav-right .top-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 35px;
  padding: 15px 0px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.site-header .header-wrapper .nav-right .top-header .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 13.2px;
  font-weight: 400;
  color: #eeeeee;
  white-space: nowrap;
}
.site-header .header-wrapper .nav-right .top-header .meta-item i {
  font-size: 14px;
}
.site-header .header-wrapper .nav-right .top-header .meta-item strong {
  font-weight: 600;
  color: #eeeeee;
}
.site-header .header-wrapper .nav-right .top-header .meta-item img {
  width: 18px;
  height: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-header .header-wrapper .nav-right .top-header .meta-item.lang-list {
  position: relative;
  cursor: pointer;
}
.site-header .header-wrapper .nav-right .top-header .meta-item.lang-list .lang-selected {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-header .header-wrapper .nav-right .top-header .meta-item.lang-list .lang-selected i {
  font-size: 10px;
  transition: transform 0.3s ease;
}
.site-header .header-wrapper .nav-right .top-header .meta-item.lang-list .lang-dropdown {
  top: 100%;
  right: 0;
  z-index: 5;
  background: #fff;
  position: absolute;
  list-style: none;
  margin: 8px 0 0;
  padding: 8px 0;
  min-width: 150px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.site-header .header-wrapper .nav-right .top-header .meta-item.lang-list .lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s ease;
}
.site-header .header-wrapper .nav-right .top-header .meta-item.lang-list .lang-dropdown li a img {
  width: 20px;
  height: 14px;
}
.site-header .header-wrapper .nav-right .top-header .meta-item.lang-list .lang-dropdown li a:hover {
  background: #f5f5f5;
}
.site-header .header-wrapper .nav-right .top-header .meta-item.lang-list:hover .lang-selected i {
  transform: rotate(180deg);
}
.site-header .header-wrapper .nav-right .top-header .meta-item.lang-list:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
}
.site-header .header-wrapper .nav-right .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 1px;
}
.site-header .header-wrapper .nav-right .nav-menu .nav-item {
  position: relative;
}
.site-header .header-wrapper .nav-right .nav-menu .nav-item .nav-link {
  color: #eeeeee;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 20px 15px;
  position: relative;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}
.site-header .header-wrapper .nav-right .nav-menu .nav-search i {
  font-size: 22px;
}
.site-header .header-wrapper .nav-right .nav-menu .nav-item .search-link {
  padding: 0px 0 0 10px;
}
.site-header .header-wrapper .nav-right .nav-menu .nav-item.nav-hamburger {
  display: none;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.site-header.scrolled .header-wrapper .nav-left.brand-logo img {
  height: 155px;
  top: -50px;
}
.site-header.scrolled .header-wrapper .nav-right .top-header {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.site-header.scrolled .header-wrapper .nav-right .top-header .meta-item {
  color: #333;
}
.site-header.scrolled .header-wrapper .nav-right .top-header .meta-item strong {
  color: #333;
}
.site-header.scrolled .header-wrapper .nav-right .top-header .meta-item.lang-list .lang-selected {
  color: #333;
}
.site-header.scrolled .header-wrapper .nav-right .nav-menu {
  padding: 0;
}
.site-header.scrolled .header-wrapper .nav-right .nav-menu .nav-item .nav-link {
  color: #222;
}
.site-header.scrolled .header-wrapper .nav-right .nav-menu .nav-item .nav-link:hover {
  color: #BF3946;
}
.site-header.scrolled .header-wrapper .nav-right .nav-menu .nav-item .nav-link.active {
  color: #BF3946;
}
.site-header.scrolled .header-wrapper .nav-right .nav-menu .nav-search i {
  color: #222;
}

.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 100px;
  background: url("/wp-content/themes/wanderlut/public/images/sample/bottom.png");
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0) invert(1) sepia(1) saturate(0) opacity(1) hue-rotate(0deg) brightness(2);
  filter: brightness(0) invert(97%) sepia(5%) saturate(200%) hue-rotate(10deg);
}
.hero-section .background {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-section .background .hero-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.hero-section .background .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}
.hero-section .container {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-top: 150px;
}
.hero-section .container .hero-content .hero-title {
  color: #ffffff;
  font-size: 5.5rem;
  line-height: 0.92;
  font-weight: 400;
  margin-bottom: 7.5px;
  letter-spacing: -2px;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.hero-section .container .hero-content .hero-description {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  margin-bottom: 52px;
  font-family: "Raleway", sans-serif;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.hero-section .container .hero-content .theme-btn {
  font-size: 17.5px;
}

.site-footer {
  color: #ffffff;
  position: relative;
}
.site-footer .footer-wave {
  background: #003B4B;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.site-footer .footer-wave img {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(180deg) scaleX(-1);
  margin-top: -10px;
  filter: brightness(0) invert(1) sepia(1) saturate(0) opacity(1) hue-rotate(0deg) brightness(2);
  filter: brightness(0) invert(97%) sepia(5%) saturate(200%) hue-rotate(10deg);
}
.site-footer .footer-main {
  padding: 50px 0 0px;
  background: #003B4B;
}
.site-footer .footer-main .footer-column {
  margin-bottom: 30px;
}
.site-footer .footer-main .footer-brand .footer-logo-img {
  width: 110px;
  height: auto;
  display: block;
}
.site-footer .footer-main .footer-nav-wrap {
  display: flex;
  flex-wrap: wrap;
}
.site-footer .footer-main .footer-nav-wrap .footer-nav-col {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.site-footer .footer-main .footer-nav-wrap .footer-nav-col li {
  margin-bottom: 18px;
}
.site-footer .footer-main .footer-nav-wrap .footer-nav-col li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.site-footer .footer-main .footer-nav-wrap .footer-nav-col li a:hover {
  color: #ffffff;
}
.site-footer .footer-main .footer-newsletter {
  margin-left: 40px;
}
.site-footer .footer-main .footer-newsletter .newsletter-title {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 18px;
}
.site-footer .footer-main .footer-newsletter .newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 0px 0px 0px 18px;
  margin-bottom: 25px;
}
.site-footer .footer-main .footer-newsletter .newsletter-form .newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #000000;
  font-size: 14px;
}
.site-footer .footer-main .footer-newsletter .newsletter-form .newsletter-input::-moz-placeholder {
  color: rgba(140, 140, 140, 0.744);
}
.site-footer .footer-main .footer-newsletter .newsletter-form .newsletter-input::placeholder {
  color: rgba(140, 140, 140, 0.744);
}
.site-footer .footer-main .footer-newsletter .social-links {
  display: flex;
  gap: 10px;
}
.site-footer .footer-main .footer-newsletter .social-links .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer .footer-main .footer-newsletter .social-links .social-link i {
  font-size: 16px;
}
.site-footer .footer-main .footer-newsletter .social-links .social-link:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom {
  padding: 15px 0;
}
.site-footer .footer-bottom .bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom .bottom-content .copyright {
  font-size: 13px;
  color: rgb(96, 96, 96);
  margin: 0;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom {
  display: flex;
  gap: 25px;
  align-items: center;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom a {
  color: rgb(96, 96, 96);
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom .bottom-content .footer-links-bottom a:hover {
  color: rgb(62, 62, 62);
}

.package-card {
  height: 100%;
  padding: 20px;
  overflow: hidden;
  background: #ffffff;
}
.package-card .card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.package-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.package-card:hover .card-image img {
  transform: scale(1.05);
}
.package-card .card-body {
  padding: 35px 25px 20px;
}
.package-card .card-body .card-tag {
  color: #999999;
  font-size: 14px;
  font-style: italic;
  display: block;
  margin-bottom: 8px;
}
.package-card .card-body .card-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.package-card .card-body .card-info-row .card-text-flex {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.package-card .card-body .card-info-row .card-text-flex .card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 2px;
}
.package-card .card-body .card-info-row .card-text-flex .card-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  margin: 0;
}
.package-card .card-body .card-meta {
  flex-shrink: 0;
  text-align: right;
}
.package-card .card-body .card-meta .card-duration {
  color: #BF3946;
  font-size: 12px;
  font-weight: 400;
  display: block;
}
.package-card .card-body .card-meta .card-price {
  color: #BF3946;
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.testimonial-card {
  outline: none;
}
.testimonial-card .testimonial-item {
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
}
.testimonial-card .testimonial-item .testimonial-quote {
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 22px;
}
.testimonial-card .testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .testimonial-item .testimonial-author .author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card .testimonial-item .testimonial-author .author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-card .testimonial-item .testimonial-author .author-info .author-name {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin: 0 0 3px;
}
.testimonial-card .testimonial-item .testimonial-author .author-info .author-country {
  font-size: 13px;
  font-weight: 300;
  color: #999999;
}
.testimonial-card .testimonial-divider {
  height: 1px;
  background: #eeeeee;
  margin: 0;
}

.question-section {
  padding: 0 0 60px;
  background: #E8DDD3;
  overflow: hidden;
}
.question-section .question-banner-img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}
.question-section .question-banner-img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.question-section .container .question-content-col {
  padding-left: 70px;
}
.question-section .container .question-content-col .question-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #BF3946;
  font-family: "Poppins", sans-serif;
  margin-bottom: 12px;
}
.question-section .container .question-content-col .question-desc {
  font-size: 14px;
  font-weight: 300;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 28px;
}
.question-section .container .question-right-col .question-right-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.question-section .container .question-right-col .question-right-inner .question-girl-col {
  flex: 0 0 180px;
}
.question-section .container .question-right-col .question-right-inner .question-girl-col img {
  width: 100%;
  height: 200px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.question-section .container .question-right-col .question-right-inner .question-contact-col {
  flex: 1;
}
.question-section .container .question-right-col .question-right-inner .question-contact-col .contact-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}
.question-section .container .question-right-col .question-right-inner .question-contact-col .contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.question-section .container .question-right-col .question-right-inner .question-contact-col .contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.question-section .container .question-right-col .question-right-inner .question-contact-col .contact-details li i {
  font-size: 16px;
  color: #555555;
}
.question-section .container .question-right-col .question-right-inner .question-contact-col .contact-details li a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.question-section .container .question-right-col .question-right-inner .question-contact-col .contact-details li a:hover {
  color: #BF3946;
}
.question-section .container .question-right-col .question-right-inner .question-contact-col .contact-hours {
  font-size: 13px;
  font-weight: 500;
  color: #313131;
  line-height: 1.7;
  margin: 0;
}

.page-header {
  height: 60vh;
}
.page-header .hero-overlay {
  inset: 0;
  z-index: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0) 100%);
}
.page-header .container .hero-content .hero-title {
  font-size: 3.5rem;
  letter-spacing: 0;
}
.page-header .section-head .section-title {
  font-size: 3.2rem;
  line-height: 1.25;
}

.tour-list-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 20px;
  height: 250px;
}
.tour-list-card .card-img-col {
  flex: 0 0 400px;
  padding: 20px;
  background: #ffffff;
}
.tour-list-card .card-img-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.tour-list-card .card-img-col:hover img {
  transform: scale(1.05);
}
.tour-list-card .card-content-col {
  flex: 1;
  padding: 25px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tour-list-card .card-content-col .card-tag {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  font-style: italic;
  margin-bottom: 8px;
}
.tour-list-card .card-content-col .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}
.tour-list-card .card-content-col .card-desc {
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.tour-list-card .card-price-col {
  flex: 0 0 240px;
  background: #003B4B;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 25px 40px;
  text-align: right;
}
.tour-list-card .card-price-col .price-duration {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  width: 100%;
  text-align: right;
}
.tour-list-card .card-price-col .price-amount {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 30px;
  width: 100%;
  text-align: right;
}
.tour-list-card .card-price-col .price-period-label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  text-align: right;
}
.tour-list-card .card-price-col .price-period-value {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  display: block;
  text-align: right;
}

.experiences-section {
  padding: 30px 0 0;
}
.experiences-section .experience-col .experience-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.experiences-section .experience-col .experience-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
.experiences-section .experience-center {
  display: flex;
  flex-direction: column;
}
.experiences-section .experience-center .experience-img-wrap {
  height: 320px;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.experiences-section .experience-center .experience-img-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: 30px 0 0;
}
.experiences-section .experience-center .section-head {
  padding: 0px 45px 50px;
  margin-bottom: 0;
  flex: 1;
}
.experiences-section .experience-center .section-head .section-title {
  font-size: 2.75rem;
  line-height: 1.1;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.experiences-section .experience-center .section-head .section-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 50px;
}
.experiences-section .experience-center .section-head .theme-btn {
  font-size: 17px;
  font-weight: 600;
  padding: 12px 48px;
}

.journey-section {
  padding: 200px 0 150px;
  overflow: hidden;
  position: relative;
}
.journey-section .journey-background {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}
.journey-section .journey-background .journey-bg {
  width: 100%;
  max-width: 790px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.journey-section .journey-content {
  position: relative;
  z-index: 2;
  top: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journey-section .journey-content .section-head .section-title {
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.journey-section .journey-content .section-description {
  max-width: 570px;
  margin-bottom: 48px;
}
.journey-section .journey-content .section-description p {
  line-height: 1.8;
}
.journey-section .journey-content .bespoke-list-wrap .bespoke-list {
  margin: 0 0 0 -7px;
  padding: 0;
  list-style: none;
  -moz-column-count: 2;
       column-count: 2;
}
.journey-section .journey-content .bespoke-list-wrap .bespoke-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 7px;
  font-family: "Poppins", sans-serif;
}
.journey-section .journey-content .bespoke-list-wrap .bespoke-list li i {
  font-size: 22px;
  color: #c0392b;
  flex-shrink: 0;
}

.hosts-section {
  position: relative;
  overflow: visible;
  margin-top: 50px;
}
.hosts-section .hosts-bg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  background: #003B4B;
}
.hosts-section .container {
  position: relative;
  z-index: 2;
}
.hosts-section .container .hosts-inner {
  display: flex;
}
.hosts-section .container .hosts-inner .hosts-girl-col {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hosts-section .container .hosts-inner .hosts-girl-col img {
  width: 95%;
  height: auto;
  margin: 110px 0 110px -175px;
  display: block;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}
.hosts-section .container .hosts-inner .hosts-content-col {
  position: relative;
  padding: 150px 40px 120px 17.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hosts-section .container .hosts-inner .hosts-content-col .gallery-float {
  top: -220px;
  right: 48px;
  z-index: 3;
  overflow: hidden;
  position: absolute;
  transform: rotate(10deg);
  /* border-top: 30px solid #fff; */
  /* border-left: 15px solid #fff; */
  /* border-right: 10px solid #fff; */
  /* border-bottom: 50px solid #fff; */
}
.hosts-section .container .hosts-inner .hosts-content-col .gallery-float img {
  width: 235px;
  height: auto;
  display: block;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.hosts-section .container .hosts-inner .hosts-content-col .section-head {
  margin-bottom: 0;
}
.hosts-section .container .hosts-inner .hosts-content-col .section-head .section-title {
  color: #ffffff;
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 25px;
}
.hosts-section .container .hosts-inner .hosts-content-col .section-description {
  margin-bottom: 30px;
}
.hosts-section .container .hosts-inner .hosts-content-col .section-description p {
  color: #fff;
  line-height: 1.85;
  font-weight: 300;
}
.hosts-section .container .hosts-inner .hosts-content-col .hosts-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hosts-section .container .hosts-inner .hosts-content-col .hosts-highlights .highlight-item {
  margin-bottom: 10px;
}
.hosts-section .container .hosts-inner .hosts-content-col .hosts-highlights .highlight-item .highlight-label {
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}
.hosts-section .container .hosts-inner .hosts-content-col .hosts-highlights .highlight-item .highlight-value {
  font-size: 16px;
  font-weight: 300;
  color: rgba(251, 255, 0, 0.5);
  margin: 0;
  font-style: italic;
}

.best-of-srilanka-section {
  padding: 100px 0 0;
  overflow: hidden;
}
.best-of-srilanka-section .section-head {
  margin-bottom: 50px;
}
.best-of-srilanka-section .section-head .section-title {
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: -2px;
}
.best-of-srilanka-section .section-head .slider-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.best-of-srilanka-section .section-head .slider-title-wrap .slick-nav {
  background: none;
  border: none;
  font-size: 100px;
  color: #000;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  line-height: 1;
}
.best-of-srilanka-section .section-head .slider-title-wrap .section-title {
  margin: 0;
}
.best-of-srilanka-section .srilanka-carousel .slick-list {
  overflow: visible;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.best-of-srilanka-section .srilanka-carousel .slick-list .card-wrap {
  padding: 0 35px;
}
.best-of-srilanka-section .srilanka-carousel .slick-track {
  display: flex;
  align-items: center;
}
.best-of-srilanka-section .srilanka-carousel .slick-slide {
  padding: 12px;
  transform: scale(0.88);
  transition: transform 0.3s ease;
}
.best-of-srilanka-section .srilanka-carousel .slick-slide > div {
  height: 80%;
}
.best-of-srilanka-section .srilanka-carousel .slick-slide.slick-center {
  transform: scale(1);
}
.best-of-srilanka-section .srilanka-carousel .slick-slide.slick-center .package-card {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}
.best-of-srilanka-section .section-footer {
  margin-top: 50px;
}
.best-of-srilanka-section .section-footer .theme-btn {
  padding: 12px 45px;
}

.testimonials-section {
  padding: 0;
  margin: 100px 0 0;
  position: relative;
}
.testimonials-section .section-title .icon {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto -50px;
  background: url(/wp-content/themes/wanderlut/public/images/heart.png) no-repeat center;
  background-size: contain;
}
.testimonials-section .testimonials-img-col {
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
}
.testimonials-section .testimonials-img-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.testimonials-section .container {
  min-height: 800px;
  z-index: 2;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
}
.testimonials-section .container .testimonials-slide {
  width: 40%;
  background: #ffffff;
  padding: 35px 50px 35px;
}
.testimonials-section .container .testimonials-slide .section-head {
  margin-bottom: 10px;
  text-align: center;
}
.testimonials-section .container .testimonials-slide .section-head .section-title {
  text-align: center;
}
.testimonials-section .container .testimonials-slide .section-head .section-title span {
  font-style: italic;
  color: #BF3946;
  font-family: Georgia, serif;
}
.testimonials-section .container .testimonials-slide .testimonials-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}
.testimonials-section .container .testimonials-slide .testimonials-nav .slick-nav {
  background: none;
  border: none;
  color: #000;
  font-size: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-section .container .testimonials-slide .testimonials-nav .slick-nav:hover {
  color: #000;
}

.locally-tours-section {
  padding: 80px 0 70px;
  background: #fcfaf2;
}
.locally-tours-section .locally-content-col {
  padding-right: 50px;
}
.locally-tours-section .locally-content-col .section-head {
  margin-bottom: 0;
  padding-top: 30px;
}
.locally-tours-section .locally-content-col .section-head .section-title {
  margin-bottom: 40px;
}
.locally-tours-section .locally-content-col .section-description p {
  font-weight: 400;
  line-height: 1.75;
}
.locally-tours-section .locally-gallery-col .gallery-top {
  margin-bottom: 15px;
}
.locally-tours-section .locally-gallery-col .gallery-top .gallery-item {
  height: 225px;
  overflow: hidden;
}
.locally-tours-section .locally-gallery-col .gallery-top .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
.locally-tours-section .locally-gallery-col .gallery-top .gallery-item:hover img {
  transform: scale(1.05);
}
.locally-tours-section .locally-gallery-col .gallery-bottom {
  margin: 0;
}
.locally-tours-section .locally-gallery-col .gallery-bottom .gallery-item {
  height: 225px;
  overflow: hidden;
}
.locally-tours-section .locally-gallery-col .gallery-bottom .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: transform 0.5s ease;
}
.locally-tours-section .locally-gallery-col .gallery-bottom .gallery-item:hover img {
  transform: scale(1.05);
}

.tours-list-section {
  padding: 58px 0 30px;
  background: #FAF9F7;
}
.tours-list-section .container .tours-list-head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.tours-list-section .container .tours-list-head .results-count {
  font-size: 15px;
  font-weight: 700;
}
.tours-list-section .container .tours-list-head .sort-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #999999;
}
.tours-list-section .container .tours-list-head .sort-wrap .sort-select {
  color: #999999;
  font-size: 16px;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
}

.gateway-section {
  padding: 70px 0 92px;
  background: #FAF9F7;
}
.gateway-section .section-head {
  margin-bottom: 55px;
}
.gateway-section .gateway-gallery-col .gateway-gallery {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-item,
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-top,
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-bottom {
  width: 225px;
  height: 225px;
  overflow: hidden;
}
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-item img,
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-top img,
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-item:hover img,
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-top:hover img,
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-bottom:hover img {
  transform: scale(1.05);
}
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-col-bleed {
  flex-shrink: 0;
}
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-col-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gateway-section .gateway-gallery-col .gateway-gallery .gallery-col-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 50px;
}
.gateway-section .gateway-content-col {
  padding-left: 50px;
}
.gateway-section .gateway-content-col .gateway-item {
  margin-bottom: 40px;
}
.gateway-section .gateway-content-col .gateway-item:last-child {
  margin-bottom: 0;
}
.gateway-section .gateway-content-col .gateway-item .gateway-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}
.gateway-section .gateway-content-col .gateway-item .gateway-item-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.why-book-section {
  padding: 0;
  position: relative;
  background: linear-gradient(to bottom, #FAF9F7 120px, #ffffff 120px, #ffffff calc(100% - 120px), #FAF9F7 calc(100% - 120px));
}
.why-book-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  background-image: url("/wp-content/themes/wanderlut/public/images/sample/bottom1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  filter: brightness(0) invert(1);
}
.why-book-section::after {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  background-image: url("/wp-content/themes/wanderlut/public/images/sample/bottom1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}
.why-book-section .section-head {
  margin-bottom: 55px;
}
.why-book-section .section-head .section-title span {
  font-weight: 400;
  font-style: italic;
  color: #BF3946;
  font-family: "Poppins", sans-serif;
}
.why-book-section .why-book-grid {
  padding: 0 40px;
}
.why-book-section .why-book-grid .why-book-item {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px;
}
.why-book-section .why-book-grid .why-book-item .why-book-icon {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0px;
}
.why-book-section .why-book-grid .why-book-item .why-book-icon img {
  width: 140px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
.why-book-section .why-book-grid .why-book-item .why-book-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  max-width: 138px;
  margin: 0 auto 12px;
}
.why-book-section .why-book-grid .why-book-item .why-book-desc {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  max-width: 220px;
  margin: 0 auto;
}

.experiences-list-section {
  padding: 80px 15px 0;
  background: #fcfaf2;
}
.experiences-list-section .experiences-list-item {
  padding: 0 50px;
  margin-bottom: 80px;
}
.experiences-list-section .experiences-list-item:last-child {
  margin-bottom: 0;
}
.experiences-list-section .experiences-list-content-col {
  padding: 0 70px;
}
.experiences-list-section .experiences-list-content-col .experience-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #000;
  line-height: 1.15;
  margin-bottom: 20px;
}
.experiences-list-section .experiences-list-content-col .experience-desc {
  color: #555555;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}
.experiences-list-section .experiences-list-img-col {
  padding: 0 70px;
}
.experiences-list-section .experiences-list-img-col .experiences-list-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.experiences-list-section .experiences-list-img-col .experiences-list-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.transport-section {
  padding: 80px 0;
  overflow: hidden;
  background-color: #fcfaf2;
}
.transport-section .section-head {
  margin-bottom: 50px;
}
.transport-section .section-head .section-title {
  margin-bottom: 18px;
  text-transform: uppercase;
}
.transport-section .section-head .section-description {
  font-size: 15px;
  margin: 0 auto 80px;
}
.transport-section .transport-inner {
  position: relative;
}
.transport-section .transport-inner .tag-img {
  border: 15px solid #fff;
  border-bottom: 38px solid #fff;
}
.transport-section .transport-inner .transport-img-tl {
  width: 270px;
  top: -180px;
  left: -230px;
  z-index: 0;
  transform: rotate(-15deg);
  position: absolute;
}
.transport-section .transport-inner .transport-img-tl img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.transport-section .transport-inner .transport-img-bl {
  position: absolute;
  top: 360px;
  left: -50px;
  width: 160px;
  transform: rotate(15deg);
  z-index: 0;
}
.transport-section .transport-inner .transport-img-bl img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.transport-section .transport-inner .transport-img-tr {
  width: 140px;
  top: -70px;
  right: 0px;
  z-index: 0;
  position: absolute;
  transform: rotate(-10deg);
}
.transport-section .transport-inner .transport-img-tr img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.transport-section .transport-inner .transport-img-br {
  width: 250px;
  bottom: 358px;
  right: -172px;
  z-index: 0;
  position: absolute;
  transform: rotate(10deg);
}
.transport-section .transport-inner .transport-img-br img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.transport-section .transport-cards-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 240px;
}
.transport-section .transport-cards-col .transport-card {
  background: #003B4B;
  padding: 35px 40px;
  width: 100%;
}
.transport-section .transport-cards-col .transport-card .transport-card-title {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: #ffff00;
  font-family: Georgia, serif;
  text-align: center;
  margin-bottom: 40px;
}
.transport-section .transport-cards-col .transport-card .transport-options {
  display: flex;
  gap: 80px;
  width: 100%;
  margin: 0 auto;
}
.transport-section .transport-cards-col .transport-card .transport-options .transport-option {
  flex: 1;
  max-width: 260px;
  text-align: left;
}
.transport-section .transport-cards-col .transport-card .transport-options .transport-option .option-icon {
  width: 80px;
  height: 80px;
  display: block;
  margin-bottom: 15px;
}
.transport-section .transport-cards-col .transport-card .transport-options .transport-option .option-icon.train-icon-col {
  height: 58px;
  margin-bottom: 35px;
}
.transport-section .transport-cards-col .transport-card .transport-options .transport-option .option-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.transport-section .transport-cards-col .transport-card .transport-options .transport-option .option-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}
.transport-section .transport-cards-col .transport-card .transport-options .transport-option .option-desc {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 20px;
}
.transport-section .transport-footer {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-template-page-contact-us .contact-section {
  padding: 80px 0;
  background-color: #fcfaf2;
}
.page-template-page-contact-us .contact-section .contact-img-col .contact-img-wrap {
  overflow: hidden;
}
.page-template-page-contact-us .contact-section .contact-img-col .contact-img-wrap img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.page-template-page-contact-us .contact-section .contact-img-col .contact-img-wrap:hover img {
  transform: scale(1.03);
}
.page-template-page-contact-us .contact-section .contact-content-col {
  padding-left: 60px;
}
.page-template-page-contact-us .contact-section .contact-content-col .section-head {
  margin-bottom: 30px;
}
.page-template-page-contact-us .contact-section .contact-content-col .section-head .section-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 2.8rem;
}
.page-template-page-contact-us .contact-section .contact-content-col .section-head .section-description {
  font-size: 16px;
  margin: 0;
}
.page-template-page-contact-us .contact-section .contact-content-col .contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.page-template-page-contact-us .contact-section .contact-content-col .contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.page-template-page-contact-us .contact-section .contact-content-col .contact-details li i {
  color: #888888;
  font-size: 18px;
  flex-shrink: 0;
}
.page-template-page-contact-us .contact-section .contact-content-col .contact-details li a {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-template-page-contact-us .contact-section .contact-content-col .contact-details li a:hover {
  color: #000;
}
.page-template-page-contact-us .contact-section .contact-content-col .contact-hours .hours-item {
  font-size: 14px;
  font-weight: 500;
  color: #555555;
  line-height: 1.7;
}
.page-template-page-contact-us .contact-section .contact-content-col .contact-hours .hours-item strong {
  font-weight: 700;
  color: #000;
  display: block;
}
.page-template-page-contact-us .contact-form-section {
  padding: 80px 0;
  background-color: #fcfaf2;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .row {
  margin-bottom: 0;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-group-col {
  margin-bottom: 25px;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-label .required {
  color: #C0392B;
  margin-left: 2px;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-question {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-input {
  width: 100%;
  height: 50px;
  border: 1.5px solid #cccccc;
  background: #ffffff;
  padding: 0 15px;
  font-size: 14px;
  color: #000;
  outline: none;
  transition: border-color 0.3s ease;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-input:focus {
  border-color: #000;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-textarea {
  height: 130px;
  padding: 15px;
  resize: none;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-checkbox-wrap .form-checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #000;
}
.page-template-page-contact-us .contact-form-section .contact-form-wrap .form-checkbox-wrap .form-checkbox-label {
  font-size: 14px;
  font-weight: 300;
  color: #555555;
  line-height: 1.7;
  cursor: pointer;
  margin: 0;
}
.page-template-page-contact-us .feedback-section {
  padding: 40px 0 75px;
  background-color: #fcfaf2;
}
.page-template-page-contact-us .feedback-section .section-head {
  margin-bottom: 80px;
}
.page-template-page-contact-us .feedback-section .section-head .slider-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.page-template-page-contact-us .feedback-section .section-head .slider-title-wrap .slick-nav {
  color: #000;
  font-size: 100px;
  padding: 0;
  border: none;
  cursor: pointer;
  line-height: 1;
  background: none;
  transition: all 0.3s ease;
}
.page-template-page-contact-us .feedback-section .section-head .slider-title-wrap .slick-nav:hover {
  color: #000;
}
.page-template-page-contact-us .feedback-section .section-head .slider-title-wrap .section-title {
  margin: 0;
}
.page-template-page-contact-us .feedback-section .section-head .slider-title-wrap .section-title .title-love {
  color: #BF3946;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card {
  padding: 0 10px;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap {
  padding: 30px;
  background-color: #fff;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap .feedback-stars {
  margin-bottom: 15px;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap .feedback-stars i {
  color: #CBCBCB;
  font-size: 1.15rem;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap .feedback-quote {
  font-size: 0.88rem;
  font-weight: 400;
  display: block;
  margin-bottom: 30px;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap .feedback-author {
  gap: 10px;
  display: flex;
  align-items: center;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap .feedback-author .author-avatar {
  width: 55px;
  height: 55px;
  overflow: hidden;
  border-radius: 50px;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap .feedback-author .author-avatar img {
  width: 100%;
  height: auto;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap .feedback-author .author-name {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: -2px;
}
.page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap .feedback-author .author-country {
  color: #4B4B4B;
  font-size: 0.8rem;
  font-weight: 300;
}

@media (max-width: 1499.98px) {
  .home .experiences-section .experience-center .section-head .section-title {
    font-size: 2.2rem;
  }
  .home .journey-section {
    padding: 80px 0 120px;
  }
  .home .hosts-section .container .hosts-inner .hosts-girl-col img {
    width: 92%;
    margin: 110px 0 110px -100px;
  }
  .transport-section .transport-inner .transport-img-tl {
    left: -150px;
  }
}
@media (max-width: 1399.98px) {
  .journey-section .journey-background .journey-bg {
    width: 100%;
    max-width: 625px;
  }
  .journey-section .journey-content .section-head .section-title {
    font-size: 4.35rem;
  }
  .best-of-srilanka-section .srilanka-carousel .slick-list .card-wrap {
    padding: 0 0px;
  }
  .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item, .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-top, .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-bottom {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1299.98px) {
  .hosts-section .container .hosts-inner .hosts-content-col .gallery-float {
    top: -175px;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .gallery-float img {
    width: 200px;
  }
  .journey-section .journey-content .section-description {
    max-width: 500px;
  }
  .transport-section .transport-cards-col {
    margin: 0 180px;
  }
}
@media (max-width: 1199.98px) {
  .hero-section .container .hero-content .hero-title {
    font-size: 4.25rem;
  }
  .journey-section .journey-content .section-head .section-title {
    font-size: 3.5rem;
  }
  .journey-section .journey-content .section-description {
    max-width: 400px;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .section-head .section-title {
    font-size: 4rem;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .gallery-float {
    right: 10px;
  }
  .best-of-srilanka-section .section-head .section-title {
    font-size: 3.2rem;
  }
  .testimonials-section .container .testimonials-slide {
    width: 50%;
  }
  .site-footer .footer-main .footer-nav-wrap .footer-nav-col li a {
    font-size: 0.8rem;
  }
  .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item, .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-top, .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-bottom {
    width: 175px;
    height: 175px;
  }
  .transport-section .transport-cards-col {
    margin: 0 100px;
  }
  .transport-section .transport-inner .transport-img-tl {
    left: -210px;
  }
}
@media (max-width: 1099.98px) {
  .site-header .header-wrapper .nav-left.brand-logo img {
    top: -45px;
    height: 170px;
  }
  .hero-section .container .hero-content .theme-btn {
    font-size: 14.5px;
  }
  .hero-section .container .hero-content .hero-description {
    font-size: 1.15rem;
  }
  .hero-section .container .hero-content .hero-title {
    font-size: 4.5rem;
  }
  .experiences-section .experience-center .section-head {
    padding: 0px 35px 50px;
  }
  .experiences-section .experience-center .section-head .theme-btn {
    font-size: 14px;
  }
  .journey-section .journey-content .section-head .section-title {
    font-size: 3.8rem;
  }
  .journey-section .journey-content .bespoke-list-wrap .bespoke-list {
    margin: 15px 0 0;
  }
  .journey-section .journey-background .journey-bg {
    max-width: 500px;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .section-head .section-title {
    font-size: 3.8rem;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .gallery-float {
    right: 80px;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .gallery-float img {
    width: 160px;
  }
  .package-card .card-body {
    padding: 35px 5px 20px;
  }
  .package-card .card-body .card-tag {
    font-size: 12px;
  }
  .package-card .card-body .card-info-row .card-text-flex .card-desc {
    font-size: 13px;
  }
  .package-card .card-body .card-info-row .card-text-flex .card-title {
    font-size: 16px;
  }
  .theme-btn {
    padding: 10px 15px;
  }
  p {
    font-size: 14px;
  }
  .page-template-page-transport-php .transport-section .transport-cards-col {
    margin: 0 120px;
  }
  .page-template-page-transport-php .transport-section .transport-cards-col .transport-card .transport-options {
    gap: 20px;
  }
  .page-template-page-transport-php .section-head .section-title {
    font-size: 2.75rem;
  }
}
@media (max-width: 991.98px) {
  .desktop-only,
  .top-header {
    display: none !important;
  }
  .site-header .header-wrapper .nav-right .nav-menu .nav-item.nav-hamburger {
    display: inline-block;
  }
  p {
    font-size: 14px;
  }
  .theme-btn {
    padding: 10px 15px;
  }
  .section-head .section-title {
    font-size: 3.2rem;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-hamburger .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
  }
  .nav-hamburger .menu-toggle i {
    font-size: 32px;
    color: #fff;
    transition: all 0.3s ease;
  }
  .site-header .header-wrapper {
    padding: 15px;
  }
  .site-header .header-wrapper .nav-right .nav-menu .nav-item {
    margin-left: 15px;
  }
  .site-header .header-wrapper .nav-left.brand-logo img {
    top: -27px;
    height: 140px;
  }
  .site-header.scrolled .menu-toggle i {
    color: #000;
  }
  .site-header.scrolled .header-wrapper .nav-left.brand-logo img {
    height: 130px;
    top: -27px;
  }
  .hero-section .container .hero-content .hero-title {
    font-size: 3.5rem;
  }
  .hero-section .container .hero-content .hero-description {
    font-size: 1rem;
  }
  .hero-section .container .hero-content .theme-btn {
    font-size: 12px;
  }
  .experiences-section .experience-center .section-head {
    padding: 0px 10px 50px;
  }
  .experiences-section .experience-center .section-head .section-title {
    font-size: 2rem;
    padding: 30px 0 0;
  }
  .experiences-section .experience-center .section-head .section-description {
    font-size: 15px;
  }
  .experiences-section .experience-center .section-head .theme-btn {
    padding: 10px 35px;
  }
  .experiences-section .experience-center .experience-img-wrap {
    display: none;
  }
  .home .journey-section {
    padding: 50px 0 80px;
  }
  .journey-section .journey-background .journey-bg {
    display: none;
  }
  .journey-section .journey-content {
    text-align: center;
  }
  .journey-section .journey-content .section-head .section-title {
    font-size: 3.2rem;
  }
  .journey-section .journey-content .section-description {
    max-width: none;
  }
  .journey-section .journey-content .bespoke-list-wrap .bespoke-list {
    margin: 0px 0px 0;
  }
  .hosts-section .container .hosts-inner .hosts-content-col {
    padding: 60px 15px;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .section-head .section-title {
    font-size: 3.2rem;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .gallery-float img {
    display: none;
  }
  .best-of-srilanka-section .section-head .section-title {
    font-size: 3.2rem;
  }
  .best-of-srilanka-section .section-head .slider-title-wrap .slick-nav {
    font-size: 70px;
  }
  .best-of-srilanka-section .srilanka-carousel .slick-list {
    overflow: hidden !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .best-of-srilanka-section .srilanka-carousel .slick-slide {
    transform: scale(1) !important;
  }
  .best-of-srilanka-section .srilanka-carousel .slick-slide > div {
    height: 100%;
  }
  .best-of-srilanka-section .srilanka-carousel .slick-slide.slick-center {
    box-shadow: none;
  }
  .best-of-srilanka-section .srilanka-carousel .card-wrap {
    padding: 0 10px !important;
  }
  .best-of-srilanka-section .srilanka-carousel .card-wrap .package-card .card-body .card-info-row .card-text-flex {
    padding-right: 10px;
  }
  .best-of-srilanka-section .section-footer {
    margin-top: 30px;
  }
  .testimonials-section {
    margin: 0 0;
  }
  .testimonials-section .testimonials-img-col {
    display: none !important;
  }
  .testimonials-section .container {
    min-height: 700px;
    justify-content: center;
  }
  .testimonials-section .container .testimonials-slide {
    width: 100%;
    padding: 35px 30px;
  }
  .testimonial-card .testimonial-item {
    padding: 20px;
  }
  .site-footer .footer-main .row {
    display: flex;
    flex-wrap: wrap;
  }
  .site-footer .footer-main .footer-column:nth-child(1) {
    order: 1;
  }
  .site-footer .footer-main .footer-column:nth-child(3) {
    order: 2;
  }
  .site-footer .footer-main .footer-column:nth-child(2) {
    order: 3;
    margin-top: 20px;
  }
  .site-footer .footer-main .footer-newsletter {
    padding-right: 100px;
  }
  .offcanvas-menu {
    width: 350px;
  }
  .offcanvas-menu .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eeeeee;
  }
  .offcanvas-menu .offcanvas-header .offcanvas-logo img {
    height: 80px;
  }
  .offcanvas-menu .offcanvas-header .offcanvas-close {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
  }
  .offcanvas-menu .offcanvas-header .offcanvas-close i {
    font-size: 18px;
    color: #000;
  }
  .offcanvas-menu .offcanvas-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 100px);
  }
  .offcanvas-menu .offcanvas-body .offcanvas-nav {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .offcanvas-menu .offcanvas-body .offcanvas-nav li {
    border-bottom: 1px solid #f0f0f0;
  }
  .offcanvas-menu .offcanvas-body .offcanvas-nav li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #BF3946;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
  }
  .offcanvas-menu .offcanvas-body .offcanvas-nav li a:hover, .offcanvas-menu .offcanvas-body .offcanvas-nav li a.active {
    color: #000;
    padding-left: 8px;
  }
  .offcanvas-menu .offcanvas-body .offcanvas-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .offcanvas-menu .offcanvas-body .offcanvas-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #555;
  }
  .offcanvas-menu .offcanvas-body .offcanvas-contact a i {
    color: #000;
  }
  .offcanvas-menu .offcanvas-body .offcanvas-contact a:hover {
    color: #BF3946;
  }
  .offcanvas-menu .offcanvas-body .offcanvas-contact .offcanvas-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
  }
  .offcanvas-menu .offcanvas-body .offcanvas-contact .offcanvas-lang img {
    width: 20px;
    height: 14px;
  }
  .col-md-10 {
    width: 100% !important;
  }
  .page-template-page-about-php .section-head .section-title {
    font-size: 2.7rem;
  }
  .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery {
    justify-content: center;
  }
  .page-template-page-about-php .gateway-section .gateway-content-col {
    margin-top: 40px;
    text-align: center;
  }
  .page-template-page-about-php .why-book-section::before {
    content: "";
  }
  .page-template-page-tours-php .locally-tours-section {
    padding: 0px 0 70px;
  }
  .page-template-page-tours-php .locally-tours-section .locally-content-col {
    text-align: center;
  }
  .page-template-page-tours-php .locally-tours-section .locally-content-col .section-description p {
    margin-bottom: 50px;
  }
  .page-template-page-tours-php .tour-list-card .card-content-col {
    padding: 25px 10px;
  }
  .page-template-page-tours-php .tour-list-card .card-price-col .price-amount {
    font-size: 16px;
  }
  .page-template-page-tours-php .tour-list-card .card-price-col .price-duration {
    font-size: 12px;
  }
  .page-template-page-tours-php .tour-list-card .card-price-col .price-period-value {
    font-size: 12px;
  }
  .page-template-page-tours-php .tour-list-card .card-price-col {
    padding: 25px 20px;
  }
  .page-template-page-tours-php .tour-list-card .card-price-col {
    flex: 0 0 140px;
  }
  .page-template-page-tours-php .tour-list-card .card-img-col {
    flex: 0 0 300px;
  }
  .page-template-page-tours-php .tour-list-card .card-content-col .card-desc {
    font-size: 12px;
  }
  .page-template-page-contact-us-php .contact-section .contact-content-col .section-head .section-title {
    margin-top: 20px;
  }
  .page-template-page-contact-us-php .contact-section .contact-content-col {
    text-align: center;
  }
  .page-template-page-contact-us-php .contact-section .contact-content-col .section-head .section-description {
    margin: 0 auto;
  }
  .page-template-page-contact-us-php .contact-section .contact-img-col .contact-img-wrap {
    display: none;
  }
  .page-template-page-contact-us-php .contact-content-col .contact-details {
    text-align: center;
  }
  .page-template-page-contact-us-php .contact-content-col .contact-details li {
    justify-content: center;
  }
  .page-template-page-contact-us-php .contact-form-section {
    padding: 0px 0 40px;
  }
  .page-template-page-contact-us-php .question-section .container .question-content-col {
    padding-bottom: 25px;
  }
  .page-template-page-contact-us-php .question-section .container .question-right-col .question-right-inner {
    align-items: center;
    justify-content: center;
  }
  .page-template-page-contact-us-php .question-section .container .question-content-col {
    padding-left: 10px;
  }
  .page-template-page-contact-us-php .contact-form-section .contact-form-wrap .form-group-col {
    text-align: center;
  }
  .page-template-page-contact-us-php .theme-btn {
    padding: 10px 25px;
  }
  .page-template-page-contact-us-php .feedback-section .section-head .slider-title-wrap .slick-nav {
    font-size: 70px;
  }
  .page-template-page-contact-us-php .contact-section .contact-content-col {
    padding-left: 0px;
    padding: 0 20px;
  }
  .page-template-page-transport-php .transport-section {
    padding: 40px 0;
  }
  .page-template-page-transport-php .transport-section .transport-cards-col {
    margin: 0;
  }
  .page-template-page-contact-us .contact-section {
    padding: 10px 0 80px;
  }
  .page-template-page-contact-us .contact-section .contact-content-col .section-head .section-title {
    letter-spacing: 0;
  }
}
@media (max-width: 767.98px) {
  .hosts-section .hosts-bg-wrap {
    width: 85%;
  }
  .hosts-section .container .hosts-inner .hosts-girl-col {
    flex: 0 0 20%;
  }
  .hosts-section .container .hosts-inner .hosts-girl-col img {
    margin: 122px 0 110px 0px;
    display: none;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .hosts-highlights .highlight-item .highlight-value {
    font-size: 13px;
  }
  .experiences-section .experience-col .experience-img-wrap img {
    width: 75%;
    display: block;
    margin: 0 auto;
  }
  .experiences-section .experience-col.left .experience-img-wrap img {
    display: none;
  }
  .experiences-section .experience-center .section-head {
    padding: 0px 20px 50px;
  }
  .experiences-section .experience-center .section-head .section-title {
    font-size: 2rem;
    padding: 0 0;
  }
  .experiences-section .experience-center .section-head .section-description {
    font-size: 14px;
    margin-bottom: 40px;
    max-width: none;
  }
  .home .journey-section {
    padding: 20px 0 80px;
  }
  .home .journey-section .journey-content .section-description {
    margin-bottom: 0px;
  }
  .home .journey-section .journey-content .bespoke-list-wrap .bespoke-list {
    margin: 15px 5px 0;
  }
  .home .journey-section .journey-content .bespoke-list-wrap .bespoke-list li {
    font-size: 13px;
  }
  .home .journey-section .journey-content .bespoke-list-wrap .bespoke-list li i {
    font-size: 14px;
  }
  .best-of-srilanka-section {
    padding: 70px 0 20px;
  }
  .site-footer .footer-main .footer-newsletter {
    padding-left: 50px;
    padding-right: 50px;
  }
  .site-footer .footer-bottom .bottom-content .copyright {
    font-size: 12px;
  }
  .site-footer .footer-bottom .bottom-content .footer-links-bottom a {
    font-size: 12px;
  }
  .page-template-page-about-php .gateway-section {
    padding: 30px 0 50px;
    background: #FAF9F7;
  }
  .experiences-list-section {
    padding: 10px 15px 0;
  }
  .page-template-page-tours-php .locally-tours-section .locally-content-col {
    padding-right: 20px;
  }
  .page-template-page-tours-php .tour-list-card {
    flex-direction: column;
    height: auto;
  }
  .page-template-page-tours-php .tour-list-card img {
    width: 100%;
    height: auto;
  }
  .page-template-page-tours-php .tour-list-card .content,
  .page-template-page-tours-php .tour-list-card .price {
    width: 100%;
    margin: 10px 0;
  }
  .page-template-page-experience-php .experiences-list-section .experiences-list-item {
    text-align: center;
  }
  .page-template-page-experience-php .experiences-list-section .experiences-list-content-col {
    padding: 0;
  }
  .page-template-page-experience-php .experiences-list-section .experiences-list-img-col {
    padding: 0;
  }
  .page-template-page-transport-php .section-head .section-title {
    font-size: 2.5rem;
  }
  .page-template-page-contact-us .contact-form-section .contact-form-wrap .form-input {
    height: 40px;
  }
  .page-template-page-contact-us .contact-form-section .contact-form-wrap .form-textarea {
    height: 100px;
  }
  .page-template-page-contact-us .question-section .container .question-content-col {
    text-align: center;
    margin-bottom: 20px;
  }
  .experiences-list-section {
    padding: 10px 15px 70px;
  }
}
@media (max-width: 575.98px) {
  .hero-section .container .hero-content .hero-title {
    font-size: 3rem;
  }
  .hero-section .container .hero-content .hero-description {
    font-size: 0.9rem;
  }
  .experiences-section {
    padding: 0px 0 0;
  }
  .experiences-section .experience-center .section-head {
    padding: 10px 20px 50px;
  }
  .experiences-section .experience-center .section-head .section-title {
    font-size: 2.5rem;
    padding: 0;
  }
  .experiences-section .experience-center .section-head .section-description {
    padding: 0 10px;
  }
  .experiences-section .experience-center .section-head .theme-btn {
    padding: 10px 25px;
    font-size: 12px;
  }
  .journey-section .journey-content {
    padding: 0 20px;
  }
  .journey-section .journey-content .section-head .section-title {
    font-size: 2.8rem;
  }
  .journey-section .journey-content .bespoke-list-wrap .bespoke-list li {
    text-align: left;
  }
  .hosts-section .container .hosts-inner .hosts-girl-col {
    flex: 0 0 8%;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .section-head .section-title {
    font-size: 2.8rem;
  }
  .hosts-section .hosts-bg-wrap {
    width: 95%;
  }
  .best-of-srilanka-section .section-head .section-title {
    font-size: 2.8rem;
  }
  .best-of-srilanka-section .section-head .slider-title-wrap .slick-nav {
    font-size: 60px;
  }
  .best-of-srilanka-section .package-card .card-image {
    height: 200px;
  }
  .section-head {
    margin-bottom: 20px;
  }
  .section-head .section-title {
    font-size: 2.8rem;
  }
  .testimonials-section {
    margin: 0;
  }
  .site-footer .footer-main .footer-brand .footer-logo-img {
    width: 100px;
  }
  .site-footer .footer-main .footer-newsletter {
    padding-left: 20px;
    padding-right: 70px;
  }
  .site-footer .footer-main .footer-newsletter .newsletter-title {
    font-size: 13px;
  }
  .site-footer .footer-main .footer-newsletter .newsletter-form .newsletter-input {
    font-size: 12px;
  }
  .site-footer .footer-bottom .bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .site-footer .footer-bottom .bottom-content .footer-links-bottom {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .theme-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
  .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item, .page-template-page-about-php .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-top, .page-template-page-about-php .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-bottom {
    width: 150px;
    height: 150px;
  }
  .page-template-page-about-php .gateway-section .gateway-content-col {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-template-page-about-php .why-book-section .why-book-grid .why-book-item .why-book-desc {
    max-width: 320px;
  }
  .page-template-page-about-php .section-head .section-title {
    font-size: 2.3rem;
  }
  .page-template-page-tours-php .tour-list-card .card-img-col {
    flex: 0 0 250px;
  }
  .page-template-page-tours-php .tour-list-card .card-content-col {
    padding: 0 10px 25px;
  }
  .page-template-page-contact-us-php .experiences-list-section .experiences-list-item {
    padding: 0 20px;
    margin-bottom: 80px;
  }
  .page-template-page-contact-us-php .feedback-section .section-head .slider-title-wrap .slick-nav {
    font-size: 60px;
  }
  .page-template-page-contact-us-php .feedback-section .section-head .slider-title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 20px;
  }
  .page-template-page-contact-us-php .question-section .container .question-right-col .question-right-inner .question-girl-col img {
    width: 100%;
    height: 170px;
  }
  .page-template-page-contact-us-php .question-section .container .question-right-col .question-right-inner .question-girl-col {
    flex: 0 0 150px;
  }
  .page-template-page-tours .section-head .section-title {
    font-size: 2.7rem;
  }
  .page-template-page-tours .locally-tours-section {
    padding: 0px 0 70px;
  }
  .page-template-page-transport-php .section-head .section-title {
    font-size: 2rem;
  }
  .page-template-page-transport-php .transport-section .transport-cards-col .transport-card .transport-options {
    flex-direction: column;
  }
  .page-template-page-transport-php .transport-section .transport-cards-col .transport-card .transport-options .transport-option {
    text-align: center;
    margin: 0 auto;
  }
  .page-template-page-transport-php .transport-section .transport-cards-col .transport-card .transport-options .transport-option .option-icon {
    margin: 0 auto 20px;
  }
  .page-template-page-transport-php .theme-btn {
    border-radius: 20px;
  }
  .page-template-page-contact-us .contact-section {
    padding: 20px 0;
  }
  .page-template-page-contact-us .contact-section .contact-content-col .section-head .section-title {
    letter-spacing: 0;
  }
}
@media (max-width: 479.98px) {
  .experiences-section .experience-center .section-head .section-title {
    font-size: 2rem;
    padding: 0;
  }
  .journey-section .journey-content .section-head .section-title {
    font-size: 2.2rem;
  }
  .journey-section .journey-content .bespoke-list-wrap .bespoke-list {
    margin: 0;
    -moz-column-count: 1;
    column-count: 1;
  }
  .hosts-section {
    margin-top: 25px;
  }
  .hosts-section .container .hosts-inner .hosts-content-col .section-head .section-title {
    font-size: 3.2rem;
  }
  .best-of-srilanka-section .section-head {
    margin-bottom: 15px;
  }
  .best-of-srilanka-section .section-head .section-title {
    font-size: 2.2rem;
  }
  .best-of-srilanka-section .section-head .slider-title-wrap .slick-nav {
    font-size: 50px;
  }
  .section-head .section-title {
    font-size: 2.2rem;
  }
  .site-footer .footer-main .footer-newsletter {
    padding-left: 0px;
    padding-right: 0px;
  }
  .site-footer .footer-main .footer-newsletter .newsletter-title {
    font-size: 14px;
    text-align: center;
  }
  .site-footer .footer-main .footer-newsletter .social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .site-footer .footer-main .footer-nav-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .site-footer .footer-main .footer-nav-wrap .footer-nav-col li {
    text-align: center;
    margin-bottom: 10px;
  }
  .site-footer .footer-main .footer-nav-wrap .footer-nav-col li a {
    font-size: 14px;
  }
  .site-footer .footer-main .footer-column:nth-child(1) {
    width: 100%;
  }
  .site-footer .footer-main .footer-column:nth-child(1) .footer-brand {
    display: flex;
    justify-content: center;
  }
  .site-footer .footer-main .footer-column:nth-child(3) {
    width: 100%;
  }
  .site-footer .footer-main .footer-column:nth-child(3) .footer-newsletter {
    margin-left: 0;
  }
  .testimonials-section .container .testimonials-slide {
    padding: 35px 5px;
  }
  .page-template-page-about-php .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item, .page-template-page-about-php .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-top, .page-template-page-about-php .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery .gallery-item-bottom {
    width: 130px;
    height: 130px;
  }
  .transport-section .transport-footer {
    margin-top: 25px;
    flex-direction: column;
  }
  .transport-section .transport-footer .theme-btn {
    width: 100%;
    max-width: 350px;
    border-radius: 100px;
    padding: 12.5px 0;
  }
  .page-template-page-contact-us .section-head .section-title {
    font-size: 2.5rem;
  }
  .page-template-page-contact-us .feedback-section {
    padding: 0px 0 75px;
  }
  .page-template-page-tours .tours-list-section {
    padding: 15px 0 30px;
  }
}
@media (max-width: 420.98px) {
  .site-header .header-wrapper .nav-left.brand-logo img {
    top: -27px;
    height: 130px;
  }
  .site-header.scrolled .header-wrapper .nav-left.brand-logo img {
    height: 120px;
    top: -27px;
  }
  .hosts-section .container .hosts-inner .hosts-content-col {
    padding: 60px 0px;
  }
  .journey-section .journey-content {
    padding: 0;
  }
  .journey-section .journey-content .bespoke-list-wrap .bespoke-list li {
    font-size: 11px;
  }
  .site-footer .footer-main .footer-brand .footer-logo-img {
    width: 80px;
  }
  .site-footer .footer-main .footer-newsletter .newsletter-form {
    padding: 0px 0px 0px 9px;
  }
  .site-footer .footer-main .footer-newsletter .newsletter-form .newsletter-input {
    font-size: 9px;
  }
  .theme-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
  .page-template-page-about-php .gateway-section .gateway-gallery-col .gateway-gallery {
    justify-content: center;
    display: none;
  }
  .page-template-page-about-php .gateway-section .section-head {
    margin-bottom: 5px;
  }
  .page-template-page-experience-php .experiences-list-section .experiences-list-item {
    padding: 0 20px;
  }
  .page-template-page-tours-php .tour-list-card .card-img-col {
    flex: 0 0 200px;
  }
  .page-template-page-tours-php .tour-list-card .card-price-col {
    padding: 10px 20px;
  }
  .page-template-page-contact-us .question-section .container .question-right-col .question-right-inner .question-contact-col .contact-name {
    font-size: 16px;
  }
  .page-template-page-contact-us .question-section .container .question-right-col .question-right-inner .question-contact-col .contact-details li a {
    font-size: 12px;
  }
  .page-template-page-contact-us .question-section .container .question-right-col .question-right-inner .question-contact-col .contact-hours {
    font-size: 11px;
  }
  .page-template-page-contact-us .page-template-page-contact-us .contact-section .contact-content-col .section-head .section-title {
    font-size: 2.2rem;
  }
  .page-template-page-contact-us .page-template-page-contact-us .contact-form-section .contact-form-wrap .form-checkbox-wrap .form-checkbox-label {
    font-size: 12px;
  }
  .page-template-page-contact-us .page-template-page-contact-us .contact-section .contact-content-col .section-head .section-description {
    font-size: 14px;
  }
  .page-template-page-contact-us .page-template-page-contact-us .feedback-section .feedback-carousel .slick-slide.feedback-card .wrap .feedback-quote {
    font-size: 0.8rem;
  }
  .page-template-page-contact-us .question-section .container .question-content-col .question-title {
    font-size: 1.4rem;
  }
}
