@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font: 100% "Poppins", serif;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  /* scroll-behavior: smooth; */
  padding: 88px 0 0;
  margin: 0;
  display: flex;
  flex-flow: column;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.module {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: #448c74;
  padding: 20px;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5 {
  color: #000;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}
h2 span {
  font-size: 1rem;
  display: block;
  font-weight: 400;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.2;
}

h4 {
  font-size: 1.1rem;
  line-height: 1.2;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

/* CSS */
.primary-btn {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid #3c8069;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  z-index: 2;
  color: #f4f4f4;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}
.primary-btn:hover {
  text-decoration: none;
}

.primary-btn:after {
  content: "";
  background-color: #448c74;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.primary-btn:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .primary-btn {
    padding: 13px 50px 13px;
  }
}
.tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #84342d url(../../../images/yoga-pattern-green.png) repeat top left;
  transition: 0.35s;
  color: #fff;
  padding: 10px 20px;
}
.tag.class {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.tag.class p {
  cursor: auto;
}
.tag.class span {
  font-size: 2rem;
  display: inline-flex;
  gap: 12px;
}
.tag.class a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: 0.35s;
}
.tag.class a:hover {
  color: #000;
}
@media (max-width: 768px) {
  .tag {
    padding: 8px 20px;
  }
}
.tag:hover {
  background: #e5c466 url(../../../images/yoga-pattern.png) repeat top left;
  color: #000;
}
.tag:hover p {
  color: #000 !important;
}
.tag p {
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.tag p span {
  font-size: 3rem;
  display: inline-flex;
  gap: 12px;
}
.tag p a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.tag p a:hover {
  color: #000;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #e5c466;
  border-bottom: 1px solid #cea024;
}
header.header-thankyou .container {
  justify-content: center;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  transition: transform 0.3s ease;
  margin: 0 20px 0 auto;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #dc3545;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle div {
  width: 100%;
  height: 3px;
  background: #333;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.menu a:hover {
  color: #dc3545;
}

nav a.active {
  color: #dc3545;
}

.menu.active {
  left: 0;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 200px;
    background: #eaf1ec;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 20px;
    transition: left 0.3s ease;
  }
  .menu-toggle {
    display: flex;
    order: 3;
  }
  .social-icons {
    margin: 0 20px 0 auto;
  }
}
.social-icons {
  display: flex;
  gap: 20px;
}
@media (min-width: 900px) {
  .social-icons {
    display: none;
  }
}
.social-icons a {
  text-decoration: none;
  color: #333;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #dc3545;
}

footer {
  background: #448c74;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin: auto 0 0;
}
footer.thank-you-footer {
  margin: 0;
}

/* SOCIAL */
.social-media-container {
  top: 50%;
  list-style-type: none;
  padding: 0;
  position: fixed;
  left: calc(100% - 60px);
  transform: translateY(-50%);
  min-width: 250px;
  z-index: 9999;
}

.social-media {
  align-items: center;
  display: flex;
  transition: transform 0.3s ease-in-out;
}
.social-media:hover {
  transform: translateX(calc(-100% + 90px));
}
@media (max-width: 900px) {
  .social-media {
    display: none;
  }
}
.social-media a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  display: block;
  padding: 18px 0;
}
.social-media span {
  color: #fff;
  font-size: 1.5rem;
  padding: 8px;
  text-align: center;
  width: 60px;
}
.social-media.facebook {
  background-color: #3b5998;
}
.social-media.youtube {
  background-color: #ff0000;
}
.social-media.whatsapp {
  background-color: #25d366;
}
.social-media.email {
  background-color: #dc3545;
}
.social-media.contact {
  background-color: #448c74;
}

#home {
  padding: 0;
  min-height: calc(100vh - 100px);
}
#home figure {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
#home figure figcaption {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 25px;
  border-radius: 8px;
  width: 750px;
}
@media (max-width: 768px) {
  #home figure figcaption {
    width: 90%;
  }
}
#home figure figcaption h1 {
  font-size: 3rem;
  color: #fff;
}
@media (max-width: 768px) {
  #home figure figcaption h1 {
    font-size: 1.8rem;
  }
}
#home figure figcaption p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding: 0;
  margin: 0;
}
#home figure figcaption a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
#home figure figcaption a:hover {
  background-color: #333;
  color: #fff;
}
#home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about {
  padding: 40px 20px;
}
.about .container {
  max-width: 750px;
  text-align: left;
}
.about .container a {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
}

