@import url("https://fonts.googleapis.com/css2?family=Candal&family=Laila:wght@300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "blackjackregular";
  src: url("../fonts/blackjar-webfont.woff2") format("woff2"), url("../fonts/blackjar-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "high_summitregular";
  src: url("../fonts/high_summit-webfont.woff2") format("woff2"), url("../fonts/high_summit-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  backface-visibility: hidden;
  /* This can help with rendering */
  perspective: 1000;
  /* Helps with smooth transitions */
}

body,
html {
  overflow-x: hidden;
  /* Removed !important for better control */
  font-family: "Poppins", sans-serif;
  /* Ensure this is defined in your CSS */
  color: #1f1f1f;
  /* Ensure this is defined in your CSS */
  scroll-behavior: smooth;
  /* Retain smooth scrolling */
  margin: 0;
  /* Use margin instead of padding */
  padding: 0;
  /* Ensure no padding is causing overflow */
  /* Consider adding a hardware acceleration property */
  will-change: scroll-position;
  /* Hint for performance */
}

.theme-btn {
  background: #2a5028;
  border: 0px;
  font-size: 14px;
  padding: 8px 18px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  border-radius: 0;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px;
  color: #fff;
  border-radius: 5px;
}
.theme-btn:hover {
  background: linear-gradient(90deg, #2a5028 0%, hsl(41, 96%, 58%) 100%);
}
.theme-btn span {
  position: relative;
  top: 2px;
}

.primary-list {
  list-style: disc;
  margin: 0px 0 0px 20px;
}
.primary-list li {
  list-style: disc;
  margin-bottom: 15px;
  position: relative;
}
.primary-list li:last-child {
  margin: 0;
}

.sec-list.alt {
  padding-left: 20px;
}
.sec-list li {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  display: flex;
}
.sec-list li::before {
  content: "~";
  position: relative;
  font-size: 14px;
}

.special-list li {
  position: relative;
  display: flex;
  margin-bottom: 15px;
  font-weight: 500;
  gap: 8px;
}
.special-list li:before {
  content: "";
  position: relative;
  height: 25px;
  width: 25px;
  background: url(../img/icons/yoga-chakra.svg) no-repeat;
  flex-shrink: 0;
  background-size: 25px;
  background-position: center;
  filter: invert(7%) sepia(88%) saturate(8%) hue-rotate(314deg) brightness(92%) contrast(89%);
}

.common-content-wrap {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}
.common-content-wrap.alt {
  height: auto;
}
@media screen and (max-width: 1200px) {
  .common-content-wrap {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .common-content-wrap {
    padding: 0px;
  }
}

p,
li,
span,
strong,
ul,
a,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: clamp(13px, 1.4vw, 15px);
  text-decoration: none;
  color: #1f1f1f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Laila", serif;
  padding: 0;
  margin: 0;
}

.spacing {
  padding: 80px 0px;
}
@media screen and (max-width: 1200px) {
  .spacing {
    padding: 80px 0px;
  }
}
@media screen and (max-width: 991px) {
  .spacing {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 767px) {
  .spacing {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 575px) {
  .spacing {
    padding: 40px 0px;
  }
}

.spacing-second {
  padding: 80px 0px;
}
@media screen and (max-width: 991px) {
  .spacing-second {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 575px) {
  .spacing-second {
    padding: 40px 0px;
  }
}

.para {
  line-height: 1.8;
}

.green {
  color: #708b45;
}

p a {
  font-weight: 600;
  color: #708b45;
}

.main-heading {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  display: block;
  text-transform: uppercase;
}
.main-heading.alt {
  text-transform: capitalize;
}

.common-heading {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  display: block;
  text-transform: uppercase;
}
.common-heading.alt {
  text-transform: capitalize;
}

.sub-heading {
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
}

.small-heading {
  font-size: clmap(16px, 1.8vw, 20px);
  display: block;
  font-weight: 600;
  font-family: "Laila", serif;
}
.small-heading.alt {
  font-family: "Poppins", sans-serif;
}

.heading-wrap {
  width: 60%;
  margin: 0 auto 50px;
}
.heading-wrap.alt .common-heading {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 8px;
  align-items: center;
}
.heading-wrap.alt .common-heading::after {
  content: "";
  position: relative;
  width: 300px;
  height: 30px;
  background: url(../img/icons/underline.png) no-repeat;
  background-position: center;
  background-size: contain;
  filter: invert(7%) sepia(88%) saturate(8%) hue-rotate(314deg) brightness(92%) contrast(89%);
}
@media screen and (max-width: 991px) {
  .heading-wrap {
    width: 90%;
  }
}

.video-heading {
  display: block;
  font-size: 35px;
  font-family: "blackjackregular";
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .video-heading {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .video-heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .video-heading {
    font-size: 22px;
  }
}

section {
  position: relative;
  z-index: 1;
}

.bg-alt {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: #f8eac6;
}
@media screen and (max-width: 991px) {
  .bg-alt {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.bg-alt::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0px;
  height: 100px;
  width: 100%;
  background: url(../img/wave.svg);
  filter: invert(99%) sepia(4%) saturate(347%) hue-rotate(210deg) brightness(115%) contrast(100%);
}
@media screen and (max-width: 767px) {
  .bg-alt::after {
    height: 60px;
  }
}
.bg-alt::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0px;
  height: 100%;
  width: 100%;
  background: url(../img/bg-alt.webp) no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.bg-alt .quote-title span {
  color: #1f1f1f;
}

.bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  transform: rotate(180deg);
  bottom: -3px;
  height: 100px;
  width: 100%;
  background: url(../img/wave.svg);
  filter: invert(99%) sepia(4%) saturate(347%) hue-rotate(210deg) brightness(115%) contrast(100%);
}
@media screen and (max-width: 767px) {
  .bg::before {
    height: 60px;
  }
}

.img-wrap {
  height: 100%;
}
.img-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 991px) {
  .hero-wrap .heading-wrap {
    width: 80%;
  }
}
.hero-wrap .video-wrapper {
  position: relative;
  z-index: 1;
}
.hero-wrap .video-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 1;
  background: radial-gradient(rgb(0, 0, 0), rgb(0, 0, 0));
  opacity: 0.4;
}
.hero-wrap .video-wrapper .video-content {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 99;
}
@media (max-width: 991px) {
  .hero-wrap .video-wrapper .video-content.bg::before {
    height: 65px;
    bottom: -1;
  }
}
@media (max-width: 600px) {
  .hero-wrap .video-wrapper .video-content.bg::before {
    display: none;
  }
}
.hero-wrap .video-wrapper .video-content .common-content-wrap {
  border-radius: 30px;
  gap: 0;
  background: rgba(0, 0, 0, 0.1803921569);
}
.hero-wrap .video-wrapper .video-content .common-content-wrap .sub-heading:nth-child(2) {
  font-family: "Laila", serif;
  font-weight: 900;
  color: #ecc355;
}
.hero-wrap .video-wrapper .video-content .common-content-wrap .quote-title {
  align-items: start;
}
.hero-wrap .video-wrapper .video-content .common-content-wrap .quote-title span,
.hero-wrap .video-wrapper .video-content .common-content-wrap .quote-title strong {
  font-size: 18px;
}
@media (max-width: 991px) {
  .hero-wrap .video-wrapper .video-content .common-content-wrap {
    padding: 30px;
  }
  .hero-wrap .video-wrapper .video-content .common-content-wrap .quote-title span,
  .hero-wrap .video-wrapper .video-content .common-content-wrap .quote-title strong {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero-wrap .video-wrapper .video-content .common-content-wrap .quote-title span,
  .hero-wrap .video-wrapper .video-content .common-content-wrap .quote-title strong {
    font-size: 14px;
  }
}
.hero-wrap .video-wrapper .video-content h1,
.hero-wrap .video-wrapper .video-content span {
  color: #fff;
}
.hero-wrap .video-wrapper .video-content strong {
  color: #ecc355;
}
.hero-wrap video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 700px;
  display: flex;
}
.hero-wrap video.mobile-video {
  display: none;
}
@media (max-width: 991px) {
  .hero-wrap video {
    height: 500px;
  }
}
@media (max-width: 600px) {
  .hero-wrap video.desktop-video {
    display: none;
  }
  .hero-wrap video.mobile-video {
    height: 450px;
    display: block;
  }
}
.hero-wrap .yoga-alliance {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 0px;
  justify-content: center;
}
.hero-wrap .yoga-alliance .para {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  width: 80%;
  background: #ecc355;
  font-weight: 600;
  padding: 8px 14px;
  margin: auto;
  border-radius: 0 0 20px 20px;
  font-family: "Laila", serif;
}
.hero-wrap .yoga-alliance .alliance-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 15px;
  width: 100%;
  margin: auto;
  border-radius: 10px;
  border: 1px solid #f8eac6;
  background: #f8eac6;
}
.hero-wrap .yoga-alliance .alliance-list img {
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .hero-wrap .yoga-alliance .alliance-list img {
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .hero-wrap .yoga-alliance .para {
    font-size: 14px;
  }
  .hero-wrap .yoga-alliance .alliance-list img {
    height: 90px;
  }
}
.hero-wrap .top-img img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  .hero-wrap .top-img img {
    height: 280px;
  }
}
@media screen and (max-width: 767px) {
  .hero-wrap .top-img img {
    height: auto;
  }
}
.hero-wrap .top-img .content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #f8eac6;
  border-radius: 10px;
  margin-top: 30px;
}
.hero-wrap .top-img .content::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100px;
  left: -50px;
  top: 0px;
  bottom: 0;
  margin: auto;
  background: url(../img/icons/single-flower.svg) no-repeat;
  background-size: 100%;
  background-position: center;
}
.hero-wrap .top-img .content::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100px;
  right: -50px;
  top: 0px;
  bottom: 0;
  margin: auto;
  background: url(../img/icons/single-flower.svg) no-repeat;
  background-size: 100%;
  background-position: center;
}
.hero-wrap .top-img .content p {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}
.hero-wrap .top-img .content p span {
  text-align: center;
  font-size: 18px;
  font-family: "Laila", serif;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .hero-wrap .top-img .content p span {
    font-size: 16px;
  }
}

.video-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .video-wrap iframe {
    height: 400px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .video-wrap iframe {
    height: 300px;
  }
}

.img-slide-wrap {
  overflow: hidden;
}
.img-slide-wrap .img-slide {
  display: flex;
  flex-wrap: nowrap;
  padding: 20px 80px;
  width: 100%;
  gap: 20px;
  overflow-x: scroll;
}
.img-slide-wrap .img-slide img {
  height: 400px;
  width: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .img-slide-wrap .img-slide {
    gap: 13px;
    padding: 20px 40px;
  }
  .img-slide-wrap .img-slide img {
    height: 300px;
    width: 400px;
  }
}
@media screen and (max-width: 575px) {
  .img-slide-wrap .img-slide {
    padding: 20px 10px;
  }
  .img-slide-wrap .img-slide img {
    height: 250px;
    width: 300px;
  }
}
.img-slide-wrap ::-webkit-scrollbar {
  width: 4px;
  height: 10px;
}
.img-slide-wrap ::-webkit-scrollbar-thumb {
  background: #b0b5c0;
  border-radius: 10px;
}
.img-slide-wrap ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.bg-wrap {
  position: relative;
  z-index: 1;
}
.bg-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: url(../img/seamless-bg.webp) repeat;
  opacity: 1;
  filter: invert(1) brightness(0);
  background-size: 150px;
}

