@import url("https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --fontroboto: "Roboto", sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
  color: inherit;
}
a:hover {
  cursor: pointer;
}

.bg-color {
  background-color: #528d91;
}

/* Slider container */
.slider-container {
  position: relative;
  overflow: hidden;
  height: 90vh;
}

/* Slider wrapper */
.slider {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.slide1 {
  background-image: url("../../assets/images/slider/1.webp");
  background-size: cover;
  background-position: center;
}

.slide2 {
  background-image: url("../../assets/images/slider/2.webp");
  background-size: cover;
  background-position: center;
}

.slide3 {
  background-image: url("../../assets/images/slider/3.webp");
  background-size: cover;
  background-position: center;
}

.slide4 {
  background-image: url("../../assets/images/slider/4.webp");
  background-size: cover;
  background-position: center;
}

/* Slide item */
.slide {
  flex: 0 0 100%;
}

/* Slide items */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease; /* Smooth transition for opacity */
  background-size: cover;
  background-position: center;
}

/* Ensure the active slide is fully visible */
.slide.active {
  opacity: 1;
}

/* Slide content (optional) */
.slide-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 24px;
}

/* Direction control */
.dir-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  z-index: 1;
}

#dir-control-left {
  left: 20px;
}

#dir-control-right {
  right: 20px;
}

.logo-theme-color {
  filter: invert(50%) sepia(63%) saturate(265%) hue-rotate(135deg) brightness(89%) contrast(84%);
}

header {
  /* Mobile navigation */
}
header .navigation {
  box-shadow: 0px 2px 5px rgba(214, 214, 214, 0.2);
  background-color: #fff;
}
header .img-logo {
  height: 70px;
}
header .brand {
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
  padding: 10px 0px;
}
header .brand a,
header .brand a:visited {
  color: #ffffff;
  text-decoration: none;
}
header nav {
  float: right;
}
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: white;
}
header nav ul li {
  float: left;
  position: relative;
  font-size: 1rem;
  font-family: sans-serif;
}
header nav ul li .fa-angle-down {
  margin-left: 0.2rem;
}
header nav ul li a,
header nav ul li .nav_menu:visited {
  display: block;
  padding: 0 17px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 70px;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  color: #212529;
  font-size: 1rem;
  text-decoration: none;
}
header nav ul li a:hover,
header nav ul li .nav_menu:visited:hover {
  background: #fafafa;
  color: #528d91;
}
header nav ul li ul li {
  min-width: 190px;
  width: 100%;
  border-bottom: 1px dashed rgba(0, 148, 161, 0.3019607843);
}
header nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}
header nav ul li ul li a .fa-arrow-right {
  margin-right: 8px;
  transition: transform 200ms ease-in, opacity 200ms ease-in;
  opacity: 0;
}
header nav ul li ul li:hover a .fa-arrow-right {
  transform: translateX(4px);
  opacity: 1;
}
header nav ul li .btn1 {
  padding: 10px 30px 10px 30px !important;
  font-size: 16px !important;
  background-color: #528d91 !important;
  border-radius: 3px !important;
  color: white !important;
  text-decoration: none !important;
  border: 2px solid #528d91 !important;
  text-transform: uppercase !important;
  line-height: normal !important;
  margin-top: 13px;
  width: -moz-max-content;
  width: max-content;
}
header nav ul li .btn1:hover {
  color: white !important;
  background-color: #036670 !important;
  border: 2px solid #036670 !important;
}
header .nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  padding: 0px 0;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
header .nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #ffffff;
  height: 70px;
  width: 70px;
}
@media only screen and (max-width: 798px) {
  header .nav-mobile {
    display: block;
  }
  header nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  header nav ul {
    display: none;
    padding: 0.5rem 0.5rem 2rem 0.5rem;
    box-shadow: 0px 2px 5px rgba(214, 214, 214, 0.2);
    border: 1px solid rgba(0, 148, 161, 0.3411764706);
    height: 90vh;
    overflow: scroll;
  }
  header nav ul li {
    float: none;
  }
  header nav ul li a {
    padding: 12px;
    line-height: 20px;
    margin-bottom: 0.1rem;
  }
  header nav ul li ul li a {
    padding-left: 12px;
    font-size: 15px;
  }
  header .nav-dropdown {
    position: static;
    height: auto !important;
    margin-bottom: 1rem;
    margin-left: 0.5rem;
  }
}
@media screen and (min-width: 799px) {
  header .nav-list {
    display: block !important;
  }
}
header #nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
header #nav-toggle span,
header #nav-toggle span:before,
header #nav-toggle span:after {
  cursor: pointer;
  border-radius: 2px;
  height: 4px;
  width: 32px;
  background: #036670;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
header #nav-toggle span:before {
  top: -10px;
}
header #nav-toggle span:after {
  bottom: -10px;
}
header #nav-toggle.active span {
  background-color: transparent;
}
header #nav-toggle.active span:before, header #nav-toggle.active span:after {
  top: 0;
}
header #nav-toggle.active span:before {
  transform: rotate(45deg);
}
header #nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media only screen and (max-width: 991px) {
  header .navigation {
    position: absolute;
    width: 100%;
    background-color: #ffffff; /* You may need to define $nav-background */
    z-index: 999; /* Adjust the z-index as needed */
  }
}
.header {
  position: fixed;
  top: 0;
  border-bottom: 1px solid #e9e9e9;
  left: 0;
  width: 100%;
  background-color: #ffffff; /* Adjust as needed */
  z-index: 1000; /* Adjust as needed */
}

