/* yoga retreats overview section starts */
.retreat__overview__section {
  border-radius: 60px;
}
.retreat__overview__section h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.retreat__overview__section .heading__block {
  margin-bottom: 32px;
}
.retreat__overview__section .heading__block p {
  text-align: center;
  font-weight: 300;
  font-family: "Rubik", sans-serif;
  max-width: 900px;
  text-align: center;
  text-align: center;
  margin-inline: auto;
  line-height: 32px;
}
.retreat__overview__section .grid__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1116px;
  margin-inline: auto;
}
.retreat__overview__section .grid__row .grid__item {
  padding: 24px;
  background: #f2fbf7;
  border-radius: 28px;
  text-align: center;
}
.retreat__overview__section .grid__row .grid__item .icon {
  height: 60px;
  width: 60px;
  border-radius: 60px;
  background: #004246;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  margin-inline: auto;
}
.retreat__overview__section .grid__row .grid__item .icon img {
  width: 40px;
}
.retreat__overview__section .grid__row .grid__item h3 {
  font-size: 18px;
  color: #000;
  line-height: 28px;
  margin-bottom: 12px;
}
.retreat__overview__section .grid__row .grid__item p {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #7a8b87;
  font-weight: 400;
  line-height: 24px;
}
.retreat__overview__section .cta__btn {
  background: #ffd500;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  margin-inline: auto;
  margin-top: 96px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.02857em;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 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);
}
.retreat__overview__section .cta__btn svg {
  width: 16px;
  height: 16px;
}
/* yoga retreats overview section ends */

/* */

/* yoga schedule section starts */
.bg__section {
  background-color: rgb(242, 251, 247);
}
.yoga__schedule__section .heading__block {
  margin-bottom: 32px;
}
.yoga__schedule__section h3 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: #000;
  margin-bottom: 12px;
}
.yoga__schedule__section .heading__block p {
  text-align: center;
  font-weight: 300;
  font-family: "Rubik", sans-serif;
  max-width: 900px;
  text-align: center;
  text-align: center;
  margin-inline: auto;
  line-height: 32px;
  color: #000;
}
.yoga__schedule__section .training__schedule {
  padding: 48px 24px;
  border-radius: 48px;
  background: rgb(0, 66, 70);
}
.yoga__schedule__section .training__schedule h3 {
  margin-bottom: 32px;
  color: #fff;
}

.schedule__accordion__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule__accordion__container .accordion-item {
  background-color: #013437;
  color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding-inline: 16px 24px;
}

.schedule__accordion__container
  .accordion-item
  .accordion-item-description-wrapper
  hr {
  border: none;
  border-top: 1px solid var(--border-color);
  visibility: visible;
}

.schedule__accordion__container
  .accordion-item.open
  .accordion-item-description-wrapper
  hr {
  visibility: visible;
}

.schedule__accordion__container .accordion-item .accordion-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  min-height: 80px;
}

.schedule__accordion__container
  .accordion-item
  .accordion-item-header
  .accordion-item-header-title {
  font-weight: 600;
}

.schedule__accordion__container
  .accordion-item
  .accordion-item-header
  .accordion-item-header-icon {
  transition: var(--transition);
}

.schedule__accordion__container
  .accordion-item.open
  .accordion-item-header
  .accordion-item-header-icon {
  transform: rotate(-180deg);
}

.schedule__accordion__container
  .accordion-item
  .accordion-item-description-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: var(--transition);
}

.schedule__accordion__container
  .accordion-item.open
  .accordion-item-description-wrapper {
  grid-template-rows: 1fr;
}

.schedule__accordion__container
  .accordion-item
  .accordion-item-description-wrapper
  .accordion-item-description {
  min-height: 0;
}

.schedule__accordion__container
  .accordion-item
  .accordion-item-description-wrapper
  .accordion-item-description
  p {
  padding: 10px;
  line-height: 1.5;
}
/* yoga schedule section ends */

