/*---- Variables ----*/
/*---- Hero Section ----*/
.hero-section {
  position: relative;
  min-height: 600px;
  height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: "Quicksand", sans-serif;
}

.kalpendar-ji-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../images/breadcrumb/kalpendar-ji-online-yoga-class-teacher.webp") center/cover no-repeat;
}

.pranayama-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../images/breadcrumb/online-pranaymana.webp") center/cover no-repeat;
}

.meditation-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../images/breadcrumb/meditation-breathing.webp") center/cover no-repeat;
}

.online-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url("../images/breadcrumb/yoga-online-class.webp") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 0 50px;
}

h1 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.65);
}

.sub-text {
  font-size: 17.5px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 35px;
  max-width: 560px;
  opacity: 0.96;
}

.btn-book {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(90deg, #ff673c, #c31e07);
  color: #fff;
  font-size: 16.5px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 5px 18px rgba(195, 30, 7, 0.35);
}
.btn-book:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(195, 30, 7, 0.45);
  background: linear-gradient(90deg, #c31e07, #ff673c);
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-buttons .whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background-color: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
.hero-buttons .whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}
.hero-buttons .apply-btn {
  padding: 11px 24px;
  background-color: #22c55e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}
.hero-buttons .apply-btn:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
}

/*---- Course Flow ----*/
.course-flow-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}
.course-flow-section .flow-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(195, 30, 7, 0.12);
  border-radius: 22px;
  padding: 30px 22px 26px;
  text-align: center;
  transition: all 0.35s ease;
  overflow: hidden;
}
.course-flow-section .flow-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(234.3861386139, 36.0594059406, 8.4138613861), #c31e07);
}
.course-flow-section .flow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(195, 30, 7, 0.22);
}
.course-flow-section .flow-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(195, 30, 7, 0.08);
  color: #c31e07;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.course-flow-section .flow-card h6 {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
}
.course-flow-section .flow-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/*---- Why Choose ----*/
.pranayama-why-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}
.pranayama-why-section .pranayama-why-card {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(195, 30, 7, 0.12);
  border-radius: 22px;
  padding: 26px 22px;
  transition: all 0.35s ease;
}
.pranayama-why-section .pranayama-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(195, 30, 7, 0.26);
}
.pranayama-why-section .pranayama-why-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 18px;
  background: rgba(195, 30, 7, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pranayama-why-section .pranayama-why-icon i {
  font-size: 26px;
  color: #c31e07;
}
.pranayama-why-section .pranayama-why-content h4 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 10px;
}
.pranayama-why-section .pranayama-why-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/*---- Benefits ----*/
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}
.benefits-section .benefits-intro {
  width: 100%;
}
.benefits-section .benefits-grid {
  margin-top: 44px;
}
.benefits-section .benefit-card-clean {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(195, 30, 7, 0.12);
  border-radius: 24px;
  padding: 34px 28px 30px;
  text-align: center;
  transition: all 0.35s ease;
  overflow: hidden;
}
.benefits-section .benefit-card-clean::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgb(244.2326732673, 37.5742574257, 8.7673267327), #c31e07);
}
.benefits-section .benefit-card-clean:hover {
  transform: translateY(-8px);
  border-color: rgba(195, 30, 7, 0.24);
}
.benefits-section .benefit-card-clean h4 {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 14px;
}
.benefits-section .benefit-card-clean p {
  font-size: 17px;
  line-height: 1.85;
  color: #4f4f4f;
  margin: 0;
}
.benefits-section .benefit-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 30, 7, 0.08);
  color: #c31e07;
  font-size: 18px;
  font-weight: 700;
}