body {
  overflow-x: visible; /* Ensures horizontal overflow is visible */
}

.btn1 {
  padding: 10px 30px 10px 30px;
  font-size: 16px;
  background-color: #528d91;
  border-radius: 3px;
  color: white;
  text-decoration: none;
  border: 2px solid #528d91;
  text-transform: uppercase;
  align-items: center;
  text-align: center;
  display: flex;
}
.btn1:hover {
  color: white;
  background-color: #036670;
  border: 2px solid #036670;
}

.btn2 {
  padding: 10px 30px 10px 30px;
  font-size: 16px;
  background: transparent;
  text-transform: uppercase;
  color: #528d91;
  border: 2px solid #528d91;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  align-items: center;
  display: flex;
}
.btn2:hover {
  color: white;
  background-color: #036670;
  border: 2px solid #036670;
}

.btn3 {
  padding: 10px 30px 10px 30px;
  font-size: 16px;
  background: transparent;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 3px;
  text-decoration: none;
  align-items: center;
  text-align: center;
  display: flex;
}
.btn3:hover {
  background-color: white;
  color: #528d91;
  border: 2px solid white;
}

.index-banner {
  background-color: #f2f7f8;
  background-image: url("../../assets/images/bali Yogshala-yoga-banner01k.jpeg");
  background-position: center center;
  background-size: cover;
  transition: none;
  background: 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 60px 0px 60px 0px;
  position: relative;
}
.index-banner .para {
  font-size: 18px !important;
}

.head1 {
  font-family: "Noto Serif", serif;
  font-size: 3.5em;
  text-transform: capitalize;
  line-height: 1.3em;
  color: #090909;
  font-weight: 600;
}

.head5 {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 15px;
}

.teacher-profile {
  position: relative;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.teacher-profile .teacher-details {
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0));
  bottom: 0px;
  padding-left: 1rem;
  width: 100%;
  padding-bottom: 0.5rem;
  color: white;
}
.teacher-profile .teacher-details .head3 {
  font-size: 1.3rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
}
.teacher-profile .teacher-details .head4 {
  font-size: 1.1rem;
  font-family: "Quicksand", sans-serif;
}

.w-70 {
  width: 70%;
}

.yoga-background-overlay {
  background-color: transparent;
  background-image: linear-gradient(120deg, #f2f7f8 32%, rgba(255, 255, 255, 0) 67%);
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.z-1 {
  z-index: 1;
}

.para {
  font-size: 17px;
  line-height: 1.6;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
}

.animate .head1,
.animate .para,
.animate .btn1 {
  visibility: hidden;
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0%);
    visibility: visible;
  }
}

