/* overview section starts */
.overview__section .container {
  background: #f2fbf7;
  padding: 60px;
  border-radius: 22px;
  margin-block-start: 60px;
}
.overview__section .grid__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
.overview__section .headingText {
  line-height: 48px;
  font-size: 42px;
  letter-spacing: 0px;
  color: #000;
  margin: 0px 0px 15px;
}
.overview__section .headingText span {
  color: transparent;
  background: transparent linear-gradient(99deg, #004246 0%, #ffd500 100%) 0% 0%
    no-repeat padding-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.overview__section .grid__row p {
  font-weight: 300;
  font-family: "Rubik", sans-serif;
  max-width: 900px;
  margin-inline: auto;
  line-height: 32px;
  color: #000;
}
.overview__section .linkBtn {
  background: #ffd500;
  color: #000;
  padding: 12px 16px;
  border-radius: 8px;
  min-width: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  gap: 12px;
  width: max-content;
  margin-top: 16px;
}
.overview__section img {
  width: 100%;
}
/* overview section ends */

/* reatreats information section starts */
.retreats__information .title {
  letter-spacing: 0;
  color: #000;
  font-size: 32px;
  margin-bottom: 12px;
  text-align: center;
}
.retreats__information .heading__block {
  margin-bottom: 32px;
}
.retreats__information .heading__block p {
  font-weight: 200;
  font-family: "Rubik", sans-serif;
  max-width: 900px;
  text-align: center;
  margin-inline: auto;
  line-height: 32px;
  color: #000;
}
.retreats__information .grid__row {
  background: #004246;
  padding: 24px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-width: 1116px;
  margin-inline: auto;
  gap: 24px;
}
.retreats__information .content__left {
  text-align: center;
  color: #fff;
}
.retreats__information .content__left h3 {
  color: rgb(45 248 197 / 1);
  margin-bottom: 8px;
}
.retreats__information .content__left p {
  font-size: 16px;
  padding-bottom: 24px;
}
.retreats__information .content__left ul {
  background: #013437;
  padding: 24px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.retreats__information .content__left ul li {
  display: flex;
  align-items: flex-start;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  gap: 12px;
}
.retreats__information .content__left ul li img {
  margin-top: 4px;
}
.retreats__information .content__right ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.retreats__information .content__right ul li {
  background: #013437;
  color: #fff;
  display: flex;
  gap: 16px;
  border-radius: 6px;
  padding: 16px;
}
.retreats__information .content__right ul li img {
  width: 30px;
  height: 30px;
}
.retreats__information .content__right ul li div {
  display: flex;
  flex-direction: column;
}
.retreats__information .content__right ul li div span:first-child {
  color: #c9c186;
  font-size: 14px;
  padding-bottom: 4px;
}
.retreats__information .content__right ul li div span:last-child {
  font-size: 14px;
}
.retreats__information .content__right .enroll__now {
  background: #ffd500;
  color: #000;
  font-family: "Manrope", sans-serif;
  padding: 12px 16px;
  border-radius: 8px;
  min-width: 148px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  height: 56px;
  gap: 4px;
  margin-top: 16px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(255, 213, 0, 0.5),
    0 4px 6px -4px rgba(255, 213, 0, 0.5);
}
.retreats__information .content__right .enroll__now svg {
  height: 16px;
  width: 16px;
}
/* reatreats information section ends */

/* marquee section starts */

:root {
  --color-text: navy;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: papayawhip;
    --color-bg: navy;
    --color-bg-accent: #2626a0;
  }
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
  margin-bottom: 30px;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}
.marquee__group .slider__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 30px;
  border-radius: 60px;
  height: 50px;
  font-size: 18px;
  background: #f2fbf7;
}
.marquee__group .slider__item span {
  color: #08726a;
}
.marquee__group .slider__item img {
  width: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}
/* marquee section ends */

.view__gallery .view__gallery__row {
  background: #f2fbf7;
  border-radius: 16px;
  padding: 30px;
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.view__gallery .view__gallery__row .content {
  margin-inline: 24px auto;
}
.view__gallery .view__gallery__row .content h4 {
  font-size: 20px;
  color: #08726a;
  margin-bottom: 8px;
}
.view__gallery .view__gallery__row .view__gallery__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  position: relative;
  border-radius: 24px;
  padding: 12px;
  cursor: pointer;
  background-color: #ffd500;
}
.view__gallery .view__gallery__row .view__gallery__link svg {
  width: 24px;
  height: 24px;
}

/* food and accomodation starts */
.food__and__accomodation .heading__block {
  margin-bottom: 32px;
}
.food__and__accomodation .heading__block h3 {
  letter-spacing: 0;
  color: #000;
  font-size: 32px;
  margin-bottom: 12px;
  text-align: center;
}
.food__and__accomodation .heading__block p {
  font-weight: 200;
  font-family: "Rubik", sans-serif;
  max-width: 900px;
  text-align: center;
  margin-inline: auto;
  line-height: 32px;
  color: #000;
}
#food__and__accomodation__slider {
  margin-top: 40px;
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
}
#food__and__accomodation__slider .slide {
  background: #f2fbf7;
  border-radius: 16px;
}
#food__and__accomodation__slider .slide img {
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
#food__and__accomodation__slider.owl-carousel .owl-nav.disabled {
  display: block;
}
#food__and__accomodation__slider.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  left: -60px;
}
#food__and__accomodation__slider.owl-carousel .owl-nav button:hover {
  background-color: transparent;
}
#food__and__accomodation__slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: -60px;
}
/* food and accomodation ends */

/* activvities section starts */

.activities__section .heading__block {
  margin-bottom: 32px;
}
.activities__section .heading__block h3 {
  letter-spacing: 0;
  color: #000;
  font-size: 32px;
  margin-bottom: 12px;
  text-align: center;
}
.activities__section .heading__block p {
  font-weight: 200;
  font-family: "Rubik", sans-serif;
  max-width: 900px;
  text-align: center;
  margin-inline: auto;
  line-height: 32px;
  color: #000;
}
#activities__slider {
  margin-top: 40px;
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
}
#activities__slider .slide {
  background: #f2fbf7;
  border-radius: 16px;
}
#activities__slider .slide .content {
  padding: 24px;
  min-height: 140px;
}
#activities__slider .slide h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}
#activities__slider .slide p {
  font-size: 14px;
  color: rgb(122 139 135/1) !important;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
}
#activities__slider.owl-carousel .owl-nav.disabled {
  display: block;
}
#activities__slider.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  left: -60px;
}
#activities__slider.owl-carousel .owl-nav button:hover {
  background-color: transparent;
}
#activities__slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: -60px;
}
/* activvities section ends */