.online-yoga-wrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-flow: row-reverse;
}
@media (max-width: 900px) {
  .online-yoga-wrapper {
    flex-flow: column;
  }
}
.online-yoga-wrapper figure {
  margin: 0;
  padding: 8px;
  background: #fff;
  box-shadow: 0 0 10px #40846d;
  border-radius: 10px;
  transition: transform 0.3s;
  width: 100%;
  height: 496px;
}
.online-yoga-wrapper figure img {
  height: 480px;
  object-fit: cover;
  width: 100%;
  object-position: bottom;
}
.online-yoga-wrapper .online-yoga-details {
  max-width: 500px;
  text-align: left;
  padding-left: 25px;
}
@media (max-width: 900px) {
  .online-yoga-wrapper .online-yoga-details {
    padding-left: 0;
  }
}
.online-yoga-wrapper .online-yoga-details h2 {
  font-size: 2rem;
}
@media (max-width: 900px) {
  .online-yoga-wrapper .online-yoga-details h2 {
    font-size: 1.8rem;
  }
}
.online-yoga-wrapper .online-yoga-details h2 span {
  font-size: 2rem;
  line-height: 1.2;
  background: #448c74;
  color: #fff;
  padding: 8px;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 900px) {
  .online-yoga-wrapper .online-yoga-details h2 span {
    font-size: 1.8rem;
  }
}
.online-yoga-wrapper .online-yoga-details h2 span.join {
  font-size: 1.5rem;
  background: #dc3545;
  border-bottom: 3px solid #94202c;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
}
.online-yoga-wrapper .online-yoga-details ul {
  list-style-type: none;
  text-align: left;
  padding: 20px 10px;
  margin: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
.online-yoga-wrapper .online-yoga-details ul li {
  margin: 0 0 0 20px;
  padding: 0;
  width: 100%;
  font-weight: 600;
  position: relative;
}
.online-yoga-wrapper .online-yoga-details ul li::before {
  content: ">";
  position: absolute;
  left: -20px;
}

.corporate-yoga-wrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .corporate-yoga-wrapper {
    flex-flow: column;
  }
}
.corporate-yoga-wrapper * {
  color: #fff;
}
.corporate-yoga-wrapper figure {
  margin: 0;
  padding: 8px;
  background: #fff;
  box-shadow: 0 0 10px #40846d;
  border-radius: 10px;
  transition: transform 0.3s;
  width: 100%;
  height: 496px;
}
.corporate-yoga-wrapper figure img {
  height: 480px;
  object-fit: cover;
  width: 100%;
  object-position: top;
}
.corporate-yoga-wrapper .corporate-yoga-details {
  max-width: 375px;
  text-align: right;
  padding-right: 25px;
}
@media (max-width: 900px) {
  .corporate-yoga-wrapper .corporate-yoga-details {
    padding-right: 0;
    text-align: left;
  }
}
.corporate-yoga-wrapper .corporate-yoga-details h2 {
  font-size: 2.5rem;
}
@media (max-width: 900px) {
  .corporate-yoga-wrapper .corporate-yoga-details h2 {
    font-size: 1.8rem;
  }
}
.corporate-yoga-wrapper .corporate-yoga-details h2 span {
  font-size: 2.5rem;
  line-height: 1.2;
  background: #e5c466;
  color: #000;
  padding: 8px;
  font-weight: 600;
  display: inline-block;
  border-bottom: 3px solid;
}
@media (max-width: 900px) {
  .corporate-yoga-wrapper .corporate-yoga-details h2 span {
    font-size: 1.8rem;
  }
}

