/** Shopify CDN: Minification failed

Line 250:13 Expected identifier but found whitespace
Line 250:15 Unexpected "{"
Line 250:24 Expected ":"
Line 269:8 Expected identifier but found whitespace
Line 269:10 Unexpected "{"
Line 269:19 Expected ":"
Line 292:13 Expected identifier but found whitespace
Line 292:15 Unexpected "{"
Line 292:24 Expected ":"
Line 323:8 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:category-showcase-section (INDEX:7) */
.category-showcase-section {
  padding: 80px 20px;
  background: #f8f8f8;
  overflow: hidden;
}

.category-showcase-wrapper {
  max-width: 1400px;
  margin: auto;
}

.category-showcase-heading {
  text-align: center;
  margin-bottom: 50px;
}

.category-showcase-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.category-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 620px;
  background: #ddd;
  transform: translateY(70px);
  opacity: 0;
  transition:
    transform 0.8s cubic-bezier(.22,.61,.36,1),
    opacity 0.8s ease,
    box-shadow 0.4s ease;
}

.category-card.show {
  transform: translateY(0);
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.category-card-image {
  position: absolute;
  inset: 0;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.18) 45%,
      rgba(0,0,0,0.02) 100%);
}

.category-card-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
}

.category-card-subtitle {
  font-size: 16px;
  margin-bottom: 12px;
  opacity: 0.9;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.category-card-title {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.category-card:hover .category-card-title,
.category-card:hover .category-card-subtitle {
  transform: translateY(0);
}

.category-card-button-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.category-card-text {
  font-size: 17px;
  opacity: 0.95;
}

.category-card-button {
  width: 62px;
  height: 62px;
  border-radius: 100px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: translateX(25px);
  transition: all 0.45s ease;
}

.category-card:hover .category-card-button {
  opacity: 1;
  transform: translateX(0);
}

.category-card-button svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.category-slider {
  overflow-x: auto;
  scrollbar-width: none;
}

.category-slider::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 1024px) {
  .category-card {
    min-height: 520px;
  }

  .category-card-title {
    font-size: 34px;
  }
}

@media screen and (max-width: 768px) {
  .category-showcase-section {
    padding: 60px 16px;
  }

  .category-showcase-heading h2 {
    font-size: 30px;
  }

  .category-slider {
    overflow-x: auto;
  }

  .category-showcase-grid {
    display: flex;
    gap: 18px;
    width: max-content;
    padding-bottom: 10px;
  }

  .category-card {
    width: 82vw;
    min-width: 82vw;
    min-height: 500px;
    border-radius: 24px;
  }

  .category-card-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .category-card-title {
    font-size: 30px;
  }

  .category-card-subtitle {
    font-size: 14px;
  }

  .category-card-text {
    font-size: 15px;
  }

  .category-card-button {
    opacity: 1;
    transform: translateX(0);
    width: 56px;
    height: 56px;
  }
}
/* END_SECTION:category-showcase-section */

/* START_SECTION:custom-testiononial (INDEX:18) */
.review-slider-section {
  padding: 80px 20px;
  background: {{ section.settings.bg_color }};
  overflow: hidden;
}

.review-slider-wrapper {
  max-width: 1500px;
  margin: 0 auto;
}

.review-slider-heading {
  text-align: center;
  margin-bottom: 50px;
}

.review-slider-heading h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: {{ section.settings.heading_color }};
}

.review-slider-track {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.review-slider {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: sliderMove 35s linear infinite alternate;
}

.review-slider-track:hover .review-slider {
  animation-play-state: paused;
}

.review-card {
  width: 340px;
  min-width: 340px;
  background: {{ section.settings.card_bg }};
  border-radius: 24px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.review-image {
  width: 100%;
  overflow: hidden;
}

.review-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.review-content {
  padding: 22px;
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: {{ section.settings.text_color }};
  margin-bottom: 14px;
}

.review-author {
  font-size: 18px;
  font-weight: 600;
  color: {{ section.settings.author_color }};
}

.image-only .review-content {
  display: none;
}

@keyframes sliderMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% + 100vw));
  }
}

@media screen and (max-width: 1200px) {
  .review-card {
    width: 300px;
    min-width: 300px;
  }
}

