@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bellota:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&display=swap');

*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --headingFont: "GFS Didot", serif;
  --bodyFont: "Poppins", sans-serif;
  --thirdFont: "Bellota", system-ui;
  --interFont: "Inter", sans-serif;
  --azeretFont: "Azeret Mono", monospace;
  --primaryColor: ;
  --secondaryColor: ;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

section {
  padding: 60px 0;
}

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

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin: 0;
}

/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}

.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 50px;
  right: 15px;
}

.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: #fff;
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.mm-navbar {
  z-index: 123;
  background: #565656;
}

.mm-navbar__title>span {
  color: #fff;
}

.mm-listitem:after {
  left: 0;
}

/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}

.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: #000000;
}

.mm-listitem.active {
  background: #878787;
}

/* ==================== mobile menu section end =================== */

/*========================== header start ==========================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.top_hdr {
  padding: 0 50px;
  display: flex;
  align-items: start;
}

.top_hdr .logo {
  padding-top: 0px;
  transition: 0.45s all ease-in-out;
}

.navbar {
  text-align: center;
  width: 100%;
  justify-content: center;
  padding: 0;
}

.navbar .hdr_nav {
  position: relative;
}

.navbar .hdr_nav::before {
  position: absolute;
  content: "";
  background: url('../images/nav-before.png')no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
  top: 0;
  left: -100px;
  bottom: 0;
}

.navbar .hdr_nav::after {
  position: absolute;
  content: "";
  background: url('../images/nav-after.png')no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
  top: 0;
  left: 100%;
  bottom: 0;
}


.navbar .hdr_nav ul {
  display: flex;
  gap: 31px;
  background-color: #fff;
  padding: 15px 30px;
  position: relative;
  z-index: 9;
}

.navbar .hdr_nav ul li a {
  color: #35093C;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
}

.navbar .hdr_nav ul li.active a {
  color: #F25483;
}

.navbar .hdr_nav ul li.has_submenu {
  position: relative;
}

.navbar .hdr_nav ul li ul.submenu {
  top: 30px;
  background: #fff;
  box-shadow: 0 4px 10px 0 #0003;
  border-radius: 0 0 15px 15px;
  border-top: 5px solid #267741;
  position: absolute;
  width: 250px;
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
  display: block;
  visibility: hidden;
  left: 0;
  transform: translate(-30%, 10px) !important;
  text-align: left;
  padding: 10px 7px;
}

.navbar .hdr_nav ul li ul.submenu li {
  padding-bottom: 8px;
  padding-top: 3px;
}

.navbar .hdr_nav ul li ul.submenu li a {
  color: #35093C;
  font-family: var(--headingFont);
  font-weight: 500;
  font-size: 16px;
}

.navbar .hdr_nav ul li.has_submenu:hover>.submenu {
  opacity: 1;
  transform: translate(-30%, 0) !important;
  visibility: visible;
}

.banner_sec {
  padding-top: 0;
  position: relative;
  padding-bottom: 0;
}

/* .banner_sec::before{
  position: absolute;
  content: "";
  background: url('../images/banner-ladies-img.png')no-repeat;
  top: 0;
  right: 0;
  height: 683px;
  width: 100%;
} */
figure {
  margin-bottom: 0;
}

/* .banner_sec figure img {
  width: 100%;
} */

.banner_sec .banner_inner h1 {
    font-size: 40px;
    line-height: 48px;
    color: #fd5e0b;
    font-family: var(--headingFont);
    /* width: 637px; */
    padding-top: 31px;
}

.banner_sec .banner_inner {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 637px;
  text-align: center;
}

.banner_inner figure img {
  width: auto;
}

.round {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-100%);
  width: 150px;

}

.banner_ladius_img {
  position: absolute;
  right: 17%;
  top: 11%;
  bottom: 0px;
}

.banner_ladius_img figure img {
  height: 470px;
}

.banner_ladius_img figure {
  margin-bottom: 0;
}

.about_sec {
  background: radial-gradient(36.07% 57.42% at 50% 42.58%, #FFFFFF 0%, #FFDBB8 100%);
  padding-top: 0;
  padding-bottom: 120px;
}

.about_sec .about_bx {
  padding: 50px;
  border-radius: 20px;
  background-color: #FFFBF8;
  box-shadow: 0px 0px 24px 0px #00000026;
  position: relative;
  z-index: 9;
  top: -50px;
}

.about_sec .about_bx::before {
  position: absolute;
  content: "";
  background: url('../images/about_before.png')no-repeat;
  height: 64%;
  width: 383px;
  left: -111px;
  background-size: contain;
  top: 75px;
}

.about_sec .about_bx::after {
  position: absolute;
  content: "";
  background: url('../images/about_after.png')no-repeat;
  height: 64%;
  width: 383px;
  background-size: contain;
  top: 75px;
  left: 100%;
}


.about_sec .about_bx h2 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
}

.about_sec .about_bx h2 span {
  color: #F25483;
  font-family: var(--thirdFont);
}

.achv_sec h2 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
  text-align: center;
  padding-bottom: 30px;
}

.achv_sec h2 span {
  color: #F25483;
  font-family: var(--thirdFont);
}

.about_sec .about_bx p {
  font-size: 15px;
  line-height: 28px;
  color: #35093C;
  font-family: var(--bodyFont);
  padding: 30px 0;
}

.about_sec .about_bx figure {
  height: 100%;
}

.about_sec .about_bx figure img {
  height: 100%;
}

.about_sec .about_btn {
  display: flex;
  gap: 10px;
}

.about_sec .about_btn .main_btn {
  position: relative;
  padding: 6px 20px;
  border-radius: 80px;
  color: #35093C;
  border: none;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--bodyFont);
  transition: 0.4s all ease-in-out;
}

.about_sec .about_btn .main_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  /* border thickness */
  border-radius: 80px;
  background: linear-gradient(90deg, #F23A71 33.17%, #FFBAA0 100%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: -1;
}

.about_sec .about_btn .main_btn:hover {
  background: linear-gradient(90deg, #F25483 20.19%, #FFBAA0 100%);
  color: #fff;
}

.about_sec .about_bx figure img {
  border-top-right-radius: 120px;
  object-fit: cover;
}

.guru_sec {
  padding-top: 40px;
}

.guru_sec h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--thirdFont);
}

.guru_sec h2 span {
  color: #F25483;
  font-family: var(--headingFont);
}

.guru_blk {
  text-align: center;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  gap: 100px;
  position: relative;
}

.guru_blk::before {
  position: absolute;
  content: "";
  background-color: #35093c70;
  height: 280px;
  width: 1px;
  left: 50%;
}

.guru_blk .guru_bx h5 {
  font-size: 15px;
  font-weight: 600;
  color: #35093C;
  padding-top: 20px;
  font-family: var(--interFont);
}

.guru_blk .guru_bx p {
  font-size: 13px;
  font-weight: 400;
  color: #35093C;
  padding-top: 10px;
  font-family: var(--interFont);
}

.guru_btn {
  position: relative;
  padding: 6px 20px;
  border-radius: 80px;
  color: #fff;
  border: none;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--bodyFont);
  transition: 0.4s all ease-in-out;
  background: linear-gradient(90deg, #F23A71 33.17%, #FFBAA0 100%);
  margin-top: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  /* important for shine effect */
}

.guru_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.4),
      transparent 70%);
  transition: 0.6s ease;
  z-index: 0;
}

/* Hover effects */
.guru_btn:hover {
  transform: translateY(-3px) scale(1.03);
  /* lift effect */
  box-shadow: 0 10px 25px rgba(242, 58, 113, 0.35);
}

.guru_btn:hover::before {
  left: 120%;
  /* shine sweep */
}

/* Keep text above shine */
.guru_btn span,
.guru_btn {
  position: relative;
  z-index: 1;
}

.guru_bx .guru_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  /* border thickness */
  border-radius: 80px;
  background: linear-gradient(90deg, #F23A71 33.17%, #FFBAA0 100%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: -1;
}

.msn_sec {
  background: url('../images/mission-bg.png')no-repeat;
  padding: 120px 0;
  width: 100%;
  background-size: cover;
}

.msn_upper {
  display: flex;
  gap: 60px;
  align-items: center;
}

.msn_sec h2 {
  font-size: 70px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
  text-align: end;
}

.msn_sec .msn_bx {
  backdrop-filter: blur(10px);
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF80;
  padding: 28px 30px;
  border-radius: 30px;
  width: 602px;
}

.msn_sec .msn_bx h4 {
  font-size: 30px;
  font-weight: 300;
  color: #35093C;
  font-family: var(--bodyFont);
}

.msn_sec .msn_bx p {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  padding-top: 15px;
  color: #35093C;
  font-family: var(--bodyFont);
}

.vsn_bx {
  padding: 54px 30px !important;
}

.offer_sec {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFA8A1 0%, rgba(255, 255, 255, 0) 100%);
}

.offer_sec h2 {
  font-size: 70px;
  font-weight: 400;
  color: #F25483;
  text-align: center;
  font-family: var(--headingFont);
  padding-top: 30.4px;
  padding-bottom: 65px;
}