/*---- Schedule ----*/
.schedule-section {
  background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
  padding: 70px 0;
}
.schedule-section .schedule-table {
  margin-top: 34px;
}
.schedule-section .schedule-head,
.schedule-section .schedule-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.1fr 1.4fr;
  align-items: center;
  -moz-column-gap: 18px;
       column-gap: 18px;
}
.schedule-section .schedule-head {
  padding: 0 22px 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(195, 30, 7, 0.12);
}
.schedule-section .schedule-head div {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7a7a7a;
}
.schedule-section .schedule-row {
  background: #fff;
  border: 1px solid rgba(195, 30, 7, 0.08);
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.schedule-section .schedule-row:hover {
  transform: translateY(-4px);
  border-color: #c31e07;
  box-shadow: 0 16px 32px rgba(195, 30, 7, 0.12);
}
.schedule-section .schedule-class {
  display: flex;
  align-items: center;
  gap: 14px;
}
.schedule-section .schedule-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(195, 30, 7, 0.08);
}
.schedule-section .schedule-info h6 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1.2;
}
.schedule-section .register {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #c31e07;
  transition: 0.3s ease;
}
.schedule-section .register:hover {
  letter-spacing: 0.2px;
}
.schedule-section .schedule-day,
.schedule-section .schedule-time {
  font-size: 18px;
  font-weight: 600;
  color: #3e3e3e;
}
.schedule-section .coach {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff3ef;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  min-height: 46px;
}
.schedule-section .schedule-label {
  display: none;
}

/*---- Pricing ----*/
.pricing-section {
  background: linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
  padding: 80px 0;
}
.pricing-section .pricing-wrap {
  margin-top: 42px;
}
.pricing-section .pricing-left,
.pricing-section .pricing-right,
.pricing-section .price-card,
.pricing-section .info-stack {
  height: 100%;
}
.pricing-section .price-card {
  background: #fff;
  border: 1px solid rgba(195, 30, 7, 0.14);
  border-radius: 24px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-section .price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(195, 30, 7, 0.08);
  color: #c31e07;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pricing-section .price-card h4 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 10px;
}
.pricing-section .price-line {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.pricing-section .currency {
  font-size: 24px;
  font-weight: 700;
  color: #c31e07;
  line-height: 1;
  position: relative;
  top: -6px;
}
.pricing-section .price {
  font-size: 62px;
  font-weight: 800;
  line-height: 0.95;
  color: #c31e07;
  margin: 0;
}
.pricing-section .per {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #7a7a7a;
  margin-bottom: 24px;
}
.pricing-section .price-note {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 420px;
  margin: 0 auto 22px;
}
.pricing-section .price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.pricing-section .price-features li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
}
.pricing-section .price-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c31e07;
  position: absolute;
  left: 0;
  top: 9px;
}
.pricing-section .info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-section .info-box {
  background: #fff;
  border: 1px solid rgba(195, 30, 7, 0.12);
  border-radius: 22px;
  padding: 24px 24px 22px;
  flex: 1;
}
.pricing-section .info-box h5 {
  font-size: 24px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 14px;
}
.pricing-section .info-box p,
.pricing-section .info-box li {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}
.pricing-section .info-box p {
  margin: 0;
}
.pricing-section .info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-section .info-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.pricing-section .info-box ul li:last-child {
  margin-bottom: 0;
}
.pricing-section .info-box ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c31e07;
  position: absolute;
  left: 0;
  top: 11px;
}

