.banner__section {
  background: var(--secondary);
  position: relative;
  height: 100dvh;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.banner__section .banner__slider {
  position: relative;
  display: block;
}

.banner__slider {
  margin: 0;
}

.banner__section picture {
  display: block;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.banner__section .banner__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: inherit;
  max-width: inherit;
  aspect-ratio: 4/3;
}

.banner__content {
  position: absolute;
  left: 0;
  bottom: 6%;
  z-index: 100;
  width: 100%;
}

.banner__content .banner__title {
  font-family: var(--primary-font);
  font-weight: 200;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: clamp(4px, 2vw, 8px);
}

.banner__content p {
  font-family: var(--primary-font);
  font-weight: 200;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: clamp(8px, 3vw, 14px);
}

.single__banner::before {
  display: none;
}

.banner__content--btn {
  display: flex;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  align-items: center;
  width: fit-content;
  gap: 15px;
  transition: var(--transition-2);
}
.banner__content span {
  font-weight: 500;
  font-size: 17px;
  color: #ffffff;
}
.banner__content svg circle,
.banner__content svg path {
  transition: var(--transition-2);
}
.banner__content--btn:hover {
  color: var(--primary);
}
.banner__content--btn:hover svg circle,
.banner__content--btn:hover svg path {
  stroke: var(--primary);
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.about__section .text-btn {
  margin-top: clamp(15px, 2vw, 28px);
}

.about__imgs {
  position: relative;
  z-index: 2;
}

.about__imgs img:first-child {
  position: relative;
  z-index: 1;
  width: 680px;
  height: 799px;
  object-fit: cover;
}

.about__imgs img:last-child {
  position: absolute;
  right: -70%;
  bottom: -115px;
  width: 684px;
  height: 423px;
  object-fit: cover;
}

.about__content h1 {
  font-weight: 200;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: clamp(10px, 2vw, 24px);
}

.about__content p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: #000000;
  opacity: 0.9;
}

.recommended__trips__section {
  position: relative;
  padding-top: 220px;
}

.recommended__trips__section .background-color-overlay {
  position: absolute;
  top: -55px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80%;
  background-color: #f3f2ee;
}

.recommended__trips__section .heading-wrap {
  position: relative;
  max-width: 1200px;
}

.recommended__trips__section .heading-wrap h2 {
  width: 100%;
}
.recommended__trips__section .text-btn {
  margin-top: clamp(15px, 2vw, 28px);
}

.recommended__slider--btn {
  position: relative;
}

.recommended__slider {
  position: relative;
}

.recommended__slider--nav {
  position: absolute;
  top: 0;
  left: -100px;
}

.recommended__slider--btn.prev-slide,
.recommended__slider--btn.next-slide {
  position: relative;
  height: 55px;
  text-align: center;
  line-height: 55px;
  margin-bottom: 13px;
  width: 55px;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);

  &:hover {
    transform: scale(0.85);
  }
}

@media only screen and (min-width: 567x) {
  .recommended__trips__section .heading-wrap h2 {
    width: 33.3%;
  }
}

.recommended__trips__section .heading-wrap > div {
  width: 100%;
}
@media only screen and (min-width: 769px) {
}
@media only screen and (min-width: 1034px) {
  .recommended__trips__section .heading-wrap > div {
    width: 55%;
  }
  .recommended__trips__section .heading-wrap h2 {
    width: 45%;
  }
}

@media only screen and (max-width: 769px) {
  .recommended__trips__section .heading-wrap > div p {
    max-width: 62ch;
  }
  .recommended__trips__section {
    background-color: #f3f2ee;
    padding: 30px 0 35px;
    margin-top: 35px;
  }
}

.travel__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
}

.travel__wrapper > div {
  flex: 0 1 33.33%;
  padding-left: 8px;
  margin-bottom: 8px;
  height: 270px;
}

.travel__wrapper > div:first-child {
  flex: 0 1 100%;
}

.travel__wrapper > div > a {
  display: block;
  width: 100%;
  position: relative;
}

.travel__wrapper > div > a img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.travel__wrapper > div:nth-last-child(1),
.travel__wrapper > div:nth-last-child(2) {
  flex: 0 1 50%;
}

.destination__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
  width: 100%;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%); */
}

.destination__content h3 {
  color: #fff;
  margin: 0;
}

