/*====================================================== Home Page Styles =========================================================================================*/
.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand) !important;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev img,
.owl-nav .owl-next img {
  max-width: 0.875rem;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: var(--dark) !important;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  opacity: 0.7;
  pointer-events: none;
}
.owl-nav .owl-prev {
  margin-right: 1rem;
}

.owl-dots {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 26px;
  border-radius: 9px;
}

/*======================= Header Wrapper Styles ========================*/
.header__wrapper {
  background-color: rgba(239, 250, 252, 0.561);
}
.header__wrapper .items {
  min-height: calc(100vh - 5.5rem);
  padding: 4rem 0 6rem 0;
  position: relative;
}
.header__wrapper .items::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 0;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0.108), rgba(0, 0, 0, 0.7));
}
.header__wrapper .h1 {
  font-size: 2.75rem;
}
.header__wrapper .btn-white {
  border: 0;
  padding-left: 0;
}
.header__wrapper .btn-white .icon {
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  border-radius: var(--border-radius);
}
.header__wrapper .btn-white .icon img {
  max-height: 1.875rem;
}
.header__wrapper .btn-white:hover, .header__wrapper .btn-white:focus, .header__wrapper .btn-white:active {
  background-color: var(--blue);
}

.collapse__btn {
  position: relative;
}
.collapse__btn:not(.collapsed):after {
  content: "SHOW LESS";
  font-size: 11px;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  background-color: var(--blue);
  color: var(--white);
  justify-content: center;
  border-radius: 2rem;
  width: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
}

/*---- About Card Style -----------------*/
.yoga__card .caption {
  padding: 0 1rem 1rem 1rem;
  border-left: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  margin-top: -1.5rem;
}
.yoga__card .caption .title__box {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1607843137);
}
.yoga__card .caption .title__box .caption_box {
  width: calc(100% - 4rem);
  padding-right: 1rem;
}
.yoga__card .caption .title__box .caption_box .title sup {
  font-size: 1rem;
}
.yoga__card .caption .title__box .caption_box .title a {
  color: var(--white);
}
.yoga__card .caption .title__box .caption_box .title a:hover {
  color: var(--dark);
}
.yoga__card .caption .title__box .icon__box {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: url("../images/about/icons/yoga.svg") no-repeat center center/4rem;
}
.yoga__card .caption .info__list li {
  margin-bottom: 0.75rem;
}
.yoga__card .caption .info__list li .icon {
  width: 2.5rem;
  height: 2.5rem;
  background-size: 1.125rem;
}
.yoga__card .caption .info__list li .icon.yoga {
  background-size: 1.35rem;
}
.yoga__card .caption .info__list li .caption_text {
  width: calc(100% - 2.5rem);
  color: #383838;
}
.yoga__card .price__box {
  border-left: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 0px 0px 10px 10px;
  background-color: #F7F7F7;
}
.yoga__card .price__box .btn-primary:hover, .yoga__card .price__box .btn-primary:focus, .yoga__card .price__box .btn-primary:active {
  background-color: var(--brand);
  color: var(--white);
}
.yoga__card:hover {
  box-shadow: rgba(0, 0, 0, 0.23) 0px 25px 20px -20px;
}

.owl-carousel.yogaCarousel .owl-stage-outer {
  height: calc(100% + 50px);
  margin: -20px;
  padding: 20px;
  width: calc(100% + 40px);
}

/*---------- Video Player Styles -------------*/
.video__player {
  background-color: rgba(0, 0, 0, 0.2705882353);
}
.video__player .btn-play img {
  max-width: 5rem;
}
.video__player .btn-play:hover img {
  transform: scale(1.1);
}

.videoModal .modal-dialog {
  max-width: 1200px;
}
.videoModal .modal-dialog .btn-close {
  z-index: 99;
  top: 0%;
  right: 0%;
  opacity: 1;
}

