@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
:root {
  --primary-color: #026866;
  --secondary-color: #f5f4ed;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
}

a {
  text-decoration: none;
}

p {
  line-height: 1.7;
  font-weight: 500;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #026866;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 0px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
}

.text-orange {
  color: #d94353;
}

.primary-yoga-btn {
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  padding: 8px 18px;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.4s ease-in-out;
}
.primary-yoga-btn:hover {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.secondary-yoga-btn {
  border-radius: 5px;
  padding: 8px 18px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.4s ease-in-out;
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.secondary-yoga-btn:hover {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.third-yoga-btn {
  border-radius: 5px;
  padding: 8px 18px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.4s ease-in-out;
  background-color: rgba(255, 255, 255, 0);
  color: white;
  border: 2px solid white;
}
.third-yoga-btn:hover {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.third-yoga-btn i {
  font-size: 16px;
}

.heading1 {
  color: #036866;
  font-weight: 700;
  font-size: 2.2rem;
}

.main-slider {
  display: flex;
  width: 100%;
  /* Active Image - Fade In & Zoom Effect */
}
.main-slider .first-side {
  width: 45%;
  padding: 4rem 3rem;
  background-color: var(--secondary-color);
}
.main-slider .second-side {
  width: 55%;
  position: relative;
  overflow: hidden;
}
.main-slider .second-side .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  /* Initially hidden */
  transform: scale(1);
  transition: opacity 1s ease-in-out, transform 3s ease-in-out;
}
.main-slider .bgimg1 {
  background-image: url("../../assets/images/slider/yoga-teacher-training-course-rishikesh-india.webp");
}
.main-slider .bgimg2 {
  background-image: url("../../assets/images/slider/yoga-asana-class-yoga-ttc-rishikesh.webp");
}
.main-slider .bgimg3 {
  background-image: url("../../assets/images/slider/meditation-yoga-course-rishikesh.webp");
}
.main-slider .bgimg4 {
  background-image: url("../../assets/images/slider/yoga-ttc-certificate.webp");
}
.main-slider .bgimg5 {
  background-image: url("../../assets/images/slider/yoga-opening-ceremony-ttc-rishikesh.webp");
}
.main-slider .second-side .bg-image.active {
  opacity: 1;
  transform: scale(1.05);
}

.curriculam-list-card .card {
  position: relative;
  z-index: 1;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  margin-bottom: 3.75rem;
}
.curriculam-list-card .figure {
  width: 100%;
  height: 15rem;
  border-radius: 1.25rem;
  top: -1rem;
  overflow: hidden;
  box-shadow: 0 0 0 4px rgb(255, 255, 255);
  margin: 0;
  position: relative;
  z-index: 1;
  display: block;
}
.curriculam-list-card .figure .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  margin: auto;
  display: block;
}
.curriculam-list-card .col-md {
  position: static;
  padding: 0px;
}
.curriculam-list-card .card-body {
  min-height: 1px;
  padding: 1.25rem;
}
.curriculam-list-card .card-body h4 {
  color: var(--primary-color);
  font-weight: 600;
}
.curriculam-list-card .card-body p {
  padding-top: 0.5rem;
}
.curriculam-list-card .card-text {
  font-size: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}
.curriculam-list-card .card-text:before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 0;
  bottom: 0;
  top: 24%;
  background-color: #fff;
  box-shadow: 0 0 8px 0 #a4a3a3;
  z-index: -1;
  border-radius: 1.5rem;
}

.kvm-skilled {
  background-color: var(--secondary-color);
  padding: 3rem;
}

.title .heading {
  color: #036866;
  font-weight: 700;
  font-size: 2rem;
}
.title .subheading {
  color: #2b2b2b;
  font-weight: 600;
  font-size: 1.3rem;
}
.title img {
  width: 250px;
  text-align: center;
  height: 22px;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 25px;
}

.bg-section {
  background-color: var(--secondary-color);
}

.nav-link:hover {
  color: #026866;
  background: var(--primary-color) !important;
  transform: translateY(-1px);
  color: white !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #026866;
}

.btn-apply a {
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  padding: 10px 18px;
  border: 2px solid white;
}
.btn-apply a:hover {
  border: 2px solid var(--primary-color);
  background-color: white;
  color: var(--primary-color);
}

.icon {
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
}

.chevron-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.hidden {
  display: none;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.121);
  border-radius: 5px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.161);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transform: rotate(45deg);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}

.dropdown li {
  list-style: none;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
}

.dropdown a {
  color: #000;
  text-decoration: none;
  padding: 0.6rem 1rem;
  display: block;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2px;
}

.dropdown a:hover {
  background: #036866 !important;
  color: white !important;
  border-radius: 5px !important;
  transform: translateX(3px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  width: 180px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
}

.search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  width: 240px;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.3);
}

.search-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.search-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.search-btn {
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 5px;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-btn:hover {
  color: #026866;
  transform: scale(1.1);
}

.nav-toggle {
  display: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0.6rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
  width: 70%;
}

.hamburger span:last-child {
  top: 18px;
}

.nav-active .hamburger span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-active .hamburger span:last-child {
  transform: rotate(-45deg);
  top: 9px;
}

.content {
  margin-top: 70px;
  padding: 2rem;
}

.img-border-round {
  box-shadow: 0px 5px 10px -3px #aaa;
  border-radius: 7px;
}

.image-gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image-gallery .image-row {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 8px;
}
.image-gallery .image-row img {
  width: 48%;
  border-radius: 20px;
}

.course-objectives li {
  list-style: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2901960784);
  padding: 10px 0px;
  color: black;
  font-size: 1rem;
}

.hero {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #026866, #9c27b0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.7);
}

.cta-button {
  background: linear-gradient(45deg, #026866, #9c27b0);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
}

.section {
  padding: 5rem 2rem;
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #026866;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(33, 150, 243, 0.3);
}

.feature h3 {
  color: #026866;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature p {
  color: rgba(0, 0, 0, 0.7);
}

.upper-header {
  background-color: var(--primary-color);
}
.upper-header .top-header {
  display: flex;
  justify-content: space-between;
}
.upper-header .top-header ul {
  display: flex;
  margin: 0px;
  padding: 10px 0px;
}
.upper-header .top-header ul li {
  margin-right: 1rem;
}
.upper-header .top-header ul li a i {
  padding-right: 0.2rem;
}
.upper-header .top-header ul li:hover a {
  color: rgb(233, 233, 233);
}
.upper-header .top-header .social-contact i {
  font-size: 20px;
  margin-right: 1rem;
}
.upper-header a {
  color: white;
  text-decoration: none;
}
.upper-header ul li {
  list-style: none;
}

.logo_dark {
  height: 4rem;
}

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

.container-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 20px;
  cursor: pointer;
  padding-top: 30px;
}
.container-box .box {
  background: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(20% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--primary-color);
  max-width: calc(20% - 40px);
  text-align: center;
  transition: transform 0.3s ease;
}
.container-box .box:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  transform: translateY(-5px);
}
.container-box .box:hover img {
  filter: invert(52%) sepia(94%) saturate(200%) hue-rotate(136deg) brightness(54%) contrast(50%);
}
.container-box .box:hover h3 {
  color: var(--primary-color);
}
.container-box h3 {
  font-size: 20px;
  color: white;
  padding: 10px 0px;
  font-weight: 600;
}
.container-box .mandalaimage {
  position: absolute;
  width: 100% !important;
  height: 100%;
  text-align: center;
  left: -520px;
  top: -50px;
  z-index: -1;
}

.p-rel {
  position: relative;
}

.mandalaimage {
  position: absolute;
  width: 100% !important;
  height: 100%;
  text-align: center;
  left: -520px;
  top: -50px;
  z-index: -1;
}