.offer_bx {
  border: 1px solid #FFBAA0;
  border-radius: 30px;
  background-color: #fff;
  padding: 20px 10px 15px 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.offer_bx h5 {
  font-size: 16px;
  color: #35093C;
  font-weight: 500;
  font-family: var(--bodyFont);
}

.offer_bx a {
  margin-top: 16px;
}

.offer_bx img {
  padding-top: 29px;
}

.offer_bx.first {
  margin-top: -65px;
}

.offer_bx.scnd {
  margin-top: -45px;
}

.coach_sec {
  padding-top: 0;
  padding-bottom: 120px;
}

.coach_sec h2 {
  font-size: 70px;
  font-weight: 400;
  color: #F25483;
  text-align: center;
  font-family: var(--headingFont);
  padding-top: 30.4px;
  padding-bottom: 50px;
}

.coach_sec p {
  text-align: center;
  font-size: 20px;
  color: #35093C;
  font-weight: 400;
  font-family: var(--bodyFont);
}

.coach_inner {
  padding-top: 60px;
}

.coach_inner figure {
  position: relative;
}

.coach_inner figure .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.coach_inner p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #35093C;
  text-align: left;
  padding-bottom: 20px;
}

.creative_sec {
  background: linear-gradient(270deg, #FFF4E9 54.04%, #FFFFFF 100%);
  padding: 120px 0;
}

.creative_sec h2 {
  font-size: 70px;
  font-weight: 400;
  color: #267741;
  text-align: left;
  font-family: var(--headingFont);
  padding-top: 20.4px;
  padding-bottom: 30px;
}

.creative_sec p {
  text-align: left;
  font-size: 20px;
  color: #35093C;
  font-weight: 400;
  font-family: var(--bodyFont);
}

.creative_left {
  position: relative;
}

.creative_left img {
  position: absolute;
  top: -30px;
  right: -70px;
  height: 500px;
}

.creative_slider {
  padding-top: 40px;
}

.creative_slider .slick-prev {
  position: absolute;
  right: 50px;
  top: -16px;
  font-size: 0;
  border: none;
  background: url('../images/prev.png')no-repeat;
  height: 43px;
  width: 43px;
}

.creative_slider .slick-next {
  position: absolute;
  right: 0px;
  top: -16px;
  font-size: 0;
  border: none;
  background: url('../images/nex.png')no-repeat;
  height: 43px;
  width: 43px;
}

.creative_slider .creative_images .iamges {
  padding: 0 7.5px;
}

.testi-sec {
  background: linear-gradient(90deg, #FFDFC0 11.77%, #FF9388 105.78%);
  padding: 144px 0 209px 150px;
  position: relative;
}

.testi-sec h2 {
  font-size: 38px;
  line-height: 50px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
}

.testi_card {
  background-color: #fff;
  border-radius: 30px;
  padding: 16.42px 10px 28px 10px;
}

.testi_card h5 {
  font-size: 18px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--azeretFont);
  padding-top: 5px;
}

.testi_card h6 {
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  padding-top: 6px;
  color: #35093C;
  font-family: var(--azeretFont);
}

.testi_card .coma {
  position: relative;
  top: -6px;
}


.testi_card p {
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-top: 20px;
  line-height: 25px;
  height: 270px;
  overflow-y: auto;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #FFA8A1 transparent;
}

/* Chrome, Edge, Safari */
.testi_card p::-webkit-scrollbar {
  width: 6px;
}

.testi_card p::-webkit-scrollbar-track {
  background: transparent;
}

.testi_card p::-webkit-scrollbar-thumb {
  background-color: #FFA8A1;
  border-radius: 10px;
}


.testi_image {
  position: absolute;
  bottom: -3px;
  right: 10px;
}

.swiper-slide.swiper-slide-active .testi_card {
  transform: scale(1);
  box-shadow: 4px 4px 4px 0px #0000001A;
  background-color: #fff;
  filter: blur(0px);
}

.swiper-slide.swiper-slide-next .testi_card {
  box-shadow: 0px 4px 4px 0px #0000001A;
  border: Mixed solid #FFFFFF;
  opacity: 0.8;
  transform: scale(1);
  background-color: #fff;
  filter: blur(0px);
}

.swiper-slide .testi_card {
  transform: scale(0.9);
  background: rgb(255, 255, 255);
  /* important */
  backdrop-filter: blur(12px);
  filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);
  /* Safari support */
  transition: 0.4s all ease-in-out;
}

.swiper.mySwiper {
  transform: translateX(120px);
}

.swiper-button-prev {
  position: absolute;
  left: 150px !important;
  top: 60% !important;
  z-index: 12;
  background: #fff;
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

.swiper-button-prev svg {
  height: 15px;
  /* filter: invert(1) brightness(0); */
  color: #35093C;
}

.swiper-button-next {
  position: absolute;
  left: 200px !important;
  top: 60% !important;
  z-index: 12;
  background: #fff;
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

.swiper-button-next svg {
  height: 15px;
  /* filter: invert(1) brightness(0); */
  color: #35093C;
}

.gallery_sec {
  padding: 120px 236px;
  position: relative;
}

.gallery_sec .bg_image {
  position: absolute;
  content: "";
  background: url('../images/bg-image.png')no-repeat;
  background-size: cover;
  left: 50%;
  top: 0;
  transform: translate(-50%, 9%);
}

.gallery_sec figure {
  position: relative;
  z-index: 1;
}

.gallery_sec h2 {
  font-size: 70px;
  font-weight: 400;
  color: #F25483;
  text-align: center;
  font-family: var(--headingFont);
  padding-top: 20.4px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

.gallery_sec p {
  text-align: center;
  font-size: 20px;
  color: #35093C;
  font-weight: 400;
  font-family: var(--bodyFont);
  position: relative;
  z-index: 1;
}

.gallery_sec .gallery {
  position: relative;
  z-index: 1;
  padding-top: 40px;
}

.gallery_sec .gallery a {
  width: 100%;
  position: relative;
  transition: 0.4s all ease-in-out;
}

.gallery_sec .gallery a img {
  width: 100%;
  border-radius: 10px;
}

.gallery_sec .gallery .first img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.gallery_sec .gallery a .overlay img {
  height: auto;
}

.gallery_sec .gallery a .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 20px;

  transform: translate(-50%, -50%) scale(0);
  transform-origin: center center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.gallery_sec .gallery a:hover .overlay {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery_sec .btn-new {
  text-align: center;
  padding-top: 12px;
}

.site-footer {
  padding: 65px 0 43px;
  background-color: #FFE2D9;
  position: relative;
  z-index: 1;
}

.site-footer h6 {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--bodyFont);
  padding-top: 30px;
  padding-bottom: 25px;
  color: #35093C;
}

.location {
  display: flex;
  gap: 13px;
  padding-bottom: 20px;
  align-items: center;
}

.location p {
  font-size: 14px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  line-height: 24px;
}

.location a {
  font-size: 14px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  line-height: 24px;
  transition: 0.4s all ease-in-out;
}

.location a:hover {
  color: #F25483;
}

.location img {
  height: 20px;
  min-width: 20px;
}

.first_location {
  display: flex;
  align-items: start;
}

.site-footer .ftr_nav li {
  padding-bottom: 10px;
}

.site-footer .ftr_nav li a {
  font-size: 14px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  transition: 0.4s all ease-in-out;
}

.site-footer .ftr_nav li a:hover {
  color: #F25483;
}



.site-footer .ftr_nav li a span {
  color: #F25483;
}

.ftr_hdrs {
  padding-top: 16px !important;
  padding-bottom: 30px !important;
}

.site-footer .social {
  display: flex;
  gap: 3px;
  padding-bottom: 10px !important;
}

.ftr-blog img {
  height: 80px;
  min-width: 101px;
  border-radius: 7px;
}

.social img {
  background-color: #FFCFC0;
  border-radius: 10px;
  height: fit-content;
}

.social a {
  font-size: 28px;
  font-weight: 500;
  color: #35093C;
  opacity: 60%;
  background-color: #ffcfc0;
  padding: 4px 24px;
  border-radius: 10px;
  font-family: var(--bodyFont);
  width: 207px;
}

.ftr-blog {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 10px;
}

.ftr-blog h4 {
  font-size: 13px;
  font-weight: 400;
  color: #35093C;
  line-height: 20px;
  font-family: var(--bodyFont);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ftr_btm {
  padding-top: 30px;
}

.ftr_btm h6 {
  font-size: 13px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
  text-align: center;
  padding-bottom: 0;
}

.ftr_btm h6 a {
  font-weight: 700;
  color: #F25483;
}

.floating {
  position: fixed;
  top: 30%;
  right: 30px;
  z-index: 9;
}

.floating ul li {
  padding-bottom: 7px;

}

.floating ul li:hover a {
  transform: rotate(360deg);
}


/* service */

.innr_bnr_sec {
  padding: 0;
}

.innr_bnr_sec figure {
  position: relative;
}

.innr_bnr_sec figure img {
  width: 100%;
}

.innr_bnr_sec figure .inner_bnr_text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.innr_bnr_sec figure .inner_bnr_text a {
  font-size: 18px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  line-height: 18px;
}

.innr_bnr_sec figure .inner_bnr_text h1 {
  font-size: 35px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--headingFont);
  padding-top: 8px;
  width: 550px;
}

.astro_sec {
  padding: 130px 0;
  background: linear-gradient(180deg, #FFEBD7 0%, rgba(255, 255, 255, 0) 100%);

}

.astro_img {
  display: flex;
  gap: 16px;
}

.astro_sec .astro_first {
  position: relative;
}

.astro_sec .astro_scnd {
  position: relative;
  top: 100px;
}

.astro_sec .astro_first::after {
  position: absolute;
  content: "";
  background: url('../images/astro-first-lower.png')no-repeat;
  top: 100%;
  height: 69px;
  width: 100%;
  left: 50%;
  transform: translate(-40%, 0);
}

.astro_sec .astro_scnd::before {
  position: absolute;
  content: "";
  background: url('../images/astro-scnd-upper.png')no-repeat;
  bottom: 100%;
  height: 69px;
  width: 100%;
  left: 50%;
  transform: translate(-40%, 0);
}

.astro_sec h2 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
}

.astro_sec p {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  line-height: 28px;
  padding-top: 20px;
  font-family: var(--bodyFont);
}

.role_sec {
  padding: 0px 100px 100px;
}

.role_sec .role_bx {
  box-shadow: 0px -10px 10px 0px #0000000D;
  padding: 100px 60px 0px 60px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.role_sec .role_bx h3 {
  font-size: 40px;
  font-weight: 300;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-bottom: 25px;
}

.role_sec .role_bx p {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  line-height: 28px;
  font-family: var(--bodyFont);
  padding-top: 15px;
}

.role_cards_blk {
  margin-top: 50px;
}

.role_card {
  background: linear-gradient(180.09deg, #FFBAA0 22.04%, #FFEFCE 99.92%);
  padding: 10px 10px 28px 10px;
  border-radius: 30px;
  height: 100%;
}

.role_card h6 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  font-family: var(--bodyFont);
  padding-top: 15px;
  color: #35093C;
}

.role_card figure img {
  width: 100%;
}

.role_card p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  font-family: var(--bodyFont);
  padding-top: 15px;
  line-height: 24px;
  color: #35093C;
}

.horo_sec {
  padding: 0px 0 120px;
}

.horoscope-inner {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.horoscope h3 {
  font-size: 40px;
  font-weight: 300;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-bottom: 50px;
}

.hore_text p {
  font-size: 18px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
}

.hore_text a {
  padding-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #F25483;
  font-family: var(--bodyFont);
}

.holistic_sec {
  padding: 120px 0;
}

.holistic_sec h3 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
  text-align: center;
  padding-bottom: 40px;
}

.holistic_nav {
  justify-content: center;
  border-bottom: none;
  gap: 10px;
}

.holistic_nav li .nav-link {
  border: none !important;
  padding: 9px 20px;
  background-color: #F2F2F2;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
}

.holistic_nav li .nav-link.active {
  border: none !important;
  padding: 9px 20px;
  color: #FFF;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  background-color: #35093C;
  font-family: var(--bodyFont);
}

.tab-content p {
  padding-top: 40px;
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  line-height: 28px;
  text-align: center;
}

.tab-content p a {
  text-decoration: underline;
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
}

.tab-content h2 {
  font-size: 40px;
  font-weight: 300;
  color: #35093C;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 45px;
  font-family: var(--bodyFont);
}

.holistic_bx {
  background-color: #FFBE7E;
  border-radius: 30px;
  padding: 10px 10px 30px 10px;
  height: 100%;
}

.holistic_bx img {
  width: 100%;
}

.holistic_bx h5 {
  font-size: 20px !important;
  font-weight: 600 !important;
  padding-top: 20px !important;
  color: #35093C !important;
  text-align: center !important;
  font-family: var(--bodyFont) !important;
}

.holistic_bx p {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
  text-align: center !important;
  line-height: 24px;
  padding-top: 10px;
}

.holistic_btn .guru_btn {
  margin-top: 40px;
  font-size: 14px;
  padding: 10px 40px;
  font-weight: 500;
}

.numerology_sec {
  padding: 120px 0;
}

.numerology_sec h3 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
  text-align: center;
  padding-bottom: 32px;
}

.numerology_sec p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #35093C;
  text-align: center;
  font-family: var(--bodyFont);
  padding-bottom: 28px;
}

.numerology_sec p span {
  font-weight: 600;
}

.numerology_sec .left_img {
  height: 100%;
}

.numerology_sec h6 {
  font-size: 20px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-bottom: 15px;
}

.numerology_sec ul {
  padding-left: 20px;
  padding-bottom: 25px;
}

.numerology_sec ul li {
  list-style: disc;
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  padding-bottom: 5px;
  font-family: var(--bodyFont);
}

.element {
  display: flex;
  gap: 10px;
  padding-top: 6px;
  padding-bottom: 14px;
}

.element img {
  height: 25px;
  min-width: 25px;
}

.element .element_inner h5 {
  font-size: 15px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
}

.element .element_inner p {
  padding-top: 3px;
  padding-bottom: 0;
}

.last {
  padding-top: 16px;
}

.last_lists ul {
  padding-bottom: 0;
}

.last_lists {
  display: flex;
  gap: 36px;
}

.vastu_sec {
  padding: 120px 0 174px 0;
}

.vastu_sec h3 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
  text-align: center;
  padding-bottom: 37px;
}