@media screen and (max-width: 991px) {

  .review-slider-section {
    padding: 60px 15px;
  }

  .review-slider-heading h2 {
    font-size: 34px;
  }

  .review-slider {
    gap: 18px;
    animation-duration: 28s;
  }

  .review-card {
    width: 260px;
    min-width: 260px;
    border-radius: 20px;
  }

  .review-content {
    padding: 18px;
  }

  .review-text {
    font-size: 15px;
  }

  .review-author {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {

  .review-slider-section {
    padding: 50px 12px;
  }

  .review-slider-heading {
    margin-bottom: 35px;
  }

  .review-slider-heading h2 {
    font-size: 26px;
  }

  .review-slider {
    gap: 14px;
    animation-duration: 24s;
  }

  .review-card {
    width: 220px;
    min-width: 220px;
    border-radius: 16px;
  }

  .review-content {
    padding: 16px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .review-author {
    font-size: 15px;
  }
}
/* END_SECTION:custom-testiononial */

/* START_SECTION:travelate-feature-section (INDEX:74) */
.travelate-feature-section {
  background: transparent;
  overflow: hidden;
}

.travelate-feature-wrapper {
  max-width: 100%;
  margin: auto;
}

.travelate-feature-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: transparent;
  overflow: hidden;

  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(.22,.61,.36,1);
}

.travelate-feature-box.show {
  opacity: 1;
  transform: translateY(0);
}

.travelate-feature-box.image-right {
  flex-direction: row-reverse;
}

.travelate-feature-image {
  width: 50%;
  position: relative;
  min-height: 560px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f5f5f5;
}

.travelate-feature-image img {
  width: 58%;
  max-width: 420px;
  object-fit: contain;
  transition: transform 0.8s ease;
}

.travelate-feature-box:hover .travelate-feature-image img {
  transform: scale(1.04) rotate(-2deg);
}

.travelate-feature-content {
  width: 50%;
  padding: 40px 70px;
}

.travelate-feature-heading {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.travelate-feature-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
  margin-bottom: 28px;
}

.travelate-feature-btn {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  border: 2px solid #42a1cf;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.4s ease;
  text-decoration: none;
}

.travelate-feature-btn:hover {
  background: #42a1cf;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(66,161,207,0.28);
}

.travelate-feature-btn svg {
  width: 28px;
  height: 28px;
  stroke: #111;
  transition: all 0.4s ease;
}

.travelate-feature-btn:hover svg {
  stroke: #fff;
}

/* Tablet */
@media screen and (max-width: 991px) {

  .travelate-feature-box,
  .travelate-feature-box.image-right {
    flex-direction: column;
    gap: 0;
  }

  .travelate-feature-image {
    width: 100%;
    order: 1;
    min-height: 420px;
  }

  .travelate-feature-image img {
    width: 52%;
    max-width: 300px;
  }

  .travelate-feature-content {
    width: 100%;
    order: 2;
    padding: 40px 24px 50px;
  }

  .travelate-feature-heading {
    font-size: 30px;
  }

  .travelate-feature-text {
    font-size: 15px;
    max-width: 100%;
  }
}

/* Mobile */
@media screen and (max-width: 576px) {

  .travelate-feature-image {
    min-height: 320px;
  }

  .travelate-feature-image img {
    width: 62%;
    max-width: 240px;
  }

  .travelate-feature-content {
    padding: 30px 18px 40px;
  }

  .travelate-feature-heading {
    font-size: 24px;
    line-height: 1.2;
  }

  .travelate-feature-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .travelate-feature-btn {
    width: 56px;
    height: 56px;
  }

  .travelate-feature-btn svg {
    width: 24px;
    height: 24px;
  }
}
/* END_SECTION:travelate-feature-section */

/* START_SECTION:travelet-cta (INDEX:75) */
.travalate-cta-banner{
  /* padding: 40px 20px; */
  background: #ffffff;
}

.travalate-banner-wrap{
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  cursor: pointer;
}

.travalate-banner-img{
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.desktop-banner{
  display: block;
}

.mobile-banner{
  display: none;
}

.banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.18),
    rgba(66,161,207,0.12)
  );
  transition: all .5s ease;
  z-index: 1;
}

.travalate-banner-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: inherit;
  z-index: 3;
  pointer-events: none;
}

/* .travalate-banner-wrap:hover .travalate-banner-img{
  transform: scale(1.05);
} */

.travalate-banner-wrap:hover .banner-overlay{
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.08),
    rgba(66,161,207,0.25)
  );
}

.travalate-banner-wrap:hover{
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

@media screen and (max-width: 768px){

  .travalate-cta-banner{
    padding: 20px 14px;
  }

  .desktop-banner{
    display: none;
  }

  .mobile-banner{
    display: block;
    width: 100%;
  }

  .travalate-banner-wrap{
    border-radius: 22px;
  }

  .travalate-banner-wrap:hover .travalate-banner-img{
    transform: scale(1.02);
  }
}
/* END_SECTION:travelet-cta */