.scroll-container {
  margin-top: 2rem;
}
.scroll-container .flex-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 35px;
  text-align: center;
}
.scroll-container h4 {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  font-weight: 600;
  text-align: center;
}
.scroll-container h5 {
  font-size: 1rem;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.scroll-container {
  overflow: hidden;
  width: 100%;
}

.scroll-content {
  width: 100%;
  display: flex;
}

.scroll-track {
  display: flex;
  animation: scroll 40s linear infinite;
  /* Adjust duration for speed */
}

.scroll-track img {
  width: auto;
  height: 230px;
  /* adjust as needed */
  margin-right: 10px;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.seven-days {
  background-image: url("../../assets/images/8-days-himalayan-yoga-retreat.jpg");
  min-height: 350px;
}

.nine-days {
  background-image: url("../../assets/images/10-days-spiritual-transformation-yoga-retreat.jpg");
  min-height: 350px;
}

.ten-days {
  background-image: url("../../assets/images/7-days-holistic-meditation-retreat.jpg");
  min-height: 420px;
}

.library {
  background-image: url(../../assets/images/cozy-corners-to-relax-at-atharvyogshala.jpg);
  min-height: 350px;
}

.cooking-class {
  background-image: url(../../assets/images/yogic-food-at-atharvyogshala.jpg);
  min-height: 350px;
}

.clean-hall {
  background-image: url(../../assets/images/yogshala-at-atharv-yogaschool-rishikesh.jpg);
  min-height: 420px;
}

.retreat-card {
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 2rem;
}
.retreat-card .retreat-title {
  color: white;
  font-weight: 700;
}
.retreat-card .overlay-retreat {
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5019607843);
  opacity: 0.5;
  border-radius: 10px;
}
.retreat-card span {
  color: white;
  font-size: 1.2rem;
}

ul,
li,
ol {
  margin: 0;
  padding: 0;
}

.img-icon-pose {
  width: 100px;
  height: 100px;
}

.box-title-heading {
  background: var(--primary-color);
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  margin: 40px 0px;
}

.i-products {
  min-width: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 5px;
  box-shadow: 0 2px 8px 0 rgba(103, 151, 255, 0.09), 0 4px 32px 0 rgba(103, 151, 255, 0.09);
}
.i-products .products-image img {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.i-products .products-desc {
  position: relative;
  padding: 28px 10px 8px 10px;
  background-color: #fff;
  border: solid #eee;
  border-width: 0 1px 1px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  min-height: 250px;
  transition: all 0.2s ease-in-out;
}
.i-products .products-desc h3 {
  color: var(--primary-color) !important;
  font-size: 22px;
  font-weight: 600;
}
.i-products .products-desc h3 {
  text-align: center;
}
.i-products .products-desc .course-para {
  text-align: center;
}
.i-products .list-group-item {
  position: relative;
  padding: 0.8rem 1.25rem;
  margin-bottom: -1px;
  background-color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.31);
  display: flex;
  justify-content: space-between;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  color: #fff;
}

.elementor-section {
  background-image: url(../../assets/images/ashram-view-atharv-yogshala.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.elementor-section .elementor-container {
  min-height: 600px;
  display: flex;
  position: relative;
}
.elementor-section .elementor-widget-container {
  display: flex;
  height: 100%;
  align-content: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}
.elementor-section p {
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 2rem 0rem 2rem 0rem;
}

.elementor-section-two {
  background-image: url(../../assets/images/sunrise-image-excursion-atharv-yogshala.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.elementor-section-two .elementor-container {
  min-height: 600px;
  display: flex;
  position: relative;
}
.elementor-section-two .elementor-widget-container {
  display: flex;
  height: 100%;
  align-content: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}
.elementor-section-two p {
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 2rem 0rem 2rem 0rem;
}

.experience-section {
  display: flex;
}
.experience-section .first-exp-side {
  width: 40%;
  height: auto;
  background-image: url(../../assets/images/yoga-ttc-rishikesh-india.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.experience-section .first-exp-side2 {
  width: 40%;
  height: auto;
  background-image: url(../../assets/images/asana-practice-at-atharv-yogshala.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.experience-section .first-exp-side3 {
  width: 40%;
  height: auto;
  background-image: url(../../assets/images/yoga-class-in-rishikesh.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.experience-section .second-exp-side {
  width: 60%;
  padding: 20px;
}

.accordion .accordion-item .accordion-button {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.7rem 1.25rem;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  color: white;
  background-color: var(--primary-color);
  box-shadow: none;
}
.accordion .accordion-item .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.z-index-100 {
  z-index: 100;
  position: relative;
}

.portugal-bg {
  background-image: url(../../assets/images/yoga-ttc-in-portugal.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.food-bg {
  background-image: url(../../assets/images/food-at-atharv-yoagshala.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.accommodation-bg {
  background-image: url(../../assets/images/accommodation-ashram-at-atharv-yogshala.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.yoga-allaince-bg {
  background-image: url(../../assets/images/slider/yoga-ttc-certificate.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-white-bx {
  background-color: white;
  box-shadow: 0 2px 8px 0 rgba(103, 151, 255, 0.09), 0 4px 32px 0 rgba(103, 151, 255, 0.09);
}

.border-line {
  border: 1px solid rgba(2, 104, 102, 0.2);
}

.under-line {
  position: relative;
}
.under-line::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 3px;
  background-color: #026866;
  bottom: -10px;
  transition: 0.3s;
}

.yoga-details-list li {
  list-style: none;
  font-weight: 600;
  margin: 0.8rem 0rem;
}
.yoga-details-list li span {
  color: var(--primary-color);
}

.fw-600 {
  font-weight: 600;
}

.scroll-img .flex-col {
  padding: 5px 10px !important;
}
.scroll-img .flex-col img {
  height: 280px;
  border-radius: 5px;
}

.theme-color {
  color: var(--primary-color);
}

.h-500 {
  height: 500px !important;
}

footer {
  padding: 40px 0px;
  background-color: var(--primary-color);
  color: white;
  position: relative;
}
footer .p-rel-z {
  z-index: 100;
  position: relative;
}
footer .mandalaimage {
  position: absolute;
  width: 100% !important;
  height: 100%;
  text-align: center;
  left: 0%;
  top: 0;
  z-index: 0;
  opacity: 0.07;
}
footer .mandalaimage img {
  height: 400px;
}
footer .logo {
  filter: brightness(0) invert(1);
}
footer p {
  font-size: 1.1rem;
}
footer h3 {
  margin-bottom: 1.2rem;
  font-weight: 600;
  border-bottom: 1px dotted white;
  padding: 10px 20px 10px 0px;
  width: -moz-fit-content;
  width: fit-content;
}
footer h4 {
  margin-bottom: 1.2rem;
  font-weight: 600;
  border-bottom: 1px dotted white;
  padding: 10px 20px 10px 0px;
  width: -moz-fit-content;
  width: fit-content;
}
footer .footer-list li {
  list-style: none;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
}
footer .footer-list li i {
  padding-right: 5px;
}
footer .footer-list li a {
  color: white;
}
footer .footer-list li:hover a {
  color: #94d1e1;
}
footer .footer-list li:hover {
  transform: translateX(2px);
  color: var(--secondary-color);
}
footer .social_icons {
  display: flex;
  margin-top: 1rem;
}
footer .social_icons li {
  list-style: none;
}
footer .social_icons li a {
  color: white;
}
footer .social_icons li i {
  font-size: 1.8rem;
  margin-right: 1.5rem;
}
footer .social_icons li:hover a {
  color: #94d1e1;
}
footer .bottom_footer {
  background-color: white;
  padding: 30px 10px;
  margin-top: 2rem;
  border-radius: 50px;
}
footer .bottom_footer ul {
  display: flex;
  justify-content: center;
}
footer .bottom_footer ul li {
  list-style: none;
  margin-right: 1rem;
}
footer .bottom_footer ul li a {
  color: var(--primary-color);
  font-weight: 500;
}

.yoga-allaince-section h3 {
  font-size: 1.5rem;
}
.yoga-allaince-section .ya-logo {
  width: 30rem;
  margin-bottom: 2rem;
}

.item .teacher {
  padding: 5px;
  border: 1px solid var(--primary-color);
}
.item .teacher-detail {
  padding: 15px 5px;
  text-align: center;
}
.item .teacher-detail h6 {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
}

.table-style1 .tr {
  border-bottom: 1px solid rgba(77, 74, 73, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  font-size: 1rem;
  font-weight: 500;
}

.table-style1 .tr:nth-child(odd) {
  border-top: 1px solid rgba(77, 74, 73, 0.18);
  background-image: linear-gradient(120deg, rgba(3, 104, 102, 0.13) 0%, rgb(254, 254, 254) 70%);
}

.table-style2 .tr {
  border-bottom: 1px solid rgba(77, 74, 73, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  font-size: 1.1rem;
  font-weight: 500;
}
.table-style2 .tr i {
  padding-right: 10px;
}

.table-style2 .tr:nth-child(odd) {
  border-top: 1px solid rgba(77, 74, 73, 0.18);
  background-image: linear-gradient(120deg, rgba(3, 104, 102, 0.13) 0%, rgb(254, 254, 254) 70%);
}

header .social_icons {
  display: none;
}

.bg-theme {
  background-color: var(--primary-color);
}

.testimonial-section h2 {
  color: white;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.testimonial-section h3 {
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.3rem;
}
.testimonial-section .testimonial-item {
  background-color: white;
  text-align: center;
  padding: 3rem 2rem;
}
.testimonial-section .testimonial-item h6 {
  font-size: 1.3rem;
}
.testimonial-section .testimonial-item .star-rating {
  margin-bottom: 1rem;
}
.testimonial-section .testimonial-item i {
  color: #efb606;
}
.testimonial-section .testimonial-item .google-review-logo {
  width: 80px;
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0.8;
}
.testimonial-section .ti-review-content {
  position: relative;
  /* For absolute positioning of the "Read more" */
}
.testimonial-section .ti-review-content .review-text.long-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  /* Show only 6 lines initially */
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
  /* Add some space for the button */
}
.testimonial-section .ti-read-more {
  cursor: pointer;
  color: var(--primary-color);
  /* Or your preferred link color */
  font-weight: bold;
  position: static;
  background-color: transparent;
  padding-right: 0;
  background-color: white;
  /* To cover any overflowing text */
  padding-right: 5px;
  /* Add a little space before the ellipsis if it shows */
}
.testimonial-section .ti-read-more.open {
  position: static;
  /* Allow full text to flow */
  background-color: transparent;
  padding-right: 0;
}
.testimonial-section .ti-review-content .review-text.open {
  -webkit-line-clamp: none;
}
.testimonial-section .ti-read-more.hidden {
  display: none;
}

.breadcrumb-wrapper {
  background: linear-gradient(rgba(232, 232, 232, 0.19), rgba(232, 232, 232, 0.19)), url(../../assets/images/pattern-bg.webp);
  background-size: 15%;
  padding: 70px 0;
}
.breadcrumb-wrapper .breadcrumb-title {
  font-size: 35px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}
.breadcrumb-wrapper .breadcrumb-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
}
.breadcrumb-wrapper .breadcrumb-list a {
  color: var(--primary-color);
  transition: 0.3s ease-in;
}
.breadcrumb-wrapper ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumb-wrapper .banner-offer {
  display: flex;
  justify-content: space-evenly;
  margin-top: 2rem;
}
.breadcrumb-wrapper .banner-offer .banner-box {
  background: white;
  padding: 15px 30px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  border: 2px solid var(--primary-color);
}
.breadcrumb-wrapper .banner-offer .banner-box p {
  margin-bottom: 0px;
}
.breadcrumb-wrapper .banner-offer .banner-box p i {
  margin-right: 10px;
  color: #026866;
}
.breadcrumb-wrapper .banner-offer .banner-box:hover {
  background: var(--primary-color);
  padding: 15px 30px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  border: 2px solid var(--primary-color);
}
.breadcrumb-wrapper .banner-offer .banner-box:hover p {
  margin-bottom: 0px;
  color: white;
}
.breadcrumb-wrapper .banner-offer .banner-box:hover p i {
  margin-right: 10px;
  color: white;
}
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
  padding: 0 10px;
}

.course-detail .sidebar {
  position: sticky;
  top: 110px;
  background-color: var(--primary-color);
  padding: 20px;
  color: #fff;
  border-radius: 7px;
}
.course-detail .sidebar ul {
  padding: 0;
  margin: 0;
}
.course-detail .sidebar ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.course-detail .sidebar .title {
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
}
.course-detail .sidebar .title::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 2px;
  width: 25%;
  background-color: #fff;
}
.course-detail .sidebar li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.course-detail .sidebar li .list-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 0;
}
.course-detail .sidebar li .detail {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 0;
}
.course-detail .sidebar .sidebar-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.course-detail .sidebar .sidebar-list li .list-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 0;
}
.course-detail .sidebar .sidebar-list li .detail {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 0;
}
.course-detail .sidebar .prices-wrap {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin: 28px 0;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
}
.course-detail .sidebar .prices-wrap .description .price {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}
.course-detail .sidebar .prices-wrap .description .room {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

.yogattcslide img {
  width: inherit;
  width: -webkit-fill-available;
}

.ttc-page-box {
  padding: 25px;
  box-shadow: 0 2px 8px 0 rgba(103, 151, 255, 0.09), 0 4px 32px 0 rgba(103, 151, 255, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 2em;
}

.schedule-dates {
  margin-bottom: 22px;
}
.schedule-dates .head {
  background-color: #026866;
  margin-bottom: 0;
  font-family: "Quicksand", sans-serif;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.schedule-dates .head .title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 15px;
  position: relative;
  text-align: center;
  width: 25%;
  margin: 0;
}
.schedule-dates .head .title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 80%;
  width: 2px;
  border-right: 1px dashed #fff;
}
.schedule-dates .head .title:last-child::after {
  display: none;
}
.schedule-dates .dates-body .dates-box {
  display: flex;
}
.schedule-dates .dates-body .dates-box:nth-child(even) {
  background-color: #f5f4ed;
}
.schedule-dates .dates-body .dates-box .item {
  width: 25%;
  text-align: center;
  padding: 10px 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-dates .dates-body .dates-box .item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 80%;
  width: 2px;
  border-right: 1px dashed #929292;
}
.schedule-dates .dates-body .dates-box .item::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 90%;
  height: 2px;
  border-bottom: 1px dashed #929292;
}
.schedule-dates .dates-body .dates-box .item > span {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
}
.schedule-dates .dates-body .dates-box .item > span del {
  color: #929292;
  font-size: 14px;
  margin-left: 8px;
}
.schedule-dates .dates-body .dates-box .item .primary-btn {
  font-size: 14px;
  padding: 8px 10px;
  width: 70%;
}
.schedule-dates.daily-schedule .head .title {
  width: 50%;
}
.schedule-dates.daily-schedule .dates-body .dates-box {
  display: flex;
}
.schedule-dates.daily-schedule .dates-body .dates-box .item {
  width: 50%;
}
.schedule-dates.daily-schedule .dates-body .dates-box .item::before {
  width: 95%;
}
.schedule-dates .primary-yoga-btn {
  padding: 6px 14px !important;
  font-size: 14px !important;
}

#contact-strip, #contact-strip-new, #pdf-form {
  padding: 35px 0;
  position: relative;
  border-top: 2px solid #026866;
  border-bottom: 2px solid #026866;
  background-size: 10%;
  background-color: var(--secondary-color);
}
#contact-strip .contact-strip-heading, #contact-strip-new .contact-strip-heading, #pdf-form .contact-strip-heading {
  font-size: 28px;
  line-height: 0.8;
  font-weight: 700;
  color: #ffffff;
  background-color: #026866;
  display: table;
  padding: 12px 60px;
  margin: -60px auto 40px;
}

.btn-whatsapp-pulse {
  background: #25d366;
  z-index: 9999;
  color: white;
  position: fixed;
  bottom: 20px;
  left: 30px;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 25px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.my-float {
  padding: 10px;
}

.pricing-meta {
  padding: 20px 10px 20px 20px;
}
.pricing-meta .courses-para-heading {
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.pricing-meta ul li {
  list-style: none;
  padding-bottom: 1.1rem;
  font-weight: 500;
}
.pricing-meta ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.schedule-dates.daily-schedule .dates-body .dates-box:nth-child(even) {
  background-color: #f5f4ed;
}

ul li {
  list-style: none;
}

.list_style_om li {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 2.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.list_style_tick li {
  font-weight: 600;
}

.list_style_om li::before {
  content: "ॐ";
  background-color: rgb(2, 104, 102);
  color: rgb(255, 255, 255);
  font-weight: 600;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  margin-right: 10px;
  left: 0px;
  top: 30%;
  transform: translate(0);
  transform: translateY(-50%);
  border-radius: 20px;
  transition: 0.7s;
}

.course-syllabus .timings-box .card {
  box-shadow: 0 2px 8px 0 rgba(103, 151, 255, 0.06), 0 4px 32px 0 rgba(103, 151, 255, 0.06);
  text-align: center;
  height: 100%;
  background-color: var(--secondary-color);
}
.course-syllabus .timings-box .card .f-large {
  font-size: 2rem;
  font-weight: 600;
}
.course-syllabus .timings-box .card .base-color {
  color: var(--primary-color);
}
.course-syllabus .accordion .accordion-item .accordion-button {
  background: #036866;
  color: white;
}
.course-syllabus .accordion-button::after {
  filter: brightness(100);
}

#excursion-carousel .item .body .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  display: block;
  position: relative;
  margin: 10px 0px 20px;
}
#excursion-carousel .item .body {
  background-color: var(--secondary-color);
  text-align: center;
  padding: 12px 0px;
  overflow: hidden;
}
#excursion-carousel .item .body p {
  padding: 0px 20px;
}
#excursion-carousel .item .img-activity {
  overflow: hidden;
}
#excursion-carousel .item {
  box-shadow: rgb(199, 199, 199) 0px 0px 5px;
  overflow: hidden;
  border-radius: 5px;
}
#excursion-carousel .item img {
  transform: scale(1);
  overflow: hidden;
  transition: 500ms ease-in-out;
}
#excursion-carousel .item:hover img {
  transform: scale(1.3);
  overflow: hidden;
}
#excursion-carousel .item .body .title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  height: 2px;
  width: 20%;
  background-color: var(--primary-color);
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
#excursion-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}
#excursion-carousel .owl-nav button span {
  font-size: 30px;
  margin-bottom: 0px;
  line-height: 16px;
  transition: 0.3s ease-in;
}
#excursion-carousel .owl-nav button span {
  color: white;
}
#excursion-carousel .owl-nav button {
  border-width: 1px !important;
  border-style: solid !important;
  border-color: var(--primary-color) !important;
  -o-border-image: initial !important;
     border-image: initial !important;
}
#excursion-carousel .owl-nav button.owl-next,
#excursion-carousel .owl-nav button.owl-prev,
#excursion-carousel .owl-carousel button.owl-dot {
  color: inherit;
  border: none;
  font: inherit;
  background: #036866;
  padding: 2px 15px !important;
}

#other-courses .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}
#other-courses .owl-nav button span {
  font-size: 30px;
  margin-bottom: 0px;
  line-height: 16px;
  transition: 0.3s ease-in;
}
#other-courses .owl-nav button span {
  color: white;
}
#other-courses .owl-nav button {
  border-width: 1px !important;
  border-style: solid !important;
  border-color: var(--primary-color) !important;
  -o-border-image: initial !important;
     border-image: initial !important;
}
#other-courses .owl-nav button.owl-next,
#other-courses .owl-nav button.owl-prev,
#other-courses .owl-carousel button.owl-dot {
  color: inherit;
  border: none;
  font: inherit;
  background: #036866;
  padding: 2px 15px !important;
}

.ttc-page-box .owl-carousel .item {
  display: flex;
  /* Enable Flexbox for the item */
  flex-direction: column;
  /* Stack the image and body vertically */
}

.ttc-page-box .owl-carousel .item .body {
  flex-grow: 1;
  /* Allow the body to grow and take up available vertical space */
  display: flex;
  /* Enable Flexbox within the body */
  flex-direction: column;
  /* Stack title and paragraph vertically */
}

.retreat-points {
  align-items: center;
  margin-bottom: 1.4rem;
}
.retreat-points .icon-retreat {
  background-color: var(--primary-color);
  padding: 0.7rem;
  border-radius: 7px;
  margin-right: 1.3rem;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.retreat-points .icon-retreat i {
  color: white;
  font-size: 1.5rem;
}
.retreat-points .content-retreat h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.retreat-points .content-retreat h4 {
  font-size: 1rem;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.seven-days-yoga-bg {
  background-image: url(../../assets/images/atharv-yogis-and-yoginis.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nine-days-yoga-bg {
  background-image: url(../../assets/images/himalyan-yoga-retreat-moment.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ten-days-yoga-bg {
  background-image: url(../../assets/images/highlight-10-days-yoga-retreat-asana-class.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.highlight-box {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 18px 18px 18px 18px;
}
.highlight-box .highlight-box-img img {
  border-radius: 20px;
}
.highlight-box .highlight-box-subheading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0rem;
}
.highlight-box .highlight-box-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
}
.highlight-box .highlight-box-text {
  font-size: 1rem;
}

.highlight-border-radius {
  border-radius: 20px;
}

.highlight-content {
  padding: 4rem 5rem;
  background-color: #FFFFFF;
  border-radius: 20px;
}
.highlight-content h3 {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
}

.ganga-aarti-bg {
  background-image: url(../../assets/images/yoga-retreat/ganga-aarti-yoga-retreat.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ayurveda-bg {
  background-image: url(../../assets/images/yoga-retreat/ayurvedic-massage-yoga-retreat.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sunrise-himalayas-bg {
  background-image: url(../../assets/images/yoga-retreat/sunrise-morning-yoga-retreat.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.border-left-bottom {
  border-radius: 20px 0px 0px 20px;
}

.border-right-bottom {
  border-radius: 0px 20px 20px 0px;
}

.img-border-highlight {
  border-radius: 20px;
}

#retreat-img-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  /* allows clicks only on buttons */
}

#retreat-img-slider .owl-nav .custom-prev,
#retreat-img-slider .owl-nav .custom-next {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  /* enable click */
  transition: background 0.3s;
}

#retreat-img-slider .owl-nav button.owl-next,
#retreat-img-slider .owl-nav button.owl-prev {
  background-color: rgba(3, 104, 102, 0.3411764706) !important;
  padding: 0px 1rem !important;
}
#retreat-img-slider .owl-nav button.owl-next span,
#retreat-img-slider .owl-nav button.owl-prev span {
  color: white;
  font-size: 2.2rem;
}
#retreat-img-slider .owl-nav button.owl-next:hover,
#retreat-img-slider .owl-nav button.owl-prev:hover {
  background-color: #036866 !important;
  padding: 0px 1rem !important;
}

#retreat-img-slider .owl-nav .custom-prev:hover,
#retreat-img-slider .owl-nav .custom-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

#retreat-ytube-slider .owl-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  /* allows clicks only on buttons */
}

#retreat-ytube-slider .owl-nav .custom-prev,
#retreat-ytube-slider .owl-nav .custom-next {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  /* enable click */
}

#retreat-ytube-slider .owl-nav button.owl-next,
#retreat-ytube-slider .owl-nav button.owl-prev {
  background-color: var(--secondary-color) !important;
  padding: 0px 10px !important;
  margin: 10px;
}
#retreat-ytube-slider .owl-nav button.owl-next span,
#retreat-ytube-slider .owl-nav button.owl-prev span {
  color: var(--primary-color);
  font-size: 2.2rem;
}
#retreat-ytube-slider .owl-nav button.owl-next:hover,
#retreat-ytube-slider .owl-nav button.owl-prev:hover {
  background-color: #036866 !important;
  padding: 0px 10px !important;
}
#retreat-ytube-slider .owl-nav button.owl-next:hover span,
#retreat-ytube-slider .owl-nav button.owl-prev:hover span {
  color: white;
  font-size: 2.2rem;
}

#himalyan-hiking .owl-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  /* allows clicks only on buttons */
}

#himalyan-hiking .owl-nav .custom-prev,
#himalyan-hiking .owl-nav .custom-next {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  /* enable click */
}

