/* *************************************** */
/* VARIABLES */
/* *************************************** */

:root {
  --font-family-1: "Montserrat", "Source Sans Pro", sans-serif;
  --font-family-2: "Oswald", sans-serif;

  --color-white: #fff;
  --color-primary: #da5655;
  --color-secondary: rgb(145, 31, 16);
  --color-tertiary: #ce2e2d;

  --color-black: rgba(0, 0, 0);
  --color-black-2: #1e1e1e;
  --color-blue: #0e3547;
  --color-background: #eff2f3;

  --color-grey-1: #333;
  --color-grey-2: rgb(232, 232, 232);
  --color-grey-3: rgb(243, 243, 247);
  --color-grey-4: rgb(248, 248, 249);
}

/* *************************************** */
/* GLOBAL RESET */
/* *************************************** */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;

  overflow-x: hidden;
}
body {
  font-family: var(--font-family-1);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-grey-1);

  overflow-x: hidden;
}

/**********************************/
/*GENERAL CLASSES*/
/**********************************/

.container--hero {
  /* 1140px usually selected by the developers. */
  max-width: 120rem;
  margin: 0 auto;
}
.container--tours {
  max-width: 129.9rem;
  margin: 0 auto;
  padding: 0 2rem;

  position: relative;
}
.container--review {
  max-width: 129.4rem;
  margin: 0 auto;
  padding: 0 2rem;

  position: relative;
}