/*----------- Team Carousel Navtext Styles ---------------*/
.teamCarousel .owl-nav, .yogaCarousel .owl-nav {
  position: absolute;
  top: -4rem;
  right: 0%;
}

/*--------- Certificate After Bg Styles ----------------*/
.certificate__after__bg::before {
  content: "";
  width: 100%;
  height: 50%;
  display: block;
  background-color: var(--brand);
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 0;
}

.blog__card {
  border: 1px solid #04AADC;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.blog__card:not(:last-child) {
  margin-bottom: 1.5rem;
}
.blog__card .thumbnail {
  overflow: hidden;
}
.blog__card .thumbnail img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  min-height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.blog__card .thumbnail:hover img {
  transform: scale(1.1) rotate(3deg);
}
.blog__card .caption {
  padding: 1rem 1rem 1rem 1rem;
}
.blog__card .caption .title a {
  color: var(--body-text-color);
}
.blog__card .caption .title a:hover {
  color: var(--dark);
}
.blog__card .caption .desc {
  font-size: 0.937rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
  font-family: var(--lora);
}
.blog__card:hover {
  background-color: #E2F5FB;
  box-shadow: 0px 10px 13px #DDF1F8;
}

/*----------- FAQ Wrapper ---------------*/
.faq__wrapper .accordion .accordion-item {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid #D5D5D5;
}
.faq__wrapper .accordion .accordion-item .accordion-button {
  border-radius: 0.65rem;
  background-color: #fbfbfb;
  color: #000000;
  font-size: 1.125rem;
  padding: 1rem 1rem;
  position: relative;
  font-weight: 500;
  font-display: swap;
}
.faq__wrapper .accordion .accordion-item .accordion-button::after {
  background-image: url("../images/icons/plus.svg");
  width: 1.5rem;
  height: 1.5rem;
  background-size: cover;
  transform: none;
}
.faq__wrapper .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--brand);
  background-color: #fff;
  box-shadow: none;
}
.faq__wrapper .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("../images/icons/minus.svg");
}
.faq__wrapper .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq__wrapper .accordion .accordion-item .accordion-body {
  background-color: #fff;
  padding-top: 0;
}
.faq__wrapper .accordion .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}

.gallery__card {
  position: relative;
}
.gallery__card img {
  min-height: 360px;
}
.gallery__card::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWV4dGVybmFsLWxpbmsiPjxwYXRoIGQ9Ik0xOCAxM3Y2YTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0yVjhhMiAyIDAgMCAxIDItMmg2Ij48L3BhdGg+PHBvbHlsaW5lIHBvaW50cz0iMTUgMyAyMSAzIDIxIDkiPjwvcG9seWxpbmU+PGxpbmUgeDE9IjEwIiB5MT0iMTQiIHgyPSIyMSIgeTI9IjMiPjwvbGluZT48L3N2Zz4=") no-repeat center center/2rem;
  background-color: rgba(0, 0, 0, 0.7607843137);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.gallery__card:hover::after {
  opacity: 1;
  visibility: visible;
}

/*---- Testimonial Card Style -----------------*/
.testi__video__card {
  border: 1px solid var(--blue);
}
.testi__video__card .btn-play img {
  max-width: 3.5rem;
}

.review__card {
  border: 1px solid var(--blue);
  background-color: var(--blue-gradient);
}
.review__card .logo {
  width: 4rem;
}
.review__card .caption {
  width: calc(100% - 4rem);
}

.testimonials__wrapp {
  padding-top: 12rem;
}

.testi__card {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1607843137);
  border-radius: 0.875rem;
  padding: 4.75rem 2rem 2rem 2rem;
}
.testi__card.detail {
  box-shadow: 0px 9px 11px rgba(108, 108, 108, 0.1607843137);
  border: 1px solid #E5E5E5;
}
.testi__card .avater {
  width: 7rem !important;
  height: 7rem;
  top: -0.5rem;
}
.testi__card .desc {
  color: #6C6C6C;
}