#himalyan-hiking .owl-nav button.owl-next,
#himalyan-hiking .owl-nav button.owl-prev {
  background-color: var(--secondary-color) !important;
  padding: 0px 10px !important;
  margin: 10px;
}
#himalyan-hiking .owl-nav button.owl-next span,
#himalyan-hiking .owl-nav button.owl-prev span {
  color: var(--primary-color);
  font-size: 2.2rem;
}
#himalyan-hiking .owl-nav button.owl-next:hover,
#himalyan-hiking .owl-nav button.owl-prev:hover {
  background-color: #036866 !important;
  padding: 0px 10px !important;
}
#himalyan-hiking .owl-nav button.owl-next:hover span,
#himalyan-hiking .owl-nav button.owl-prev:hover span {
  color: white;
  font-size: 2.2rem;
}

.excursion-list-box {
  border-radius: 15px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border: 2px solid #ef7e6e;
  padding: 1px;
  box-shadow: 0 0 2px 0 #d0d0d0;
}
.excursion-list-box img {
  border-radius: 15px;
  transition: 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
.excursion-list-box .excursion-list-name {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: auto;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
  color: #fff;
  z-index: 2;
  text-shadow: 0px 2px 6px #000000;
}
.excursion-list-box::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2392156863);
}

#himalyan-hiking .owl-dots {
  display: none !important;
}