.course-detail {
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
  background-image: url("../../assets/images/yoga-bg-pattern-chakras.png");
  z-index: 10;
  overflow: hidden;
  border-width: 1px;
  border-color: hsla(185, 98%, 62%, 0.6);
  background-color: rgb(235, 253, 255);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.course-detail .figure {
  position: relative;
  height: 100%;
  width: 100%;
}
.course-detail .figure::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 10;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
}
.course-detail .figure .overlay-content {
  position: absolute;
  bottom: 0px;
  color: white;
  z-index: 10;
}
.course-detail .figure .overlay-content .list .list-item {
  margin-bottom: 10px;
  list-style-type: none;
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
}
.course-detail .figure .overlay-content .list .list-item .list-title {
  font-weight: 600;
}
.course-detail .figure .image {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.course-detail .main-content {
  padding: 1.75rem;
  height: 100%;
  width: 100%;
}
.course-detail .main-content .title-area .title {
  font-size: 1.7rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.course-detail .main-content .title-area .title .thin {
  font-weight: 100;
  color: #528d91;
}
.course-detail .main-content .title-area .subtitle {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: #036670;
}
.course-detail .main-content .dates {
  border-top: 1px dashed;
  border-color: hsla(210, 10%, 8%, 0.3);
}
.course-detail .main-content .dates .title {
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: #036670;
}
.course-detail .main-content .dates .calender-list {
  margin-top: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  display: flex;
  flex-wrap: wrap;
}
.course-detail .main-content .dates .calender-list .list-item {
  position: relative;
  left: 0px;
  margin-bottom: 5px;
  font-size: 1rem;
  width: 50%;
  line-height: 1.6;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  list-style-type: none;
}
.course-detail .main-content .dates .calender-list .fa-calendar-days {
  margin-right: 10px;
}
.course-detail .main-content .price-block {
  border-top: 1px dashed;
  border-color: hsla(210, 10%, 8%, 0.3);
}
.course-detail .main-content .price-block .title {
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: #036670;
}

.price-wrap {
  display: flex;
}
.price-wrap .price-item {
  width: 50%;
}
.price-wrap .price-item .price-title {
  font-size: 1.5rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-bottom: 0px;
}
.price-wrap .price-item .discount-price {
  font-size: 1.2rem;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  text-decoration: line-through;
  color: rgb(99, 99, 99);
  margin-bottom: 0px;
}
.price-wrap .price-item .text {
  font-size: 1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: #036670;
}

.bg-banner {
  background-color: #f2f7f8;
}

.bg-white {
  background-color: white;
}

.about-us {
  padding: 50px 50px 60px 50px;
  box-shadow: 2px 2px 10px #e6e6e6;
}

.teachers-bali-img {
  max-height: 300px;
}

.heading-main .upper-heading {
  display: block;
  font-size: 18px;
  position: relative;
}
.heading-main .heading_main_Pl {
  padding-left: 33px;
}
.heading-main .theme-line::after {
  display: block;
  content: "";
  position: absolute;
  width: 25px;
  top: 50%;
  height: 1px;
  left: 0;
  background-color: #528d91;
}
.heading-main .theme-white-line::after {
  display: block;
  content: "";
  position: absolute;
  width: 25px;
  top: 50%;
  height: 1px;
  left: 0;
  background-color: rgb(255, 255, 255);
}
.heading-main .head2 {
  font-size: 2.2rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}
.heading-main .head3 {
  font-size: 1.6rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

.section-padding {
  padding: 60px 0px;
}

.bg-student-certificate {
  background-image: url("../../assets/images/certification-bali.jpg");
  background-position: center center;
  background-size: cover;
}

.bg-bali {
  background-image: url("../../assets/images/bali-indonesia.webp");
  background-position: center center;
  background-size: cover;
}

.yoga-list {
  padding-left: 0px;
  flex-wrap: wrap;
}
.yoga-list li {
  list-style-type: none;
  font-size: 17px;
  line-height: 1.6;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  width: 100%;
}

.index-banner .yoga-list {
  padding-left: 0px;
  flex-wrap: wrap;
}
.index-banner .yoga-list li {
  list-style-type: none;
  font-size: 17px;
  line-height: 1.6;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.theme-color {
  color: #528d91;
}

.cancel-color {
  color: rgb(204, 2, 2);
}

.element-populated {
  background-color: #528d91;
  display: flex;
  align-items: center;
  padding: 40px 10px 40px 0px;
}

.col-white {
  color: white;
}

.bg-strip {
  background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6509803922), rgba(0, 0, 0, 0.6509803922)), url("../../assets/images/strip-banner.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  padding: 80px 0;
}
.bg-strip .bg-strip_heading2 {
  font-size: 2.4rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
  color: white;
}
.bg-strip .bg-strip_span {
  color: #83bec3;
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
}

.class_details {
  margin: 0px 15px 40px;
}
.class_details img {
  border-radius: 6px 6px 6px 6px;
}
.class_details .class_info {
  padding: 0px 20px;
  position: relative;
  margin-top: -50px;
}
.class_details .class_info .class-content {
  padding: 30px;
  background-color: #f2f7f8;
  border-radius: 6px 6px 6px 6px;
  width: 100%;
  position: relative;
}
.class_details .class_info .class-content .head5 {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  font-size: 1.25rem;
}
.class_details .class_info .class-content .para {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blogs_details {
  margin: 0px 15px 40px;
}
.blogs_details img {
  border-radius: 6px 6px 6px 6px;
}
.blogs_details .class_info {
  padding: 0px 20px;
  position: relative;
  margin-top: -50px;
}
.blogs_details .class_info .class-content {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 6px 6px 6px 6px;
  width: 100%;
  position: relative;
}
.blogs_details .class_info .class-content .head5 {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  font-size: 1.1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blogs_details .class_info .class-content .para {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blogs_details .blogs-read-more {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  font-size: 1rem;
  color: #528d91;
}
.blogs_details .blogs-read-more:hover {
  color: gray;
}

.gallery img {
  margin-bottom: 1.5rem;
}

.yogic-food-container {
  background-position: center center;
  background-size: cover;
  transition: background-image 1s ease-in-out; /* Adjust transition duration as needed */
}

.yogic-food01 {
  background-image: url("../../assets/images/food-accommodation/food1.png");
}

.yogic-food02 {
  background-image: url("../../assets/images/food-accommodation/food2.png");
}

.yogic-food03 {
  background-image: url("../../assets/images/food-accommodation/food3.png");
}

.accommodation01 {
  background-image: url("../../assets/images/food-accommodation/accommodation1.png");
}

.accommodation02 {
  background-image: url("../../assets/images/food-accommodation/accommodation2.png");
}

.accommodation03 {
  background-image: url("../../assets/images/food-accommodation/accommodation3.png");
}

.student-review {
  margin: 40px 11px 15px;
  background-color: #fff;
  padding: 0 18px 25px;
  border-radius: 5px;
  position: relative;
  border: 1.5px solid #528d91;
}
.student-review .testimonial-icon {
  position: relative;
}
.student-review .testimonial-icon .review-logo {
  position: absolute;
  top: 2rem;
  right: -20px;
  height: 47px;
  width: -moz-min-content;
  width: min-content;
  opacity: 0.3;
}
.student-review .testimonial-icon .testi-image {
  height: 50px;
  width: 50px;
  border: 0.5px solid #528d91;
  border-radius: 50%;
}
.student-review .testimonial-icon .alpha-icon {
  display: flex;
  justify-content: center;
  margin-top: -20px;
  margin-bottom: 10px;
}
.student-review .testimonial-icon .fa-star {
  color: #ff9629;
}
.student-review .testimonial-icon .para {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 12; /* number of lines to show before ellipsis */
  -webkit-box-orient: vertical;
}
.student-review .testimonial-icon .para.expanded {
  overflow: visible;
  text-overflow: unset;
  display: block;
}

.section-yoga-alliance {
  background-image: url("../../assets//images/yoga-allince.webp");
  background-size: cover;
  padding: 40px 0;
}
.section-yoga-alliance .yoga_allaince_img {
  width: 412px;
  height: 115px;
}

.faq-section .accordion-button {
  font-family: "Noto Serif", serif;
  font-size: 1.1rem !important;
  color: rgb(55, 57, 57);
}
.faq-section .accordion-button:not(.collapsed) {
  color: #036670 !important;
  background-color: #f2f7f8;
  box-shadow: none;
}
.faq-section .accordion-item {
  border: 1px solid rgba(0, 148, 161, 0.29);
}
.faq-section .accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  background-color: #f2f7f8;
  box-shadow: none !important;
}

footer .head4 {
  font-size: 1.4rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}
footer .footer-contact_details {
  text-align: center;
}
footer .footer-contact_details a {
  text-decoration: none;
  color: #528d91;
}
footer .footer-contact_details a:hover {
  color: gray;
}
footer .footer-contact_details i {
  font-size: 2.2rem;
  color: #036670;
}
footer .footer-main {
  position: relative;
  background-color: rgb(235, 253, 255);
  background-image: url(../../assets/images/bg-icon01.svg);
}
footer .footer-about_us {
  background-color: white;
  text-align: center;
}
footer .footer-about_us .social_media_icon {
  height: 2.6rem;
  width: 2.6rem;
  margin: 0px 10px;
}
footer .footer-about_us .social_media_icon:hover {
  filter: grayscale(1);
}
footer .btm_line {
  border-bottom: 1px dashed #036670;
  padding-bottom: 13px;
  width: -moz-max-content;
  width: max-content;
  padding-right: 2rem;
}
footer .footer-links {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
footer .footer-links li {
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  list-style-type: none;
  padding: 10px 0px 6px 0px;
}
footer .footer-links li a {
  color: #036670;
  text-decoration: none;
}
footer .footer-links li a:hover {
  color: #528d91;
}
footer .footer-links li a i {
  margin: 0px 5px;
}
footer .col-first {
  width: 30%;
}
footer .col-second {
  width: 25%;
}
footer .col-third {
  width: 25%;
}
footer .reviews-footer-img {
  width: 100%;
  height: auto;
  border: 0.5px solid #528d91;
}
footer .reviews-footer-img:hover {
  filter: grayscale(1);
}
footer .copyRight {
  text-align: center;
  border-top: 1px dashed #528d91;
  padding-top: 1rem;
}
footer .copyRight a {
  text-decoration: none;
  color: #036670;
}
footer .copyRight a:hover {
  color: #528d91;
}

.bd-banner-03days-retreat {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/3-days-yoga-retreat-banner.jpg") no-repeat top center/cover;
}

.bd-banner-05days-retreat {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/5-days-yoga-retreas-banner.jpg") no-repeat top center/cover;
}

.bd-banner-07days-retreat {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/7-days-yoga-retreat.jpg") no-repeat top center/cover;
}

.bd-banner-10days-retreat {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/10-days-yoga-retreat-banner.jpg") no-repeat top center/cover;
}

.bd-banner-100hour-yoga-ttc {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/yoga-courses-in-bali.jpg") no-repeat top center/cover;
}

.bd-banner-200hour-yoga-ttc {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/yoga-courses-in-bali.jpg") no-repeat top center/cover;
}

.bd-banner-300hour-yoga-ttc {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/300-hour-yoga-ttc-banner.jpg") no-repeat top center/cover;
}

.bd-banner-about-us {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/best-yoga-school-in-bali.jpg") no-repeat top center/cover;
}

.bd-banner-food-accommodation {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/food-and-accommodation-banner.jpg") no-repeat top center/cover;
}

.bd-banner-our-teacher {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/yoga-teachers-banner.jpg") no-repeat top center/cover;
}

.bd-banner-faqs {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/faqs-banner.jpg") no-repeat top center/cover;
}

.bd-banner-gallery {
  background: linear-gradient(rgba(138, 138, 138, 0.108), rgba(0, 0, 0, 0.61)), url("../../assets/images/banners-photo/best-yoga-school-in-bali.jpg") no-repeat top center/cover;
}

.breadcrum-banner {
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
  height: 25rem;
}
.breadcrum-banner .breadcrum-bg-color {
  display: flex;
  align-items: end;
}
.breadcrum-banner .breadcrum-bg-color .breadcumb-content h1 {
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  color: white;
  font-size: 1.8rem;
}
.breadcrum-banner .breadcrum-bg-color .breadcumb-content .breadcrumb {
  background: white !important;
  display: flex;
  width: -moz-max-content !important;
  width: max-content !important;
  border-radius: 0 50% 50% 0;
}
.breadcrum-banner .breadcrum-bg-color .breadcumb-content .breadcrumb .breadcrumb-item {
  background: #528d91;
  color: white;
  padding: 6px 16px;
}
.breadcrum-banner .breadcrum-bg-color .breadcumb-content .breadcrumb .breadcrumb-item a:hover {
  color: rgb(201, 201, 201);
}
.breadcrum-banner .breadcrum-bg-color .breadcumb-content .breadcrumb .breadcrumb-item.active {
  background: white;
  color: #528d91;
  padding: 6px 20px;
  border-radius: 50px;
}
.breadcrum-banner .breadcrum-bg-color .breadcumb-content .breadcrumb .breadcrumb-item.active::before {
  content: none;
}

.section {
  padding: 2rem;
  background-color: white;
  box-shadow: 0px 0px 4px #efefef;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.section iframe {
  z-index: 50;
  position: relative;
}
.section .om-mandal {
  position: absolute;
  top: -6rem;
  right: -6rem;
  z-index: 0;
  height: 200px;
  width: 200px;
  animation: rotate 40s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section .h2heading {
  font-size: 1.7rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 0;
}
.section .h2heading::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  transition: 0.4s;
  background-color: #528d91;
}
.section .h2heading span {
  color: #036670;
}
.section .h3heading {
  font-size: 1.3rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}
.section .yoga-list li {
  font-weight: 500;
}

.dates-wrap .dates-box.dates-head {
  background-color: #528d91;
  margin-bottom: 0;
  font-family: "Quicksand", sans-serif;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dates-wrap .dates-box.dates-head .date-course,
.dates-wrap .dates-box.dates-head .date-shared,
.dates-wrap .dates-box.dates-head .date-private,
.dates-wrap .dates-box.dates-head .date-book {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 15px;
  position: relative;
  z-index: 9;
  text-align: center;
  width: 25%;
}
.dates-wrap .dates-box.dates-head .date-course::before,
.dates-wrap .dates-box.dates-head .date-shared::before,
.dates-wrap .dates-box.dates-head .date-private::before,
.dates-wrap .dates-box.dates-head .date-book::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  margin: auto;
  width: 1px;
  height: 60%;
  border-right: 1px dashed #fff;
}
.dates-wrap .dates-box.dates-head .date-time {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 15px;
  position: relative;
  z-index: 9;
  text-align: center;
  width: 50%;
}
.dates-wrap .dates-box.dates-head .date-time::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  margin: auto;
  width: 1px;
  height: 60%;
  border-right: 1px dashed #fff;
}
.dates-wrap .dates-box.dates-head .schedule-class-name {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 15px;
  position: relative;
  z-index: 9;
  text-align: center;
  width: 50%;
}
.dates-wrap .dates-box.dates-head .schedule-class-name::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  margin: auto;
  width: 1px;
  height: 60%;
  border-right: 1px dashed #fff;
}
.dates-wrap .dates-box.dates-head span {
  width: -moz-max-content;
  width: max-content;
}
.dates-wrap .dates-box.dates-head p {
  font-size: 16px;
  color: #000;
  text-align: justify;
  font-weight: 400;
  z-index: 100;
}
.dates-wrap .dates-box.dates-head .date-book::before {
  border-right: 0px dashed #fff !important;
}
.dates-wrap .dates-body {
  background-color: #fbfbfb;
  margin-bottom: 35px;
  font-family: "Quicksand", sans-serif;
}
.dates-wrap .dates-body .dates-box {
  display: flex;
  flex-wrap: wrap;
}
.dates-wrap .dates-body .dates-box .date-book {
  color: #000;
  padding: 8px 15px;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 25%;
}
.dates-wrap .dates-body .dates-box .date-book .theme-button {
  padding: 5px 22px;
  display: inline-block;
  border: 2px solid #528d91;
  font-weight: 600;
  color: #528d91;
  background-color: #fff;
  overflow: hidden;
  transition: 0.3s ease-in;
  font-size: 15px;
  border-radius: 3px;
}
.dates-wrap .dates-body .dates-box .date-book .theme-button:hover {
  transition: 0.3s ease-in;
  color: #fff;
  background-color: #528d91;
}
.dates-wrap .dates-body .dates-box .date-book .fully-booked {
  padding: 5px 22px;
  display: inline-block;
  border: 2px solid #528d91;
  font-weight: 600;
  color: #528d91;
  background-color: #fff;
  overflow: hidden;
  font-size: 15px;
  border-radius: 3px;
  opacity: 0.6;
}
.dates-wrap .dates-body .dates-box .date-book .fully-booked:hover {
  color: #528d91;
  background-color: #fff;
}
.dates-wrap .dates-body .dates-box .date-book::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  margin: auto;
  height: 1px;
  width: 95%;
  border-bottom: 1px dashed #ccc;
}
.dates-wrap .dates-body p {
  font-size: 16px;
  color: #000;
  text-align: justify;
  font-weight: 400;
  margin-bottom: 0px;
  z-index: 100;
}
.dates-wrap .dates-body .date-course {
  font-weight: 600;
  color: #000;
  padding: 8px 15px;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 25%;
}
.dates-wrap .dates-body .date-course::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  margin: auto;
  width: 1px;
  height: 60%;
  border-right: 1px dashed #ccc;
}
.dates-wrap .dates-body .date-course::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  margin: auto;
  height: 1px;
  width: 95%;
  border-bottom: 1px dashed #ccc;
}
.dates-wrap .dates-body .date-time {
  font-weight: 600;
  color: #000;
  padding: 8px 15px;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 50%;
}
.dates-wrap .dates-body .date-time::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  margin: auto;
  width: 1px;
  height: 60%;
  border-right: 1px dashed #ccc;
}
.dates-wrap .dates-body .date-time::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  margin: auto;
  height: 1px;
  width: 95%;
  border-bottom: 1px dashed #ccc;
}
.dates-wrap .dates-body .date-shared,
.dates-wrap .dates-body .date-private {
  flex-direction: row;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  padding: 8px 15px;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 25%;
}
.dates-wrap .dates-body .date-shared::before,
.dates-wrap .dates-body .date-private::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  margin: auto;
  width: 1px;
  height: 60%;
  border-right: 1px dashed #ccc;
}
.dates-wrap .dates-body .date-shared::after,
.dates-wrap .dates-body .date-private::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  margin: auto;
  height: 1px;
  width: 95%;
  border-bottom: 1px dashed #ccc;
}
.dates-wrap .dates-body .date-shared del,
.dates-wrap .dates-body .date-private del {
  color: #b8b8b8;
  font-size: 14px;
  margin-left: 8px;
}
.dates-wrap .dates-body .date-time-name,
.dates-wrap .dates-body .date-schedule-name {
  flex-direction: row;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 8px 15px;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
}
.dates-wrap .dates-body .date-time-name::before,
.dates-wrap .dates-body .date-schedule-name::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  margin: auto;
  width: 1px;
  height: 60%;
  border-right: 1px dashed #ccc;
}
.dates-wrap .dates-body .date-time-name::after,
.dates-wrap .dates-body .date-schedule-name::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  margin: auto;
  height: 1px;
  width: 95%;
  border-bottom: 1px dashed #ccc;
}
.dates-wrap .dates-body .date-time-name del,
.dates-wrap .dates-body .date-schedule-name del {
  color: #b8b8b8;
  font-size: 14px;
  margin-left: 8px;
}
.dates-wrap .activity-day {
  display: block;
  font-weight: 700;
  font-size: 18px;
}
.dates-wrap .activity-time {
  display: block;
  font-weight: 600;
}