.vastu_sec p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #35093C;
  padding-bottom: 25px;
  text-align: center;
  font-family: var(--bodyFont);
}

.vastu_sec h6 {
  font-size: 20px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-bottom: 15px;
}

.vastu_sec ul {
  padding-bottom: 7px;
}

.vastu_sec ul li {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  line-height: 28px;
}

.vastu_sec ul li span {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  line-height: 28px;
  font-family: var(--bodyFont);
}

.vastu_sec ul li span::before {
  position: relative;
  content: "";
  height: 5px;
  width: 5px;
  background-color: #35093C;
  left: -14px;
  top: 17px;
  border-radius: 50%;
  display: block;
}

.vastu_sec h5 {
  padding-bottom: 25px !important;
  font-size: 25px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
}

.vastu_sec h5 strong {
  padding-bottom: 10px;
}

.vastu_sec h4 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-top: 30px;
  padding-bottom: 18px;
}

.vastu_card_sec h5 {
  font-size: 15px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
}

.vastu_card_sec p {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-top: 10px;
  line-height: normal;
}

.middle_line {
  position: relative;
}

.middle_line::before {
  position: absolute;
  content: "";
  background-color: #FFDBB8;
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
}


.purpose_sec {
  padding: 0px 0px 120px;
  background: linear-gradient(-180deg, #FF9388 -17.72%, #FFDFC0 99.87%);
}

.purpose_bx {
  padding: 35px 30px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 30px 0px #A2313126;
  position: relative;
  margin-top: -90px;
}

.purpose_bx h4 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--bodyFont);
  color: #35093C;
  padding-bottom: 15px;
}

.purpose_bx ul {
  padding-left: 22px;
}

.purpose_bx ul li {
  font-size: 15px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-bottom: 5px;
  list-style: disc;
}

.purpose_sec p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #35093C;
  text-align: center;
  padding-top: 40px;
  font-family: var(--bodyFont);
}

.consult_sec {
  padding: 120px 100px;
}

.consult_sec h2 {
  font-size: 40px;
  font-weight: 300;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-bottom: 30px;
}

.consult_sec p {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  text-align: center;
  font-family: var(--bodyFont);
  padding-bottom: 60px;
}

.consult_card {
  padding: 0px 20px 23px 20px;
  border-radius: 20px;
  height: 100%;

  background:
    linear-gradient(#FFF4F0, #FFF4F0) padding-box,
    linear-gradient(180deg, #FFFFFF 0%, #F25483 100%) border-box;

  border: 1px solid transparent;
}

.consult_card figure {
  margin-top: -30px;
}

.consult_card figure img {
  width: 100%;
}

.consult_card h6 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-top: 20px;
}

.consult_card p {
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  padding-top: 15px;
}

.astro_new_sec {
  padding: 120px 0;
}

.astro_new_sec h3 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
  text-align: center;
  padding-bottom: 28px;
}


.astro_new_sec p {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
  text-align: center;
  line-height: 28px;
  padding-bottom: 30px;
}

.astro_new_sec figure {
  position: relative;
}

.astro_new_sec .left::before {
  position: absolute;
  content: "";
  background: url('../images/class-left.png')no-repeat;
  background-size: auto;
  left: -68px;
  top: 50%;
  height: 100%;
  width: 100%;
  transform: translateY(-27%);
}

.astro_new_sec .right::after {
  position: absolute;
  content: "";
  background: url('../images/class-right.png')no-repeat;
  background-size: auto;
  left: -68;
  top: 50%;
  height: 100%;
  width: 100%;
  transform: translateY(-27%);
}

.astro_new_sec figure img {
  width: 100%;
}

.astro_new_sec h5 {
  font-size: 30px;
  font-weight: 500;
  font-family: var(--bodyFont);
  text-align: center;
  padding-top: 30px;
  color: #35093C;
}

.astro_new_sec .astro_bx_txt {
  font-size: 20px;
  font-weight: 400;
  color: #35093C;
  text-align: center;
  font-family: var(--bodyFont);
  padding-top: 20px;
  padding-bottom: 0;
  line-height: 35px;
}

.astro_new_sec .guru_btn {
  margin-top: 52px;
}

.meditation_sec {
  padding: 120px 0;
}

.meditation_sec h3 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
  text-align: center;
  padding-bottom: 40px;
}

.meditation_sec p {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-bottom: 30px;
  line-height: 28px;
}

.work_blk {
  padding-top: 90px;
}

.work_blk h2 {
  font-size: 40px;
  font-weight: 300;
  font-family: var(--bodyFont);
  color: #35093C;
  text-align: center;
  padding-bottom: 40px;
}

.work_bx h6 {
  font-size: 20px;
  font-weight: 600;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-top: 20px;
}

.work_bx p {
  padding-bottom: 0;
  text-align: center;
  font-size: 14px;
  padding-top: 15px;
}

.work_bx figure {
  position: relative;
}

.work_bx .first-before::before {
  position: absolute;
  content: "";
  background: url('../images/work-before.png')no-repeat;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 27px;
  width: 41px;
  background-size: contain;
}