.excursion-list-box:hover:before {
  height: 100%;
  transition: 0.3s;
}

.excursion-list-box:hover .excursion-list-image {
  transition: 0.3s;
  transform: scale(1.2);
}

#retreat-ytube-slider .owl-nav .custom-prev:hover,
#retreat-ytube-slider .owl-nav .custom-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.itenary-table .itenary-heading {
  color: black;
  border-bottom: 2px solid rgb(169, 169, 169);
  padding: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
}
.itenary-table .itenary-subheading {
  color: var(--primary-color);
  border-bottom: 1px solid rgb(169, 169, 169);
  padding: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}

.link-img-filter:hover {
  filter: drop-shadow(2px 4px 6px black);
}

.ytube-section .item {
  display: flex;
  justify-content: center;
}
.ytube-section .yt-products {
  display: flex;
  justify-content: center;
  width: -moz-max-content !important;
  width: max-content !important;
}
.ytube-section .yt-products iframe {
  border: 1px solid var(--primary-color);
  padding: 1px;
}

.tradition-info-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tradition-info-box {
  width: 23%;
  position: relative;
  z-index: 9;
}

.tradition-info-box:nth-child(2n) {
  margin-top: 10%;
}

.tradition-info-box:nth-child(odd) {
  margin-top: 1%;
}