.owl-carousel.testimonialCarousel .owl-stage-outer {
  height: calc(100% + 30px);
  margin: -9px;
  padding: 9px;
  width: calc(100% + 22px);
}

.top__border {
  border-top: 5px solid rgba(0, 0, 0, 0.46);
}

/*---------------- Page Header Styles -----------------*/
.header__wrapper.subpage .items::after {
  background: rgba(0, 0, 0, 0.46);
}
.header__wrapper.subpage .content__box .title__box .icon {
  max-width: 6rem;
  filter: contrast(0) brightness(10);
}
.header__wrapper.subpage .content__box .title__box .title {
  width: calc(100% - 6rem);
  padding-left: 1rem;
}
.header__wrapper.subpage .content__box .info__list li {
  margin-bottom: 0.75rem;
}
.header__wrapper.subpage .content__box .info__list li .icon {
  width: 3rem;
  height: 3rem;
  background-size: 1.125rem;
}
.header__wrapper.subpage .content__box .info__list li .icon.yoga {
  background-size: 1.35rem;
}
.header__wrapper.subpage .content__box .info__list li .caption_text {
  width: calc(100% - 3rem);
}
.header__wrapper.subpage .content__box .btn-white {
  border: 2px solid var(--white);
}

/*----- Course Syllebus Styles -------------*/
.nav-pills.syllabus {
  background-color: rgba(4, 170, 221, 0.09);
}
.nav-pills.syllabus .nav-link {
  color: #3E3E3E;
}
.nav-pills.syllabus .nav-link .icon {
  width: 3rem;
  height: 3rem;
  background-size: 1.75rem;
}
.nav-pills.syllabus .nav-link.active {
  background-color: transparent;
  color: var(--brand);
}
.nav-pills.syllabus .nav-link.active .title {
  color: var(--brand);
}
.nav-pills.syllabus .nav-link.active::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  background: url("../images/icons/arrow-right-circle.svg") no-repeat center center/1rem;
  margin-left: auto;
}
.nav-pills.syllabus .nav-link:not(:last-child) {
  border-bottom: 1px solid rgba(112, 112, 112, 0.27);
}

.responsive__select .form-select {
  background-color: rgba(4, 170, 221, 0.09);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.875rem 2rem 0.875rem 4.5rem;
  background-image: url("../images/icons/chevron-down.svg");
  position: relative;
  background-size: 1.5rem;
}
.responsive__select .icon {
  width: 3rem;
  height: 3rem;
  background-size: 1.75rem;
  z-index: 11;
}

.yoga__item .icon__box {
  width: 7rem;
  height: 7rem;
}
.yoga__item .icon__box img {
  max-height: 4.5rem;
}

.table {
  background-color: #FCFCFC;
  border: 1px solid rgba(181, 181, 181, 0.3450980392);
}
.table thead th {
  background-color: #CA82A3;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--body-text-color);
  vertical-align: middle;
}
.table thead th:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.table td {
  padding: 0.875rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--body-text-color);
  vertical-align: middle;
  border: 0;
}
.table td:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.table > :not(:first-child) {
  border-top: 0;
}

.table__wrapper {
  overflow-x: auto;
}

.sehedule__table th:nth-child(1), .sehedule__table td:nth-child(1) {
  width: 45%;
}
.sehedule__table th:nth-child(2), .sehedule__table td:nth-child(2) {
  width: 55%;
}

/*------- Contact Page Styles --------*/
.contact__wrapper .form-control {
  border: 0;
  border-radius: 0%;
  border-bottom: 1px solid var(--border-color);
  padding-left: 0;
}

.map {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #ccc;
}
.map.max {
  max-height: 30rem;
}

.map::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0px;
}