.services-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px;
  padding: 0;
  list-style: none;
}
.services-list li {
  flex: 1 1 300px;
  margin: 0;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px #366f5c;
  border-radius: 10px;
  transition: transform 0.3s;
}
.services-list li figure img {
  max-width: 150px;
}
.services-list li:hover {
  transform: translateY(-10px);
}
.services-list li h3 {
  /* min-height: 44px; */
  max-width: 80%;
  margin: 10px auto 15px;
}
.services-list li p {
  text-align: left;
  font-size: 0.9rem;
}

#services h2 {
  color: #fff;
}

.stories-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px;
  padding: 0;
  list-style: none;
}
.stories-list li {
  flex: 1 1 450px;
  margin: 0;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px #e0ebe3;
  border-radius: 10px;
  transition: transform 0.3s;
}
.stories-list li figure img {
  max-width: 150px;
}
.stories-list li:hover {
  transform: translateY(-10px);
}
.stories-list li h4 {
  min-height: 44px;
  max-width: 80%;
  margin: 10px auto 0;
}

.stories-list + .primary-btn {
  margin-top: 20px;
}

.testimonials-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px;
  padding: 0;
  list-style: none;
}
.testimonials-list .slick-list {
  padding: 25px 0 0;
}
.testimonials-list .slick-prev:before, .testimonials-list .slick-next:before {
  color: #448c74;
}
.testimonials-list li.single-testimony {
  flex: 1 1 300px;
  margin: 0;
  transition: transform 0.3s;
  position: relative;
}
.testimonials-list li.single-testimony.slick-slide {
  margin: 0 10px;
  /* Extra space around the slider */
}
.testimonials-list li.single-testimony div {
  padding: 0 20px;
  background: #fff;
  position: relative;
  border-radius: 30px;
  min-height: 300px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.testimonials-list li.single-testimony div::before {
  background: #448c74 url(../../../images/testimony_icon.png) no-repeat center center;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 15px;
  line-height: 15px;
  color: #448c74;
  border-radius: 50%;
  z-index: 2;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-list li.single-testimony::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 112px;
  height: 112px;
  top: -1px;
  left: auto;
  bottom: auto;
  right: -1px;
  background-color: #e9f0ec;
  -webkit-mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHIAAABrCAYAAACrBNYuAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkQzMzg5RjM4NDRFNTExRUY4NEZDRUU0Qjc5NzQwREQ1IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkQzMzg5RjM5NDRFNTExRUY4NEZDRUU0Qjc5NzQwREQ1Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RDMzODlGMzY0NEU1MTFFRjg0RkNFRTRCNzk3NDBERDUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RDMzODlGMzc0NEU1MTFFRjg0RkNFRTRCNzk3NDBERDUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7lE7G2AAAEOUlEQVR42uydW2iPcRjHf+9mZjNmM2sOrbEcGpqQkowcQmQSKZLDzSKHJEUpt+RQQkzJhQun2qRoF0ouTBZJMVmZ4y5IUqY5zXyf3ufibc3FHP/Ps+9T357d/C/2ft7v9/29v/f9vb8ohJAF9QlxZUADoHwoT1UADVMNh0ZCAwMrpSrq6Ojo/o+iaAjaOKgcmgxVQEU8nMZA/gTuaLQZUCU0G8rk4TUIshPUfmgLofUKNY2H2iDITlBL0aqgDVAOD7lRkAmgMkDaBm0lUMMgE0AHo+2DVvPwGwaZADof7TRHu3+m/tsgBCdQnd6+1BGDYZAK8w3aIugAURiN1i6idjuBGnVkJ3ceRNtBJMZBKkxx5F5iMRytiYiN0GpDPNXHsgpSYcoU3z2olIgMRmsiYj+grYK+EpFhkArzNtp+IjIcrYmIlQfejSF+oM2y6Eh15Se0ncRk3JGJUWxDiN9EYFl0pLpSzrQ9RGXckQlXyu1IOZEZdWTClYeIy7gj1ZW90V5Bg4jNqCPVlV/QThGZcUeqK8vQHhKbYUeqK2Vy4C6xGQepdYbYjEerxmshWgvUi/gMO1Lf87lBdPajVaqW6IxHq8brULSX8icRGnYkTj65RjYQn/1olaohPh8gLxGfA5CI16bAWR4XjuTolSB5+5GKtyJP0EbQkfbrAv3oA+Q5YnQQrRqvj9DG0JH26ywd6cORxWhPQw/+no+Lfxwn4wu0q4xWH3Wc0erhH4kiOSnlnrKEjrQdr9/RjtCRPlyZo4OeAjrStitbQw9dHOvKkepKWRz7GCqmI227skcujnXnyIQz5Rt38wjSPkj57oCsqcxltNqOWBm9VvEa6QPmebSjjFYfEZse4lcnF9ORtl3ZjrYCukyQPm5JlkInGa1+onYt2jEomyDtwxyFVg3NZLTajlp5S32WXjub6Egf7pSVz/JJUfmm+niCtA80Upeug5ZAfQnSPlR5rrksxLsFyQ586QRpH6o8pF4Q4v1JZBI+lyDtQ5Udb6cr0LnQhJAiy98J8vfAFirQOZDs9VVEkD4GS5M0hkVT/uW1lSD/Hlj5iqVMCy7XiYd0gvQDdQ00lSB9QJXd4jcq1GyC9HFbsynE2xX3J0gfQHdBm6EMgvQRuSegab/y+zQewtQoGOoBWoW68xsd6cOdMrKt6c4EA0GmLswStCtQGUHah5mHdg2aSJA+JhOuQ2MJ0j5M+bLXHSiPo1bbI9pmtJVQO0Hahymryw4zWn1ErLxHdD90sYk4HWnLlR/RttCRfpwp+55U0JH2azcd6ceV9SHxkJqOtFvVdKQPR2aFeIfbfDrS9gi2LSQ2sSFI23WR0eojXjPR3kI5dKTteP2MdovR6qPqCdJH3eQ10sd1Upb5vSdIHzCfM1p9VCNB+qhmgvRRzwjSR7UQpI96TZA+6h1BEiQrhaqVIH1U2w8BBgCoC22IiIsGWgAAAABJRU5ErkJggg==) no-repeat;
  mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHIAAABrCAYAAACrBNYuAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkQzMzg5RjM4NDRFNTExRUY4NEZDRUU0Qjc5NzQwREQ1IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkQzMzg5RjM5NDRFNTExRUY4NEZDRUU0Qjc5NzQwREQ1Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RDMzODlGMzY0NEU1MTFFRjg0RkNFRTRCNzk3NDBERDUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RDMzODlGMzc0NEU1MTFFRjg0RkNFRTRCNzk3NDBERDUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7lE7G2AAAEOUlEQVR42uydW2iPcRjHf+9mZjNmM2sOrbEcGpqQkowcQmQSKZLDzSKHJEUpt+RQQkzJhQun2qRoF0ouTBZJMVmZ4y5IUqY5zXyf3ufibc3FHP/Ps+9T357d/C/2ft7v9/29v/f9vb8ohJAF9QlxZUADoHwoT1UADVMNh0ZCAwMrpSrq6Ojo/o+iaAjaOKgcmgxVQEU8nMZA/gTuaLQZUCU0G8rk4TUIshPUfmgLofUKNY2H2iDITlBL0aqgDVAOD7lRkAmgMkDaBm0lUMMgE0AHo+2DVvPwGwaZADof7TRHu3+m/tsgBCdQnd6+1BGDYZAK8w3aIugAURiN1i6idjuBGnVkJ3ceRNtBJMZBKkxx5F5iMRytiYiN0GpDPNXHsgpSYcoU3z2olIgMRmsiYj+grYK+EpFhkArzNtp+IjIcrYmIlQfejSF+oM2y6Eh15Se0ncRk3JGJUWxDiN9EYFl0pLpSzrQ9RGXckQlXyu1IOZEZdWTClYeIy7gj1ZW90V5Bg4jNqCPVlV/QThGZcUeqK8vQHhKbYUeqK2Vy4C6xGQepdYbYjEerxmshWgvUi/gMO1Lf87lBdPajVaqW6IxHq8brULSX8icRGnYkTj65RjYQn/1olaohPh8gLxGfA5CI16bAWR4XjuTolSB5+5GKtyJP0EbQkfbrAv3oA+Q5YnQQrRqvj9DG0JH26ywd6cORxWhPQw/+no+Lfxwn4wu0q4xWH3Wc0erhH4kiOSnlnrKEjrQdr9/RjtCRPlyZo4OeAjrStitbQw9dHOvKkepKWRz7GCqmI227skcujnXnyIQz5Rt38wjSPkj57oCsqcxltNqOWBm9VvEa6QPmebSjjFYfEZse4lcnF9ORtl3ZjrYCukyQPm5JlkInGa1+onYt2jEomyDtwxyFVg3NZLTajlp5S32WXjub6Egf7pSVz/JJUfmm+niCtA80Upeug5ZAfQnSPlR5rrksxLsFyQ586QRpH6o8pF4Q4v1JZBI+lyDtQ5Udb6cr0LnQhJAiy98J8vfAFirQOZDs9VVEkD4GS5M0hkVT/uW1lSD/Hlj5iqVMCy7XiYd0gvQDdQ00lSB9QJXd4jcq1GyC9HFbsynE2xX3J0gfQHdBm6EMgvQRuSegab/y+zQewtQoGOoBWoW68xsd6cOdMrKt6c4EA0GmLswStCtQGUHah5mHdg2aSJA+JhOuQ2MJ0j5M+bLXHSiPo1bbI9pmtJVQO0Hahymryw4zWn1ErLxHdD90sYk4HWnLlR/RttCRfpwp+55U0JH2azcd6ceV9SHxkJqOtFvVdKQPR2aFeIfbfDrS9gi2LSQ2sSFI23WR0eojXjPR3kI5dKTteP2MdovR6qPqCdJH3eQ10sd1Upb5vSdIHzCfM1p9VCNB+qhmgvRRzwjSR7UQpI96TZA+6h1BEiQrhaqVIH1U2w8BBgCoC22IiIsGWgAAAABJRU5ErkJggg==) no-repeat;
}
.testimonials-list li.single-testimony figure img {
  max-width: 150px;
}
.testimonials-list li.single-testimony:hover {
  transform: translateY(-10px);
}
.testimonials-list li.single-testimony p {
  display: -webkit-box;
  /* -webkit-line-clamp: 3; */
  /* Limits the text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Adds "..." if text overflows */
  line-height: 1.5;
  /* Adjusts line spacing */
  /* max-height: 5em; */
  /* Ensures height fits two lines (line-height * 2) */
  word-break: break-word;
  /* Prevents long words from overflowing */
}
.testimonials-list li.single-testimony h5 {
  padding: 0;
  margin: 0;
}