.course-wrap .full-width-wrap {
  background: #fff !important;
}

.full-width-wrap {
  background: #f8eac6;
  padding: 50px;
  width: 100%;
  margin: 0 auto 40px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.full-width-wrap:last-child {
  margin: 0 auto;
}
.full-width-wrap .content {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 15px;
}
.full-width-wrap .content .sub-heading {
  text-align: left;
}
.full-width-wrap p,
.full-width-wrap a,
.full-width-wrap li,
.full-width-wrap span,
.full-width-wrap strong,
.full-width-wrap .sub-heading {
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .full-width-wrap {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 575px) {
  .full-width-wrap {
    padding: 30px 10px;
  }
}

.collage-img {
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.collage-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.quote-title {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px;
}
.quote-title span {
  color: #3b5343;
  font-size: 16px;
  text-align: center;
}
.quote-title span:nth-child(2) {
  text-transform: uppercase;
  font-style: italic;
}
.quote-title span:nth-child(2) strong {
  font-style: italic;
  text-transform: uppercase;
  color: #3b5343;
}

.para strong {
  text-transform: uppercase;
}

.accordion {
  background: #fff;
  margin-bottom: 15px;
}
.accordion .small-heading {
  margin: 15px 0 10px;
  color: #2a5028;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  .accordion .small-heading {
    font-size: 15px;
  }
}
.accordion .accordion-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 20px 20px 20px 40px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.accordion .accordion-header .accordion-heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .accordion .accordion-header .accordion-heading {
    font-size: 15px;
  }
}
.accordion .accordion-header::before {
  content: "";
  position: absolute;
  background: url(../img/icons/yoga-chakra.svg) no-repeat;
  height: 60px;
  width: 60px;
  left: -30px;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  z-index: -1;
  opacity: 0.7;
}
.accordion .accordion-header::after {
  content: "+";
  position: relative;
  font-size: 25px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.accordion.active .accordion-header::after {
  content: "-";
}
.accordion:nth-child(odd) .accordion-header::before {
  filter: invert(30%) sepia(3%) saturate(3938%) hue-rotate(86deg) brightness(89%) contrast(84%);
}
.accordion:nth-child(even) .accordion-header::before {
  filter: invert(86%) sepia(40%) saturate(5513%) hue-rotate(2deg) brightness(107%) contrast(103%);
}
.accordion .accordion-body {
  display: none;
  padding: 20px;
}
.accordion.active .accordion-body {
  display: block;
}

.logo-list {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.logo-list img {
  height: 90px;
}
@media screen and (max-width: 1200px) {
  .logo-list img {
    height: 70px;
  }
}
@media screen and (max-width: 991px) {
  .logo-list img {
    height: 60px;
  }
}

.date-wrapper table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.date-wrapper .card-outer {
  height: 100%;
  overflow: hidden;
}
.date-wrapper .heading {
  display: flex;
  align-items: center;
  flex-flow: column;
  margin-bottom: 0px;
  font-family: "Laila", serif;
  gap: 10px;
  background: #2a5028;
  padding: 12px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.date-wrapper .heading .inner {
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.date-wrapper .heading .inner span {
  padding: 0;
  color: #fff;
}
.date-wrapper .heading::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 90px;
  width: 90px;
  background: url(../img/icons/single-flower.svg) no-repeat;
  background-size: contain;
  background-position: right;
}
.date-wrapper .heading::after {
  content: "";
  position: absolute;
  right: -45px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 90px;
  width: 90px;
  background: url(../img/icons/single-flower.svg) no-repeat;
  background-size: contain;
  background-position: left;
}
.date-wrapper .heading span,
.date-wrapper .heading a {
  display: block;
  text-align: center;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  color: #fff;
}
.date-wrapper .heading span:nth-child(1),
.date-wrapper .heading a:nth-child(1) {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
}
.date-wrapper .date-card {
  background: #fff;
  padding: 0px 15px;
  display: flex;
  flex-flow: column;
  align-items: center;
  border-radius: 0px 0px 10px;
}
.date-wrapper .date-card span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: clamp(13px, 1.4vw, 14px);
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1803921569);
  padding: 10px 0;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.date-wrapper .date-card .body {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.date-wrapper .date-card .body p {
  font-size: clamp(13px, 1.4vw, 14px);
  display: flex;
  align-items: center;
  flex-flow: column;
  text-align: center;
  gap: 8px;
  font-weight: 600;
}
.date-wrapper .date-card .body p span {
  padding: 0;
  margin: 0;
  border: none;
  display: flex;
  flex-flow: column;
  color: #007c34;
  font-size: clamp(13px, 1.4vw, 15px);
  display: block;
  text-align: center;
}
.date-wrapper .date-card .theme-btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 15px;
  font-size: 12px;
  justify-content: center;
}

.accommodation-wrapper .outer {
  border: 1px solid rgba(31, 31, 31, 0.0823529412);
  background: #f8eac6;
  padding: 20px;
  border-radius: 20px;
}
.accommodation-wrapper .outer .acc-wrap {
  height: 100%;
  border-radius: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.accommodation-wrapper .outer .acc-wrap .acc-content {
  display: flex;
  align-items: center;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 20px;
}
.accommodation-wrapper .outer .acc-wrap .acc-content span {
  font-size: 18px;
  font-weight: 600;
  font-family: "Laila", serif;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .accommodation-wrapper .outer .acc-wrap .acc-content span {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .accommodation-wrapper .outer .acc-wrap .acc-content span {
    font-size: 14px;
    font-weight: 500;
  }
}
.accommodation-wrapper .outer .acc-wrap .acc-content img {
  flex-shrink: 0;
  border-radius: 53% 47% 58% 42%/42% 44% 56% 58%;
}
.accommodation-wrapper .outer .acc-wrap .acc-content.big img {
  height: 300px;
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.accommodation-wrapper .outer .acc-wrap .acc-content.small img {
  height: 220px;
  width: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.food-wrap.bg-alt::before {
  background: url(../img/accommodation/food-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.09;
}
.food-wrap .img-wrap img {
  max-height: 700px;
  -o-object-fit: contain;
     object-fit: contain;
}

.schedule-wrap .schedule-table {
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
@media screen and (max-width: 575px) {
  .schedule-wrap .schedule-table {
    padding: 30px 15px;
  }
}
.schedule-wrap .schedule-table .heading {
  font-size: 22px;
  text-transform: uppercase;
  display: block;
  border-bottom: 2px solid;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .schedule-wrap .schedule-table .heading {
    font-size: 17px;
  }
}
.schedule-wrap .schedule-table .special-list li span {
  font-size: clamp(12px, 1.3vw, 15px);
}
.schedule-wrap .schedule-table .special-list li span:nth-child(1) {
  font-weight: 600;
  white-space: nowrap;
}
.schedule-wrap .schedule-table.yellow {
  background: #ecc355;
}
@media screen and (max-width: 575px) {
  .schedule-wrap .schedule-table.yellow .special-list li::before {
    height: 20px;
    width: 20px;
    background-size: 20px;
    bottom: 3px;
  }
}
.schedule-wrap .schedule-table.green {
  background: #2a5028;
}
.schedule-wrap .schedule-table.green li,
.schedule-wrap .schedule-table.green span,
.schedule-wrap .schedule-table.green p,
.schedule-wrap .schedule-table.green strong {
  color: #fff;
}
.schedule-wrap .schedule-table.green li::before {
  filter: invert(1) brightness(100);
}

.testi-wrap .testi-card {
  border-radius: 20px;
  margin-bottom: 25px;
  padding: 20px;
  border: 2px solid #1f1f1f;
}
.testi-wrap .testi-card .head {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.testi-wrap .testi-card .head .testi-img {
  display: flex;
  height: 60px;
  width: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
.testi-wrap .testi-card .head .testi-img.eric {
  background: red;
}
.testi-wrap .testi-card .head .testi-img.richard {
  background: blue;
}
.testi-wrap .testi-card .head .testi-img.maria {
  background: green;
}
.testi-wrap .testi-card .head .testi-img.hellen {
  background: rebeccapurple;
}
.testi-wrap .testi-card .head .testi-img.carlos {
  background: #1f1f1f;
}
.testi-wrap .testi-card .head .testi-img.leo {
  background: darkorange;
}
.testi-wrap .testi-card .head .testi-info {
  display: flex;
  flex-flow: column;
  gap: 8px;
  align-items: flex-start;
}
.testi-wrap .testi-card .head .testi-info span {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 16px;
}
.testi-wrap .testi-card .head .testi-info img {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.help-desk .special-list li {
  margin-bottom: 20px;
}
.help-desk .bottom-left {
  padding: 40px;
  background: #fff;
  display: flex;
  flex-flow: column;
  gap: 20px;
  border-radius: 10px;
}
.help-desk .bottom-left .foot-logo {
  width: -moz-fit-content;
  width: fit-content;
  max-height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.help-desk .bottom-left .logo-list {
  margin: 0;
  justify-content: center;
}
.help-desk .bottom-left .tricolor {
  -o-object-fit: contain;
     object-fit: contain;
}
.help-desk a {
  transition: 0.2s ease-in-out;
}
.help-desk a:hover {
  color: #708b45;
  text-decoration: underline;
}

.page-bottom {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 20px;
  gap: 20px;
  margin-bottom: 30px;
}
.page-bottom p,
.page-bottom a {
  font-size: 15px;
  text-align: center;
  font-weight: 300;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .page-bottom p,
  .page-bottom a {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  .page-bottom p,
  .page-bottom a {
    font-size: 11px;
  }
}
.page-bottom a {
  transition: 0.4s ease-in-out;
}
.page-bottom a:hover {
  color: #708b45;
}
.page-bottom .quick-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-bottom .quick-links li {
  border-right: 1px solid rgba(0, 0, 0, 0.4);
}
.page-bottom .quick-links li:last-child {
  border: none;
}
.page-bottom .quick-links a {
  text-transform: capitalize;
  display: flex;
  padding: 0 10px;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .page-bottom {
    margin-bottom: 40px;
  }
}

header {
  width: 100%;
  padding: 10px 0;
  top: 0;
  left: 0;
  background: #f8eac6;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  z-index: 99;
}
header.sticky {
  position: fixed;
  z-index: 999;
}
header .my-navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .my-navbar li {
  display: inline-block;
}
header .my-navbar li a {
  display: inline-block;
  padding: 0px 10px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.4s ease-in-out;
}
header .my-navbar li a:hover {
  color: #708b45;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 1300px) {
  header .my-navbar {
    gap: 5px;
  }
  header .my-navbar li a {
    padding: 0px 6px;
    font-size: 13px;
  }
}
header .logo-wrap {
  width: -moz-fit-content;
  width: fit-content;
  max-height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 80px;
}
@media screen and (max-width: 1400px) {
  header .logo-wrap {
    margin: 0 30px;
  }
}
header.sticky {
  position: fixed;
  left: 0;
  width: 100%;
  animation: scroll 0.4s linear;
}
header .mobile-nav {
  display: none;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  header .mobile-nav {
    display: block;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  header .mobile-nav {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 575px) {
  header .mobile-nav {
    padding: 0px 15px;
  }
}
header .mobile-nav .logo-wrap {
  width: -moz-fit-content;
  width: fit-content;
  max-height: 70px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  header .mobile-nav .logo-wrap {
    max-height: 50px;
    margin: 0;
  }
}
header .mobile-nav .call-us {
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-family: "blackjackregular";
  font-weight: 600;
}
header .mobile-nav .call-us img {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  header .mobile-nav .call-us {
    font-size: 15px;
    margin-right: 20px;
  }
  header .mobile-nav .call-us img {
    height: 20px;
  }
}
header .mobile-nav .right-aside {
  height: 100%;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: end;
}
header .mobile-nav .right-aside .toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
header .mobile-nav .right-aside .toggle-btn span {
  display: inline-flex;
  width: 24px;
  padding: 2px 3px;
  flex-shrink: 0;
  background: #2a5028;
}
header .mobile-nav .right-aside .hidden-menu {
  transform: translateX(100%);
  top: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  height: 100%;
  position: fixed;
  z-index: 99999;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  header .mobile-nav .right-aside .hidden-menu {
    width: 100%;
  }
}
header .mobile-nav .right-aside .hidden-menu .menu-logo {
  display: flex;
  position: relative;
  background: #f8eac6;
  padding: 10px;
}
header .mobile-nav .right-aside .hidden-menu .menu-logo .remove-menu .cross-mark {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
  filter: invert(30%) sepia(3%) saturate(3938%) hue-rotate(86deg) brightness(89%) contrast(84%);
}
header .mobile-nav .right-aside .hidden-menu .menu-logo .remove-menu .cross-mark:hover {
  color: #fff;
  transform: rotate(90deg);
}
header .mobile-nav .right-aside .hidden-menu .menu-outer {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  flex-grow: 1;
}
header .mobile-nav .right-aside .hidden-menu .menu-outer .my-navbar {
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
header .mobile-nav .right-aside .hidden-menu .menu-outer .my-navbar li {
  width: 100%;
}
header .mobile-nav .right-aside .hidden-menu .menu-outer .my-navbar li a {
  font-size: 14px;
  padding: 10px;
}
header .mobile-nav .right-aside .hidden-menu.show-menu {
  transform: translateX(0);
}
header .mobile-nav .right-aside .booking {
  display: flex;
  align-items: center;
  border-top: 1px solid #4cbd58;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 575px) {
  header .mobile-nav .right-aside .booking {
    margin: 0;
    justify-content: center;
    gap: 10px;
  }
}
header .mobile-nav .right-aside .booking .phone-icon {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(30%) sepia(3%) saturate(3938%) hue-rotate(86deg) brightness(89%) contrast(84%);
}
@media screen and (max-width: 575px) {
  header .mobile-nav .right-aside .booking .phone-icon {
    height: 25px;
  }
}
header .mobile-nav .right-aside .booking .number span {
  color: #333;
  display: block;
  font-style: inherit;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 2px;
}
header .mobile-nav .right-aside .booking .number span:nth-child(2) {
  font-size: 18px;
  font-weight: 600;
  color: #708b45;
}
@media screen and (max-width: 575px) {
  header .mobile-nav .right-aside .booking .number span:nth-child(2) {
    font-size: 15px;
  }
}
@media screen and (max-width: 1100px) {
  header .desktop-nav {
    display: none;
  }
}

@keyframes scroll {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
.footer-contact {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.footer-contact ul {
  display: flex;
}
.footer-contact ul li {
  flex-grow: 1;
  width: 100%;
  border-right: 1px solid #fff;
}
.footer-contact ul li:last-child {
  border: none;
}
.footer-contact ul li a {
  background: #2a5028;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 10px 8px;
  justify-content: center;
  gap: 10px;
  font-family: "Laila", serif;
  transition: 0.4s ease-in-out;
  color: #1f1f1f;
}
.footer-contact ul li a span {
  color: #fff;
  transition: 0.4s ease-in-out;
  font-size: 14px;
  text-align: center;
}
.footer-contact ul li a span:nth-child(3) {
  display: none;
}
.footer-contact ul li a:hover {
  background: #ecc355;
}
.footer-contact ul li a:hover span {
  color: #708b45;
}
.footer-contact ul li a:hover img {
  filter: invert(30%) sepia(3%) saturate(3938%) hue-rotate(86deg) brightness(89%) contrast(84%);
  transition: 0.4s ease-in-out;
}
.footer-contact ul li a img {
  height: 25px;
  filter: invert(1) brightness(100);
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 767px) {
  .footer-contact ul li a {
    background: #2a5028;
    padding: 8px 0;
    gap: 5px;
  }
  .footer-contact ul li a span:nth-child(2) {
    display: none;
  }
  .footer-contact ul li a span:nth-child(3) {
    display: block;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
  }
  .footer-contact ul li a img {
    height: 18px;
    filter: invert(1) brightness(100);
  }
}
@media (min-width: 991px) {
  .footer-contact {
    display: none;
  }
}

.desk-fix {
  position: fixed;
  bottom: 40px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
@media (max-width: 991px) {
  .desk-fix {
    display: none;
  }
}
.desk-fix span {
  color: #fff;
}
.desk-fix.theme-btn {
  left: 30px;
}
.desk-fix.theme-btn img {
  height: 30px;
  transition: 0.4s ease-in-out;
  filter: invert(84%) sepia(11%) saturate(494%) hue-rotate(324deg) brightness(119%) contrast(98%);
}
.desk-fix:hover img {
  transform: scale(1.1);
}
.desk-fix.whatsapp {
  right: 30px;
  box-shadow: none;
}
.desk-fix.whatsapp img {
  height: 60px;
}

.modal {
  width: 100%;
}
.modal .modal-header {
  border: none;
  background: #ecc355;
  padding: 10px 20px;
}
.modal .modal-content {
  border: none;
}
.modal .modal-title {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "blackjackregular";
}
.modal .btn-close:focus {
  box-shadow: none;
}

form .form-control {
  padding: 10px;
  resize: none;
}
form textarea {
  min-height: 150px !important;
}
form .form-control,
form .form-select,
form label {
  font-size: 14px;
  font-family: "Laila", serif;
}
form .form-control::-moz-placeholder, form .form-select::-moz-placeholder, form label::-moz-placeholder {
  font-size: 14px;
}
form .form-control::placeholder,
form .form-select::placeholder,
form label::placeholder {
  font-size: 14px;
}
form .form-control:focus,
form .form-select:focus,
form label:focus {
  outline: none;
  box-shadow: none;
  border-color: #708b45;
}

.mail-response {
  font-size: 17px;
  margin-bottom: 8px;
}

.teach-wrap {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px;
}
.teach-wrap .head img {
  border-radius: 53% 47% 58% 42%/42% 44% 56% 58%;
  background: #f8eac6;
  height: 260px;
  width: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.teach-wrap span {
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 500;
  text-transform: capitalize;
  font-family: "blackjackregular";
}
.teach-wrap p {
  font-weight: 500;
  text-align: center;
  padding: 0 20px;
}
@media screen and (max-width: 1200px) {
  .teach-wrap .head img {
    height: 200px;
    width: 200px;
  }
}
@media screen and (max-width: 991px) {
  .teach-wrap .head img {
    height: 160px;
    width: 160px;
  }
}
@media screen and (max-width: 575px) {
  .teach-wrap .head img {
    height: 130px;
    width: 130px;
  }
}

.foot-form {
  background: #f8eac6;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 30px;
  border-radius: 10px;
}

.discount {
  border: 1px solid;
  width: 70%;
  padding: 7px 15px;
  background: linear-gradient(90deg, #2a5028 0%, hsl(41, 96%, 58%) 100%);
  color: #fff !important;
  font-family: "Laila", serif;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 575px) {
  .discount {
    width: 90%;
  }
}
.discount strong {
  color: #f8eac6;
  font-size: 18px;
  font-family: "Laila", serif;
}
.discount .theme-btn {
  margin-left: 10px;
  font-size: 11px;
  font-weight: 600;
}

.banner-form-wrap {
  padding: 30px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1803921569);
}
.banner-form-wrap .sub-heading {
  text-align: center;
}
.banner-form-wrap form {
  margin: auto;
}
.banner-form-wrap form textarea {
  max-height: 30px;
}
.banner-form-wrap form label {
  display: none;
}
.banner-form-wrap form .form-control,
.banner-form-wrap form select {
  padding: 12px;
}
@media (max-width: 991px) {
  .banner-form-wrap {
    display: none;
  }
}

.offer-popup {
  position: fixed;
  left: 0;
  right: 0;
  width: 70%;
  height: -moz-fit-content;
  height: fit-content;
  bottom: 0;
  top: 0;
  margin: auto;
  background: url(../img/modal/popup-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 999;
  display: none;
  overflow: hidden;
  border-radius: 10px;
}
.offer-popup.show-offer {
  display: block;
}
.offer-popup .theme-btn {
  background: #fff;
  color: #1f1f1f !important;
}
.offer-popup .content {
  padding: 30px 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  z-index: 10;
}
.offer-popup .content .layer-yellow {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: -80px;
  z-index: 1;
}
.offer-popup .content .paint-wrap {
  padding: 15px 34px 18px 17px;
  background: url(../img/modal/heading-bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  text-align: center;
  color: #000;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  font-size: 18px;
  width: 100%;
  font-family: "californian_fbbold";
}
.offer-popup .content .paint-wrap strong {
  background: #ecc355;
  display: inline-block;
  padding: 3px;
  font-size: 22px;
}
.offer-popup .content span {
  white-space: nowrap;
  display: block;
  text-align: center;
  position: relative;
  z-index: 10;
}
.offer-popup .content span.takenext {
  font-family: "high_summitregular";
  font-size: 34px;
  display: block;
  padding: 10px;
  text-align: center;
  text-shadow: 0px 1px;
  color: #2a5028;
  rotate: -5deg;
}
.offer-popup .content span.bold-heading {
  font-family: "Candal", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.offer-popup .prices {
  position: relative;
  z-index: 10;
  border: 3px solid #fff;
  padding: 15px;
  margin: 10px 0;
}
.offer-popup .prices p {
  font-size: 16px;
  font-family: "californian_fbbold";
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-popup .prices p strong {
  font-size: 16px;
  font-family: "Laila", serif;
  display: flex;
  align-items: center;
  gap: 5px;
}
.offer-popup .prices p strong span {
  color: red;
  position: relative;
  z-index: 1;
  font-size: 16px;
}
.offer-popup .prices p strong span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  margin: auto;
  background: red;
  z-index: -1;
  height: 2px;
}
.offer-popup .theme-btn {
  position: relative;
  z-index: 10;
  font-weight: 800;
}
.offer-popup .remove-popup {
  z-index: 10;
  position: absolute;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .offer-popup .remove-popup {
    top: 5px;
    right: 0px;
  }
}
.offer-popup .remove-popup img {
  height: 40px;
  filter: invert(7%) sepia(88%) saturate(8%) hue-rotate(314deg) brightness(92%) contrast(89%);
  opacity: 0.8;
}
.offer-popup .remove-popup img:hover {
  opacity: 1;
}
.offer-popup .early-bird {
  font-family: "blackjackregular";
  font-size: 35px;
  display: block;
  color: #2a5028;
  text-align: center;
  margin: 15px;
  text-shadow: 0px 1px #000;
}
@media (max-width: 1200px) {
  .offer-popup {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .offer-popup {
    background: #ecc355;
  }
  .offer-popup .content span.takenext {
    font-size: 26px;
  }
  .offer-popup .content .paint-wrap {
    font-size: 20px;
  }
  .offer-popup .content .early-bird {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .offer-popup {
    width: 97%;
  }
}

.offer-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.offer-popup.show-offer + .offer-popup-backdrop,
.offer-popup-backdrop.show {
  display: block;
}/*# sourceMappingURL=style.css.map */