.event.enquire__modal .modal-content {
  box-shadow: inset 0 0 0 1200px rgba(8, 8, 8, 0.57);
}
.event.enquire__modal .modal-content .modal-header {
  background-color: rgba(202, 125, 160, 0.5960784314);
}
.event.enquire__modal .modal-content .btn-close {
  filter: contrast(0) brightness(10);
}
.event.enquire__modal .modal-dialog .form-control {
  background-color: rgba(247, 247, 247, 0.7);
}

.events__btn {
  cursor: pointer;
}

.booking .form-control, .booking .form-select {
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  height: 3rem;
  padding-left: 1rem;
  background-color: #f9e9f1;
  font-weight: 600;
}
.booking textarea.form-control {
  height: auto;
}
.booking .select2-container .select2-selection--single {
  border-color: var(--border-color);
  height: 3rem;
  background-color: #f9e9f1;
}
.booking .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--dark);
  line-height: 3rem;
  padding-left: 1rem;
}
.booking .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 3rem;
  width: 3rem;
}
.booking .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 6px;
}
.booking .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-width: 0 6px 6px 6px;
}
.booking .country_code {
  width: 5rem;
  padding: 0 0.5rem !important;
  background-position: right 0.2rem center;
}
.booking .country_code_box .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0.5rem;
}
.booking .country_code_box .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 2rem;
}
.booking .country_code_box .select2-container--default .select2-selection--single {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}
.booking .country_code_box .form-control {
  width: calc(100% - 5rem);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.select2__selected .form-control, .select2__selected .select2-container .select2-selection--single {
  border-color: #099f1a !important;
  pointer-events: none;
}

.course__btn.active {
  background-color: var(--white);
  color: var(--dark) !important;
}
.course__btn.active .text-white {
  color: var(--dark) !important;
}

@media (max-width: 1399px) {
  .header__wrapper .h1 {
    font-size: 2.5rem;
  }
  .testimonials__wrapp {
    padding-top: 7rem;
  }
}
@media (max-width: 1200px) {
  .header__wrapper .items {
    min-height: 37rem;
  }
  .header__wrapper .h1 {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  .header__wrapper {
    min-height: 40rem;
  }
  .header__wrapper .items {
    min-height: 40rem;
  }
  .sehedule__table .hideable th {
    display: none;
  }
  .gallery__card img {
    min-height: 312px;
  }
}
@media (max-width: 768px) {
  .teamCarousel .owl-nav, .yogaCarousel .owl-nav {
    position: static;
    text-align: center;
    padding-top: 1.5rem;
  }
}
@media (max-width: 576px) {
  .header__wrapper {
    min-height: 36rem;
  }
  .header__wrapper .items {
    min-height: 36rem;
    padding-bottom: 1rem;
  }
  .header__wrapper .h1 {
    font-size: 2rem;
  }
  .header__wrapper.retreat .lead-sm {
    font-size: 1rem;
  }
  .certificate__after__bg::before {
    height: 71%;
  }
  .owl-carousel.yogaCarousel .owl-stage-outer {
    height: calc(100% + 10px);
  }
  .review__card .logo {
    width: 3.5rem;
  }
  .review__card .caption {
    width: calc(100% - 3.5rem);
  }
  .review__card .caption img {
    max-height: 2.5rem;
  }
  .testimonials__wrapp {
    padding-top: 8rem;
  }
  .testimonials__wrapp .banner__parent {
    width: calc(100% + 50px);
    left: -25px !important;
    border-radius: 1rem;
    overflow: hidden;
  }
  .testimonials__wrapp .bg__banner {
    min-height: 240px;
  }
  .testi__card {
    padding: 2.75rem 1rem 1rem 1rem;
  }
  .testi__card .avater {
    width: 5rem !important;
    height: 5rem;
    top: 0rem;
  }
  .testi__card .desc {
    color: #6C6C6C;
  }
  .table th, .table td {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
  }
  .gallery__card img {
    min-height: 190px;
  }
}/*# sourceMappingURL=style.css.map */