#testimonials {
  padding-bottom: 0;
  background: #e9f0ec url(../../../images/yoga-pattern-green.png) repeat top left;
}
#testimonials .container {
  max-width: 1000px;
}
#testimonials h2 {
  color: #448c74;
}

#acharya {
  position: relative;
}
#acharya h2,
#acharya p {
  color: #e9f0ec;
}
#acharya p {
  text-align: left;
}

.acharya-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}
.acharya-content iframe {
  border: 0;
  border-radius: 15px;
  height: 320px;
  width: 100%;
  border: solid 3px #d3d3d3;
}
.acharya-content ul,
.acharya-content p, .acharya-content .video {
  flex: 1 1 590px;
  align-items: center;
  justify-content: center;
}
.acharya-content ul {
  list-style-type: none;
  text-align: left;
  padding: 20px;
  margin: 0;
  background: #e9f0ec url(../../../images/yoga-pattern-green.png) repeat top left;
  border-radius: 15px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
.acharya-content ul li {
  margin: 0 0 0 20px;
  padding: 0;
  width: 100%;
  font-weight: 600;
  position: relative;
}
.acharya-content ul li::before {
  content: ">";
  position: absolute;
  left: -20px;
}

.acharya-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}
.acharya-details div {
  flex: 1 1 590px;
  align-items: center;
  justify-content: center;
}
.acharya-details div figure {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acharya-details img {
  width: 100%;
  max-width: 100%;
  border-radius: 15px;
  height: 360px;
  object-fit: cover;
  border: solid 3px #d3d3d3;
}
.acharya-details p {
  margin: 0;
}

#contact {
  background: #e9f0ec url(../../../images/yoga-pattern-green.png) repeat top left;
  /* Form Styling */
}
#contact h2 {
  color: #448c74;
}
#contact .contact-form-container {
  display: flex;
  height: 100%;
  gap: 50px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #contact .contact-form-container {
    flex-flow: column-reverse;
  }
}
#contact .contact-form-container .contact-info {
  width: 50%;
  text-align: left;
  background: #448c74 url(../../../images/yoga-pattern.png) repeat top left;
  padding: 20px;
  border-radius: 30px;
  display: flex;
  height: auto;
  display: flex;
  flex-flow: column;
}
@media (max-width: 768px) {
  #contact .contact-form-container .contact-info {
    width: 100%;
  }
}
#contact .contact-form-container .contact-info h4,
#contact .contact-form-container .contact-info p {
  color: #fff;
}
#contact .contact-form-container .contact-info h4 {
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: solid 1px #fff;
}
#contact .contact-form-container .contact-info h4 + p {
  margin-top: 20px;
}
#contact .contact-form-container .contact-info p + p {
  margin-top: 10px;
}
#contact .contact-form-container .contact-info p {
  padding: 0;
  margin: 0;
}
#contact .contact-form-container .contact-info p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
#contact .contact-form-container .contact-info p a:hover {
  text-decoration: underline;
}
#contact form {
  width: 50%;
}
@media (max-width: 768px) {
  #contact form {
    width: 100%;
  }
}
#contact .form-group {
  margin-bottom: 15px;
  text-align: left;
}
#contact label {
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: block;
  font-weight: 600;
}
#contact input,
#contact textarea {
  font-family: "Poppins", serif;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}