.guru-arrow svg {
  width: 100%;
  height: 148px;
}

.dashed {
  stroke-dasharray: 9;
  stroke-width: 10;
}

.line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: 5s linear infinite forwards dash;
}

.arrow {
  opacity: 0;
  animation: 0.2s 1.55s forwards show;
  pointer-events: none;
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.tradition-info-box .guru-arrow {
  position: absolute;
  z-index: -1;
}

.tradition-info-box:first-child .guru-arrow,
.tradition-info-box:nth-child(3) .guru-arrow {
  right: -80px;
  top: 70px;
  transform: rotate(-4deg);
}

.tradition-info-box:nth-child(2) .guru-arrow {
  right: -80px;
  top: -60px;
  transform: rotateX(180deg);
}

.tradition-info-box:nth-child(4) .guru-arrow {
  right: -38px;
  top: 90px;
  transform: rotate(0deg);
}

.tradition-info-box:nth-child(4) .guru-arrow.meet {
  top: 179px;
  right: -33px;
  transform: rotate(52deg);
}

.tradition-info-box:nth-child(5) .guru-arrow,
.tradition-info-box:nth-child(7) .guru-arrow {
  right: -90px;
  top: 32px;
  transform: rotate(165deg);
}

.tradition-info-box:nth-child(6) .guru-arrow {
  right: -90px;
  top: -58px;
  transform: rotateY(180deg) rotate(-11deg);
}

.tradition-info-box:nth-child(8) .guru-arrow {
  top: -146px;
  right: -10px;
  transform: rotate(159deg) rotateX(180deg);
}

.guru-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  padding: 3px;
  margin: auto auto 8px;
  display: block;
  background-color: #fff;
}

.guru-name {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.guru-description {
  text-align: center;
  margin-bottom: 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
}

.kvm-skilled .about-skilled hr {
  border-left: 1px solid #000;
  height: 150px;
}
.kvm-skilled .about-skilled hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.kvm-skilled .about-skilled .retreat-img {
  border-radius: 20px;
}

.kvm-box-shadow {
  width: 100%;
  margin: auto;
  background-color: var(--secondary-color);
  border-radius: 20px;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
}
.kvm-box-shadow .about-skilled {
  display: flex;
  padding: 50px;
  gap: 2%;
  margin: auto;
  align-items: center;
}
.kvm-box-shadow .mission-vision {
  font-size: 30px;
  color: #026866;
  text-transform: uppercase;
}
.kvm-box-shadow hr {
  border-left: 1px solid #000;
  height: 150px;
}

.service-style5 {
  text-align: center;
  padding: 33px 0px 33px 0px;
  position: relative;
  z-index: 2;
  transition: all ease 0.4s;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgb(215, 215, 215);
}
.service-style5 .service-icon {
  margin-bottom: 25px;
}
.service-style5 img {
  transition: all ease 0.4s;
  transform: rotateY(0);
  filter: none;
  max-width: 95%;
  height: auto;
  width: 80px;
}
.service-style5:hover {
  text-align: center;
  padding: 33px 0px 33px 0px;
  position: relative;
  z-index: 2;
  transition: all ease 0.4s;
  background-color: #026866;
  border-radius: 5px;
}
.service-style5:hover h3 span {
  color: white;
}
.service-style5:hover p {
  color: white;
}
.service-style5:hover img {
  filter: contrast(0) brightness(2.5);
}

.item .image-text {
  background-color: var(--secondary-color);
  padding: 15px 10px;
  border-radius: 0px 0px 5px 5px;
  text-align: center;
  color: #026866;
  font-size: 1.2rem;
}

.head-box5 {
  background: #026866;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
}

.alert-success {
  color: #fff;
  background-color: #026866;
  border-color: #026866;
}

.animation-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}