.course_syllabus {
  padding: 10px 15px;
  background-color: rgba(242, 247, 248, 0.5450980392);
  border: 1px solid #528d91;
  margin-top: 1.5rem;
  display: flex;
}
.course_syllabus p {
  margin-bottom: 0px;
}
.course_syllabus .syllabus_count {
  height: 35px;
  width: 35px;
  max-height: 35px;
  min-width: 35px;
  background: #036670;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
  margin-top: 3px;
}

.sticky-course-overview {
  max-width: 100%;
  margin-left: 1rem;
  position: sticky;
  z-index: 1;
  padding: 1.2rem;
  top: 6rem;
  border: 3px solid #528d91;
  background-image: url(../../assets/images/yoga-bg-pattern-chakras.png);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.sticky-course-overview .title {
  font-size: 1.7rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}
.sticky-course-overview .title-underline::before {
  content: "";
  display: block;
  position: absolute;
  width: 2em;
  height: 2px;
  background-color: #036670;
  bottom: -10px;
}
.sticky-course-overview .list {
  padding-left: 0px;
  margin-top: 1.2rem;
}
.sticky-course-overview .list .list-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0px !important;
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
  border-bottom: 1px solid hsla(198, 84%, 17%, 0.35);
  margin: 0 0 1rem 0;
  font-family: "Quicksand", sans-serif;
  list-style-type: none;
  font-size: 1rem;
  font-weight: 500;
}
.sticky-course-overview .list .list-item .list-title {
  font-weight: 700;
}
.sticky-course-overview .price-wrap .price-item .price-title {
  font-size: 1.3rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-bottom: 0px;
}