/*---- Course Buttons ----*/
.button-group-course {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.button-group-course .button {
  position: relative;
  min-width: 170px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.button-group-course .button:hover {
  transform: translateY(-2px);
}
.button-group-course .button a {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}
.button-group-course .button #spin,
.button-group-course .button .spin {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.35s ease;
  border-radius: inherit;
}
.button-group-course .button.register-theme {
  background: linear-gradient(90deg, #ff673c, #c31e07);
  border-color: #c31e07;
}
.button-group-course .button.register-theme a {
  color: #fff;
}
.button-group-course .button.register-theme #spin,
.button-group-course .button.register-theme .spin {
  background: linear-gradient(135deg, rgb(234.3861386139, 36.0594059406, 8.4138613861), #c31e07);
}
.button-group-course .button.register-theme:hover {
  border-color: rgb(175.3069306931, 26.9702970297, 6.2930693069);
}
.button-group-course .button.register-theme:hover #spin, .button-group-course .button.register-theme:hover .spin {
  background: linear-gradient(135deg, rgb(214.6930693069, 33.0297029703, 7.7069306931), rgb(175.3069306931, 26.9702970297, 6.2930693069));
}
.button-group-course .button.whatsapp-theme {
  background: #25d366;
  border-color: #25d366;
}
.button-group-course .button.whatsapp-theme a {
  color: #fff;
}
.button-group-course .button.whatsapp-theme #spin,
.button-group-course .button.whatsapp-theme .spin {
  background: linear-gradient(135deg, #34e97a, #25d366);
}
.button-group-course .button.whatsapp-theme:hover {
  border-color: #1fb85a;
}
.button-group-course .button.whatsapp-theme:hover #spin, .button-group-course .button.whatsapp-theme:hover .spin {
  background: linear-gradient(135deg, #28df6a, #1fb85a);
}

/*---- Responsive ----*/
@media (max-width: 1200px) {
  .hero-section {
    height: 78vh;
  }
}
@media (max-width: 1024px) {
  .hero-section {
    height: 76vh;
    min-height: 560px;
  }
  .hero-section .hero-content {
    padding: 0 36px;
    max-width: 680px;
  }
  .hero-section h1 {
    font-size: 40px;
  }
  .hero-section .sub-text {
    font-size: 16.5px;
    max-width: 520px;
  }
}
@media (max-width: 991px) {
  .course-flow-section,
  .pranayama-why-section,
  .benefits-section,
  .pricing-section {
    padding: 65px 0;
  }
  .course-flow-section .flow-card {
    padding: 26px 20px 24px;
    border-radius: 18px;
  }
  .course-flow-section .flow-card h6 {
    font-size: 21px;
  }
  .course-flow-section .flow-card p {
    font-size: 15px;
    line-height: 1.75;
  }
  .pranayama-why-section .pranayama-why-card {
    padding: 22px 18px;
    border-radius: 18px;
    gap: 14px;
  }
  .pranayama-why-section .pranayama-why-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
  }
  .pranayama-why-section .pranayama-why-icon i {
    font-size: 22px;
  }
  .pranayama-why-section .pranayama-why-content h4 {
    font-size: 21px;
  }
  .pranayama-why-section .pranayama-why-content p {
    font-size: 15px;
    line-height: 1.75;
  }
  .benefits-section .benefits-intro {
    margin-top: 22px;
  }
  .benefits-section .benefits-intro p {
    font-size: 17px;
    line-height: 1.85;
  }
  .benefits-section .benefits-grid {
    margin-top: 32px;
  }
  .benefits-section .benefit-card-clean {
    padding: 28px 22px 26px;
    border-radius: 20px;
  }
  .benefits-section .benefit-card-clean h4 {
    font-size: 24px;
  }
  .benefits-section .benefit-card-clean p {
    font-size: 16px;
  }
  .schedule-section .schedule-head {
    display: none;
  }
  .schedule-section .schedule-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .schedule-section .schedule-class {
    margin-bottom: 4px;
  }
  .schedule-section .schedule-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #888;
  }
  .schedule-section .schedule-day,
  .schedule-section .schedule-time,
  .schedule-section .schedule-coach {
    padding-left: 86px;
  }
  .pricing-section .pricing-wrap {
    margin-top: 30px;
  }
  .pricing-section .price-card,
  .pricing-section .info-box {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .pricing-section .price-card h4 {
    font-size: 28px;
  }
  .pricing-section .price {
    font-size: 50px;
  }
  .pricing-section .info-box h5 {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 520px;
    height: auto;
    padding: 110px 0 90px;
    align-items: center;
  }
  .hero-section .hero-content {
    padding: 0 24px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-section h1 {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 16px;
  }
  .hero-section .sub-text {
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 auto 28px;
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    min-height: 460px;
    padding: 100px 0 70px;
  }
  .hero-section .hero-content {
    padding: 0 18px;
  }
  .hero-section h1 {
    font-size: 28px;
  }
  .hero-section .sub-text {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .btn-book {
    padding: 12px 24px;
    font-size: 14.5px;
  }
  .course-flow-section .flow-card {
    padding: 22px 18px 20px;
  }
  .course-flow-section .flow-card .step {
    min-width: 78px;
    height: 31px;
    font-size: 12px;
    margin-bottom: 14px;
  }
  .course-flow-section .flow-card h6 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .course-flow-section .flow-card p {
    font-size: 14px;
    line-height: 1.7;
  }
  .pranayama-why-section .pranayama-why-card {
    padding: 20px 16px;
    gap: 12px;
  }
  .pranayama-why-section .pranayama-why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
  }
  .pranayama-why-section .pranayama-why-icon i {
    font-size: 20px;
  }
  .pranayama-why-section .pranayama-why-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .pranayama-why-section .pranayama-why-content p {
    font-size: 14px;
    line-height: 1.7;
  }
  .benefits-section .benefits-intro p {
    font-size: 15px;
    line-height: 1.8;
  }
  .benefits-section .benefit-card-clean {
    padding: 24px 18px 22px;
  }
  .benefits-section .benefit-card-clean h4 {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .benefits-section .benefit-card-clean p {
    font-size: 15px;
    line-height: 1.75;
  }
  .benefits-section .benefit-badge {
    width: 46px;
    height: 46px;
    font-size: 16px;
    margin-bottom: 14px;
  }
  .schedule-section {
    padding: 55px 0;
  }
  .schedule-section .schedule-img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }
  .schedule-section .schedule-info h6 {
    font-size: 18px;
  }
  .schedule-section .register {
    font-size: 14px;
  }
  .schedule-section .schedule-day,
  .schedule-section .schedule-time {
    font-size: 16px;
  }
  .schedule-section .coach {
    font-size: 14px;
    padding: 9px 14px;
  }
  .schedule-section .schedule-day,
  .schedule-section .schedule-time,
  .schedule-section .schedule-coach {
    padding-left: 72px;
  }
  .pricing-section .price-card h4 {
    font-size: 24px;
  }
  .pricing-section .price {
    font-size: 44px;
  }
  .pricing-section .per,
  .pricing-section .price-features li,
  .pricing-section .info-box p,
  .pricing-section .info-box li {
    font-size: 15px;
  }
  .pricing-section .info-box h5 {
    font-size: 19px;
  }
  .button-group-course {
    gap: 10px;
  }
  .button-group-course .button {
    min-width: 145px;
    height: 48px;
  }
  .button-group-course .button a {
    font-size: 14px;
    padding: 0 18px;
  }
}
.retreat-master-section {
  padding: 90px 0;
  background: #fff;
}
.retreat-master-section .master-wrap {
  align-items: center;
  row-gap: 34px;
}
.retreat-master-section .master-content {
  max-width: 620px;
  padding-right: 24px;
}
.retreat-master-section .master-content h4 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 22px;
}
.retreat-master-section .master-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #222;
  margin-bottom: 22px;
}
.retreat-master-section .master-content p:last-child {
  margin-bottom: 0;
}
.retreat-master-section .master-image {
  max-width: 500px;
  margin-left: auto;
  border-radius: 120px;
  overflow: hidden;
  background: #f6f3ef;
}
.retreat-master-section .master-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
}

@media (max-width: 1199px) {
  .retreat-master-section .master-content {
    max-width: 100%;
    padding-right: 16px;
  }
  .retreat-master-section .master-content h4 {
    font-size: 30px;
  }
  .retreat-master-section .master-content p {
    font-size: 17px;
  }
  .retreat-master-section .master-image {
    border-radius: 90px;
  }
  .retreat-master-section .master-image img {
    height: 540px;
  }
}
@media (max-width: 991px) {
  .retreat-master-section {
    padding: 70px 0;
  }
  .retreat-master-section .master-content {
    padding-right: 0;
    text-align: center;
    margin: 0 auto;
  }
  .retreat-master-section .master-content h4 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .retreat-master-section .master-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .retreat-master-section .master-image {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 70px;
  }
  .retreat-master-section .master-image img {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .retreat-master-section {
    padding: 55px 0;
  }
  .retreat-master-section .master-content h4 {
    font-size: 24px;
  }
  .retreat-master-section .master-content p {
    font-size: 15px;
    line-height: 1.75;
  }
  .retreat-master-section .master-image {
    border-radius: 40px;
  }
  .retreat-master-section .master-image img {
    height: 360px;
  }
}/*# sourceMappingURL=online-course.css.map */