.alert {
  position: relative;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

blockquote {
  color: #fff;
  font-size: 25px;
  font-style: italic;
  line-height: 30px;
  z-index: 0;
  position: relative;
}

.bg-parallel {
  background-color: #fff;
  background-image: url(../../assets/images/yoga-ttc-rishikesh.jpg);
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  background-attachment: fixed;
}
.bg-parallel .figure {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}
.bg-parallel .figure .image {
  width: 100%;
  max-width: 28rem;
  display: block;
  margin: auto;
  height: auto;
}
.bg-parallel .box {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  width: auto;
}
.bg-parallel .box h2 {
  color: white;
}
.bg-parallel .box h4,
.bg-parallel .box p {
  color: white;
}

.form-modal input {
  border: 1px solid #8fa9a9;
  background: #f4f4f4;
}

.modal-offer .text1 {
  font-size: 22px;
  color: #026866;
  margin-bottom: 20px;
}
.modal-offer .text2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: #026866;
}

.transformative-section .icon_box_style1,
.transformative-section .icon_box_style2 {
  background-color: rgba(235, 233, 220, 0.6509803922) !important;
}
.transformative-section .icon_box {
  margin-bottom: 33px;
  padding: 15px;
  position: relative;
  text-align: center;
}
.transformative-section .box_shadow4 {
  border-radius: 20px;
  box-shadow: 0px 10px 64px rgb(235, 233, 220);
}
.transformative-section .img-radius {
  border-radius: 20px 20px 20px 20px;
}

.map-area .border-list .list-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed #026866;
}
.map-area .border-list .list-item .bg-primary {
  background-color: #026866 !important;
}
.map-area .border-list .bullet {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px !important;
  background-color: #ff771c;
  font-weight: 600;
  text-align: center;
  margin-right: 0.35rem;
}
.map-area .border-list .bullet {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px !important;
  background-color: #026866;
  font-weight: 600;
  text-align: center;
  margin-right: 0.35rem;
}
.map-area iframe {
  height: 100%;
  width: 100%;
}