.single-student-review {
  padding: 1.5rem;
  position: relative;
  border: 3px solid #0094a1;
  background-image: url(../../assets/images/yoga-bg-pattern-chakras.png);
}
.single-student-review .single-review-person {
  display: flex;
  position: absolute;
  top: -5rem;
  width: 380px;
  background: #0094a1;
  padding: 15px 20px;
  border-radius: 10px;
  color: white;
}
.single-student-review .single-review-person img {
  border-radius: 50px;
  height: 100px;
  width: 100px;
}
.single-student-review .single-review-content {
  margin-top: 3rem;
}

.theme-color2 {
  color: #036670;
}

.h3heading {
  font-size: 1.3rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

.below-h3healing-line::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  transition: 0.4s;
  background-color: #0094a1;
}

.activity-card {
  height: 100%;
  overflow: hidden;
  box-shadow: 0 0 9px 0 #ddd;
  background-color: white;
  border-radius: 4px;
}
.activity-card .activity-img {
  position: relative;
  height: auto;
  overflow: hidden;
}
.activity-card .activity-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.activity-card .activity-card-content {
  padding: 0.5rem 1rem 1rem 1rem;
  background-color: white;
}
.activity-card:hover {
  box-shadow: 0 0 9px 0 #c0c0c0;
  background-color: #fafafa;
}
.activity-card:hover .activity-img img {
  transform: scale(1.3);
}
.activity-card:hover .activity-card-content {
  background-color: #fafafa;
}
.activity-card:hover .activity-card-content .h3heading {
  color: #036670;
}

