/*  ----------------------------- offer section -------------------- */
.offers-wrap {
  padding: 32px var(--page-padding-8) 64px var(--page-padding-8);
}
.offers {
  position: relative;
  display: flex;
  flex: 1;
}
.offers-float {
  /* background-color: green; */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  gap: 16px;
}
.offer {
  border: solid 1px var(--color-border);
  border-radius: 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px;
  flex: 1;
  height: 80px;
  min-width: 380px;
  box-sizing: border-box;
  /* background-color: #e99b05; */
}
.offer:hover {
  background-color: #f5f7f9;
}
.offer-disc-box {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
}
.offer-discription {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-primary-dark);
}
.offer-iconContainer {
  display: flex;
  min-width: 56px;
  min-height: 56px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
}
.offer-iconContainer-date {
  background-color: #fcf3e1;
}
.offer-iconContainer-dairwave {
  background-color: #e8f4fd;
}
.offer-iconContainer-skiing {
  background-color: #faeaea;
}
.offer-icon-date {
  color: #e99b05;
}
.offer-icon-dairwave {
  color: #0172cb;
}
.offer-icon-skiing {
  color: #d21c1c;
}
.offer-iconContainer span {
  font-size: 24px;
}
.offer-btn {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}
.offers-ellipse-bar {
  display: none;
}

/*------------------------- main Slider -----------------------------*/
.home-slider-wrap {
  padding: 0px var(--page-padding-8);

  height: 400px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
}
.home-slider-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: center;
}
.home-slide {
  background-color: #e8f4fd;
  display: flex;
  flex: 1;
}

/* ------------------------- Tur theme -------------------------------- */
.tur-theme-wrap {
  padding: 64px var(--page-padding-8);
}
.tur-theme-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.tur-theme {
  /* background-color: #e99b05; */
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
  margin-top: 20px;
}
.tur-theme-up {
  /* background-color: blue; */
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 24px;
  flex-wrap: wrap;
}
.tur-theme-up-left {
  /* background-color: green; */
  display: flex;
  flex: 1;
  gap: 0px;
  /* min-width: 500px; */
}
.tur-theme-up-right {
  /* background-color: blueviolet; */
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.tur-theme-down {
  /* background-color: #e99b05; */
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 24px;
  flex-wrap: wrap;
}

.tur-card-top {
  height: 400px;
  min-width: 320px;
  flex: 1;
  /* width: 580px; */
}
.tur-card-right {
  height: 188px;
  min-width: 320px;
  /* width: 580px; */
}
.tur-card-down {
  height: 300px;
  flex: 1;
  min-width: 250px;
  /* width: 382px; */
}

.tur-card-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: relative;
}

/*---------------------------- Elci tur --------------------------------*/

@media screen and (max-width: 600px) {
  /* Hide scrollbar for chrome, safari and opera */
  .hero-tabs::-webkit-scrollbar {
    display: none;
  }

  /* --------------------------- offer section ------------------------ */
  .offers-wrap {
    padding: 48px 16px;
  }
  .offers {
    position: relative;
    overflow: hidden;
    overflow-x: scroll;
    height: 120px;
    display: flex;
    flex: 1;

    /* Hide scrollbar for firefox */
    scrollbar-width: none;
    /* Hide scrollbar for Edge- IE */
    -ms-overflow-style: none;

    /* background-color: blue */
  }
  .offers-float {
    position: absolute;
    display: flex;
    flex: 1;
    left: 0px;
    top: 0px;
    flex-wrap: nowrap;
    /* background-color: yellow; */
  }
  .offer {
    /* flex-wrap: wrap; */
    height: 120px;
    min-width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 0px;
    flex-direction: column;
    align-items: end;
  }
  .offer-disc-box {
    width: 100%;
  }

  /* ----------------------- */

  .theme-title-container {
    text-align: center;
  }

  /* --------------------------- Tur theme --------------------------- */
  .tur-theme-wrap {
    padding: 48px 0px;
  }
  .tur-theme {
    flex-direction: row;
    gap: 24px;

    overflow-y: hidden;
    overflow-x: scroll;
    padding-left: 16px;
    padding-right: 16px;

    /* Hide scrollbar for firefox */
    scrollbar-width: none;
    /* Hide scrollbar for Edge- IE */
    -ms-overflow-style: none;
  }
  /* Hide scrollbar for chrome, safari and opera */
  .tur-theme::-webkit-scrollbar {
    display: none;
  }
  .tur-theme-up,
  .tur-theme-up-left,
  .tur-theme-down {
    flex-wrap: nowrap;
  }
  .tur-theme-up-right {
    flex-direction: row;
  }
  .tur-card-top,
  .tur-card-right,
  .tur-card-down {
    width: 320px;
    height: 200px;
  }

  /* --------- Elci tur theme ----------- */
  .elci-tur-wrap {
    padding: 48px 0px;
  }
  .elci-tur-slider {
    overflow-y: hidden;
    overflow-x: scroll;

    /* Hide scrollbar for firefox */
    scrollbar-width: none;
    /* Hide scrollbar for Edge- IE */
    -ms-overflow-style: none;
  }
  /* Hide scrollbar for chrome, safari and opera */
  .elci-tur-slider::-webkit-scrollbar {
    display: none;
  }
  .elci-tur-slider-float {
    padding-left: 16px;
    padding-right: 16px;
  }
  .elci-tur-slider-nav-btn {
    display: none;
  }
  .elci-tur-card {
    width: 320px;
    /* background-color: red; */
  }
  .elci-tur-card-img {
    width: 296px;
    height: 132px;
  }
  .elci-tur-context {
    padding: 0px 16px 48px 16px;
  }
}