.teacher-detailed {
  box-shadow: 0 0 5px 0 #ddd;
  overflow: hidden;
  margin-bottom: 40px;
  background-color: var(--secondary-color);
  padding: 1rem;
}
.teacher-detailed img {
  border-radius: 5px;
}
.teacher-detailed h3 {
  position: relative;
}
.teacher-detailed .sub-heading {
  font-size: 25px;
  font-weight: 600;
  position: relative;
  color: #212529;
  padding-bottom: 8px;
  margin-bottom: 15px;
}
.teacher-detailed .sub-heading::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #212529;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.skill-wrap {
  justify-content: left;
  display: flex;
  flex-wrap: wrap;
}
.skill-wrap .skill {
  background-color: #026866;
  color: #fff;
  font-size: 0.9rem;
  padding: 3px 15px;
  border-radius: 25px;
  margin-right: 15px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.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;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .tradition-info-box:first-child .guru-arrow,
  .tradition-info-box:nth-child(3) .guru-arrow {
    right: -80px;
    top: 70px;
    transform: rotate(-4deg);
  }
  .tradition-info-box:nth-child(2) .guru-arrow {
    bottom: -40%;
  }
  .tradition-info-box:nth-child(8) .guru-arrow {
    top: -55px;
    right: -70px;
  }
  .tradition-info-box:nth-child(5) .guru-arrow,
  .tradition-info-box:nth-child(7) .guru-arrow {
    left: -75px;
  }
}
@media (max-width: 991.2px) {
  .tradition-info-box {
    width: 45%;
  }
  .tradition-info-box:first-child {
    order: 1;
  }
  .tradition-info-box:nth-child(2) {
    order: 2;
  }
  .tradition-info-box:nth-child(3) {
    order: 3;
  }
  .tradition-info-box:nth-child(4) {
    order: 4;
  }
  .tradition-info-box:nth-child(5) {
    order: 8;
  }
  .tradition-info-box:nth-child(6) {
    order: 7;
  }
  .tradition-info-box:nth-child(7) {
    order: 6;
  }
  .tradition-info-box:last-child {
    order: 5;
  }
  #tradition .tradition-info-box {
    margin-top: 10%;
  }
  #tradition .tradition-info-box:first-child {
    margin-top: 0;
  }
  #tradition .tradition-info-box:nth-child(4),
  #tradition .tradition-info-box:nth-child(5),
  #tradition .tradition-info-box:nth-child(7) {
    margin-top: 20%;
  }
  .tradition-info-box:nth-child(2) .guru-arrow {
    right: auto;
    top: auto;
    left: -40%;
    bottom: -55%;
    transform: rotate(101deg);
  }
  .tradition-info-box:nth-child(8) .guru-arrow {
    top: -75px;
    right: -75px;
    transform: rotate(178deg) rotateX(184deg);
  }
  .tradition-info-box:nth-child(4) .guru-arrow {
    display: none;
  }
  .tradition-info-box:nth-child(7) .guru-arrow {
    right: auto;
    top: 32px;
    transform: rotate(352deg);
    left: -108px;
  }
  .tradition-info-box:nth-child(6) .guru-arrow {
    right: -65px;
    top: -55px;
    transform: rotateY(180deg) rotate(-2deg);
  }
  .tradition-info-box:nth-child(5) .guru-arrow {
    right: auto;
    top: 11px;
    left: -105px;
    transform: rotate(345deg);
  }
  .guru-image {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .guru-arrow svg,
  .yttc-box {
    width: 70%;
  }
  .tradition-info-box:first-child .guru-arrow,
  .tradition-info-box:nth-child(3) .guru-arrow {
    right: -115px;
    top: 40px;
  }
  .tradition-info-box:nth-child(2) .guru-arrow {
    bottom: -40%;
  }
  .tradition-info-box:nth-child(8) .guru-arrow {
    top: -55px;
    right: -70px;
  }
  .tradition-info-box:nth-child(5) .guru-arrow,
  .tradition-info-box:nth-child(7) .guru-arrow {
    left: -75px;
  }
}
@media (max-width: 480px) {
  .guru-image {
    width: 90px;
    height: 90px;
  }
  .guru-name,
  .lesson-heading,
  .online-class-video-heading,
  .online-testimonial-name,
  .online-testimonial-rating-info-heading,
  .para-sub-heading {
    font-size: 1rem;
  }
  .guru-arrow svg {
    width: 55%;
  }
  .tradition-info-box:nth-child(2) .guru-arrow {
    bottom: -95%;
    left: -61%;
  }
  .tradition-info-box:first-child .guru-arrow,
  .tradition-info-box:nth-child(3) .guru-arrow {
    top: 4px;
  }
  .tradition-info-box:nth-child(8) .guru-arrow {
    top: -53px;
    right: -52px;
  }
  .tradition-info-box:nth-child(7) .guru-arrow {
    top: 22px;
    transform: rotate(365deg);
    left: -52px;
  }
  .tradition-info-box:nth-child(5) .guru-arrow {
    top: -15px;
    left: -47px;
    transform: rotate(339deg);
  }
}
@media (max-width: 1439px) {
  .nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.6rem;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
  }
}
@media (max-width: 968px) {
  .nav-toggle {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
    padding-left: 0px;
  }
  .nav-menu {
    position: fixed;
    top: 6rem;
    right: -100%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    width: 80%;
    height: calc(100vh - 70px);
    padding: 2rem;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav-active .nav-menu {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav-link.active::after {
    display: none;
  }
  .nav-link.active {
    background: rgba(235, 233, 220, 0.5019607843) !important;
  }
  .dropdown {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    padding: 0;
    padding-left: 1rem;
    margin-left: 1rem;
    display: none;
    box-shadow: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .dropdown::before {
    display: none;
  }
  .has-dropdown.active .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .dropdown a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav-actions {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
  .search-container {
    width: 100%;
  }
  .search-input,
  .search-input:focus {
    width: 100%;
  }
  .search-input {
    padding: 0.8rem 1rem;
  }
  .chevron-icon {
    position: absolute;
    right: 1rem;
  }
  .has-dropdown.active .chevron-icon {
    transform: rotate(180deg);
  }
}
@media (max-width: 576px) {
  .animate-scroll {
    animation: scrollLeft 20s linear infinite;
    /* Adjust the 20s for speed */
  }
  .title img {
    width: 200px;
    height: 20px;
  }
  .box-title-heading {
    font-size: 16px;
    font-weight: 600;
  }
  .section-padding {
    padding: 40px 0px;
  }
  .container-box {
    padding-top: 10px;
    gap: 25px;
    margin: 20px;
  }
  .container-box .box {
    max-width: -webkit-fill-available;
    padding: 8px;
  }
  .container-box .box img {
    height: 80px;
    width: 80px;
  }
  .container-box h3 {
    font-size: 16px;
    color: white;
    padding: 10px 0px;
    font-weight: 600;
  }
  .title .heading {
    font-size: 1.6rem;
  }
  .title .subheading {
    font-size: 1.1rem;
    padding: 0px 8px;
  }
  .kvm-skilled {
    background-color: var(--secondary-color);
    padding: 2rem 1rem;
  }
  .kvm-skilled iframe {
    height: 200px !important;
  }
  .navbar {
    padding: 0.6rem;
  }
  .nav-menu {
    width: 100%;
    top: 5rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .content {
    padding: 1rem;
  }
  .section {
    padding: 3rem 1rem;
  }
  .upper-header {
    display: none !important;
  }
  .main-slider {
    display: block;
  }
  .main-slider .first-side {
    width: 100%;
    padding: 2rem 1rem;
  }
  p {
    font-size: 15px;
    text-align: justify;
  }
  .heading1 {
    font-size: 1.6rem;
  }
  .second-side {
    width: 100% !important;
    height: 210px;
  }
  .primary-yoga-btn {
    font-size: 13.5px;
    padding: 8px 12px;
  }
  .secondary-yoga-btn {
    font-size: 13.5px;
    padding: 8px 12px;
  }
  .scroll-container {
    margin-top: 1.5rem;
  }
  .scroll-container .flex-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 15px;
    text-align: center;
  }
  .scroll-container h4 {
    font-size: 1.2rem;
    color: var(--primary-color) !important;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
  }
  .scroll-container h5 {
    font-size: 0.8rem;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
  }
  .i-products .products-desc {
    padding: 28px 8px 8px 8px;
  }
  .elementor-section {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .elementor-section .elementor-container {
    min-height: 480px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .elementor-section .elementor-widget-container {
    display: flex;
    height: 100%;
    align-content: flex-end;
    justify-content: center;
    flex-wrap: wrap;
  }
  .elementor-section p {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .elementor-section-two {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .elementor-section-two .elementor-container {
    min-height: 480px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .elementor-section-two .elementor-widget-container {
    display: flex;
    height: 100%;
    align-content: flex-end;
    justify-content: center;
    flex-wrap: wrap;
  }
  .elementor-section-two p {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
  }
  .i-products .list-group-item {
    padding: 0.7rem 1.05rem;
    font-size: 15px !important;
  }
  .experience-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column-reverse;
  }
  .experience-section .second-exp-side {
    width: 100%;
    padding: 20px;
  }
  .experience-section .first-exp-side {
    width: 100%;
    height: 350px;
  }
  .experience-section .first-exp-side2 {
    width: 100%;
    height: 435px;
  }
  .experience-section .first-exp-side3 {
    width: 100%;
    height: 435px;
  }
  .accordion .accordion-item .accordion-button {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 0.7rem;
  }
  .accordion .accordion-item .accordion-button .me-2 {
    margin-right: 0.4rem !important;
  }
  .curriculam-list-card .card-text {
    text-align: center;
    padding: 0 1rem;
  }
  .curriculam-list-card .card-title {
    text-align: center;
  }
  .curriculam-list-card .figure {
    width: 17rem;
    height: 16rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0;
  }
  .curriculam-list-card .card-text:before {
    content: "";
    position: absolute;
    left: 0rem;
    right: 0;
    bottom: 0;
    top: 19%;
    background-color: #fff;
    box-shadow: 0 0 8px 0 #a4a3a3;
    z-index: -1;
    border-radius: 1.5rem;
  }
  .scroll-img .animate-scroll {
    animation: 8s linear 0s infinite normal none running scrollLeft !important;
  }
  .scroll-img .flex-col img {
    height: 250px;
    border-radius: 5px;
  }
  footer .mandalaimage {
    position: absolute;
    width: 45% !important;
    height: 100%;
    text-align: center;
    left: 15%;
    top: 50%;
    z-index: 0;
    opacity: 0.07;
    display: none;
  }
  footer .logo {
    filter: brightness(0) invert(1);
    width: 250px;
  }
  footer .social_icons {
    display: flex;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .yoga-allaince-section .ya-logo {
    width: 20rem;
    margin-bottom: 1rem;
  }
  .yoga-allaince-section h3 {
    font-size: 1.3rem;
  }
  .nine-days {
    background-image: url(../../assets/images/10-days-spiritual-transformation-yoga-retreat.jpg);
    min-height: 280px;
  }
  .seven-days {
    background-image: url(../../assets/images/8-days-himalayan-yoga-retreat.jpg);
    min-height: 280px;
  }
  .ten-days {
    background-image: url(../../assets/images/7-days-holistic-meditation-retreat.jpg);
    min-height: 350px;
  }
  .library {
    background-image: url(../../assets/images/cozy-corners-to-relax-at-atharvyogshala.jpg);
    min-height: 280px;
  }
  .cooking-class {
    background-image: url(../../assets/images/yogic-food-at-atharvyogshala.jpg);
    min-height: 280px;
  }
  .clean-hall {
    background-image: url(../../assets/images/yogshala-at-atharv-yogaschool-rishikesh.jpg);
    min-height: 280px;
  }
  footer p {
    font-size: 1rem;
  }
  footer .footer-list li {
    list-style: none;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
  }
  footer .bottom_footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav-link {
    font-size: 1rem;
  }
  .dropdown a {
    font-size: 0.95rem;
    padding: 0.7rem 0.5rem;
    border-radius: 2px;
  }
  .has-dropdown.active .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: 0.3s ease 0s 1 normal forwards running slideDown;
    margin: 0rem 1rem 1rem 0rem;
    padding: 10px;
    border: 1px solid #e8e8e8;
    background: rgba(28, 119, 119, 0.06);
  }
  .nav-menu {
    background: rgb(255, 255, 255);
  }
  .nav-list {
    overflow-y: scroll !important;
    height: -webkit-fill-available;
  }
  .btn-apply {
    margin-top: 1rem;
    width: 100%;
  }
  header .social_icons {
    display: flex;
    width: 100%;
    margin: 0.5rem 0px;
  }
  header .social_icons li {
    list-style: none;
    margin-right: 1rem;
  }
  header .social_icons li a {
    font-size: 2.3rem;
    color: var(--primary-color);
  }
  header .social_icons li a:hover {
    color: cadetblue;
  }
  .nav-link {
    width: 100%;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .testimonial-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
  }
  .testimonial-section h2 {
    color: white;
    font-weight: 700;
    font-size: 1.6rem;
  }
  .testimonial-section .testimonial-item .google-review-logo {
    width: 70px;
    position: absolute;
    top: 4px;
    right: 4px;
    opacity: 0.8;
  }
  .testimonial-section .testimonial-item h6 {
    font-size: 1.2rem;
  }
  .testimonial-section .testimonial-item .star-rating {
    margin-bottom: 0.5rem;
  }
  .testimonial-section .testimonial-item {
    background-color: white;
    text-align: center;
    padding: 2rem 2rem 2rem 2rem;
  }
  .ti-review-content .review-text.long-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 14 !important;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
  }
  .breadcrumb-wrapper .breadcrumb-title {
    font-size: 24px;
    margin-bottom: 1rem;
  }
  .breadcrumb-wrapper .breadcrumb-list {
    flex-wrap: wrap;
  }
  .breadcrumb-wrapper .banner-offer {
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  .breadcrumb-wrapper .banner-offer .banner-box {
    margin-bottom: 1rem;
    padding: 10px 20px;
  }
  .breadcrumb-wrapper .breadcrumb-list .breadcrumb-item {
    font-size: 14px;
  }
  .breadcrumb-wrapper {
    background-size: 57%;
    padding: 40px 0 5px 0px;
  }
  .course-detail .sidebar .title {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
  }
  .course-detail .sidebar .sidebar-list li .list-title {
    font-size: 1rem;
  }
  .course-detail .sidebar .sidebar-list li .detail {
    font-size: 1rem;
  }
  .ttc-page-box {
    padding: 25px 12px;
  }
  .course-detail .sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  .schedule-dates .head {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .schedule-dates .head .title {
    width: 100%;
    font-size: 16px;
    padding: 8px 12px;
  }
  .schedule-dates .dates-body .dates-box {
    display: flex;
    flex-wrap: wrap;
  }
  .schedule-dates .dates-body .dates-box .item {
    width: 50%;
    padding: 8px 5px;
  }
  .schedule-dates .dates-body .dates-box .item:first-child, .schedule-dates .dates-body .dates-box .item:last-child {
    width: 100%;
  }
  .schedule-dates .dates-body .dates-box .item > span {
    font-size: 16px;
  }
  .schedule-dates .dates-body .dates-box .item .primary-btn {
    width: 40%;
    padding: 6px 7px;
  }
  .daily-schedule .head {
    grid-template-columns: repeat(2, 1fr);
  }
  .daily-schedule .head .title {
    width: 100% !important;
  }
  .daily-schedule .dates-body .dates-box {
    flex-wrap: nowrap;
  }
  .daily-schedule .dates-body .dates-box .item {
    width: 50%;
  }
  .schedule-dates .dates-body .dates-box .item::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 98%;
    height: 2px;
    border-bottom: 1px dashed #929292;
  }
  .pricing-meta {
    padding: 20px 5px 10px 5px;
  }
  .pricing-meta ul li {
    list-style: none;
    padding-bottom: 0.8rem;
    font-weight: 500;
    font-size: 15px;
  }
  .list_style_om li {
    position: relative;
    padding-bottom: 1.2rem;
    padding-left: 2rem;
    font-size: 15px;
    font-weight: 600;
  }
  .list_style_om li::before {
    content: "ॐ";
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    position: absolute;
    margin-right: 10px;
    left: 0px;
    top: 30%;
    transform: translate(0);
    transform: translateY(-50%);
    border-radius: 20px;
    transition: 0.7s;
  }
  .course-syllabus .timings-box .card .f-large {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
  }
  .course-syllabus .timings-box .card p {
    text-align: center;
  }
  .course-syllabus .timings-box .p-4 {
    padding: 1rem !important;
  }
  .schedule-dates .dates-body .dates-box .item > span {
    font-size: 15px;
  }
  .seven-days-yoga-bg {
    background-image: url(../../assets/images/atharv-yogis-and-yoginis.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: none;
  }
  .nine-days-yoga-bg {
    background-image: none;
  }
  .retreat-points {
    align-items: center;
    margin-bottom: 1.4rem;
  }
  .retreat-points .icon-retreat {
    background-color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 7px;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .retreat-points .icon-retreat i {
    color: white;
    font-size: 1rem;
  }
  .retreat-points .content-retreat h3 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .retreat-points .content-retreat h4 {
    font-size: 15px;
    margin-bottom: 0px;
    text-transform: uppercase;
  }
  .highlight-box {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 18px 18px 18px 18px;
  }
  .highlight-box .highlight-box-subheading {
    text-align: center;
  }
  .highlight-box .highlight-box-heading {
    text-align: center;
    font-size: 1.4rem;
  }
  .highlight-content {
    padding: 18px;
  }
  .highlight-content h3 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.4rem;
  }
  .highlight-section .mx-2 {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  .bg-mobile-none {
    border-radius: 20px;
    background-image: none;
  }
  .highlight-section .mb-5 {
    margin-bottom: 2rem !important;
  }
  .course-objectives li {
    text-align: justify;
  }
  .tradition-info-box .guru-description {
    text-align: center;
    margin-bottom: 0;
    display: none;
  }
  .kuldeep-guide .heading {
    text-align: center;
  }
  .kuldeep-guide .subheading {
    text-align: center;
  }
  .alert {
    position: relative;
    padding: 30px 5px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0rem;
  }
  blockquote {
    color: #fff;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 30px;
    z-index: 0;
    position: relative;
  }
  .bg-parallel .figure .image {
    width: 100%;
    max-width: 28rem;
    display: block;
    margin: auto;
    height: auto;
    display: none;
  }
  .bg-parallel {
    padding: 40px 0px;
  }
  .kvm-box-shadow .about-skilled {
    display: block;
    padding: 30px 20px;
    text-align: center;
  }
  .kvm-box-shadow hr {
    border-left: 1px solid #000;
    height: 150px;
    display: none;
  }
  .kvm-box-shadow .mission-vision {
    font-size: 25px;
  }
  .map-area iframe {
    height: 400px;
  }
  .teacher-detailed .sub-heading {
    font-size: 25px;
    font-weight: 600;
    position: relative;
    color: #212529;
    padding-bottom: 8px;
    margin-bottom: 15px;
    margin-top: 1rem;
  }
  #contact-strip .contact-strip-heading, #contact-strip-new .contact-strip-heading, #pdf-form .contact-strip-heading {
    font-size: 18px;
    line-height: 0.8;
    font-weight: 700;
    color: #ffffff;
    background-color: #026866;
    display: table;
    padding: 15px 50px;
    margin: -60px auto 40px;
  }
  .btn-whatsapp-pulse {
    bottom: 10px;
    left: 15px;
  }
  .bg-parallel {
    background-color: #fff;
    background-image: none !important;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    background-attachment: fixed;
    background-color: #137c78;
  }
  .modal-offer .text2 {
    font-size: 40px;
    font-weight: 700;
    margin: 17px 0px !important;
    line-height: 46px;
    color: #026866;
    text-align: left;
  }
}
.border-white {
  border-color: white !important;
}

#recommendbooks .book-img {
  min-height: 350px;
  max-height: 350px;
}

.book-section .book-content {
  padding-bottom: 1rem;
  border: 1px solid #dedede;
}
.book-section a {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 7px 20px;
  background-color: #026866;
  color: white;
  border-radius: 3px;
}
.book-section .download {
  display: flex;
  justify-content: center;
}

.book-section .head4 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}/*# sourceMappingURL=style.css.map */