.note {
  background-color: #528d91;
  padding: 20px;
}
.note .note-point {
  color: #ffffff;
  margin-bottom: 0px;
}

.early_bird_discount {
  background-color: #fff;
  padding: 20px 50px;
  border-radius: 3px;
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 50px;
}
.early_bird_discount .early_bird_discount-button-wrap {
  text-align: center;
  width: 27%;
  position: relative;
  z-index: 9;
  display: flex;
}
.early_bird_discount .early_bird_discount-button-wrap::before {
  position: absolute;
  content: "";
  top: -40px;
  height: 300%;
  width: 140%;
  left: 0;
  transform: skewX(-15deg);
  background-color: #528d91;
}
.early_bird_discount .early_bird_discount-button-wrap .btn4 {
  display: block;
  position: relative;
  margin-left: 4rem;
  padding: 10px 30px 10px 30px;
  font-size: 16px;
  background: white;
  text-transform: uppercase;
  color: #0094a1;
  border-radius: 3px;
  border: 1px solid transparent;
  z-index: 100;
}
.early_bird_discount .early_bird_discount-button-wrap .btn4:hover {
  background-color: #036670;
  color: white;
  border: 1px solid white;
}
.early_bird_discount .early-bird-para {
  font-size: 1.7rem;
  line-height: 1.6;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  width: 70%;
  line-height: normal;
  padding-left: 25px;
  border-left: 3px solid #036670;
  margin-bottom: 0;
}