#contact input:focus,
#contact textarea:focus {
  border-color: #448c74;
  outline: none;
}
#contact button {
  background-color: #448c74;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  #contact button {
    width: 100%;
  }
}
#contact button:hover {
  background-color: #326554;
}

section {
  margin: 0;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}
@media (max-width: 900px) {
  section {
    padding: 100px 20px 40px;
  }
}

body {
  background: #e9f0ec url(../../../images/yoga-pattern-green.png) repeat top left;
}

section:nth-child(even).thankyou-section {
  background: #e9f0ec url(../../../images/yoga-pattern-green.png) repeat top left;
  display: flex;
  margin: auto;
}
section:nth-child(even).thankyou-section h1 {
  text-transform: capitalize;
}
section:nth-child(even).thankyou-section h1 span {
  display: inline-block;
}
section:nth-child(even).thankyou-section p {
  margin: 0 0 25px;
}

#services,
#acharya,
.alternet-pattern {
  background: #448c74 url(../../../images/yoga-pattern.png) repeat top left;
}

@media (max-width: 900px) {
  #services,
  #acharya {
    padding-bottom: 120px;
  }
}

/* popup */
#main {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5333333333);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 9999;
}

#pop-up {
  text-align: center;
  width: 45vw;
  max-width: 655px;
  background: #e9f0ec;
  box-sizing: border-box;
  padding: 20px 20px 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}
@media (max-width: 1199px) {
  #pop-up {
    width: 95vw;
    max-width: 500px;
  }
}
#pop-up .logo-popup img {
  max-width: 150px;
}
#pop-up #close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  outline: none;
  border: none;
}
#pop-up h2 {
  font-size: 1.8rem;
  margin: 15px 0 35px;
}
@media (max-width: 1199px) {
  #pop-up h2 {
    font-size: 1.3rem;
    margin: 15px 0 35px;
  }
}

/*# sourceMappingURL=custom.css.map */