.container--cta {
  /* 1140px usually selected by the developers. */
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.heading__secondary {
  font-family: var(--font-family-2);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 4rem;
  color: var(--color-secondary);
  text-align: center;
}
.heading__secondary--white {
  font-family: var(--font-family-2);
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 400;
  font-variant: var(--color-white);
  text-align: center;
}

.text__center {
  text-align: center;
}

.btn,
.btn:link,
.btn:hover {
  cursor: pointer;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-family: var(--font-family-1);
  text-transform: capitalize;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;

  border-radius: 100px;
  display: inline-block;
  transition: 0.15s background-color cubic-bezier(0.58, 0.3, 0.51, 0.82),
    0.15s color cubic-bezier(0.58, 0.3, 0.51, 0.82);
}
.btn__hero:link,
.btn__hero:visited {
  padding: 1.6rem 3.2rem;
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn__hero:hover,
.btn__hero:active {
  background-color: var(--color-tertiary);
  color: var(--color-white);
}

.btn__tour:link,
.btn__tour:visited {
  font-size: 1.4rem;
  display: block;
  padding: 1.2rem 2.4rem;
  color: var(--color-white);
  background-color: var(--color-primary);
  text-align: center;
}

.mg__bottom-1 {
  margin-bottom: 6.2rem;
}

/**********************************/
/*HEADER*/
/**********************************/
.header {
  padding: 1.4rem 0;
  background-color: transparent;

  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.2s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
  z-index: 1000;
  height: 123px;
}

/* .header__nav {
  max-height: calc(256.094px);
} */

/* //////////////// */

.header.shrink {
  padding: 1.4rem 0;
}

.desktop__header__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo-box {
  opacity: 1;
  transition: 0.15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
  cursor: pointer;
}

.header__logo-box:hover {
  opacity: 0.8;
}

.header__box {
  position: relative;
}

.header__logo {
  display: block;
  max-height: 88px;
  transition: 0.2s cubic-bezier(0.58, 0.3, 0.51, 0.82) max-height;
  margin-bottom: 7px;
}
.link__blog {
  display: none;
}

.header.shrink .header__logo {
  max-height: 60px;
}
.header.shrink .link__blog {
  display: block;
}

.header.shrink .link__more--1 {
  display: none;
}

.header.shrink {
  background-color: rgba(145, 31, 16, 0.9);
  height: 95px;
}
/* .header.shrink .header__nav {
  max-height: calc(277px);
} */

.header__nav-list {
  list-style: none;
}

.header__nav-link:link,
.header__nav-link:visited,
.mobile__nav-link:link,
.mobile__nav-link:visited {
  font-size: 1.65rem;
  line-height: 1.65rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  color: var(--color-white);
  font-family: var(--font-family-1);
  transition: 0.15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
  display: flex;
  align-items: center;
  text-transform: uppercase;
  opacity: 1;
  text-shadow: 1px 1px 3px rgba(3, 0, 0, 0.6);
  padding: 2.2rem 1.2rem;
  -webkit-box-pack: justify;
  letter-spacing: -0.5px;
  /* transform: scaleY(1.05); */

  gap: 1rem;
  position: relative;
  /* white-space: nowrap; */
}

.link__dropdown::after,
.link__dropdown::before {
  content: "";
  display: block;
  position: absolute;
  margin-top: -3px;
  height: 8px;
  width: 2px;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  background-color: rgb(230, 230, 230);

  transition: 0.15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
}

.link__dropdown:link,
.link__dropdown:visited {
  position: relative;
  padding: 2.2rem 3.2rem 2.2rem 1.2rem;
}
.link__dropdown::before {
  margin-right: 5px;
  right: 1.6rem;
  transform: rotate(-45deg);
}

.link__dropdown::after {
  transform: rotate(45deg);
  right: 1.6rem;
}

.link__dropdown:hover::before {
  transform: rotate(45deg);
}

.link__dropdown:hover::after {
  transform: rotate(-45deg);
}
.link__border::after {
  background-color: var(--color-secondary);
  border-radius: 0;
  bottom: 14px;
  content: "";
  height: 2px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: calc(100% - 24px);
  z-index: -1;
}

.mobile__nav-link:link,
.mobile__nav-link:visited {
  justify-content: space-between;
}

.fa-chevron-down,
.fa-chevron-up {
  font-size: 1.2rem;
}

.header__nav-link:hover,
.header__nav-link:active {
  opacity: 0.8;
}

.link__dropdown:hover,
.link__dropdown:active {
  opacity: 1;
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 2.4rem; */
}

/* ******************* SUB-MENU   ******************* */

.submenu {
  z-index: 1001;

  border: 1px solid var(--color-grey-background--1);

  border-radius: 4px;
  transform: scale(0.9) translateY(-20px);
  box-shadow: 0 10px 50px 0 rgba(8, 9, 14, 0.25);
  opacity: 0;
  transition: 0.15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
  visibility: hidden;
  display: block;
  background-color: rgb(145, 31, 16);
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  /* width: 100%; */
}

.submenu--variant {
  min-width: 230px;
}
.header__nav-item {
  position: relative;
}

.header__nav-item.show-submenu .submenu {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.header__nav-item:hover .submenu {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.submenu__list {
  list-style: none;
  /* display: flex;
  flex-direction: column;
  gap: 4rem; */
}

.submenu__link:link,
.submenu__link:visited,
.mobile__submenu__link:link,
.mobile__submenu__link:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.95rem 1.9rem;
  box-shadow: inset 0 -1px 0 0 rgba(8, 9, 14, 0.05);
  text-transform: uppercase;
  transition: 0.15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
  display: flex;
  align-items: center;
}

.mobile__submenu__link:link,
.mobile__submenu__link:visited {
  font-size: 1.4rem;
  padding: 0.6rem 0 0.6rem 3rem;
  box-shadow: inset 0 -1px 0 0 rgba(8, 9, 14, 0.05);
  display: flex;
}

.submenu__link:hover,
.mobile__submenu__link:hover,
.mobile__submenu__link:active,
.submenu__link:active {
  color: rgb(229, 229, 229);
  text-decoration: underline;
  transform: translateX(5px);
}

.submenu__list li:hover {
  background-color: rgb(130, 28, 14);
}

/* .submenu__list li {
  position: relative;
}

.submenu__list li::after {
  background-color: rgb(130, 28, 14);
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 10px;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.25s ease-in-out;
  z-index: 5;
  opacity: 0;
}

.submenu__link:hover .submenu__list li {
  opacity: 1;
} */

.submenu__img {
  width: 100%;
}
.submenu__text {
  font-size: 1.6rem;
  line-height: 1.6;
}

.mobile__nav__chevron {
  font-size: 1.2rem;
}

/* ///////////////search ///////////////*/

.header__inner__container {
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: right; */
  margin: 0 2rem;
  /* padding-top: 1rem; */
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header__form {
  display: none;
  left: -7%;
  margin: 0;
  position: absolute;
  right: 4.8rem;
  z-index: 1;
  animation-duration: 0.15s;
  animation-fill-mode: both;
}

.header.shrink .header__form {
  left: -4%;
}

.header__form.search--active {
  animation-name: fadeIn;
  display: block;
}

.header__form input {
  opacity: 1;
  border-width: 1px;
  border-radius: 4px;
  padding: 0 4.8rem 0 2rem;
  height: 4.8rem;
  transition: 0.15s cubic-bezier(0.58, 0.3, 0.51, 0.82);

  font-size: 1.6rem;
  display: block;
  margin-bottom: 0;
  border: 1px solid #9badb8;
  background: #fafbfc;
  box-shadow: none;
  color: #152833;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  appearance: none;
  width: 100%;
}

.header__form input::placeholder {
  font-size: 1.6rem;
  color: #888;
}
.btn__submit {
  background: 0 0;
  border: 0;
  bottom: 0;
  box-shadow: none;
  height: 4.8rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.8rem;
  cursor: pointer;
}

.icon__submit {
  display: block;
  fill: #b2b8c1;
  height: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 16px;
}

.btn__search__toggle {
  background: 0 0;
  border: 0;
  cursor: pointer;
  display: block;
  padding: 1.6rem;
}

.btn__search__toggle .icon {
  display: block;
  fill: var(--color-white);
  height: 1.6rem;
  width: 1.6rem;
}

.btn__search__toggle .header__toggle__search {
  display: block;
}
.btn__search__toggle .header__toggle__times {
  display: none;
}
.search__toggle--active .icon-search {
  display: none;
}
.search__toggle--active .icon-times {
  display: block;
}

.link__more--3 {
  display: none;
}
.link__more--2 {
  display: none;
}

.iseland__submenu {
  top: 0;
  left: -115%;
  font-size: 1.4rem;
  display: none;
}

.link__more--3:hover .iseland__submenu {
  display: block;
}
/* *************************************** */
/* MOBILE NAVIGATION */
/* *************************************** */

.mobile__nav .mobile__nav-link:link,
.mobile__nav-link:visited {
  background-color: rgb(145, 31, 16);
  font-size: 1.6rem;
  letter-spacing: 0.16px;
  color: var(--color-white);
  padding: 1.6rem 2rem;

  padding-bottom: 1rem;
}
.nav__checkbox {
  display: none;
}

.header__mob__form {
  display: block;
  position: relative;
  left: 0;
  right: 0;
}

.mobile__nav-item-last {
  background-color: transparent;
}

.header.shrink .header__mob__form {
  left: 0;
}
.mobile__nav {
  background-color: rgb(145, 31, 16);
  position: fixed; /* Changed from absolute to fixed */
  top: 72px;
  right: 0;
  width: 100%;
  height: 261px;
  overflow-y: auto; /* Added vertical scrolling */
  border: 0 0 4px 4px;
  /* display: flex;
  align-items: flex-start; Changed from center to flex-start */
  /* padding: 12rem 3rem 8rem; */
  transform: scale(0.99) translateY(-10px);
  box-shadow: 0px 10px 25px 0px rgba(8, 9, 14, 0.25);
  opacity: 0;
  pointer-events: none;
  transform-origin: 100% 0;
  transition: 0.15s all cubic-bezier(0.58, 0.3, 0.51, 0.82);
}

/* Initially hide the submenu */
.mobile__submenu {
  display: none;
}

/* Open submenu class */
.mobile__submenu--open {
  display: block;
}

.nav__checkbox:checked ~ .mobile__nav {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.mobile__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;

  /* gap: 1.5rem; */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.nav__checkbox:checked ~ .mobile__nav .mobile__nav-list {
  opacity: 1;
  visibility: visible;
}

.mobile__submenu {
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile__submenu--open {
  height: auto;
}

.mobile__submenu__list {
  list-style: none;
}

.menu {
  color: rgb(218, 86, 85);
  text-transform: uppercase;
  letter-spacing: 0.24px;
  line-height: 2rem;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
}

.nav-btn {
  display: none;
  cursor: pointer;
  background-color: rgba(218, 85, 85);
  height: 2px;
  width: 14px;
  position: relative;
  z-index: 1000;
  transition: background-color 0.2s;
}
.nav-btn::before,
.nav-btn::after {
  content: "";
  display: inline-block;
  background-color: rgba(218, 85, 85);
  height: 2px;
  /* width: 3rem; */
  position: absolute;
  right: 0;
  transition: all 0.2s;
}
.nav-btn::before {
  top: -0.6rem;
  width: 20px;
}
.nav-btn::after {
  top: 0.6rem;
  width: 18px;
}

.mobile__nav-btn {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  height: 35px;
  /* width: 45px; */
  z-index: 999999;
  gap: 1.5rem;

  display: none;
}

.nav__checkbox:checked + .mobile__nav-btn .nav-btn {
  background-color: transparent;
}
.nav__checkbox:checked + .mobile__nav-btn .nav-btn::before {
  width: 16px;
  transform: rotate(45deg);
  top: 0;
}
.nav__checkbox:checked + .mobile__nav-btn .nav-btn::after {
  width: 16px;
  transform: rotate(-45deg);
  top: 0;
}

/**********************************/
/*SECTION HERO*/
/**********************************/

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Background image fills the full viewport height */
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/hero-background-img.webp);
  background-size: cover;
  background-position: center;
  z-index: -1; /* Ensure it's behind the content */
}

.section__hero {
  padding: 20.3rem 0 8rem 0;
  color: var(--color-white);
  /* z-index: 2; */
}

/*
.section__hero {
  position: relative;
  /* min-height: 100vh; 
  background-image: url(../imgs/hero-background-img.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  padding: 20.3rem 0 8rem 0;

  z-index: 2;
  /* transform: scaleX(1.01); 
}

.section__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
    0deg,
    rgba(8, 9, 14, 0.4) 0%,
    rgba(8, 9, 14, 0.4) 100%
  );
  z-index: -1;
}
*/
.hero__text__box {
  z-index: 2;
  padding: 0 2rem;
  min-height: 360px;

  display: flex;
  align-items: center;
  max-width: calc(1160px + 40px);
  width: 100%;
}

.heading__primary__main {
  font-size: 6.4rem;
  line-height: 1.125;
  font-weight: 400;
  font-family: var(--font-family-2);
}

.heading__primary__sub {
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 400;
  font-family: var(--font-family-2);
}

.hero__text {
  font-size: 2.2rem;
  font-weight: 400;
  font-family: var(--font-family-1);

  margin-bottom: 4rem;
}

/**********************************/
/*SECTION TOURS*/
/**********************************/
.section__tours {
  background-color: var(--color-white);
  padding: 8rem 0 14.5rem;
}

.tour {
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.15s cubic-bezier(0.58, 0.3, 0.51, 0.82);
  color: rgb(8, 9, 14);

  width: 100%;
  height: 100%px;
}
.tours-slide {
  min-height: 600px;
}

.tour__img__box:link,
.tour__img__box:visited {
  text-decoration: none;
  height: 24rem;
  padding: 2rem;
  box-sizing: border-box;
  width: 100%;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.tour__img__box:hover,
.tour__img__box:active {
  opacity: 0.85;
}
.tour__heading__link:hover .tour__heading__main {
  opacity: 0.5;
}
.tour__heading__link:hover .tour__heading__sub {
  opacity: 0.5;
}
.tour:hover .tour__heading__main {
  opacity: 0.5;
}
.tour:hover .tour__heading__sub {
  opacity: 0.5;
}
.tour__img__box:hover .tour__heading__main {
  opacity: 0.5;
}
.tour__img__box:hover .tour__heading__sub {
  opacity: 0.5;
}

.tour:hover {
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.08), 0 12px 18px 0 rgba(0, 0, 0, 0.1);
}

.tour__flex--1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* gap: 3rem; */
}

.tour__img__box--1 {
  display: inline-block;
  background-image: url(../imgs/tour-1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tour__img__box--2 {
  display: inline-block;
  background-image: url(../imgs/tour-2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tour__img__box--3 {
  display: inline-block;
  background-image: url(../imgs/tour-3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tour__img__box--4 {
  display: inline-block;
  background-image: url(../imgs/tour-4.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tour__img__box--5 {
  display: inline-block;
  background-image: url(../imgs/tour-5.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tour__img__box--6 {
  display: inline-block;
  background-image: url(../imgs/tour-6.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.tour__text__box {
  height: 360px;
  padding: 2rem;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.tour__heading__link:link,
.tour__heading__link:visited {
  text-decoration: none;
  line-height: 3.2rem;
  font-family: var(--font-family-2);
  color: rgb(8, 9, 14);
  opacity: 1;
  transition: 0.1s opacity cubic-bezier(0.58, 0.3, 0.51, 0.82);
}

.tour__heading__main {
  font-size: 2.4rem;
  font-weight: 400;
  transition: 0.1s opacity cubic-bezier(0.58, 0.3, 0.51, 0.82);
}

.tour__heading__sub {
  font-size: 1.6rem;
  font-weight: 400;
  transition: 0.1s opacity cubic-bezier(0.58, 0.3, 0.51, 0.82);
}

.tour__text {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.btn__tour {
  margin-top: 2.4rem;
  /* transition: all 0.25 ease-in-out; */
  transition: 0.15s background-color cubic-bezier(0.58, 0.3, 0.51, 0.82),
    0.15s color cubic-bezier(0.58, 0.3, 0.51, 0.82);
}

.btn__tour:hover {
  background-color: rgba(174, 69, 68, 1);
  box-shadow: inset 0 0 0 1px rgb(255, 255, 255);
}

.tour__info__box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* justify-items: left; */
}

.info {
  padding: 3.2px 6.4px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 6.4px 6.4px 0 0;
  background-color: #f5f7f9;
  border-radius: 100px;
  box-shadow: inset 0 0 0 1px rgba(8, 9, 14, 0.07);
  color: #08090e;
  text-transform: uppercase;
  /* white-space: nowrap; */
  font-size: 1.2rem;
  line-height: 2rem;

  max-width: 180px;
  /* width: 100%; */
}

.info__fixed {
  height: 22.38px;
  box-sizing: border-box;
}

.info__text {
  display: block;
  font-size: 1.1rem;
  line-height: 1.5rem;
  color: #08090e;
  text-transform: uppercase;
  /* white-space: nowrap; */
}

.icon__tour {
  fill: currentColor;
  height: 16px;
  width: 16px;

  margin-bottom: -3px;
}

.tour__price__box {
  max-height: 50px;
  border-radius: 4px;
  padding: 4px;
  background: rgba(8, 9, 14, 0.5);
  -webkit-box-shadow: 0 0 0 1px #08090e;
  box-shadow: 0 0 0 1px #08090e;
  color: #f5f7f9;
  text-align: center;
  z-index: 1;

  max-width: 34%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.from {
  border-radius: 2px;
  margin-bottom: 0.4rem;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  background-color: #f5f7f9;
  color: #08090e;
  font-size: 1.2rem;
  line-height: 1.4rem;
  text-transform: uppercase;
}

.price__value {
  line-height: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.48px;
  font-size: 2.2rem;
}

.currency-symbol {
  display: inline;
  font-size: 1.6rem;
  margin-right: 0.96px;
  vertical-align: top;
}

.price__value__variation {
  font-size: 16px;
}
.price__value__variation .currency-symbol {
  font-size: 14.4px;
}

.tour__info__box--1,
.tour__info__box--2 {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-items: left;
}

.tour__info__box--1 .info__age {
  grid-row: 2;
}
.tour__info__box--2 .info__age {
  grid-row: 2;
}
.tour__info__box--2 .info__location {
  grid-row: 2;
  margin-left: -6px;
}

/* //////////////////////////////////////////////////////////// */

.tours-container {
  width: 100%;
  /* height: 400px; */
  overflow: hidden;
  padding: 0 1.5rem 1.5rem;
}

.tours-box {
  padding: 0 6.8rem;
  /* position: relative; */
}

.swiper-slide {
  transition: all 0.15s cubic-bezier(0.58, 0.3, 0.51, 0.82) !important;
}

.tours-button-next,
.tours-button-prev {
  border: none;
  background: none;
  height: 4.8rem !important;
  width: 4.8rem !important;
  border-radius: 50%;
  padding: 1.6rem 1.6rem;
  background-color: var(--color-white);
  box-shadow: 0 3px 10px 0 rgba(8, 9, 14, 0.25);
  opacity: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  /* position: absolute !important; */

  top: 57.5% !important;
}

.tours-button-next:hover,
.tours-button-prev:hover {
  opacity: 0.75;
}

/* .tours-button-next {
  right: -7% !important;
}
.tours-button-prev {
  left: -7% !important;
} */

.tours-button-prev:after,
.tours-button-next:after {
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  color: var(--color-black) !important;
}

.fa-chevron-left {
  font-size: 0rem;
}

.tours-pagination-bullet {
  border-radius: 100px;
  height: 8px;
  width: 8px;
  background-color: #b2b8c1;
}

.tours-pagination {
  bottom: -8.4% !important;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  justify-content: center;
}

.swiper-pagination-bullet-active {
  background-color: #08090e !important;
}

/**********************************/
/*SECTION CTA*/
/**********************************/

/*
.section__cta {
  position: relative;
  /* min-height: 100vh; 
  background-image: url(../imgs/hero-background-img.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);

  z-index: 2;
}

.section__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
    0deg,
    rgba(8, 9, 14, 0.4) 0%,
    rgba(8, 9, 14, 0.4) 100%
  );
  z-index: -1;
}
  */

.cta__content__box {
  background-color: rgba(218, 86, 85, 0.5);
  padding: 8rem 0;
  color: var(--color-white);
}

.cta__text {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 2.4rem;

  letter-spacing: -0.2px;
}

.cta__link:link,
.cta__link:visited {
  color: var(--color-white);
  /* font-weight: 700; */
  word-break: break-word;
}

/**********************************/
/*SECTION CATAGORY*/
/**********************************/
.section__catagory {
  background-color: var(--color-white);
  padding: 8rem 0;
}

.catagory__container {
  margin-top: 4rem;
}

.catagory__grid--1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  column-gap: 4rem;
  margin-bottom: 4rem;
}
.catagory__grid--2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  column-gap: 4rem;
}

.catagory__grid--2:not(:last-child) {
  margin-bottom: 4rem;
}

.catagory__heading {
  color: var(--color-white);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.35;
  font-family: var(--font-family-2);
  margin-bottom: 1.4rem;
}
.catagory__text {
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 2.1rem;
  position: relative;
  display: inline-block;
}

.catagory__text::before {
  background-color: var(--color-secondary);
  content: "";
  height: 2px;
  width: 0;
  left: 0;
  position: absolute;
  top: 100%;
  transition: width 0.2s ease-in-out;
  z-index: 1;
}

.catagory__block:link,
.catagory__block:visited {
  text-decoration: none;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  height: 24rem;
  width: 100%;
  padding: 4rem;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.15s cubic-bezier(0.58, 0.3, 0.51, 0.82);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.catagory__text__box {
  z-index: 2;
  transition: all 0.15s cubic-bezier(0.58, 0.3, 0.51, 0.82);
}

.catagory__block::after {
  background-image: linear-gradient(
    0deg,
    rgba(8, 9, 14, 0.45) 0%,
    rgba(8, 9, 14, 0.45) 100%
  );
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 10px;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.25s ease-in-out;
  z-index: 1;
  opacity: 0;
}

.catagory__block:hover {
  box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.08), 0 18px 24px 0 rgba(0, 0, 0, 0.1);
}

.catagory__block:hover .catagory__text::before {
  width: 90%;
}
.catagory__block:hover.catagory__block::after {
  opacity: 1;
}

.catagory__block:hover .catagory__text__box {
  transform: translateX(1px);
}

.catagory__block--1 {
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/catagory-1.webp);
}
.catagory__block--2 {
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/tour-3.webp);
}
.catagory__block--3 {
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/catagory-3.webp);
}
.catagory__block--4 {
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/catagory-4.webp);
}
.catagory__block--5 {
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/catagory-5.webp);
}
.catagory__block--6 {
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/catagory-6.webp);
}
.catagory__block--7 {
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/catagory-7.webp);
}
.catagory__block--8 {
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/catagory-8.webp);
}
.catagory__block--9 {
  background-image: linear-gradient(
      0deg,
      rgba(8, 9, 14, 0.4) 0%,
      rgba(8, 9, 14, 0.4) 100%
    ),
    url(../imgs/tour-5.webp);
}

/**********************************/
/*SECTION REVIEW*/
/**********************************/

/*
.section__review {
  position: relative;
  /* min-height: 100vh; 
  background-image: url(../imgs/hero-background-img.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);

  z-index: 2;
}

.section__review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
    0deg,
    rgba(8, 9, 14, 0.4) 0%,
    rgba(8, 9, 14, 0.4) 100%
  );
  z-index: -1;
}
  */

.review__content__box {
  background: transparent;
  padding: 8rem 0 9rem;
  color: var(--color-white);
}

/* /////////// ////////////*/

.review-container {
  width: 100%;
  /* height: 400px; */
  overflow: hidden;
  margin-top: 4.8rem;
}

.review-wrapper {
  display: flex;
  align-items: center;
}

.review-box {
  padding: 0 2rem;
  /* position: relative; */
}

.review-slide {
  /* background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px; */

  transition: all 1s ease-in-out;
}

.review-button-next,
.review-button-prev {
  border: none;
  background: none;
  height: 4.8rem !important;
  width: 4.8rem !important;
  border-radius: 50%;
  padding: 1.6rem 1.6rem;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 10px 0 rgba(8, 9, 14, 0.25);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out,
    -webkit-transform 0.15s ease-out;
  opacity: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  /* position: absolute !important; */

  top: 60% !important;
}

.review-button-next:hover,
.review-button-prev:hover {
  opacity: 0.75;
}
/* .review-button-next {
  right: -7% !important;
}
.review-button-prev {
  left: -7% !important;
} */

.review-button-prev:after,
.review-button-next:after {
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  color: var(--color-black) !important;
}

.fa-chevron-left {
  font-size: 0rem;
}

.review-pagination-bullet {
  border-radius: 100px;
  height: 8px;
  width: 8px;
  background-color: #b2b8c1;
}

.review-pagination {
  background-color: var(--color-white);
  border-radius: 2rem;
  padding: 5px 4px;
  /* bottom: -10% !important; */

  bottom: -9.5% !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.2rem;
  justify-content: center !important;
  width: 8rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  /* margin: 0 auto !important; */
}

/* .review__flex {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-content: center !important;
} */

.review-pagination-bullet-active {
  background-color: #08090e !important;
}

.testimonial__slide {
  /* width: 391px; */
  padding: 4rem;
  border-radius: 1rem;
  background-color: var(--color-white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.testimonial__heading {
  font-size: 2.4rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--color-secondary);
}

.testimonial__subheading {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-secondary);
}

.review__stars::before {
  content: "★" "★" "★" "★" "★";
  color: #f7bc51;
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.testimonial__text {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: rgb(8, 9, 14);
}

.testimonial__id {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  text-align: right;
  color: rgb(8, 9, 14);
}

/**********************************/
/*FOOTER*/
/**********************************/

/*
.section__footer {
  position: relative;
  /* min-height: 100vh; 
  background-image: url(../imgs/hero-background-img.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);

  z-index: 2;
}

.section__footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
    0deg,
    rgba(8, 9, 14, 0.4) 0%,
    rgba(8, 9, 14, 0.4) 100%
  );
  z-index: -1;
}
*/

.footer {
  padding: 8rem 0;
  background-color: var(--color-secondary);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4rem;
}

.footer__logo {
  width: 50%;
}

.footer__list {
  list-style: none;
}

.footer__item:not(:last-child) {
  margin-bottom: -1.6px;
}
/* 
.footer__item--contact {
  margin-bottom: 0;
} */

.footer__link:link,
.footer__link:visited {
  text-decoration: none;
  color: var(--color-white);
  font-size: 1.6rem;
  /* line-height: 1.5; */
  /* -webkit-font-smoothing: antialiased; */
}
.footer__link:hover,
.footer__link:active {
  text-decoration: underline;
}

.footer__form {
  margin: 2.4rem 0 1.6rem;

  display: flex;
  align-items: center;
}

.footer__form input {
  display: block;
  margin-bottom: 0;
  padding: 0 1.6rem;
  height: 4.8rem;
  width: 100%;
  border: 1px solid #9badb8;
  border-radius: 4px;
  background: #fafbfc;
  box-shadow: none;
  color: #152833;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.footer__form input::placeholder {
  font-size: 1.6rem;
  color: #888;
}

.footer__form label {
  margin-left: -35px;
}
.fa-magnifying-glass {
  color: var(--color-black);
  font-size: 2.4rem;
  font-weight: 900;
  z-index: 2;
}

/* .footer__form input:focus {
  outline-color: #f7bc51;
} */

.section__cookies {
  position: relative;
  background-color: rgba(17, 17, 17, 0.8);
  padding: 0.8rem 20px;
  width: 100%;
  color: #fff;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 2.4rem;
  text-align: center;
  text-shadow: none;
}

.svg__link:link.svg__link:visited {
  text-decoration: none;
  /* opacity: 0.8; */
}
.svg__link:hover .cookies__svg {
  opacity: 1;
}

.cookies__svg {
  display: block;
  margin: 2px auto 2px auto;
  height: 20px;
  width: auto;
  opacity: 0.8;

  fill: #fff;
}

.cookies__link__container {
  display: flex;
  align-items: center;
  gap: 1.22rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookies__link:link,
.cookies__link:visited {
  text-decoration: none;
  color: var(--color-white);
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 2.4rem;
  font-size: 1.4rem;
  opacity: 0.8;
  text-align: center;
}
.cookies__link:hover,
.cookies__link:active {
  opacity: 1;
  text-decoration: underline;
}