.book-section {
  padding: 10px;
  text-align: center;
}
.book-section a {
  text-align: center;
  font-size: 1.2rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
  padding: 7px 20px;
  background-color: #0094a1;
  color: white;
  border-radius: 3px;
}
.book-section a:hover {
  background-color: #036670;
}
.book-section .book-content {
  padding-bottom: 1rem;
  border: 1px solid #dedede;
}
.book-section .head4 {
  margin-top: 1rem;
  font-size: 1rem;
  font-family: "Noto Serif", serif;
  font-weight: 600;
}
.book-section .book-img {
  height: 300px;
}

.links_section-padding {
  padding: 60px 0px;
}

.gallery-yoga .container {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-auto-rows: minmax(100px, 200px);
  grid-auto-flow: dense;
}
.gallery-yoga .item {
  overflow: hidden;
  border: 2px solid #fff;
  position: relative;
}
.gallery-yoga .frame {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 100%;
  transition: all 0.1s ease;
  display: grid;
  justify-items: center;
  align-items: center;
  transition-delay: 0.1s;
}
.gallery-yoga .frame a {
  padding: 10px 20px;
  color: #fff;
  border-radius: 40px;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Yanone Kaffeesatz", sans-serif;
  letter-spacing: 3.5px;
}
.gallery-yoga .frame a:hover {
  background: transparent;
}
.gallery-yoga .item:hover .frame {
  top: 0;
}
.gallery-yoga .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
  transition-delay: 0.2s;
}
.gallery-yoga .item:hover img {
  transform: scale(1.4);
  opacity: 1;
}
.gallery-yoga .vertical {
  grid-column: span 2;
}
.gallery-yoga .horizontal {
  grid-row: span 2;
}
.gallery-yoga .big {
  grid-column: span 2;
  grid-row: span 2;
}