.use_sec {
  background: linear-gradient(-180deg, #FF9388 -34.64%, #FFDFC0 57.02%);
  padding: 100px 0;
}

.use_sec .element {
  padding-top: 20px;
  padding-bottom: 0;
}

.use_sec .element .element_inner p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #35093C;
  text-align: left;
  font-family: var(--bodyFont);
}

.use_sec h4 {
  font-size: 20px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
}

.use_sec .last {
  padding-top: 30px;
}

.use_sec .use_para {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  line-height: 28px;
  font-family: var(--bodyFont);
  padding-top: 47px;
}

.medi_type_sec {
  background: url('../images/medi-type-bg.png')no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.medi_type_sec h2 {
  font-size: 40px;
  font-weight: 300;
  color: #fff;
  font-family: var(--bodyFont);
  padding-bottom: 51px;
}

.medi_type_sec .type_blk {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-top: 0px;
  height: 105px;
}

.medi_type_sec .type_blk img {
  background-color: #FFDBB8;
  padding: 15px;
  border-radius: 10px;
}

.medi_type_sec .type_blk h6 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  font-family: var(--bodyFont);
}

.medi_type_sec .type_blk p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
  font-family: var(--bodyFont);
  padding-top: 15px;
}

.benefit_sec {
  padding: 120px 0;
  background: linear-gradient(270deg, #FFF4E9 18.9%, #FFFFFF 100%);
}

.benefit_sec h2 {
  font-size: 40px;
  font-weight: 300;
  color: #35093C;
  text-align: center;
  font-family: var(--bodyFont);
  padding-bottom: 40px;
}

.benefit_sec .benefit_bx {
  background-color: #FFF4E9;
  border: 1px solid #FFBE7E;
  border-radius: 10px;
  padding: 27px 20px 20px 34px;
  position: relative;
  transition: 0.4s all ease-in-out;
}

.benefit_sec .benefit_bx:hover {
  transform: translateY(-5px);
  background-color: #FFBE7E;
}

.benefit_sec .benefit_bx:hover::before {
  filter: brightness(0) invert(1);
}

.benefit_sec .benefit_bx::before {
  position: absolute;
  content: "";
  background: url('../images/benefit-before.png')no-repeat;
  background-size: contain;
  height: 74px;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s all ease-in-out;
}


.benefit_sec .benefit_bx h4 {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  line-height: 24px;
  position: relative;
  z-index: 1;
}

.benefit_sec h5 {
  font-size: 25px;
  font-weight: 400;
  line-height: 40px;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-top: 100px;
  padding-bottom: 50px;
}

.timing_blk {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  padding-bottom: 22px;
}

.timing_blk .time_bx {
  background-color: #FFBE7E;
  border-radius: 10px;
  padding: 10px 40px;
}

.timing_blk .time_bx h6 {
  font-size: 20px;
  font-weight: 400;
  color: #35093C;
  text-align: center;
  font-family: var(--bodyFont);
  position: relative;
  line-height: 35px;
}

.timing_blk .time_bx h6::before {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background-color: #35093C;
  border-radius: 50%;
  top: 15px;
  left: -20px;
}

.benefit_sec .guru_btn {
  font-size: 14px;
  padding: 10px 40px;
}

.puja_sec {
  padding: 120px 0;
  background: linear-gradient(270deg, #FFF4E9 18.9%, #FFFFFF 100%);
}

.puja_sec h3 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
  text-align: center;
  padding-bottom: 29px;
}

.puja_sec p {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  line-height: 28px;
  font-family: var(--bodyFont);
}

.sgnificnc_sec {
  padding: 120px 100px;
  background: linear-gradient(270deg, #FFF4E9 18.9%, #FFFFFF 100%);
  padding-top: 0;
}

.signifcnc_bx {
  background: linear-gradient(180deg, #FFBAA0 0%, rgba(255, 186, 160, 0) 100%);
  padding: 10px 10px 20px 10px;
  border: 1px solid #fff;
  border-radius: 30px;
  height: 100%;
}

.signifcnc_bx h6 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-top: 20px;
}

.signifcnc_bx p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-top: 15px;
}

.perform_sec .benefit_bx h4 {
  font-size: 14px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  line-height: 24px;
}

.perform_sec .guru_btn {
  margin-top: 40px;
}

.ritual_sec {
  padding: 100px 0;
  background: linear-gradient(0deg, #FFA8A1 0%, rgba(255, 255, 255, 0) 100%);
}

.ritual_imgs {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 10px;
}

.ritual_imgs .ritual_two {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.third_img {
  margin-top: 35px;
}

.ritual_sec h3 {
  font-size: 40px;
  font-weight: 400;
  color: #F25483;
  font-family: var(--headingFont);
  text-align: left;
  padding-bottom: 29px;
}

.ritual_sec p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #35093C;
  font-family: var(--bodyFont);
}

.protec {
  padding-top: 155px;
  padding-bottom: 100px;
}

.protec .protec_bx {
  background-color: #fff;
  padding: 10px 10px 20px 10px;
  border-radius: 20px;
}

.protec .protec_bx h6 {
  font-size: 16px;
  font-weight: 600;
  color: #35093C;
  text-align: center;
  font-family: var(--bodyFont);
  padding-top: 15px;
}

.protec .protec_bx .guru_btn {
  margin-top: 36px;
}

.ritual_sec h4 {
  font-size: 25px;
  line-height: 40px;
  font-weight: 400;
  color: #35093C;
  text-align: center;
  font-family: var(--bodyFont);
}

.listing_sec {
  padding: 120px 0;
  background: linear-gradient(180deg, #FFEBD7 0%, rgba(255, 255, 255, 0) 100%);

}

.listing_sec .list_card {
  padding: 10px 10px 30px 10px;
  background-color: #fff;
  box-shadow: 0px 0px 25px 0px #0000001A;
  border-radius: 20px;
}

.listing_sec .list_card h4 {
  font-size: 18px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-top: 20px;
}

.listing_sec .list_card p {
  text-align: center;
  line-height: 28px;
  color: #35093C;
  text-align: center;
  font-family: var(--bodyFont);
  font-weight: 400;
  padding-top: 20px;
  height: 132px;
}

.listing_sec .list_card .guru_btn {
  margin-top: 40px;
}

.brdcrmb {
  display: flex;
  gap: 5px;
  align-items: center;
}

.brdcrmb span {
  font-size: 18px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  line-height: 18px;
}

.brdcrmb p {
  font-size: 18px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  line-height: 18px;
}

.gallery_new_sec .holistic_nav li .nav-link.active {
  border: none !important;
  padding: 9px 48.5px;
  color: #FFF;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  background-color: #35093C;
  font-family: var(--bodyFont);
}

.gallery_new_sec .holistic_nav li .nav-link {
  border: none !important;
  padding: 9px 48.5px;
  background-color: #F2F2F2;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  transition: 0.4s all ease-in-out;
}

.gallery_new_sec .tab-content {
  padding-top: 50px;
}

.gallery_new_sec .tab-content img {
  width: 100%;
  height: 100%;
}

.gallery_new_scnd {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gallery_new_sec a {
  width: 100%;
  position: relative;
  transition: 0.4s all ease-in-out;
  height: 100%;
}

.gallery_new_sec a .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 20px;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.gallery_new_sec a:hover .overlay {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.gallery_new_sec a .overlay img {
  height: auto;
}

.banner_sec .banner_inner img {
  width: 300px;
}

.testi_card figure img {
  height: 101px;
  width: 76px;
  border-radius: 70px;
  object-fit: cover;
  border: 2px solid #fff;
  position: relative;
  z-index: 0;
}

.testi_card figure {
  position: relative;
}

.testi_card figure::before {
  position: absolute;
  content: "";
  background: url('../images/testi-bg-img.png')no-repeat;
  height: 101px;
  width: 85px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
}

.banner_sec figure img {
  width: 100%;
}



/* 25.3.2026 blog page*/
.blog_sec {
  padding: 100px 0;
}

.blog_sec figure {
  position: relative;
}

.blog_sec figure img {
  border-radius: 20px;
  width: 100%;
}

.blog_sec figure .date {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.blog_sec figure .date p {
  background: #000000B2;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  font-family: var(--bodyFont);
  border-radius: 50px;
}

.blog_sec a {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  color: #35093C;
  font-family: var(--bodyFont);
}

.blog_sec h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #35093C;
  font-family: var(--bodyFont);
}

.blog_sec .gradient {
  margin: 15px 0;
}


.blog_right_card {
  padding: 20px 30px;
  background-color: #FFF4E9;
  border-radius: 10px;
  margin-bottom: 15px;
}

.blog_right_card h5 {
  font-size: 20px;
  color: #35093C;
  font-weight: 500;
  font-family: var(--bodyFont);
  padding-bottom: 25px;
}

.blog_right_card .articles {
  display: flex;
  gap: 20px;
  padding-top: 14px;
}

.blog_right_card .articles p {
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 24px;
}

.blog_right_part {
  position: sticky;
  top: 60px;
}

.blog_right_part form {
  position: relative;
  margin-bottom: 10px;
}

.blog_right_part form input {
  width: 100%;
  border: 1px solid #F35884;
  padding: 14px 50px 14px 20px;
  border-radius: 5px;
  color: #35093C;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
}

.blog_right_part form input::placeholder {
  color: #917397;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
}

.blog_right_part .articles img {
  height: 72px;
  min-width: 122px;
  border-radius: 5px;
}

.blog_right_part form button {
  position: absolute;
  height: 21px;
  width: 21px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
}

.blog_right_part form a {
  position: absolute;
  height: 21px;
  width: 21px;
  top: 50%;
  right: 20px;
  transform: translateY(-75%);
  /* border: none; */
  /* background: transparent; */
}

.checks input {
  border: 1px solid #35093C;
  height: 20px;
  width: 20px;
  border-radius: 2px;
  background-color: #FFF4E9;
}

.checks input:focus {
  box-shadow: none;
  border-color: #35093C;
}

.checks .form-check {
  display: flex;
  align-items: end;
  gap: 11px;
  margin-bottom: 9px;
}

.checks .form-check label {
  color: #35093C;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
}

.all_checks {
  padding-top: 14px;
}


.form-check-input:checked {
  background-color: #FFF4E9;
  border-color: #35093C;
}

.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2335093C' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}



/* contact page*/

.contact_sec {
  background: linear-gradient(270deg, #FFF4E9 18.9%, #FFFFFF 100%);
  padding: 120px 0;
}

.contact_sec .contact_card {
  border-radius: 20px;
  padding: 10px 17px;
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  background:
    linear-gradient(#FFF4E9, #FFF4E9) padding-box,
    linear-gradient(180deg, #FFBE7E 0%, #FFF4E9 100%) border-box;
  z-index: 0;
  height: 100%;
}

.contact_sec .contact_card::before {
  position: absolute;
  content: "";
  background: url('../images/contact_card_bg.png')no-repeat;
  height: 60px;
  width: 120px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  z-index: -1;
}

.contact_sec .contact_card img {
  padding-bottom: 45px;
}

.contact_sec .contact_card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #35093C;
  font-family: var(--bodyFont);
}

.contact_sec .contact_card p a {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #35093C;
  font-family: var(--bodyFont);
}

.contact_sec .cntct_frm {
  width: 970px;
  margin: 0 auto;
  border: 1px solid #F35884;
  padding: 30px;
  border-radius: 20px;
  margin-top: 80px;
  background-color: #FFFFFF;
}

.contact_sec .cntct_frm h2 {
  font-size: 40px;
  font-weight: 400;
  color: #F35884;
  font-family: var(--headingFont);
  text-align: center;
  padding-bottom: 20px;
}

.contact_sec .cntct_frm p {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
  text-align: center;
  padding-bottom: 40px;
}

.contact_sec .cntct_frm form input {
  border: 1px solid #F0D4B8;
  padding: 14px 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
}

.contact_sec .cntct_frm form input::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
}

.rdo_blk .all_rdos {
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
}

.rdo_blk input {
  width: auto !important;
  padding: 2px !important;
  border-radius: 50% !important;
  width: 21px !important;
  height: 21px !important;
  border: 1px solid #35093C !important;
  margin-right: 10px;
}

.rdo_blk input:focus {
  box-shadow: none;
  border-color: #35093C;
}

.rdo_blk .form-check-input {
  --bs-form-check-bg: #ffffff;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: .25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}

.rdo_blk .form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%2335093C'/%3e%3c/svg%3e");
}

.rdo_blk .form-check {
  display: flex;
  align-items: end;
}

.rdo_blk .form-check label {
  font-size: 14px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
}

.rdo_blk .hdr_lbl {
  font-size: 15px;
  font-weight: 600;
  color: #35093C;
  text-transform: uppercase;
  font-family: var(--bodyFont);
  margin-bottom: 12px;
}

.vma {
  margin-top: 20px;
}

.vma .rdo_blk .form-check {
  padding-bottom: 10px;
  margin-bottom: 0;
}

.social {
  padding-bottom: 35px !important;
}

.social .form-check {
  padding-bottom: 0px !important;
  margin-bottom: 0;
  width: 180px;
}

.social .form-check input {
  position: absolute;
  opacity: 0;
}

.social .form-check {
  display: flex;
  align-items: end;
  padding: 0;
}

.social .form-check label span {
  padding: 13px 11px;
  border: 1px solid #F0D4B8;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.4s all ease-in-out;
}

.social .form-check label span.active {
  border: 1px solid #35093C;
}

.social_upper {
  margin-top: 18px;
}

.all_rdos.social img {
  background: transparent;
  border-radius: 0;
  height: auto;
}

.contact_sec .cntct_frm form textarea {
  border: 1px solid #F0D4B8;
  padding: 14px 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
  margin-top: 30px;
  margin-bottom: 20px;
}

.contact_sec .cntct_frm form textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
}

.contact_sec .cntct_frm .guru_btn {
  padding: 6px 37.5px !important;
}



/* blog details */
.blog_inner_sec {
  padding-top: 120px;
}

.inner_hdng {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.inner_hdng h3 {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  font-family: var(--bodyFont);
  padding-left: 40px;
}

.blog_inner_sec figure {
  position: relative;
  margin-bottom: 40px;
}

.blog_inner_sec figure::before {
  position: absolute;
  content: "";
  background: #22022766;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

.blog_inner_sec p {
  font-size: 14px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-bottom: 25px;
  line-height: 24px;
}

.blog_inner_sec h5 {
  padding-top: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-bottom: 15px;
}

.blog_inner_sec span {
  font-size: 13px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  font-style: italic;
}

.blog_inner_frm {
  padding-top: 0px;
}

.blog_inner_frm textarea {
  border: 1px solid #F0D4B8;
  padding: 14px 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
  margin-bottom: 10px;
}

.blog_inner_frm textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
}


.blog_inner_frm input {
  border: 1px solid #F0D4B8;
  padding: 14px 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
}

.blog_inner_frm input::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
}

.blog_inner_frm .guru_btn {
  margin-top: 0 !important;
  position: relative !important;
  padding: 6px 20px !important;
  border-radius: 80px !important;
  color: #fff !important;
  border: none !important;
  z-index: 1 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  font-family: var(--bodyFont) !important;
  transition: 0.4s all ease-in-out !important;
  background: linear-gradient(90deg, #F23A71 33.17%, #FFBAA0 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
  overflow: hidden !important;
  width: fit-content !important;
}

.blog_inner_frm .guru_btn span {
  margin-top: 0;
  color: #fff;
  font-style: normal;
}



/* 26.3.2026 about us*/

.about_frst_sec h2 {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  color: #F25483;
  font-family: var(--thirdFont);
}

.about_frst_sec h3 {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  color: #F25483;
  font-family: var(--headingFont);
}

.about_frst_sec {
  padding-top: 120px;
  background: linear-gradient(270deg, #FFF4E9 18.9%, #FFFFFF 100%);
  padding-bottom: 0;
  overflow: hidden;
}

.about_frst_sec p {
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  padding-top: 30px;
  font-family: var(--bodyFont);
  color: #35093C;
}

.about_frst_sec ul {
  padding-left: 15px;
  padding-top: 15px;
}

.about_frst_sec ul li {
  font-size: 14px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  position: relative;
  padding-bottom: 7px;
}

.about_frst_sec ul li::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  left: -12px;
  top: 8px;
  background-color: #35093C;
  border-radius: 50%;
}


.about_frst_sec .about_card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  padding-top: 30px;
  font-family: var(--bodyFont);
  color: #35093C;
}

.about_card {
  background: linear-gradient(90deg, #FFBE7E 0%, #FFE9D4 100%);
  padding: 50px 30px 50px 164px;
  position: relative;
  border-top-right-radius: 30px;
  margin-top: 100px;
  margin-left: 150px;
}

.about_card h2 {
  font-size: 40px;
  font-weight: 400;
  text-align: left;
  color: #35093C;
  font-family: var(--thirdFont);
}

.about_card h3 {
  font-size: 40px;
  font-weight: 400;
  text-align: left;
  color: #35093C;
  font-family: var(--headingFont);
}

.about_card figure {
  position: absolute;
  top: -30px;
  left: -180px;
}

.about_card figure img {
  height: 560px;
}

.about_guru_sec {
  padding-top: 10px;
  padding-bottom: 120px;
}


/* megamenu */
/* parent must be relative */
.top_hdr .navbar .hdr_nav ul li.has_submenu {
  position: relative;
}

/* mega menu base */
.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-40%, 0px);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  z-index: -1;
  width: 1074px;
  padding: 60px 30px 30px;
  background: #fff;
  box-shadow: 0 4px 10px #0003;
  border-radius: 0 0 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* hover show */
.top_hdr .navbar .hdr_nav ul li.has_submenu:hover>.mega_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-40%, -15px);
}

/* items */
.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu li {
  list-style: none;
  text-align: center;
}

/* icon circle */
.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu li a figure {
  background: radial-gradient(circle, #fff 0%, #FFEBD7 100%);
  padding: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}


/* hover */

/* subtle glow layer */
.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu li a figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #FFE0B2 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* image smooth scale */
.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu li a figure img {
  transition: transform 0.5s ease;
}

/* 🔥 hover effect */
.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu li a:hover figure {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu li a:hover figure::before {
  opacity: 1;
}

.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu li a:hover figure img {
  transform: scale(1.1) rotate(3deg);
}



/* hover end */

/* image */
.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu li a figure img {
  height: 70px;
  min-width: 70px;
  object-fit: contain;
}

/* text */
.top_hdr .navbar .hdr_nav ul li.has_submenu .mega_menu li a p {
  font-size: 16px;
  color: #35093C;
  padding-top: 12px;
}



/* listing-product */
.product_listing_sec {
  padding-top: 120px;
}

.product_listing_sec h1 {
  font-size: 60px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
}

.product_listing_sec .frame_img {
  padding-bottom: 50px;
  padding-top: 25px;
}

.product_card {
  background-color: #FFF4E9;
  padding: 10px;
  border-radius: 10px;
}

.product_card p {
  padding: 21px 0;
  font-size: 16px;
  font-weight: 500;
  color: #35093C;
  text-align: center;
  font-family: var(--bodyFont);
}

.product_card a {
  margin-top: 0;
  width: 100%;
}


/* details page */
.details_sec {
  padding-top: 120px;
}

.details_sec .slider-single figure {
  padding: 0 5px;
}

.details_sec .slider-single figure img {
  object-fit: cover;
  object-position: top;
}

.slider-nav .slick-slide.slick-active.is-active figure img {
  border: 2px solid #35093C;
}

.slider-nav figure {
  padding: 10px 5px;
}

.slider-nav figure img {
  width: 100%;
  transition: 0.4s all ease-in-out;
}

.details_sec h1 {
  font-size: 30px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
}

.details_sec h6 {
  font-size: 15px;
  font-weight: 600;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-top: 30px;
}

.details_sec p {
  font-size: 14px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-top: 8px;
  line-height: 24px;
}

.details_sec a {
  padding-top: 15px;
  font-size: 15px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
}

.details_sec a span {
  font-weight: 500;
}

.details_sec a img {
  margin-right: 10px;
}

.details_sec .whatsapp {
  background-color: #29A71A;
  padding: 6px 20px;
  border-radius: 80px;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #29A71A;
  color: #fff;
  transition: 0.4s all ease-in-out;
}

.details_sec .whatsapp img {
  transition: 0.4s all ease-in-out;
}

.details_sec .whatsapp:hover {
  background-color: transparent;
  color: #35093C;
}

.details_sec .whatsapp:hover img {
  filter: brightness(0);
}


.details_frm input {
  border: 1px solid #F0D4B8;
  padding: 10px 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
}

.details_frm input::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
}

.details_frm select {
  border: 1px solid #F0D4B8;
  padding: 10px 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2335093C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.details_frm select:focus {
  box-shadow: none;
  border-color: #F0D4B8;
}

.details_frm textarea {
  border: 1px solid #F0D4B8;
  padding: 10px 20px;
  border-radius: 5px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
  margin-bottom: 0px;
}

.details_frm textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFont);
  color: #35093C;
}

.details_frm {
  padding-top: 30px;
}

.purpose_visit.form-error {
  margin-top: 24px;
}

.rdo_blk.has-error {
  border: 1px solid #dc3545;
  padding: 15px;
  border-radius: 4px;
  background-color: #fff5f5;
  height: 100%;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: -12px;
  display: block;
  margin-bottom: 12px;
}

.blog_inner_sec .wp-block-heading {
  font-size: 30px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-bottom: 15px;
}

.blog_inner_sec .comment-reply-title {
  font-size: 22px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-bottom: 15px;
}

.blog_inner_frm textarea {
  margin-top: 30px;
}

.comment-form-cookies-consent {
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-form-cookies-consent input {
  width: auto;
  border: 1px solid #35093C;
  height: 20px;
  width: 20px;
  border-radius: 2px;
  background-color: #FFF4E9;
}

.cdp-copy-alert-success {
  display: block !important;
  position: fixed;
  left: 50%;
  text-align: center;
  transform: translate(-50%);
  z-index: 0 !important;
}


.holistic_sec .tab-content h5 {
  font-size: 21px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-top: 20px;
}

.holistic_sec .tab-content .new_text {
  padding-top: 10px;
}

.life-wrapp h6 {
  font-size: 16px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  padding: 15px 0 10px;
}

.life-wrapp ul {
  padding-left: 25px;
}

.life-wrapp ul li {
  color: #35093C;
  font-size: 14px;
  font-family: var(--bodyFont);
  padding-bottom: 7px;
  position: relative;
}

.life-wrapp ul li::before {
  position: absolute;
  content: "";
  background-color: #35093C;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  left: -12px;
  top: 7px;

}

/* .vastu_sec h5 strong {
  font-size: 21px;
  font-weight: 400;
  color: #267741;
  font-family: var(--bodyFont);
  text-align: center;
  padding-bottom: 10px;
} */

.astro_new_sec .astro_class {
  font-size: 21px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-top: 0;
  padding-bottom: 10px;
}

.astro_new_sec ul {
  padding-bottom: 30px;
}

.astro_new_sec ul li {
  color: #35093C;
  font-size: 14px;
  font-family: var(--bodyFont);
  padding-bottom: 7px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.astro_new_sec ul li::before {
  position: absolute;
  content: "";
  background-color: #35093C;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  left: -12px;
  top: 7px;
}

.meditation_sec h5 {
  font-size: 21px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  text-align: center;
  padding-top: 0;
  padding-bottom: 10px;
}

.meditation_sec h6 {
  font-size: 16px;
  font-weight: 500;
  color: #35093C;
  font-family: var(--bodyFont);
  padding: 15px 0 10px;
}

.meditation_sec ul {
  padding-left: 25px;
}

.meditation_sec ul li {
  color: #35093C;
  font-size: 14px;
  font-family: var(--bodyFont);
  padding-bottom: 7px;
  position: relative;
}

.meditation_sec ul li::before {
  position: absolute;
  content: "";
  background-color: #35093C;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  left: -12px;
  top: 7px;
}

.role_sec .role_bx h5 {
  font-size: 25px;
  font-weight: 400;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-top: 0;
  padding-top: 15px;
}

.puja_sec h5 {
  font-size: 25px;
  font-weight: 600;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-top: 0;
  padding-top: 15px;

}

.guru_bx figure img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.blog_inner_sec h6 {

  font-size: 22px !important;
  font-weight: 500 !important;
  color: #35093C !important;
  font-family: var(--bodyFont) !important;
  padding-bottom: 10px !important;
  padding-top: 20px !important;
  line-height: 28px !important;

}

.mobile_bnr {
  display: none;
}


.achv_sec p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #35093C;
  font-family: var(--bodyFont);
  padding-bottom: 20px;
}

.achv_sec {
  padding-top: 90px;
  padding-bottom: 50px;
}

.achv_sec img {
  width: 100%;
}

/*=========================== header end ===========================*/

/*========================== banner start ==========================*/
.banner figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=========================== banner end ===========================*/

/* ========================== responsive ========================== */
@media (min-width: 1920px) {
  .round {
    position: absolute;
    top: 50%;
    left: 130px;
    transform: translateY(-50%);
    width: auto;

  }

  .testi_card p {
    height: 200px;
  }

  .innr_bnr_sec figure .inner_bnr_text h1 {
    font-size: 50px;
    font-weight: 400;
    color: #35093C;
    font-family: var(--headingFont);
    padding-top: 8px;
    width: 550px;
  }

  .astro_new_sec .left::before {
    position: absolute;
    content: "";
    background: url('../images/class-left.png')no-repeat;
    background-size: auto;
    left: -68px;
    top: 50%;
    height: 100%;
    width: 100%;
    transform: translateY(-27%);
  }

  .astro_new_sec .right::after {
    position: absolute;
    content: "";
    background: url('../images/class-right.png')no-repeat;
    background-size: auto;
    left: auto;
    top: 50%;
    height: 100%;
    width: 100%;
    transform: translateY(-27%);
  }

  .top_hdr {
    padding: 0 100px !important;
    display: flex;
    align-items: start;
  }

  .gallery_sec .gallery .first img {
    height: 221px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .banner_ladius_img {
    position: absolute;
    right: 16%;
    top: 8%;
    bottom: 0px;
  }

  .banner_ladius_img figure img {
    height: 750px;
  }
}

@media (max-width: 1440px) {
  .achv_sec {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .work_blk {
    padding-top: 80px;
  }

  .meditation_sec {
    padding: 80px 0;
  }

  .work_blk {
    padding-top: 80px;
  }

  .use_sec {
    padding: 80px 0;
  }

  .medi_type_sec {
    padding: 80px 0;
  }

  .blog_sec {
    padding: 80px 0;
  }

  .blog_inner_sec {
    padding-top: 120px;
  }

  .listing_sec {
    padding: 80px 0;
  }

  .astro_new_sec {
    padding: 80px 0;
  }

  .numerology_sec {
    padding: 80px 0;
  }

  .holistic_sec {
    padding: 80px 0;
  }

  .puja_sec {
    padding: 80px 0 0;
  }

  .sgnificnc_sec {
    padding: 80px 100px;
  }

  .benefit_sec {
    padding: 80px 0;
  }

  .ritual_sec {
    padding: 80px 0;
  }

  .vastu_sec {
    padding: 80px 0 140px 0;
  }

  .purpose_sec {
    padding: 0 0 80px;
  }

  .consult_sec {
    padding: 80px 100px;
  }

  .horo_sec {
    padding: 0px 0 80px;
  }

  .role_sec {
    padding: 0px 100px 80px;
  }

  .role_sec .role_bx {
    padding: 80px 60px 0px 60px;
    ;
  }

  .astro_sec {
    padding: 80px 0;
  }

  .gallery_sec {
    padding: 120px 236px 80px;
    position: relative;
  }

  .coach_sec {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .testi-sec {
    padding: 84px 0 180px 150px;
  }

  .offer_sec {
    padding: 80px 0;
  }

  .about_frst_sec {
    padding-top: 80px;
  }

  .medi_type_sec {
    background-position: bottom;
  }

  .protec {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .banner_ladius_img {
    position: absolute;
    right: 18%;
    top: 11%;
    bottom: 0px;
  }

  .top_hdr {
    padding: 0 50px;
    display: flex;
    align-items: start;
  }

  .msn_sec {
    background: url('../images/mission-bg.png')no-repeat;
    padding: 80px 0;
    width: 100%;
    background-size: cover;
    background-position: center;
  }

  .swiper.mySwiper {
    transform: translateX(90px);
  }

  .testi-sec h2 {
    font-size: 30px !important;
    line-height: 36px;
    font-weight: 400;
    color: #F25483;
    font-family: var(--headingFont);
  }

  .gallery_sec .gallery .first img {
    object-position: top;
  }

  .innr_bnr_sec figure .inner_bnr_text {
    position: absolute;
    top: 50%;
    transform: translate(0, 0);
  }
}

@media (max-width: 1199px) {
  .product_listing_sec {
    padding-top: 80px !important;
  }

  .details_sec {
    padding-top: 80px !important;
  }

  .blog_inner_sec {
    padding-top: 80px !important;
  }

  .product_listing_sec h1 {
    font-size: 40px;
  }

  .details_sec .slider-single figure img {
    width: 100%;
  }

  .details_sec {
    padding-top: 80px !important;
  }

  .about_card figure {
    position: absolute;
    top: auto;
    left: -180px;
    bottom: -13px;
  }

  .contact_sec .cntct_frm {
    width: auto;
  }

  .about_sec .about_btn .main_btn {
    padding: 6px 15px;
  }

  .round {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-80%);
    width: 120px;
  }

  .top_hdr .logo {
    width: 80px;
  }

  .protec {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .coach_inner figure img {
    width: 100%;
  }

  .protec .protec_bx h6 {
    height: 54px;
  }

  .purpose_bx {
    padding: 35px 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 0px #A2313126;
    position: relative;
    margin-top: -90px;
    min-height: 265px;
  }

  .ftr-blog img {
    height: 80px;
    min-width: 101px;
    border-radius: 7px;
    width: 101px;
  }

  .innr_bnr_sec figure .inner_bnr_text {
    position: absolute;
    top: 50%;
    transform: translate(0, -25%);
  }

  .innr_bnr_sec figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .numerology_sec .left_img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }

  .testi_card h5 {
    font-size: 15px;
  }

  .swiper.mySwiper {
    padding-bottom: 25px;
  }

  .top_hdr .logo img {
    transition: 0.4s all ease-in-out;
  }

  .swiper-button-prev {
    position: absolute;
    left: 180px !important;
    top: 60% !important;
    z-index: 12;
    background: #fff;
    height: 35px;
    width: 35px;
    border-radius: 50%;
  }

  .swiper-button-next {
    position: absolute;
    left: 230px !important;
    top: 60% !important;
    z-index: 12;
    background: #fff;
    height: 35px;
    width: 35px;
    border-radius: 50%;
  }

  .innr_bnr_sec {
    padding-bottom: 0px !important;
  }

  .astro_img {
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .role_sec .role_bx {
    box-shadow: 0px -10px 10px 0px #0000000D;
    padding: 50px 15px 0px 15px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .role_sec {
    padding: 50px 15px !important;
  }

  .astro_sec h2 {
    padding-bottom: 120px !important;
  }

  .mobileMenuButton span {
    width: 25px;
    height: 2px;
    border-radius: 4px;
    background: #000;
    display: block;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
  }

  .mobileMenuButton {
    top: 20px;
  }

  .top_hdr {
    padding: 0 30px;
  }

  .offer_bx.first {
    margin-top: 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 13;
    background-color: #fff;
    height: 50px;
    transition: 0.4s all ease-in-out;
  }

  .site-header.sticky .top_hdr .logo {
    width: 81px;
    transition: 0.4s all ease-in-out;
  }

  .offer_bx.scnd {
    margin-top: 0px;
  }

  section {
    padding: 50px 0 !important;
  }

  .msn_sec h2 {
    font-size: 50px;
  }

  .msn_sec .msn_bx {
    width: auto;
    padding: 28px 30px !important;
  }

  h2 {
    font-size: 40px !important;
  }

  .offer_sec {
    padding-bottom: 0px !important;
  }

  .about_sec .about_bx figure img {
    width: 100%;
  }

  .about_sec .about_bx::before {
    display: none;
  }

  .guru_sec {
    padding-top: 40px;
  }

  .msn_sec {
    background-position: right;
  }

  .gallery_sec .gallery .first img {
    height: auto;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .gallery_sec {
    padding: 50px 15px !important;
  }

  .testi-sec {
    padding: 0 15px 120px !important;
  }

  .banner_ladius_img {
    position: absolute;
    right: 15%;
    top: 18%;
    bottom: 0px;
  }

  .banner_ladius_img figure img {
    height: 340px;
  }

  .banner_sec .banner_inner h1 {
    font-size: 30px;
    line-height: 40px;
    font-family: var(--headingFont);
    width: auto;
  }

  .banner_sec {
    padding-bottom: 0 !important;
  }

  .about_sec .about_bx {
    padding: 25px;
    top: 0;
  }

  .banner_sec .banner_inner {
    transform: translate(0%, -40%);
  }

  #menu {
    z-index: 15;
  }

  /* mmenu start */
  .mobileMenuButton {
    display: inline-block;
  }

  .navbar {
    display: none;
  }

  .mm-listview li a {
    font-size: 16px;
    color: #35093C !important;
    font-weight: 500;
    font-family: var(--bodyFont);
  }

  .mm-navbar {
    z-index: 123;
    background: #FFE2D9;
  }

  .mm-navbar__title>span {
    color: #35093C;
    font-size: 18px;
    font-family: var(--azeretFont);
    font-weight: 600;
  }

  .banner_sec .banner_inner img {
    width: 200px;
  }
}

@media (max-width: 1023px) {


  /* mmenu end */
}

@media (max-width: 767px) {
  .coach_sec p {
    font-size: 18px;
  }

  .achv_sec p:last-child {
    padding-bottom: 0;
  }

  .coach_inner p strong {
    font-size: 18px;
  }

  .achv_sec p {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #35093C;
    font-family: var(--bodyFont);
    padding-bottom: 15px;
  }

  .achv_sec {
    padding-top: 30px;
    padding-bottom: 0px !important;
  }

  .horoscope {
    padding-top: 40px;
  }

  .guru_blk {
    gap: 40px;
  }

  .desktop_bnr {
    display: none;
  }

  .mobile_bnr {
    display: block;
  }

  .banner_sec .mobile_bnr .banner_inner {
    position: absolute;
    top: 7%;
    transform: translate(-50%, 0%);
    left: 50%;
    width: 100%;
  }

  .banner_sec .mobile_bnr .banner_inner img {
    width: 220px !important;
  }

  .banner_sec .mobile_bnr .banner_inner h1 {
    font-size: 21px;
    line-height: normal;
    font-weight: 400;
    font-family: var(--headingFont);
    width: 100%;
    padding-top: 10px;
    text-transform: uppercase;
    padding-top: 25px;
  }

  .role_sec .role_bx h5 {
    font-size: 22px;
    font-weight: 400;
    color: #35093C;
    font-family: var(--bodyFont);
    padding-top: 0;
    padding-top: 20px;
    padding-bottom: 0px;
  }

  .astro_new_sec ul {
    padding-bottom: 30px;
    padding-left: 15px;
  }

  .vastu_sec h5 {
    font-size: 22px;
    padding-bottom: 10px !important;
  }

  .puja_sec h5 {
    font-size: 22px;
    padding-top: 20px;
    padding-bottom: 10px;

  }

  .vastu_sec .has-text-align-left {
    text-align: left;
  }

  .protec .protec_bx .guru_btn {
    margin-top: 20px;
  }

  .round {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-70%);
    width: 65px;
  }

  .mobile_bnr .round {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -115%);
    width: 110px;
  }

  .guru_bx figure img {
    min-height: 100px;
    min-width: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    height: 100px;
    width: 100px;
  }

  .holistic_sec .tab-content h5 {
    text-align: left;
  }

  .about_sec .about_btn {
    display: flex;
    gap: 5px;
  }

  .protec .protec_bx h6 {
    height: auto;
  }

  .purpose_bx {
    min-height: auto;
  }

  .innr_bnr_sec figure .inner_bnr_text {
    position: absolute;
    top: 50%;
    transform: translate(0, 0);
  }

  .innr_bnr_sec figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .ftr-blog img {
    height: 80px;
    min-width: 101px;
    border-radius: 7px;
    width: 101px;
  }

  .vma {
    margin-top: 0;
  }

  .banner_sec {
    padding-top: 50px !important;
  }

  .innr_bnr_sec {
    padding-top: 50px !important;
  }

  .astro_sec h2 {
    padding-bottom: 0 !important;
  }

  .about_card figure {
    position: inherit;
    top: auto;
    left: 0;
    bottom: -15px;
  }

  .about_card {
    background: linear-gradient(90deg, #FFBE7E 0%, #FFE9D4 100%);
    padding: 25px 15px 0px 15px;
    position: relative;
    border-top-right-radius: 30px;
    margin-top: 40px;
    margin-left: 0;
    overflow: hidden;
  }

  .about_card h3 {
    font-size: 35px;
  }

  .about_guru_sec {
    padding-top: 0 !important;
  }

  .guru_blk::before {
    height: 200px;
  }

  .about_frst_sec h3 {
    font-size: 25px;
  }

  .details_sec {
    padding-top: 100px !important;
  }

  .product_listing_sec {
    padding-top: 100px !important;
  }

  .product_listing_sec h1 {
    font-size: 35px;
  }

  .product_listing_sec .frame_img {
    padding-bottom: 25px;
    padding-top: 15px;
  }

  .inner_hdng h3 {
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    font-family: var(--bodyFont);
    padding-left: 40px;
  }

  .blog_inner_sec {
    padding-top: 100px !important;
  }

  .social .form-check {
    width: auto;
  }

  .rdo_blk .form-check label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .rdo_blk .all_rdos {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    justify-content: space-between;
  }

  .contact_sec .cntct_frm {
    width: auto;
    margin: 0 auto;
    border: 1px solid #F35884;
    padding: 30px 15px;
    border-radius: 20px;
    margin-top: 50px;
    background-color: #FFFFFF;
  }

  .social .form-check label span {
    padding: 11px;
  }


  .testi_card p {
    height: 190px;
  }

  .coach_inner {
    padding-top: 30px;
  }

  .swiper-button-prev {
    position: absolute;
    left: 5px !important;
    top: 50% !important;
    z-index: 12;
    background: #fff;
    height: 35px;
    width: 35px;
    border-radius: 50%;
  }

  .swiper-button-next {
    position: absolute;
    left: auto !important;
    top: 50% !important;
    z-index: 12;
    background: #fff;
    height: 35px;
    width: 35px;
    border-radius: 50%;
  }

  .site-header.sticky .logo {
    width: 65px;
  }

  .site-footer {
    padding: 40px 0 40px;
  }

  .ftr_btm h6 {
    padding-top: 0px !important;
    line-height: normal;
  }

  .meditation_sec h3 {
    font-size: 30px;
    padding-bottom: 25px;
  }

  .work_blk h2 {
    padding-bottom: 25px;
  }

  .coach_sec {
    padding-top: 40px !important;
  }

  .gallery_sec h2 {
    padding-bottom: 20px;
  }

  .astro_sec {
    padding-bottom: 0 !important;
  }

  .gallery_sec .gallery {
    padding-top: 30px;
  }

  .protec {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ritual_sec h4 {
    font-size: 20px;
    line-height: 33px;
  }

  .ritual_imgs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .third_img {
    margin-top: 0px;
  }

  .ritual_sec h3 {
    font-size: 30px;
    padding-bottom: 15px;
  }

  .puja_sec h3 {
    font-size: 30px;
    padding-bottom: 15px;
  }

  .sgnificnc_sec {
    padding: 0 15px 20px 15px !important;
  }

  .perform_sec .guru_btn {
    margin-top: 25px;
  }

  .work_blk {
    padding-top: 10px;
  }

  .use_sec .use_para {
    padding-top: 25px;
  }

  .medi_type_sec h2 {
    padding-bottom: 20px;
  }

  .medi_type_sec .type_blk {
    padding-top: 25px;
    height: auto;
    gap: 20px;
  }

  .benefit_sec h2 {
    padding-bottom: 25px;
  }

  .benefit_sec h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    color: #35093C;
    font-family: var(--bodyFont);
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .timing_blk {
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .astro_new_sec .right::after {
    display: none;
  }

  .astro_new_sec .left::before {
    display: none;
  }

  .astro_new_sec h3 {
    font-size: 30px;
    padding-bottom: 15px;
  }

  .astro_new_sec p {
    padding-bottom: 20px;
  }

  .astro_new_sec h5 {
    font-size: 25px;
  }

  .astro_new_sec .astro_bx_txt {
    font-size: 20px;
    padding-top: 15px;
    text-align: center;
  }

  .astro_new_sec .guru_btn {
    margin-top: 25px;
  }

  .innr_bnr_sec figure .inner_bnr_text {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }

  .top_hdr .logo {
    width: 80px;
  }

  .innr_bnr_sec figure {
    height: 150px;
  }

  .innr_bnr_sec figure img {
    height: 150px;
    object-fit: cover;
  }

  .innr_bnr_sec figure .inner_bnr_text h1 {
    font-size: 23px;
    width: auto;
  }

  .mobileMenuButton {
    text-decoration: none;
    width: 25px;
    position: absolute;
    top: 18px;
    right: 15px;
  }

  .innr_bnr_sec {
    padding-bottom: 0 !important;
  }

  .astro_sec .astro_scnd {
    position: relative;
    top: 50px;
  }

  .astro_sec .astro_scnd::before {
    position: absolute;
    content: "";
    background: url('../images/astro-scnd-upper.png')no-repeat;
    bottom: 100%;
    height: 69px;
    width: 100%;
    left: 50%;
    transform: translate(-47%, 0);
  }

  .astro_sec .astro_first::after {
    position: absolute;
    content: "";
    background: url('../images/astro-first-lower.png')no-repeat;
    top: 100%;
    height: 69px;
    width: 100%;
    left: 50%;
    transform: translate(-47%, 0);
  }

  .astro_sec h2 {
    margin-top: 80px;
  }

  .role_sec .role_bx {
    box-shadow: 0px -10px 10px 0px #0000000D;
    padding: 40px 15px 0px 15px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .role_sec .role_bx h3 {
    font-size: 30px;
    padding-bottom: 15px;
  }

  .role_sec {
    padding: 40px 15px !important;
    padding-bottom: 0 !important;
  }

  .horo_sec {
    padding-top: 0 !important;
  }

  .horoscope h3 {
    font-size: 30px;
    padding-bottom: 30px;
  }

  .holistic_sec h3 {
    font-size: 30px;
    padding-bottom: 25px;
  }

  .tab-content p {
    padding-top: 25px;
    text-align: left;
  }

  .tab-content h2 {
    padding-bottom: 35px;
  }

  .about_sec .about_bx {
    padding: 20px;
    border-radius: 20px;
    background-color: #FFFBF8;
    box-shadow: 0px 0px 24px 0px #00000026;
    position: relative;
    z-index: 9;
    top: 0px;
  }

  .numerology_sec h3 {
    font-size: 30px;
    padding-bottom: 25px;
  }

  .element .element_inner p {
    padding-top: 3px;
    padding-bottom: 0;
    text-align: left;
  }

  .holistic_btn .guru_btn {
    margin-top: 25px;
  }

  .last_lists {
    display: flex;
    gap: 5px;
    flex-direction: column;
  }

  .last_lists p {
    display: none;
  }

  .vastu_sec h3 {
    font-size: 30px;
    padding-bottom: 25px;
  }

  .vastu_sec p {
    padding-bottom: 25px;
  }

  .vastu_sec h4 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #35093C;
    font-family: var(--bodyFont);
    padding-top: 25px;
    padding-bottom: 10px;
  }

  .vastu_card_sec p {
    padding-top: 5px;
  }

  .purpose_bx {
    margin-top: 0;
  }

  .consult_sec {
    padding: 40px 15px !important;
  }

  .consult_card figure {
    margin-top: 0;
  }

  .about_sec .about_bx::before {
    display: none;
  }

  .about_sec .about_bx h2 {
    font-size: 30px;
  }

  .about_sec .about_btn .main_btn {
    padding: 6px 11px;
    font-size: 12px;
  }

  .floating {
    position: fixed;
    top: 30%;
    right: 5px;
    z-index: 10;
  }

  h2 {
    font-size: 30px !important;
  }

  .guru_blk .guru_bx h5 {
    font-size: 14px;
  }

  .msn_sec h2 {
    text-align: center;
  }

  .msn_sec .msn_bx {
    width: auto;
  }

  section {
    padding: 40px 0 !important;
  }

  .msn_sec .msn_bx h4 {
    font-size: 22px;
  }

  .msn_sec .msn_bx {
    padding: 20px 20px;
  }

  .offer_bx.first {
    margin-top: 0;
  }

  .offer_sec h2 {
    padding-bottom: 30px;
  }

  .offer_bx.scnd {
    margin-top: 0px;
  }

  .offer_bx img {
    padding-top: 29px;
    width: 100%;
  }

  .coach_sec h2 {
    padding-bottom: 15px;
  }

  .creative_slider .creative_images .iamges img {
    width: 100%;
  }

  .creative_left img {
    position: relative;
    top: 0;
    right: 0;
    height: auto;
  }

  .swiper.mySwiper {
    transform: translateX(0px);
  }

  .testi-sec {
    padding: 40px 15px 60px !important;
  }

  .testi-sec h2 {
    font-size: 38px;
    line-height: 40px;
    font-weight: 400;
    color: #F25483;
    font-family: var(--headingFont);
    text-align: center;
  }

  .gallery_sec .gallery .first img {
    height: auto;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .gallery_sec {
    padding: 40px 15px !important;
  }

  .top_hdr {
    padding: 0 15px;
    display: flex;
    align-items: start;
    height: auto;
  }

  .site-header {
    background-color: #fff;
  }

  .banner_sec .banner_inner h1 {
    font-size: 15px;
    line-height: normal;
    font-family: var(--headingFont);
    width: auto;
    padding-top: 10px;
  }

  .banner_sec .banner_inner img {
    width: 100px !important;
  }

  .banner_ladius_img {
    position: absolute;
    right: 13%;
    top: 28%;
    bottom: 0px;
  }

  .banner_sec .banner_inner {
    position: absolute;
    top: 50%;
    transform: translate(0%, -25%);
    width: 57%;
  }

  .banner_ladius_img figure img {
    height: 200px;
  }

  .banner_sec {
    padding-bottom: 0 !important;
  }

  .testi_image {
    position: absolute;
    bottom: -1px;
    right: 10px;
  }
}

@media (max-width: 479px) {
  .banner_sec .mobile_bnr .banner_inner h1 {
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    font-family: var(--headingFont);
    width: 100%;
    padding-top: 10px;
    text-transform: uppercase;
    padding-top: 25px;
  }

  .mobile_bnr .round {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -105%);
    width: 110px;
  }

  .banner_sec .mobile_bnr .banner_inner img {
    width: 175px !important;
  }
}