.speak__with__us {
  padding-bottom: clamp(70px, 6vw, 90px);
}

.speak__images {
  position: relative;
}

.speak__images img {
  width: 100%;
  width: 550px;
  height: 550px;
  object-fit: cover;
}

.speak__images img:last-child {
  position: absolute;
  right: -70px;
  width: 400px;
  height: 400px;
  bottom: -90px;
}

.speak__content .heading-wrap h2 {
  margin-bottom: 100px;
}

.speak__content .heading-wrap > div {
  width: 100%;
  max-width: 40ch;
  padding-left: 80px;
}

.speak__content .heading-wrap span {
  margin-bottom: clamp(1px, 1.2vw, 18px);
  display: block;
}
.speak__with__us .text-btn {
  margin-top: clamp(15px, 2vw, 28px);
}

.blog__section .heading-wrap {
  margin-bottom: clamp(25px, 3vw, 40px);
}

.blog__section .heading-wrap h2 {
  margin-bottom: 0;
}

.blog__section .uk-grid {
  margin-left: -15px;
}

.blog__section .uk-grid > * {
  padding-left: 15px;
}

.review__section {
  background: url("../img/review-bg.jpg") 0 0 no-repeat;
  padding: 80px 0;
  background-position: center;
  padding-bottom: clamp(60px, 10vw, 180px);
  background-size: cover;
  background-repeat: no-repeat;
}

.review__section .reivew__card > div {
  position: relative;
}

.review__section .reivew__card > div::before {
  content: "";
}

.review__slider .swiper-button-next,
.review__slider .swiper-button-prev {
  position: static;
  height: 50px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  margin-bottom: 13px;
  font-size: 16px;
  width: 50px;
  margin-right: 12px;
  color: #333;
  border: 1px solid #333;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);

  &:hover {
    transform: scale(0.9);
  }
}

.review__slider .swiper-button-next::after,
.review__slider .swiper-button-prev::after {
  font-size: 16px;
}

.swipe__nav {
  margin-top: 75px;
}

.review__slider .swiper-slide .review__card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

@media (max-width: 1300px) {
  .about__imgs img:last-child,
  .recommended__trips__section .background-color-overlay {
    display: none;
  }
  .about__imgs img:first-child {
    width: 100%;
    height: 650px;
    object-fit: cover;
  }
  .about__section .uk-grid-margin {
    margin-top: 20px;
  }
  .recommended__trips__section {
    padding-top: clamp(40px, 5vw, 80px);
  }
  .banner__section,
  .banner__section picture {
    height: 85vh;
  }
}
@media (max-width: 1024px) {
  .about__imgs img:first-child {
    height: 500px;
  }
}
@media (max-width: 959px) {
  .speak__images img:last-child {
    display: none;
  }
  .speak__images img {
    width: 100%;
    height: 490px;
  }
  .speak__content .heading-wrap h2 {
    margin-bottom: clamp(8px, 2vw, 16px);
  }
  .speak__content .heading-wrap > div {
    padding-left: 0;
    max-width: 100%;
  }
  .speak__with__us .uk-first-column {
    margin: 0;
  }
  .speak__with__us {
    padding-bottom: 0;
  }
  .speak__with__us .heading-wrap {
    margin-bottom: 0;
  }
  .banner__section,
  .banner__section picture {
    height: 65vh;
  }
}
@media (max-width: 769px) {
  .speak__images img {
    height: 400px;
  }
  .recommended__trips__section .heading-wrap {
    flex-direction: column;
  }
  .banner__section,
  .banner__section picture {
    height: 100%;
  }
}
@media (max-width: 567px) {
  .about__imgs img:first-child {
    height: 100%;
  }
  .travel__wrapper > div {
    flex: 0 1 50% !important;
    height: 220px;
  }
  .travel__wrapper > div > a img {
    height: 220px;
  }
  .speak__images img {
    height: 100%;
  }
  .banner__section .banner__slider::before {
    content: unset;
  }
  .banner__content {
    position: static;
    background-color: #f3f2ee;
    padding: 15px 0;
  }
  .banner__content .banner__title,
  .banner__content--btn {
    color: var(--dark);
  }
  .banner__content p {
    color: var(--text);
  }
  .banner__content--btn svg circle,
  .banner__content--btn svg path {
    stroke: var(--dark);
  }
}