@media screen and (max-width: 565.98px) {
  .slider-container {
    position: relative;
    overflow: hidden;
    height: 30vh;
  }
  .dir-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    z-index: 1;
  }
  .yoga-list li {
    width: 100% !important;
    font-size: 15px !important;
  }
  .theme-button1 {
    display: flex !important;
  }
  .whatsapp {
    display: block !important;
  }
  .head1 {
    font-size: 2rem !important;
  }
  .index-banner .para {
    font-size: 16px !important;
  }
  .index-banner {
    padding: 40px 0px 40px 0px !important;
  }
  .about-us {
    padding: 25px 15px !important;
  }
  .heading-main .head2 {
    font-size: 1.5rem !important;
  }
  .para {
    font-size: 16px !important;
  }
  .btn1 {
    padding: 6px 15px 6px 15px !important;
    font-size: 15px !important;
  }
  .btn2 {
    padding: 6px 15px 6px 15px !important;
    font-size: 15px !important;
  }
  .btn3 {
    padding: 6px 15px 6px 15px !important;
    font-size: 15px !important;
  }
  .element-populated {
    padding: 25px 15px 25px 30px !important;
  }
  .section-padding {
    padding: 40px 0px !important;
  }
  .bg-student-certificate {
    background-image: none !important;
  }
  .heading-main .upper-heading {
    font-size: 17px !important;
  }
  .course-detail .main-content .title-area .title {
    font-size: 1.4rem !important;
  }
  .course-detail .main-content .title-area .subtitle {
    font-size: 16px !important;
  }
  .heading-main.mt-4 {
    margin-top: 1rem !important;
  }
  .col-lg-6.pe-0 {
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .course-detail {
    margin-top: 1rem !important;
  }
  .course-detail .figure {
    position: relative 1;
    height: 350px !important;
    max-height: 350px !important;
    width: 100% !important;
  }
  .course-detail .figure .overlay-content .list .list-item {
    font-size: 1rem !important;
  }
  .course-detail .main-content {
    padding: 1rem;
  }
  .content .list {
    padding-left: 1rem;
  }
  .course-detail .main-content .dates .calender-list .list-item {
    margin-bottom: 8px;
    font-size: 15px;
    width: 100%;
  }
  .mb-4 {
    margin-bottom: 1rem !important;
  }
  .course-detail .main-content .price-block .title {
    padding-bottom: 0px;
    font-size: 1.2rem;
  }
  .price-wrap .price-item .price-title {
    font-size: 1.4rem;
  }
  .head5 {
    font-size: 1.1rem;
  }
  .bg-strip .bg-strip_heading2 {
    font-size: 1.8rem;
  }
  .bg-strip .bg-strip_span {
    font-size: 1.2rem;
  }
  .class_details {
    margin: 0px 0px 31px;
  }
  .class_details .class_info .class-content {
    padding: 15px 10px 20px 10px;
  }
  .class_details .class_info .class-content .head5 {
    font-size: 1.1rem;
  }
  .blogs_details {
    margin: 0px 0px 31px;
  }
  .blogs_details .class_info .class-content {
    padding: 15px 10px 20px 10px;
  }
  .blogs_details .class_info .class-content .head5 {
    font-size: 1.1rem;
  }
  .mt-5 {
    margin-top: 2rem !important;
  }
  footer .head4 {
    font-size: 1.2rem !important;
  }
  footer .footer-contact_details {
    text-align: center;
    margin-bottom: 2rem;
  }
  footer .footer-about_us {
    border-top: 1px solid #ccd5d6;
  }
  .links_section-padding {
    padding: 20px 0px 0px 20px !important;
  }
  .links_section-padding.ms-3 {
    margin-left: 0px !important;
  }
  footer .reviews-footer-img {
    width: 90%;
    height: auto;
    border: 0.5px solid #0094a1;
  }
  .footer-links.flex-wrap {
    flex-wrap: nowrap !important;
  }
  .yogic-food-container {
    background-image: none !important;
  }
  .class_details .class_info .class-content .para {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
  }
  .blogs_details .class_info .class-content .para {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
  }
  .section-yoga-alliance .yoga_allaince_img {
    width: 100%;
    height: auto;
  }
  .early_bird_discount .early-bird-para {
    font-size: 1.4rem;
    margin-bottom: 20px;
    width: 100%;
  }
  .early_bird_discount {
    background-color: #fff;
    padding: 10px 0px;
  }
  .early_bird_discount .early_bird_discount-button-wrap {
    display: none !important;
  }
  .breadcrum-banner .breadcrum-bg-color .breadcumb-content .breadcrumb .breadcrumb-item {
    background: #0094a1;
    color: white;
    padding: 4px 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
  }
  .breadcrum-banner .breadcrum-bg-color .breadcumb-content .breadcrumb .breadcrumb-item.active {
    background: white;
    color: #0094a1;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 50px;
    display: flex;
    align-items: center;
  }
  .breadcrum-banner .breadcrum-bg-color .breadcumb-content h1 {
    font-size: 1.2rem;
  }
  .single-student-review .single-review-person img {
    border-radius: 50px;
    height: 70px;
    width: 70px;
  }
  .single-student-review .single-review-person {
    display: flex;
    position: absolute;
    top: -5rem;
    width: -moz-max-content;
    width: max-content;
    background: #0094a1;
    padding: 10px 12px;
    border-radius: 10px;
    color: white;
  }
  .section {
    padding: 0.8rem;
  }
  .section .om-mandal {
    position: absolute;
    top: -5rem;
    right: -6rem;
    z-index: 0;
    height: 170px;
    width: 170px;
    animation: rotate 40s linear infinite;
  }
  .dates-wrap .dates-body p {
    font-size: 14px;
  }
  .dates-wrap .dates-box.dates-head .date-time {
    color: #fff;
    font-size: 16px;
  }
  .dates-wrap .dates-box.dates-head .schedule-class-name {
    color: #fff;
    font-size: 16px;
  }
  .dates-wrap .dates-body .date-time-name, .dates-wrap .dates-body .date-schedule-name {
    flex-direction: row;
    font-size: 14px;
  }
  .btn1 {
    margin-bottom: 1rem;
  }
  .btn2 {
    margin-bottom: 1rem;
  }
  .dates-wrap .dates-body .dates-box {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #0094a1;
    margin: 1rem 0px;
  }
  .dates-wrap .dates-body .date-course {
    width: 100%;
  }
  .dates-wrap .dates-body .date-shared, .dates-wrap .dates-body .date-private {
    width: 50%;
  }
  .dates-wrap .dates-body .dates-box .date-book {
    width: 100%;
  }
  .dates-wrap .dates-box.dates-head .date-course, .dates-wrap .dates-box.dates-head .date-shared, .dates-wrap .dates-box.dates-head .date-private, .dates-wrap .dates-box.dates-head .date-book {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 6px 12px;
    position: relative;
    z-index: 9;
    text-align: center;
    width: 25%;
  }
  .sticky-course-overview {
    margin-left: 0px;
    padding: 1rem;
    margin-bottom: 2rem;
  }
  .breadcrum-banner {
    height: 16rem;
  }
  .sticky-course-overview .title {
    font-size: 1.5rem;
  }
  .video-iframe {
    height: 200px;
  }
  .section .h2heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1399.98px) and (min-width: 799.98px) {
  header nav ul li a, header nav ul li .nav_menu:visited {
    display: block;
    padding: 0 14px;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    line-height: 70px;
    min-width: -moz-max-content;
    min-width: max-content;
    width: 100%;
    color: #212529;
    font-size: 0.95rem;
    text-decoration: none;
  }
  header .img-logo {
    height: 30px;
  }
}
.owl-carousel .owl-dots.disabled {
  display: block !important;
}

.owl-theme .owl-nav {
  display: none !important;
}

.three-line-para {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines to show */
  -webkit-box-orient: vertical;
}

.tada {
  animation: 1.3s infinite tada;
}

@keyframes tada {
  0%, 100% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, -3deg);
  }
}
/*======================
    404 page
=======================*/
.page_404 {
  padding: 40px 0;
  background: #fff;
  font-family: "Arvo", serif;
}

.page_404 img {
  width: 100%;
}

.four_zero_four_bg {
  background-image: url("../../assets/images/dribbble_1.gif");
  height: 400px;
  background-position: center;
}

.four_zero_four_bg h1 {
  font-size: 80px;
}

.four_zero_four_bg h3 {
  font-size: 80px;
}

.link_404 {
  color: #fff !important;
  padding: 10px 20px;
  background: #39ac31;
  margin: 20px 0;
  display: inline-block;
}

.whatsapp {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 15px;
  z-index: 100;
  border-radius: 50%;
}
.whatsapp img {
  height: 45px;
  width: 45px;
}

.theme-button1 {
  padding: 6px 20px;
  font-size: 12px;
  background-color: #528d91;
  border-radius: 2px;
  color: white;
  border: 1px solid #dfdfdf;
  text-transform: uppercase;
  align-items: center;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 100;
  left: 15px;
  bottom: 28px;
  font-weight: 400;
}
.theme-button1:hover {
  color: white;
  background-color: #528d91;
  border: 2px solid #528d91;
}/*# sourceMappingURL=style.css.map */