/* yoga benefits starts */
.yoga__benefits__section .heading__block {
  margin-block: 52px 12px;
}
.yoga__benefits__section .heading__block h3 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: #000;
  margin-bottom: 24px;
}
.yoga__benefits__section .heading__block p {
  font-weight: 300;
  font-family: "Rubik", sans-serif;
  max-width: 900px;
  text-align: center;
  margin-inline: auto;
  line-height: 32px;
  color: #000;
}
.yoga__benefits__section .grid__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.yoga__benefits__section .grid__row .grid__item {
  border-radius: 28px;
  padding: 24px;
  background: #004246;
}
.yoga__benefits__section .grid__row p {
  color: #fff;
}
.yoga__benefits__section .grid__row img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 16px;
}
.yoga__benefits__section .cta__btn {
  background: #ffd500;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  margin-inline: auto;
  margin-top: 96px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.02857em;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 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);
}
.yoga__benefits__section .cta__btn svg {
  width: 16px;
  height: 16px;
}
#retret__treatments__slider {
  margin-top: 40px;
}
#retret__treatments__slider .slide {
  background: #f2fbf7;
  border-radius: 16px;
}
#retret__treatments__slider .slide .content {
  padding: 24px;
}
#retret__treatments__slider .slide h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
}
#retret__treatments__slider .slide p {
  font-size: 14px;
  color: rgb(122 139 135/1) !important;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
}
/* yoga benefits ends */

/* contact banner starts */
.contact__banner .container {
  background: #2df8c5;
  border-radius: 24px;
  padding: 40px;
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
}
.contact__banner .grid__row {
  display: flex;
  justify-content: space-between;
}
.contact__banner .grid__row img {
  width: 100%;
  max-width: 250px;
  position: absolute;
  right: 100px;
  border: -100px;
}
.contact__banner .title {
  font-size: 40px;
  line-height: 1.25;
}
.contact__banner .contact__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  padding-inline: 16px;
  height: 56px;
  line-height: 56px;
  border: 2px solid #000;
  border-radius: 8px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-top: 24px;
}
.contact__banner .contact__link svg {
  width: 16px;
  height: 16px;
}
/* contact banner ends */

/* treatreats fee section starts */

.retreats__fee__sections .heading__block {
  margin-bottom: 40px;
}
.retreats__fee__sections .heading__block h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: #000;
  margin-bottom: 12px;
}
.retreats__fee__sections .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__fee__sections table {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  border-collapse: collapse;
  max-width: 1000px;
  margin-inline: auto;
}
.retreats__fee__sections table thead th {
  background: #2cf8c6;
  font-size: 16px;
  padding: 12px 24px;
  font-family: "Manrope", sans-serif;
  text-align: left;
}
.retreats__fee__sections table td {
  background: #f2fbf8;
  padding: 12px 24px;
}
.retreats__fee__sections table tr td:first-child {
  font-weight: 500;
}
.retreats__fee__sections table tr:nth-child(even) td {
  background: #e2f0e9;
}
.retreats__fee__sections table td .enroll__now {
  background: #ffd500;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.02857em;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 14px;
}
/* treatreats fee section ends */

@media (max-width: 800px) {
  .retreat__overview__section h2 {
    font-size: 28px;
    line-height: 1.4;
  }
  .retreat__overview__section .heading__block p {
    line-height: 28px;
  }
  .retreat__overview__section .grid__row {
    grid-template-columns: 1fr 1fr;
  }
  .retreat__overview__section .cta__btn {
    margin-top: 60px;
  }
  .yoga__schedule__section .training__schedule h3 {
    font-size: 24px;
    line-height: 1.4;
  }
  .schedule__accordion__container .accordion-item .accordion-item-header {
    min-height: 60px;
  }
  .yoga__schedule__section .training__schedule {
    border-radius: 20px;
  }
  .yoga__schedule__section .heading__block p {
    line-height: 28px;
  }
  .yoga__benefits__section .heading__block {
    margin-top: 0;
  }
  .yoga__benefits__section .heading__block h3 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .yoga__benefits__section .heading__block p {
    line-height: 28px;
  }
  .yoga__benefits__section .cta__btn {
    margin-top: 30px;
  }
  .retreats__fee__sections .heading__block h2 {
    font-size: 28px;
    line-height: 1.4;
  }
  .retreats__fee__sections .heading__block p {
    line-height: 28px;
  }
  .retreats__fee__sections .table__container {
    overflow: auto;
  }
}

@media (max-width: 600px) {
  .retreat__overview__section .grid__row {
    grid-template-columns: 1fr;
  }
  .yoga__schedule__section h3 {
    font-size: 28px;
  }
  .retreat__overview__section .cta__btn {
    margin-top: 30px;
  }
  .yoga__schedule__section .training__schedule {
    padding: 20px;
  }
  .yoga__schedule__section .training__schedule h3 {
    font-size: 20px;
    line-height: 1.4;
  }
  .schedule__accordion__container .accordion-item .accordion-item-header {
    font-size: 16px;
  }
  .container.yoga__benefits__section {
    padding-inline: 0;
  }
}
