  /* 
Theme : 888 Future Reading,
Version : 1.0,
Author : Purnendu Das
*/
/**************************************
                General
**************************************/
:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe {
    pointer-events: unset;
}

html::-webkit-scrollbar{
  width: 6px;
  background-color: #c089ff;
}
html::-webkit-scrollbar-thumb{
  background: #212633;
  border-radius: 50rem;
}

a, button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  
}
ol,ul{
  padding: 0;
  margin: 0;
  list-style-type: none;
}

body{
  font-size: 20px;
  font-family: "Product Sans Regular";
  font-weight: normal;
  color: #000;
  scroll-padding: 500px;
  counter-reset: section;
}

a,a:hover,a:focus{
  color: currentColor;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  text-decoration: none;
}
h1,h2,h3,h4 {
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s; 
  font-family: "Ledger Regular";
}
p{
  margin-bottom: 1rem;
}
main{
  overflow: clip;
}
img {
  max-width: 100%;
  height: auto;
  transition: all .5s;
}
.text-center{
  text-align: center;
}
.mb-10{
  margin-bottom: 10px;
}
.mb-20{
  margin-bottom: 20px;
}
.mb-30{
  margin-bottom: 30px;
}
.mb-40{
  margin-bottom: 40px;
}
.mb-50{
  margin-bottom: 40px;
}
.container-fluid{
  padding: 0 80px;
}

/* Popup */
.popup {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.64);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 999999;
  opacity: 0;
  transform: translateY(10px);
  z-index: -1;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.popup.show {
  opacity: 1;
  transform: translateY(0px);
  z-index: 999999;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease;
  -ms-transition: opacity 0.5s ease, transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
  width: 70%;
  padding: 0px;
  border-radius: 23px;
  background: #0b0d28;
  background-size: cover;
  background-repeat: no-repeat;
  color: black;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  overflow: clip;
  z-index: 99999;

}
form,footer{
  .primary-btn{
    border: none;
    cursor: pointer;
    &:hover{
      background: #1d225a;
    }
  }
}
.popup .popup__content .close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
  opacity: 1;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 50% 10px 50% 50%;
  flex-direction: column;
  gap: 5px;
  background: rgb(218, 193, 251);
  transition: all .5s;
  z-index: 9;
}

.popup .popup__content .close:hover {
  background-color: #ffffff;
}

.popup .popup__content .close:hover span {
  background-color: #15222B;
}

.popup .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #000;
  transition: all .5s;
}

.popup .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}
form .secondary-btn:hover{
  background: rgb(218, 193, 251);
}
.left {
  padding: 16px;
  background: linear-gradient(180deg, #00000080 0%, #000000bd 100%), url(../img/banner-img.webp) no-repeat;
  background-size: cover;
  background-position: center;
  .img-box {
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
label {
  background: linear-gradient(180deg, #695F0E 0%, #D3AE5D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  display: block;
}
.right {
  padding: 30px;
  text-align: left;
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40{
    margin-bottom: 40px;
}
p{
  color: #424242;
  font-family: "Product Sans Regular";
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 150%;
}
.title {
  color: #FFF;
  text-align: center;
  font-family: "SangBleu Sunrise";
  font-size: 38px;
  font-style: normal;
  font-weight: normal;
  line-height: 109.524%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  color: #1F1F1F;
  font-family: "Ledger Regular";
  font-size: 50px;
  font-style: normal;
  font-weight: normal;
  line-height: 136%;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.sub-section-title{
  color: #1D225A;
  font-family: "SangBleu Sunrise";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 158.333%;
}
.card-title{
  color: #1D225A;
  font-family: "SangBleu Sunrise";
  font-size: 43px;
  font-style: normal;
  font-weight: 400;
  line-height: 109.302%;
  margin-bottom: 10px;
}
.primary-btn {
    border-radius: 30px;
    background: #DBC0FA;
    padding: 14px 28px;
    display: inline-block;
    color: #212633;
    font-family: "Product Sans Bold";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.primary-btn:before,
.primary-btn:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  scale: 0 0;
  left: 0;
  background: #1D225A;
  z-index: -1;
  transition: all .7s;
  transform-origin: bottom;
  border-radius: 60px;
}
.primary-btn:before {
  opacity: .5;
}
.primary-btn:after {
  transition-delay: .3s;
}
.primary-btn:hover:before,
.primary-btn:hover:after {
  scale: 1.05 1.05;
  border-radius: 30px;
}
.primary-btn:hover {
  color: #ffffff;
}
.primary-btn:focus {
  color: #000;
}
.secondary-btn {
  background: #1D225A;
  color: #FFF;
  &:hover{
    color: #000;
  }
}
.secondary-btn:before,
.secondary-btn:after {
  background: #DBC0FA;
}
.secondary-btn:focus {
  color: #FFF;
}
.form-control{
  border-radius: 10px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  color: #000;
  font-family: "Product Sans Regular";
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 130%;
  padding: 21px 24px;
  width: 100%;
  &:focus,&:focus-visible{
    outline: 1px solid #1D225A;
    box-shadow: none;
  }
}
.form-control::placeholder{
  color: #000;
}
.form-group{
  position: relative;
}
.form-icon{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}
@media(prefers-reduced-motion: no-preference){
  @view-transition{
    navigation: auto;
  }
}
::view-transition-group(*){
  animation-duration: 2s;
}
.btn-group{
  display: flex;
}
.fixed-btn{
  position: fixed;
  right: 20px;
  bottom: 15%;
  z-index: 9;
  gap: 23px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  a:hover{
    transform: translateX(-5px);
    scale: 1.1;
  }
}
.call{
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border-radius: 50%;
  outline: 2px solid rgba(250, 250, 250, 0.80);
  padding: 9px;
  box-shadow: 0 0 20px 2px #1d225a;
}
.wp{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 5px #40C351)
  }
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-30px);
  }
}
@keyframes slideInUp {
  0% {
      opacity: 0;
      transform: translateY(25%);
  }

  100% {
      opacity: 1;
      transform: none;
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.50deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}


[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
  animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  animation-name: slideInUp;
}
.slideInDown {
  animation-name: slideInDown;
}
.slideInLeft {
  animation-name: slideInLeft;
}
.slideInRight {
  animation-name: slideInRight;
}
.fadeIn {
  animation-name: fadeIn;
}
.zoomIn {
  animation-name: zoomIn;
}
.zoomReverseIn {
  animation-name: zoomReverseIn;
}
.flipInY {
  animation-name: flipInY;
}
.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}
.effectOver {
  transition: all 2s transform 3s;
  &:hover{
    img{
      transform: rotate(0) scale(1.2);
    animation-delay: .5s;
    }
  }
}
img{
  transition: all .5s;
}
/*******************************
	Menu
*******************************/
.header-area {
  position: fixed;
  z-index: 999;
  right: 0;
  left: 0;
  padding-block: 25px;
  transition: 0.5s;
}
.flex-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo{
  transition: 0.8s;
}
.header-area.sticky {
  background: #0b0d28;
  box-shadow: 0px 0px 20px 0px #1d225a;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  animation: slideDown 0.35s ease-out;
  padding-block: 10px;
  .logo{
    width: 150px;
  }
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.main-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

header {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
  transition: ease-in-out .4s;
}

.main-menu {
  margin-left: auto;
}

nav {
  position: relative;
  margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

#menu {
  position: relative;
  display: flex;
  align-items: center;
}

#menu>.main-menu>ul>li {
  float: left;
  padding-inline: 8px;
}

#menu>.main-menu>ul>li>a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  padding: 20px 6px;
  display: inline-block;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  &::after{
    content: '';
    position: absolute;
    bottom: 14px;
    left: 4px;
    width: 80%;
    height: 2px;
    background: #DAC1FB;
    scale: 0 0;
    transform-origin: left;
    transition: all .5s;
  }
}
#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
  &::after{
    scale: 1 1;
  }
}
/* .has-sub{
  margin-right: 15px;
} */
#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
  background: #e9cba400 !important;
  -webkit-transition: background .3s ease;
  -ms-transition: background .3s ease;
  transition: background .3s ease
}

/* #menu>.main-menu>ul>li.has-sub>a::before {
  top: 26px;
  right: -8px;
  transition: all .4s;
  content: "";
  position: absolute;
  z-index: 11;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
  transform: rotate(225deg);
} */

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(255, 255, 255);
    transition: all .25s ease
}


#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 40px;
    display: block;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    padding: 10px 20px;
    width: auto;
    font-size: 20px;
    text-decoration: none;
    font-weight: normal;
    white-space: nowrap;
    display: block;
    color: #000;
    font-style: normal;
    line-height: normal;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a {
    color: #fff;
    background-color: #1D225A;
}
#menu .main-menu ul ul li.has-sub ul li a{
    background-color: #fff;
    color: #000;
    &:hover{
        background-color: #D2B450;
        color: #fff;
    }

}
#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #ffffff
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}
.menu-btn{
    background: #DE172B;
    border: 1px solid #DE172B;
    color: #fff;
    display: inline-block;
    padding: 23px 33px;
    font-family: 'Flama Trial Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 12px;
    transition: all .5s;
    &:hover{
        background-color: #ffffff;
        color: #DE172B;
    }
}
.search-btn {
    width: 58px;
    height: 58px;
    &:hover{
        img{
            transform: scale(1.1);
        }
    }
}
.search-container {
            position: relative;
            z-index: 1000;
            margin-left: 40px;
            margin-right: 50px;
        }

        .search-btn.active {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            transform: rotate(180deg);
        }

        .search-box {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%) scaleX(0);
            transform-origin: right center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid #DE172B;
            border-radius: 0;
            width: 300px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            z-index: 999;
            display: flex;
            align-items: center;
        }

        .search-box.active {
            transform: translateY(-50%) scaleX(1);
            opacity: 1;
        }

        .search-input {
            width: 100%;
            border: none;
            outline: none;
            padding: 18px 48px 18px 16px;
            font-size: 1rem;
            background: transparent;
            color: #2c3e50;
            border-radius: 25px;
        }

        .search-input::placeholder {
            color: #7f8c8d;
        }

        .search-close-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #7f8c8d;
        }

        .search-close-btn:hover {
            background: rgba(231, 76, 60, 0.1);
            color: #e74c3c;
            transform: translateY(-50%) scale(1.1);
        }

        .search-close-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
        .mobile-flex{
            display: none;
        }
@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
        height: 70px;
    }

    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: #0b0d28;
        transform: translateX(-100%);
        transition: all .4s;
        top: 0;
        left: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);
      padding: 50px;
              z-index: 9;
    }
    #menu > .main-menu > ul > li > a {
      &::after {
          width: 10%;
          bottom: 10px;
      }
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
      display: none;
    }
    #menu .main-menu ul li {
        width: 100%;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li {
        background: #1b268600 !important
    }


    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 12px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #ffffff;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #ffffff;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    /* #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 10px;
        top: 0;
        display: block;
        border-left: 0;
        height: 60px;
        width: 70px;
        cursor: pointer;
        background: #ffffff1a;
    } */

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 56px;
        width: 68px;
        background: rgb(255 255 255 / 3%);
    }

    /* #menu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 29px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    } */

    #menu ul ul .submenu-button:after {
       top: 25px;
        right: 27px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 26px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    #menu .main-menu ul ul li.has-sub>a:after{
        display: none;
    }
}

/*************************************
                Home Page
**************************************/
.hero-item{
  position: relative;
  .container{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
  }
  &::before{
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.7;
    background: linear-gradient(280deg, rgba(3, 6, 8, 0.18) 24.57%, rgba(0, 0, 0, 0.31) 49.54%);
  }
}
.banner-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: -5px;
}
.hero-content{
  width: 70%;
  padding-top: 170px;
  h1{
    color: #FFF;
    font-family: "Ledger Regular";
    font-size: 60px;
    font-style: normal;
    font-weight: normal;
    line-height: 113.333%;
    margin-bottom: 20px;
  }
  p{
    color: #FFF;
    margin-bottom: 30px;
  }
}
.hero-slider.slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-dots{
  bottom: 33px;
  li{
    width: auto;
    button{
      background: #EDE8E8;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      transition: all .5s;
      &::before{
        display: none;
      }
    }
    &.slick-active{
      button{
        background: #DAC1FB;
        width: 61px;
        border-radius: 50rem;
      }
    }
  }
}
.hero-slider{
  .slick-active{
    h1{
      animation-name: slideInUp;
      animation-duration: 0.9s;
      animation-delay: 0.4s;
      animation-fill-mode: forwards;
      opacity: 0;
    }
    p{
      animation-name: slideInUp;
      animation-duration: 0.9s;
      animation-delay: 0.7s;
      animation-fill-mode: forwards;
      opacity: 0;
    }
    .btn-group{
      animation-name: slideInUp;
      animation-duration: 0.9s;
      animation-delay: 1s;
      animation-fill-mode: forwards;
      opacity: 0;
    }
  }
}
/************************************
   About
************************************/
.about{
  position: relative;
}
.about-img{
  position: absolute;
  width: 500px;
  height: 500px;
  right: 215px;
  top: 130px;
  z-index: 1;
  &::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid #DAC1FB;
    right: -35px;
    top: 0;
    border-radius: 50%;
    z-index: -1;
  }
}
.aboout-img-bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #DAC1FB;
}
.about-vector{
  position: absolute;
  bottom: -65px;
  right: 0;
  z-index: 2;

}
.up-down{
  animation: moveUpDown 7s ease-in-out infinite;
}
.up-down2{
  animation: moveUpDown 5s ease-in-out infinite;
}
@keyframes moveUpDown {
  0%, 100% {
      transform: translateY(0); /* Start and end at the original position */
  }
  50% {
      transform: translateY(-10px); /* Move up by 20px */
  }
}
/************************************
    Counter
************************************/
.counter{
  padding-block: 30px;
  position: relative;
  .counter-item{
    position: relative;
    h4{
      color: #1D225A;
      font-family: "Ledger Regular";
      font-size: 69px;
      font-style: normal;
      font-weight: normal;
      line-height: 110.145%;
    }
    p{
      color: #272727;
      font-family: "Sofia Pro Medium";
      font-size: 22px;
      font-style: normal;
      font-weight: normal;
      line-height: 140.909%;
      text-transform: capitalize;
    }
    &::after{
      content: '';
      position: absolute;
      width: 1px;
      height: 140%;
      background: #959595;
      right: 13px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  .row{
    .col:last-child{
      .counter-item{
        &::after{
          display: none;
        }
      }
    }
  }
}
.left-leaf{
  position: absolute;
  left: 0;
  top: 0;
}
.why-choose-left-vector{
  position: absolute;
  left: 0;
  bottom: 50px;
}
/************************************
      Services
************************************/
.services{
  overflow: clip;
  position: relative;
}
.all-services{
  display: flex;
  position: relative;
  padding-bottom: 50px;
  transform: translateX(0);
  will-change: transform;
  flex-wrap: nowrap;
  gap: 20px;
  padding-inline: 20px;
}
.service-item{
  border-radius: 24px;
  background: rgba(218, 193, 251, 0.29);
  overflow: hidden;
  min-width: 60vw;
  height: 100%;
}
.service-content{
  padding: 40px;
  background: url(../img/service-bg.webp) no-repeat;
  background-size: contain;
  background-position: center;
}
.service-img{
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -6px
  }
}
/************************************
      Why Choose
************************************/
.why-choose{
  position: relative;
  padding-bottom: 100px;
  .left-leaf{
    position: absolute;
    left: 0;
    top: 35px;
  }
  .row{
    margin-top: 40px;
    .col-lg-3:last-child{
      .why-choose-content{
        .why-choose-card:nth-child(1),
        .why-choose-card:nth-child(3){
          transform: translateX(-100px);
        }
      }
      .why-choose-card{
        text-align: left;
        padding-right: 0;
        padding-left: 120px;
        transform: translatex(-50px);
        .why-icon{
          right: unset;
          left: 0;
        }
      }
    }
  }
}
.right-leaf{
  position: absolute;
  right: 0;
  bottom: -40px;
}
.why-choose-img{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: -1;
}
.why-choose-vector{
  position: absolute;
  bottom: 0;
}
.why-bg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.why-girl{
  width: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-47%, -50%);
}
.why-choose-content{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
  .why-choose-card:nth-child(1),
  .why-choose-card:nth-child(3){
    transform: translateX(100px);
  }
}
.why-choose-card{
  position: relative;
  text-align: right;
  padding-right: 120px;
  transform: translatex(50px);
  z-index: 1;
  .card-title{
    font-size: 27px;
  }
  p{
    font-size: 18px;
  }
  &:hover{
    .why-icon{
      img{
        transform: rotateY(180deg);
      }
    }
  }
}
.why-icon{
  position: absolute;
  width: 93px;
  height: 93px;
  background: #1D225A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 9px solid rgb(229, 209, 255);
  outline: 1px dashed #000;
  outline-offset: 7px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 15px;
}
/************************************
      My achievements
************************************/
.achievements{
  background: rgba(218, 193, 251, 0.29);
  padding-block: 100px;
  position: relative;
  z-index: 1;
  &::after{
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    background: url(../img/service-bg.webp) no-repeat;
    background-size: 100%;
    top: 70px;
    right: 180px;
    z-index: -1;
    animation: rotate 12s linear infinite;
  }
}
.diya{
  position: absolute;
  right: 0;
  bottom: 0;
}
.achievements-card{
  border-radius: 26px;
  background: #1D225A;
  padding: 22px;
  height: 100%;
  transition: 0.5s;
  img{
    margin-bottom: 10px;
  }
  .card-title{
    font-size: 26px;
    color: #FFF;
    line-height: 126.923%;
  }
  p{
    color: #FFF;
    margin-bottom: 0;
    transition: 0.5s;
  }
  &:hover{
    background: #FFF;
    .card-title, p{
      color: #1D225A;
    }
    img{
      transform: rotateY(180deg);
    }
  }
}
/************************************
     Excepteur
************************************/
.excepteur{
  background: url(../img/excepteur-bg.webp) no-repeat;
  background-size: contain;
  padding-block: 185px;
  position: relative;
  z-index: 1;
  .container{
    display: flex;
    align-items: center;
    justify-content: end;
  }
  &::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(271deg, #FFF 47.54%, rgba(255, 255, 255, 0.00) 64.07%);
    z-index: -1;
  }
  .section-title{
    color: #1D225A;
    font-family: "SangBleu Sunrise";
  }
}
/************************************
     Accolades
************************************/
.accolades{
  background: #0F0F10;
  .section-title{
    color: #FFF;
  }
}
.accolades-img{
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.slider-container {
  overflow: hidden;
  position: relative;
  .slider-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    animation: scrollReverse 10s linear infinite;
  }
  .slider-row:nth-child(2) {
    animation: scrollReverse 10s linear infinite reverse;
  }
  .slider-row:hover {
    animation-play-state: paused;
  }
  .slide-card {
    flex: 0 0 auto;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    span{
      position: absolute;
      inset: 0;
      background: rgba(33, 38, 51, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.5s;
      img{
        opacity: 0;
        transition: all 0.4s ease;
      }
      &:hover{
        background: rgba(33, 38, 51, 0.349);
        img{
          opacity: 1;
        }
      }
    }
  }
  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
}
@keyframes scrollReverse {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}
/************************************
     Session works
************************************/
.session-works{
  position: relative;
}
.yellow-left-leaf{
  position: absolute;
  top: 80px;
  left: 0;
}
.session-work-vector-right{
  position: absolute;
  top: 140px;
  right: 0;
}
.session-works-card{
  padding: 40px;
  padding-top: 120px;
  text-align: center;
  border-radius: 26px;
  background: rgba(218, 193, 251, 0.29);
  position: relative;
  margin-top: 80px;
  transition: 0.5s;
  .card-title{
    font-size: 28px;
  }
  p{
    margin-bottom: 0;
  }
  img{
    position: absolute;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: -80px;
  }
  &::before{
    counter-increment: section;
    content: counter(section) ". ";
    position: absolute;
    color: #1D225A;
    font-family: "SangBleu Sunrise";
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: 86.207%;
    top: 29px;
    left: 29px;
  }
  &:hover{
    box-shadow: 2px 4px 15px 2px #c089ff;
    img{
      scale: 1.02;
      transform: translate(-50%, -10%);
    }
  }
}
.video-box{
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  .video-thumbnail{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -5px;
  }
  &:hover{
    .video-thumbnail{
      scale: 1.1;
    }
  }
}
.under-box{
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: #0000005b;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 53px 46px;
  .section-title{
    font-family: "SangBleu Sunrise";
    color: #FFF;
    font-weight: 400;
  }
}
.play-box{
  border-left: 3px solid #FFF;
  padding: 25px;
}
.play-btn{
  width: 79px;
  height: 79px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
.play-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 79px;
  height: 79px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-up{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  h4{
    color: #FFF;
    font-family: "SangBleu Sunrise";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 107.143%;
  }
}
/************************************
     Happy Life
************************************/
.happy-life{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  .section-title{
    color: #1D225A;
    font-family: "SangBleu Sunrise";
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 12px;
  }
  .col-lg-8{
    background: #F4EDFE;
    padding: 70px 200px;
    padding-right: 300px;
    position: relative;
    ul{
      li{
        color: #424242;
        line-height: 125%;
        margin-bottom: 22px;
        position: relative;
        padding-left: 50px;
        &::before{
          content: "";
          position: absolute;
          left: 0;
          top: 2px;
          width: 28px;
          height: 28px;
          background: url(../img/tick.webp) no-repeat;
          background-size: contain;
          border-radius: 50%;
        }
        span{
          color: #1D225A;
          font-family: "Product Sans Bold";
          font-size: 24px;
          font-style: normal;
          font-weight: normal;
          line-height: 125%;
          text-transform: capitalize;
        }
      }
    }
  }
  &::after{
    content: "";
    position: absolute;
    background: url(../img/service-bg.webp) no-repeat;
    background-size: contain;
    width: 360px;
    height: 360px;
    transform: rotate(-2.258deg);
    bottom: 90px;
    right: -90px;
    animation: rotate 19s linear infinite;
  }
}
.half-moon{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.start-here-left-vector{
  position: absolute;
  bottom: -110px;
  left: 0;
}
.stone-candle-vector{
  position: absolute;
  bottom: -22px;
  right: 0;
  z-index: 1;
}
.happy-life-img{
  position: absolute;
  left: 280px;
  height: 100%;
  z-index: 1;
  .start-here-girl{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -5px;
    border-radius: 20px;
  }
  .yellow-flower{
    position: absolute;
    bottom: -65px;
    left: -135px;
    animation: rotate 12s linear infinite;
  }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/************************************
    Testimonials
************************************/
.testimonials{
  background: rgba(218, 193, 251, 0.09);
  position: relative;
}
.testimonials-right-vector{
  position: absolute;
  top: 70px;
  right: 0;
}
.testimonials-left-img{
  position: absolute;
  bottom: -250px;
  left: 0;
}
.testimonials-right-img{
  position: absolute;
  bottom: -60px;
  right: 0;
}
.testi-card{
  padding: 25px 18px;
  border-radius: 13px;
  background: #FFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.08);
  transition: 0.5s;
  p{
    font-size: 16px;
  }
  img{
    margin-bottom: 20px;
  }
}
.profile-info{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  h4{
    color: #1D225A;
    font-family: "SangBleu Sunrise";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 136.364%;
    display: flex;
    align-items: center;
    gap: 12px;
    span{
      width: 30px;
      height: 1px;
      background: #1D225A;
      display: inline-block;
    }
  }
  p{
    color: #000;
    margin-bottom: 0;
    padding-left: 50px;
  }
}
.item{
  transition: 0.5s;
}
.testimonial-slider{
  .slick-slide{
    margin: 80px 30px;
  }
  .slick-list{
    margin: 0 -30px;
  }
  .slick-center{
    scale: 1.2;
  }
  .slick-dots{
    bottom: -50px;
    li{
      button{
        background: #D9D9D9;
      }
    }
    .slick-active{
      button{
        background: #1D225A;
      }
    }
  }
  .slick-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #FFF;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    z-index: 2;
    transition: 0.5s;
    &::before {
      position: absolute;
      content: '';
      width: 70%;
      height: 70%;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: url(../img/slider-arrow.webp) no-repeat;
      background-position: center;
      background-size: 100%;
      transition: 0.5s;
      filter: brightness(0) saturate(100%) invert(0%) sepia(90%) saturate(7500%) hue-rotate(59deg) brightness(105%) contrast(111%);
    }
    &:hover,
    &:focus{
      background: #1D225A;
      &::before{
        filter: unset;
      }
    }
  }
  .slick-next{
    right: -80px;
  }
  .slick-prev{
    left: -80px;
    &::before{
      transform: translate(-50%, -50%) rotate(180deg);
    }
  }
}
/************************************
     Faq
************************************/
.faq{
  padding-bottom: 200px;
  position: relative;
  .container{
    padding-left: 40px;
  }
}
.faq-vector-yoga{
  position: absolute;
  left: 0;
  bottom: 0;
}
.faq-yellow-leaf{
  position: absolute;
  left: 0;
  bottom: 10px;
}
.faw-img-box{
  position: absolute;
  right: 77px;
  top: 0;
}
.faq-vector{
  position: absolute;
  bottom: -180px;
  left: 20px;
}
.accordion__item {
  margin: 12px auto;
  transition: .5s
}
.accordion__item:hover {
  transform: translateY(-5px)
}
.accordion__item .accordion__title {
  position: relative;
  display: block;
  padding: 13px 30px 15px 0px;
  margin-bottom: 2px;
  font-size: 22px;
  text-decoration: none;
  color: #373737;
  font-family: "Product Sans Bold";
  border-radius: 3px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  cursor: pointer;
  border-bottom: 1px solid #959595;
  font-weight: normal;
}
.accordion__title-text::before {
  content: "Q. ";
  color: #1D225A;
  font-family: "Product Sans Bold";
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 18px;
}
.accordion__title::after {
  content: '+';
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0px;
  top: 15px;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;
}
.accordion__title.accordion-active::after {
  transform: rotate(180deg);
  content: '-';
  top: 18px;
}
.accordion__item .accordion-active {
  border-color: #FFF;
}
.accordion__item .accordion__title .accordion__arrow {
  position: absolute;
  top: 13px;
  right: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height: 30px;
  font-size: 20px;
  font-weight: 700;
  margin-right: 5px;
  background-color: #c9c9c9;
  border-radius: 50%;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out
}
.accordion__item .accordion__content {
  padding: 10px 12px;
  padding-top: 0;
  font-size: 20px;
  color: #424242;
  line-height: 150%;
  margin-bottom: 0;
  font-weight: normal;
  display: none;
  border-bottom: 1px solid #959595;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
/************************************
     Get IN Touch
************************************/
.get-in-touch{
  background: url(../img/contact-us-bg.webp) no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 60px;
  padding-block: 80px;
  position: relative;
}
.stone-leaf-vector{
  position: absolute;
  right: 0;
  bottom: -100px;
}
.hand-card-vector{
  position: absolute;
  right: 0;
  bottom: -200px;
}
.get-in-touch-content{
  p,
  p a{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
    transition: 0.5s;
  }
  p{
    a{
      margin-bottom: 0;
      &:hover{
        color: #1D225A;
        img{
          filter: brightness(0) saturate(100%) invert(14%) sepia(81%) saturate(1053%) hue-rotate(209deg) brightness(85%) contrast(100%);
        }
      }
    }
  }
}
.blog{
  background-color: #d3ae5d2a;
}
.blog-box{
  background-color: #ffffff;
  border-radius: 0px;
  overflow: clip;
  transition: all .5s;
  &:hover{
    transform: translateY(-5px);
    box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.1);
  }
  .blog-img{
    border-radius: 0px;
    overflow: clip;
  }
  .blog-body{
    padding: 15px;
    p{
      display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: clip;
    }
  }
  .blog-title{
    color: #121212;
    font-family: "SangBleu Sunrise";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: clip;
  transition: all .5s;
  &:hover{
    color: #D3AE5D;
  }
  }
}
.date{
  color: #D3AE5D;
  margin-bottom: 10px;
}

.read-more{
  color: #D3AE5D;
  font-size: 22px;
}
/*******************************
  Footer
********************************/
footer{
  background: #1D225A;
  padding-top: 110px;
  padding-bottom: 30px;
}
.footer-box {
  padding-right: 4%;
}
.footer-logo {
  margin-bottom: 10px;
}
.social-links{
  display: flex;
  align-items: center;
  gap: 20px;
  a{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    img{
      transition: 0.1;
    }
    &:hover{
      transform: translateY(-5px);
      img{
        filter: brightness(0) saturate(100%) invert(81%) sepia(21%) saturate(1329%) hue-rotate(200deg) brightness(103%) contrast(96%);
      }
    }
  }
}
footer p{
  color: #FFF;
}
footer a{
  color: #FFF;
  font-family: "Product Sans Regular";
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: 211.111%;
}
footer
.footer-title, footer h5 {
  color: #FFF;
  font-family: "Product Sans Bold";
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 53px;
  position: relative;
  margin-bottom: 5px;
}
.footer-title:after {
  content: '';
  width: 25px;
  height: 1px;
  background: #FFF;
  display: inherit;
  margin-top: -6px;
}
footer ul li a{
  display: block;
}
footer a:hover{
  color: #DBC0FA;
  transform: translateX(5px);
}
.copyright{
  border-top: 1px solid #FFF;
}
.copyright {
  color: #fff;
  padding: 18px 0;
  font-size: 18px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.copyright a {
  text-decoration: underline;
}
.copyright p{
  margin: 0;
  font-size: 18px;
}
/*******************************
  Inner Page
********************************/
.inner-banner{
  position: relative;
  .container{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 1;
  }
  .banner-content{
    padding-top: 100px;
  }
  &::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(280deg, rgba(3, 6, 8, 0.18) 24.57%, rgb(0 0 0 / 45%) 49.54%);
  }
}
.inner-title{
  color: #FFF;
  font-family: "Ledger Regular";
  font-size: 80px;
  font-style: normal;
  font-weight: normal;
  line-height: 113.333%;
  margin-bottom: -20px;
}
.contact-info .info-item {
  margin-bottom: 25px;
}
.contact-info .info-item h4 {
color: #000;
font-family: "Product Sans Bold";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 35px;
}

.contact-info .info-item p {
color: #000;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 145.833%;
display: flex;
gap: 5px;
align-items: start;
img{
  height: 24px;
  margin-top: 6px;
}
}

.contact-info .info-item a {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 145.833%;
  transition: color 0.3s ease;
  display: flex;
gap: 5px;
align-items: center;
}

.contact-info .info-item a:hover {
  color: #D3AE5D;
}
.contact{
  position: relative;
  .primary-btn{
    width: 265.481px;
    height: 67.172px;
  }
  .jasmin{
    position: absolute;
    right: 16px;
    bottom: 90px;
}
.pink.up-down {
  position: absolute;
  top: 6px;
  right: 38px;
}
}
.contact-social {
  margin-top: 50px;
}

.contact-social h3 {
  font-family: "Product Sans Bold";
  margin-bottom: 5px;
  color: #000;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 35px;
text-transform: uppercase;
position: relative;
&::after{
  content: '';
  height: 1px;
  background: #D3AE5D;
  position: absolute;
  left: 10%;
  right: 10%;
  top: 44px;
  z-index: -1;
}
span{
  background-color: #fff;
  padding-bottom: 20px;
  display: inline-block;
}
}

.contact-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.contact-social .social-icons a {
  display: inline-block;
  transition: all 0.5s;
  border-radius: 3px;
  border: 1px solid #000;
  width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;

}

.contact-social .social-icons a:hover {
  transform: translateY(-5px);
  background-color: #D3AE5D;
  border-color: #D3AE5D;
  img{
    filter: unset;
  }
}

.contact-social .social-icons img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(0%) saturate(1193%) hue-rotate(193deg) brightness(100%) contrast(100%);
}
.map{
  iframe{
    height: 600px;
    width: 100%;
    border: 0;
  }
}
.blog-list{
  position: relative;
}
.search{
  .form-group{
    position: relative;
    .form-control{
      color: #000;
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 31px;
      border-radius: 0;
      background: transparent;
      border: 0;
      border-bottom: 1px solid #000;
      padding-block: 12px;
      padding-left: 27px;
      outline: none;
    }
    span{
      position: absolute;
      left: 0;
      top: 15px;
    }
  }
}
/* Blog Categories Styling */
.blogs{
  background: rgb(218 193 251 / 28%);
  position: relative;
  overflow: hidden;
  .vector{
    position: absolute;
  }
  .bottom {
    bottom: -85px;
  }
.left2 {
  top: 50%;
  left: -35px;
}
.left1 {
  left: -35px;
}
.right1 {
  right: 0;
  top: 28%;
}
.right2 {
  right: 0;
  bottom: 30%;
}
.testimonials-right-vector{
  position: absolute;
  right: 0;
  top: 20%;
}
.faq-vector-yoga{
  position: absolute;
  left: 0;
  bottom: 0;
}
}
/* Blog Card Styling */
.blog-list {
  margin-top: 40px;
  .blog-card:nth-child(2n){
    .row .col-lg-5{
    order: -1;
    }
  }
}

.blog-card {
  margin-bottom: 30px;
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 38px;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-image {
  height: 100%;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.blog-content {
  padding: 25px;
  position: relative;
  background: #FFF;
}
.featured-tag {
  display: inline-block;
  border-radius: 30px;
  background: #1D225A;
  padding: 13px 19px;
  margin-bottom: 7px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 8px;
}
.blog-title {
  color: #1F1F1F;
  font-family: "SangBleu Sunrise";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px; /* 130% */
}
.thm-color{
  color: #c089ff !important;
}
.blog-meta {
  color: #1D225A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  border-bottom: 1px solid #1D225A;
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.read-more {
  display: inline-block;
  text-decoration: none;
  font-family: "Product Sans Bold";
  position: relative;
  transition: all 0.3s ease;
  color: #c089ff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;;
    span{
      text-decoration-line: underline;
      text-decoration-style: solid;
      text-decoration-skip-ink: auto;
      text-decoration-thickness: auto;
      text-underline-offset: auto;
      text-underline-position: from-font;
    }
    img{
      filter: brightness(0) saturate(100%) invert(77%) sepia(24%) saturate(490%) hue-rotate(219deg) brightness(100%) contrast(97%); 
    }
}
.read-more:hover {
  letter-spacing: 1px;
  color: #1D225A;
  img{
    filter: brightness(0) saturate(100%) invert(9%) sepia(26%) saturate(5559%) hue-rotate(224deg) brightness(108%) contrast(95%);
  }
}
.blue-bg{
  background: #0b0d28;
}
.blog-details{
  padding-top: 215px;
  h1{
    color: #1F1F1F;
    text-align: center;
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 121.154%;
  }
  .blog-meta{
    border: 0;
  }
  h2{
    color: #000;
    font-family: "Product Sans Bold";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 107.143%;
    margin-bottom: 10px;
    text-align: left;
  }
  h3{
    color: #000;
    font-family: "Product Sans Bold";
    font-size: 30px;
    line-height: 107.143%;
    margin-bottom: 10px;
  }
  .blog-content{
    background: transparent;
    padding-inline: 0;
    ul {
        margin-bottom: 22px;
        list-style-type: disc;
        padding-left: 22px;
        font-size: 18px;
        line-height: 161.111%;
    }
    li{
          strong{
            font-family: "Product Sans Bold";
          }
        }
    ol {
        margin-bottom: 22px;
        list-style-type: decimal;
        padding-left: 22px;
        font-size: 18px;
        line-height: 161.111%;
    }
  }
}
.pagination {
  border-top: 1px solid #1D225A;
  padding-top: 20px;
  h4 {
      color: #000;
      font-family: "Product Sans Bold";
      font-size: 24px;
      font-style: normal;
      font-weight: normal;
      line-height: normal;
      margin-bottom: 12px;
  }
  & a {
          display: flex;
        align-items: center;
        gap: 10px;
        color: #212121;
        font-size: 18px;
        line-height: 155.778%;
        img {
            width: 136px;
            height: 110px;
            object-fit: cover;
            border-radius: 6px;
        }
         &:hover {
            color: #1d225a;
        }
    }
        .row .col-md-6:last-child {
        text-align: right;
    }
}
.small-line {
  width: 135px;
  height: 4px;
  background: #1D225A;
  display: block;
  margin-bottom: 18px;
}
.sidebar{
  padding-top: 30px;
  h3{
    color: #000;
    font-family: "Product Sans Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    border-bottom: 1px solid #000000;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
}
.latest-post-item {
  border-bottom: 1px solid #C1C1C1;
  padding-bottom: 10px;
  margin-bottom: 14px;
  .blog-image {
    height: 100%;
    overflow: hidden;
    width: 40%;
}
.blog-content {
  padding: 0;
  position: relative;
  .blog-meta {
    border: 0;
    padding: 0;
    margin: 0;
  }
}
.blog-title{
  color: #000;
  font-family: "Product Sans Bold";
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 120%;
margin-bottom: 10px;
&:hover{
  color: #c089ff;
}

}
}
.related-article {
  border-top: 1px solid #1d225a;
  padding-top: 50px;
}
.sidebar-latest{
    box-shadow: 0 0 0 4px #fff;
    background: #ffffff61;
    padding: 10px;
    border-radius: 10px;
}
.blog-sidebar-category{
  margin-top: 30px;
  box-shadow: 0 0 0 4px #fff;
  background: #ffffff61;
  padding: 10px;
  border-radius: 10px;
  ul{
    li{
      margin-bottom: 20px;
      padding-left: 20px;
      a{
        color: #515151;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        position: relative;
        &::before{
          content: '';
          position: absolute;
          left: 0;
          background-image: url(../img/sidebar-arrow.webp);
          width: 18px;
          height: 18px;
          background-size: contain;
          background-repeat: no-repeat;
          top: 4px;
           left: -20px;
           transition: all 0.3s;
        }
        &:hover{
          color: #c089ff;
          &::before{
            filter: brightness(0) saturate(100%) invert(78%) sepia(60%) saturate(4795%) hue-rotate(217deg) brightness(100%) contrast(101%);
          }
        }
      }
    }
  }
}
.related-article-item{
  &:hover{
    h3{
      color: #c089ff;
    }
  }
  .blog-content{
    padding: 10px 0;
  }
  h3{
    color: #000;
    font-family: "Product Sans Bold";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
  }
}
/*******************************
      About Us Page
********************************/
.about-rainbow{
  position: relative;
  background: url(../inner-img/about-rainbow-bg.webp) no-repeat;
}
.about-rainbow-right-flower{
  width: 221px;
  height: auto;
  position: absolute;
  right: 28px;
  bottom: 0;
  animation: moveUpDown 3s ease-in-out infinite;
}
.about-us-img-content{
  position: relative;
  .big-img{
    border-radius: 26px;
    border: 1px solid #D9D9D9;
    padding: 25px;
    img{
      width: 100%;
      object-fit: cover;
      border-radius: 26px;
    }
  }
  .small-img{
    position: absolute;
    right: -14px;
    bottom: -30px;
    border-radius: 10px;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    &::after{
      position: absolute;
      content: '';
      width: 95%;
      height: 95%;
      inset: 8px;
      border: 1px solid #FFF;
      border-radius: 10px;
    }
  }
  .about-rainbow-vector{
    position: absolute;
    left: -16px;
    bottom: 30px;
    animation: moveUpDown 5s ease-in-out infinite;
  }
}
.about-sanjukta{
  position: relative;
  background: url(../inner-img/about-sanjukta-bg.webp) no-repeat;
  background-size: cover;
  .about-us-text-content{
    padding: 0;
  }
  .img-cutout-box{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    &::after{
      position: absolute;
      right: 0;
      bottom: 5px;
      content: '';
      width: 70%;
      height: 98%;
      border-radius: 295px 0px 0px 0px;
      background: #D3AE5C;
      z-index: -1;
    }
  }
  .hl{
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    right: 10%;
    animation: leftRight 7s linear infinite;
  }
}
@keyframes leftRight {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(35deg);
  }

  100% {
    transform: rotate(0);
  }
}
@keyframes RightLeft {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(65deg);
  }

  100% {
    transform: rotate(0);
  }
}

.about-sovan{
  position: relative;
  background: url(../inner-img/about-sovan-bg.webp) no-repeat;
  background-size: cover;
  .img-cutout-box{
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 100%;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    &::after{
      position: absolute;
      left: 0;
      bottom: 5px;
      content: '';
      width: 70%;
      height: 97%;
      border-radius: 0px 238.5px 0px 0px;
      background: #5D5E6F;
      z-index: -1;
    }
  }
  .leaf{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 10px;
    img{
      animation: leftRight 7s linear infinite;
    }
  }
  .about-us-text-content{
    padding: 0;
  }
}
.mission-vision{
  position: relative;
  .item{
    width: 827px;
    height: 827px;
    border-radius: 827px;
    border: 1px solid #D3AE5D;
    padding: 16%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all.5s;
    text-align: center;
    .item-head{
      .lf{
        /* transform: rotateY(180deg); */
        animation: RightLeft 13s linear infinite;
      }
    }
    &:hover{
      background-color: #f1f1f1;
    }
    img{
      animation: leftRight 7s linear infinite;
      width: 15%;
    }
  }
  .stones-img{
    position: absolute;
    right: 0;
    bottom: -98px;
    z-index: -1;
    animation: moveUpDown 6s ease-in-out infinite;
  }
  .lotus{
    animation: moveUpDown 4s ease-in-out infinite;
    position: absolute;
    width: 424px;
    height: auto;
    bottom: -35px;
    left: 40%;
  }
  .small-line{
    margin-inline: auto;
  }
  .gride{
    display: flex;
  }
}
.about-faq{
  position: relative;
  background: url(../inner-img/want-to-know-bg.webp) no-repeat;
  background-position: center;
  .left-flower{
    position: absolute;
    left: 0;
    top: 0;
  }
  .right-flower{
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.timeline-journey{
  background: url(../inner-img/timeline-bg.webp) no-repeat;
  background-size: cover;
}
.timeline {
  width: 100%;
  height: 582px;
  position: relative;
  margin-top: 50px;
  /* &::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    border: 2px solid rgba(0, 0, 0, 0.50);
    opacity: 0.3;
    top: 50%;
    left:0;
    transform: translateY(-50%);
  }
  &::after{
    content: '';
    position: absolute;
    width: 100%;
    border: 1px solid #D3AE5D;
    border-style: dashed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
  } */
}
.timeline-content {
  height: 580px;
  position: relative;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  h3{
    color: #373737;
    font-family: "Product Sans Bold";
    font-size: 24px;
    font-weight: 700;
  }
  p{
    margin-bottom: 0;
  }
  &:hover{
    .timeline-icons{
      background-color: #2B2B2F;
      img{
        transform: rotateY(180deg);
        filter: brightness(0) saturate(100%) invert(93%) sepia(69%) saturate(5200%) hue-rotate(312deg) brightness(90%) contrast(82%);
      }
    }
  }
}
.timeline-period {
  position: absolute;
  top: 51%;
  padding: 10px;
  text-align:center;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #D3AE5D;
  font-size: 30px;
  font-weight: 400;
}
.timeline-period:before {
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  outline: 5px solid rgba(0, 0, 0, 0.20);
  outline-offset: 3px;
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.timeline-icons{
  width: 109px;
  height: 109px;
  stroke-width: 1px;
  background-color: #D3AE5D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #D3AE5D;
  outline-offset: 5px;
  outline-style: dashed;
  margin-block: 10px;
  transition: 0.5s;
}
.timeline> .row >.col:nth-child(2n){
  .timeline-content{
    justify-content: flex-end;
  }
  .timeline-period{
    top: 39%;
  }
  .timeline-period:before{
    top:56px;
    outline-offset: 0;
  }
}



.controls {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  &:hover::after {
    transform: translateX(-10px) rotate(45deg);
  }

  &:hover:active::after {
    transform: translateX(-20px) rotate(45deg);
    transition: 300ms all;
  }

  &::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    border-left: 4px solid;
    border-bottom: 4px solid;
    transition: 500ms all;
    color: #D3AE5D;
  }

  &.next {
    left: auto;
    right: 120px;
    transform: rotate(180deg);
  }
}
.timeline{
  background: url(../inner-img/timeline-bg.webp) no-repeat;
  background-size: cover;
}
.time-line {
  width: 100%;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* * {
    transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
  } */

  .dates-overflow {
    left: 0;
    width: 500vw;
    position: absolute;
    bottom: 50px;
    height: 50px;
  }

  .dates-wrap {
    display: inline-block;
    position: absolute;
    height: 100%;
    left: calc(50vw - 80px);

    &::before,
    &::after {
      content: '';
      position: absolute;
      width: 160px;
      height: 100%;
      left: -1px;
      transform: translate(-50%, -50%);
      background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(125, 185, 232, 0) 100%);
      z-index: 2;
    }

    &::after {
      left: auto;
      right: -1px;
      background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(125, 185, 232, 0) 100%);
      transform: translate(50%, -50%);
    }

    .date {
      width: 160px;
      position: relative;
      float: left;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
      .date-content {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        width: 380px;
        height: 340px;
        bottom: 100%;
        margin-bottom: 80px;
        border-radius: 3px;
        transform-origin: 50% 100%;
        transform: scale(0.7);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
        display: flex;
        justify-content: end;

        &::after {
          content: "";
          position: absolute;
          left: 50%;
          width: 1px;
          top: 100%;
          margin-top: 8px;
          height: 60px;
          opacity: 0;
          background-color: #ffffff;
          transform: scaleY(0);
          transform-origin: 100% 100%;
          transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          border: 1px dashed #D3AE5D;
        }

        > div {
          opacity: 0;
          transform: translateY(40px);
        }

      }

      .date-year {
        opacity: 0.4;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;

        &:hover {
          opacity: 1 !important;

          &::after {
            transform: scale(1) !important;
          }
        }

        p {
          position: absolute;
          top: 30px;
          line-height: 0;
          color: #D3AE5D;
          font-size: 35px;
          font-weight: 900;
          transform: scale(0.4);
          z-index: 2;
        }

        &::after {
          content: "";
          position: absolute;
          width: 14px;
          height: 14px;
          background-color: #000000;
          bottom: 100%;
          margin-bottom: -7px;
          border-radius: 50%;
          transform: scale(0.4);
          transition: 500ms all;
          outline: 1px solid #d3ae5d;
          outline-offset: 1px;
        }

        &::before {
          content: "";
          position: absolute;
          top: 0;
          width: 200%;
          height: 1px;
          background-color: #D3AE5D;
        }
      }

      &.sibling .date-year {
        opacity: 0.6;

        &::after {
          transform: scale(0.8);
        }

        p {
          transform: scale(0.6);
        }
      }

      &.active {
        & + .date .date-year {
          opacity: 0.6;
          transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          &::after {
            transform: scale(0.8);
            transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          }

          p {
            transform: scale(0.6);
            transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          }
        }

        .date-year {
          opacity: 1;

          &::before {
            width: calc(200% - 11px);
            transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          }

          &::after {
            transform: scale(1);
            transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          }

          p {
            transform: scale(1.2);
            transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          }
        }

        .date-content {
          transform: scale(1);
          visibility: visible;
          opacity: 1;
          transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          &::after {
            transition-delay: 200ms;
            opacity: 1;
            transform: scaleY(1);
            transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          }

          div {
            transition-delay: 200ms;
            opacity: 1;
            transform: translateY(0px) scale(1);
            transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
          }
        }
      }
    }
  }
}
/***************************************
      Tarot Card Reading Page  
***************************************/

/* --------- Tarot Banner ---------- */
.tarot-banner{
  .banner-content{
    width: 100%;
    h1{
      font-size: 73px;
      font-weight: 400;
    }
    .highlight-btn{
      background: #D3AE5D;
    }
    img{
      transform: rotateY(180deg);
      margin-bottom: 15px;
    }
    .primary-btn{
      padding: 16px 80px;
      border-color: #D3AE5D;
      span{
        text-transform: none;
      }
    }
  }
  .banner-form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    .banner-form-box{
      position: relative;
      z-index: 1;
      margin-left: 115px;
      border-radius: 20px;
      background: #FFF;
      backdrop-filter: blur(7px);
      &::after{
        position: absolute;
        content: '';
        width: 104%;
        height: auto;
        border-radius: 20px;
        opacity: 0.2;
        background: #FFF;
        backdrop-filter: blur(7px);
        left: -10px;
        bottom: -10px;
        top: 10px;
        z-index: -1;
      }
    }
    form{
      padding: 10px;
      .form-control{
        border-radius: 5px;
        border: 1px solid rgba(142, 142, 142, 0.30);
        background: #F5F5F5;
        padding: 20px 10px;
      }
      textarea{
        height: 150px;
      }
    }
    .form-head{
      padding-bottom: 25px;
      padding-top: 15px;
      margin-bottom: 20px;
      clip-path: polygon( 0% 23.288%,0% 23.288%,0.054% 19.511%,0.209% 15.927%,0.458% 12.586%,0.792% 9.534%,1.203% 6.821%,1.681% 4.493%,2.219% 2.599%,2.809% 1.187%,3.441% 0.305%,4.107% 0%,95.893% 0%,95.893% 0%,96.559% 0.305%,97.191% 1.187%,97.781% 2.599%,98.319% 4.493%,98.797% 6.821%,99.208% 9.534%,99.542% 12.586%,99.791% 15.927%,99.946% 19.511%,100% 23.288%,100% 56.654%,100% 56.654%,99.952% 60.235%,99.811% 63.65%,99.586% 66.857%,99.282% 69.812%,98.907% 72.474%,98.468% 74.798%,97.972% 76.743%,97.425% 78.266%,96.836% 79.323%,96.21% 79.873%,50.317% 100%,50.317% 100%,50.253% 100.025%,50.19% 100.044%,50.127% 100.058%,50.063% 100.067%,50% 100.069%,49.937% 100.067%,49.873% 100.058%,49.81% 100.044%,49.747% 100.025%,49.683% 100%,3.79% 79.873%,3.79% 79.873%,3.164% 79.323%,2.575% 78.266%,2.028% 76.743%,1.532% 74.798%,1.093% 72.474%,0.718% 69.812%,0.414% 66.857%,0.189% 63.65%,0.048% 60.235%,0% 56.654%,0% 23.288% );
      background: #E5E6EF;
      backdrop-filter: blur(7px);
    }
    .form-title{
      color: #131313;
      font-family: "SangBleu Sunrise";
      font-size: 36px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }
  }
}

/* --------- Tarot About ---------- */
.tarot-about{
  padding-bottom: 60px;
  .tarot-about-img{
    width: 50%;
    height: 664px;
    float: left;
    margin-top: -40px;
    margin-right: 30px;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0 0 50px 50px;
      transition: 0.5s;
    }
    &:hover{
      img{
        transform: scale(1.05);
      }
    }
  }
  .tarot-about-content{
    .inner-title{
      margin-top: 40px;
    }
    .small-line{
      margin-left: 52%;
    }
  }
}

/* --------- Tarot Reading ---------- */
.tarot-reading{
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(20, 20, 21, 0.67) 100%), url(../img/tarrot-card-reading.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.tarot-reading-content{
  width: 50%;
  padding-block: 90px;
  .inner-title{
    color: #FFF;
  }
  p{
    color: #FFF;
  }
}

/* --------- Tarot Facts ---------- */
.facts-about-img{
  overflow: hidden;
  border-radius: 50px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   border-radius: 50px;
   transition: 0.5s;
  }
  &:hover{
    img{
      transform: scale(1.05);
    }
  }
}
.facts-about-content{
  padding: 50px 30px;
  li{
    position: relative;
    padding-left: 20px;
    margin-block: 20px;
    color: #424242;
    font-family: "Product Sans Regular";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 136.364%;
    transition: 0.5s;
    &::before{
      position: absolute;
      content: '✓';
      color: #D3AE5D;
      font-size: 20px;
      left: 0;
      top: 3px;
    }
    &:hover{
      transform: translateX(5px);
    }
  }
}

/* --------- Tarot Types ---------- */
.types-tarot{
  .inner-title{
    margin-bottom: 50px;
  }
  .small-line{
    margin: 0;
    margin-bottom: 20px;
  }
  & ol {
    &  li{
      transform: unset;
      position: relative;
      padding-left: 20px;
      margin-block: 10px;
      color: #424242;
      font-family: "Product Sans Regular";
      font-size: 22px;
      font-style: normal;
      font-weight: 400;
      line-height: 136.364%;
      transition: 0.5s;
      &::before{
        position: absolute;
        content: '✓';
        color: #D3AE5D;
        font-size: 20px;
        left: 0;
        top: 3px;
      }
      &:nth-child(1) {
        transform: unset;
      }
      &:hover{
        transform: translateX(5px);
      }
    }
  }
  .service-item{
    background: #EDEEF3;
    height: unset;
  }
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }
}
/* --------- Tarot Benefits ---------- */
.benefits-tarot{
  border-radius: 29px;
  background: #F2F2F2;
  .col-lg-3{
    border-left: 1px solid #19262D;
    padding-block: 15px;
    overflow: hidden;
  }
  .benefits-img{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
    .benefits-bg{
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 1/1;
      border-radius: 50%;
      transform: translateX(-100px);
      transition: 0.5s;
    }
    .benefits-flower{
      position: absolute;
      left: 70%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
    }
    &:hover{
      .benefits-bg{
        transform: translateX(0.5px);
      }
    }
  }
  .benefits-content-text{
    padding-inline: 10px;
  }
  h3{
    color: #000;
    font-family: "Product Sans Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 10px;
  }
  p{
    color: #424242;
    font-family: "Product Sans Regular";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
}

/* --------- Tarot Need ---------- */
.tarot-need{
  position: relative;
  .small-leaf{
    transform: rotateY(180deg);
  }
  .tarot-need-flower{
    position: absolute;
    left: 0;
    bottom: -110px;
    animation: bounce 6s infinite ease-in-out, wiggle 4s infinite ease-in-out;
  }
  .tarot-need-content{
    margin-left: 30%;
    .form-group{
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-block: 20px;
      transition: 0.5s;
      input{
        width: 33px;
        height: 29px;
        border-radius: 2px;
        border: 1px solid #A6A6A6;
      }
      input[type="checkbox"] {
        /* Hide default checkbox */
        appearance: none;
        -webkit-appearance: none;
        width: 30px;
        height: 30px;
        border: 1px solid #A6A6A6;
        border-radius: 2px;
        cursor: pointer;
        position: relative;
        background-color: white;
      }
      input[type="checkbox"]:checked {
        background-color: #FFF; /* checkbox background when checked */
      }
      input[type="checkbox"]:checked::after {
        content: '✔';
        color: #D3AE5D; /* ✅ Tick color here */
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 20px;
        
      }
      &::after{
        position: absolute;
        width: 610px;
        height: 1px;
        content: '';
        background: linear-gradient(90deg, #FFF 0%, #1A1A1A 48.5%, #FFF 100%);
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
      }
      &:hover{
        transform: translateY(-5px);
      }
    }
    label{
      width: 90%;
      display: block;
      color: #000;
      font-family: "Product Sans Regular";
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;
      -webkit-text-fill-color: unset;
    }
  }
}

/* --------- Why Tarot ---------- */
.why-tarot-content{
  position: relative;
  margin-block: 210px;
  .col-lg-12{
    margin-block: 30px;
  }
  .col-lg-4:nth-child(1){
    .col-lg-12:nth-child(2){
      transform: translateX(-60px);
    }
    .col-lg-12:nth-child(3){
      transform: translateX(-30px);
    }
  }
  .col-lg-4:nth-child(3){
   .why-tarot-content-card{
      p{
        text-align: left;
      }
    }
    .col-lg-12:nth-child(1){
      transform: translateX(-5px);
    }
    .col-lg-12:nth-child(2){
      transform: translateX(45px);
    }
    .col-lg-12:nth-child(3){
      transform: translateX(-5px);
    }
  }
}
.bg-circle{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: contain;
}
.why-tarot-content-card{
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateX(40px);
  padding-left: 20px;
  p{
    color: #000;
    text-align: right;
    font-family: "Product Sans Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin: 0;
    width: 60%;
  }
  &:hover{
    img{
      transform: rotateY(180deg);
    }
  }
}
.why-tarot-content-card-img{
  width: 87px;
  height: 87px;
  background: #D3AE5D;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  img{
  transition: 0.5s;
  }
}
/* --------- About Tarot Reader ---------- */
.about-tarot-reader{
  .container{
    position: relative;
    border-radius: 61px 66px 77px 68px;
    background: #F4F4F4;
    overflow: hidden;
    .about-tarot-reader-sujata-img{
      position: absolute;
      right: 0;
      bottom: 0;
    }
  }
}
.about-tarot-reader-content{
  padding: 50px;
  .primary-btn{
    background: #D3AE5D;
    color: #FFF;
    border-color: #D3AE5D;
  }
  .btn-group{
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    .arrow-tarot{
      position: absolute;
      right: 0;
      top: 0;
    }
  }
  .btn-group a:hover img{
  transform: scale(1.05);
  }
  .contact-btn{
    background: transparent;
    color: #D3AE5D;
    border: none;
    font-size: 32px;
    padding-inline: 15px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    span{
      display: inline-block;
    }
    img{
      width: 30px;
      height: 30px;
      margin: 0;
    }
    &:hover{
    scale: 1.05;
    }
  }
}

/* --------- Tarot Counter ---------- */
.tarot-counter{
  .counter{
    .counter-item{
      display: flex;
      gap: 60px;
      align-items: center;
      justify-content: center;
      .number{
        color: #000;
        font-family: "SangBleu Sunrise";
        font-size: 51px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.195%;
      }
      p{
        color: #272727;
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 140.909%;
        margin: 0;
      }
      .counter-item-img{
        position: relative;
        &::before,
        &::after{
          position: absolute;
          content: '';
          width: 125px;
          height: 125px;
          border: 1px solid #C0C0C0;
          border-radius: 50%; 
          border: 1px solid #C0C0C0;
          border-radius: 50%;
          top: 50%;
          transform: translateY(-50%);
          left: -50px;
        }
        &::after{
          left: unset;
          right: -50px;
        }
    }
    &:hover{
      img{
        transform: rotateY(180deg);
      }
  }
  }
}
}

/* --------- Tarot Collaboration ---------- */
.collaboration{
  background: #F6F4F1;
  .inner-title{
    color: #787878;
    font-family: "Product Sans Regular";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 233.333%;
    text-transform: uppercase;
    margin-bottom: 15px;
   }
  .item{
   width: 100%;
   height: 80px;
   display: flex;
   align-items: center;
   justify-content: center;
   .slick-slide img {
       width: 100%;
       height: 100%;
       object-fit: contain;
   }
  }
}

/* --------- Who Can Get Tarot ---------- */
.who-can-get{
  background: #5D5E6F;
  border-radius: 29px;
  padding-left: 200px;
  padding-bottom: 100px;
  .primary-btn{
    background: #D3AE5D;
    color: #FFF;
    border-color: #D3AE5D;
  }
  .inner-title{
    color: #FFF;
    margin-bottom: 50px;
  }
  .who-can-get-slider{
    .slick-list {
      margin: 0 -15px;
    }
    .slick-slide {
      margin: 0 15px;
    }
    .slick-arrow{
      width: 62px;
      height: 62px;
      top: 108%;
      left: 8%;
      border: 1px solid #FFF;
      border-radius: 50%;
      &::before{
          position: absolute;
          width: 20px;
          height: 20px;
          content: '';
          background: url(../img/slider-arrow.webp);
          background-repeat: no-repeat;
          background-size: cover;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          z-index: 2;
        }
        &:hover,
        &:focus{
          border-color: #D3AE5D;
          background-color: #D3AE5D;
        }
    }
    .slick-prev{
      position: absolute;
      transform: rotateY(180deg);
      left: 1%;
      top: 102.6%;
      z-index: 1;
    }
  }
  .who-can-get-item{
    background: #FFF;
    border-radius: 26px
  }
  .who-can-get-slider-content-img{
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .who-can-get-slider-content-text{
    padding: 20px 12px;
    h3{
      color: #000;
      font-family: "Product Sans Bold";
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 125%;
    }
    ul{
      list-style: disc;
      margin-left: 20px;
      li{
        color: #424242;
        font-family: "Product Sans Regular";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
      }
    }
  }
}
.tarot-faq{
  background-image: url(../img/tarot-faq.webp);
  .inner-title{
    margin-top: 30px;
  }
}
/* --------- Classes Category ---------- */
.btn-clr-gold{
  background-color: #D3AE5D;
  border-color: #D3AE5D;
  color: #FFF;
  margin-bottom: 10px;
}
.classes-category{
  background: url(../inner-img/classes-category-bg.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  padding-block: 60px;
  padding-bottom: 580px;
  transition: 0.5s;
  .meditation-vector{
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .row{
    transition: height 0.5s ease;
  }
}
.classes-category-item{
  position: relative;
  margin-bottom: 50px;
  ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    li{
      padding: 18px 35px;
      border-radius: 60px;
      border: 1px solid #D3AE5D;
      background: #FFF;
      transition: 0.5s;
      color: #2C2C2C;
      font-family: "Product Sans Bold";
      font-size: 19px;
      font-style: normal;
      font-weight: 700;
      line-height: 78.947%;
      cursor: pointer;
      &:hover,
      &.active{
        background: #D3AE5D;
        color: #FFF;
      }
    }
  }
}
.fixed-category{
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 2;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
.classes-box{
  border-radius: 51px;
  border: 1px solid #D3AE5D;
  background: #FFF;
  padding: 17px;
}
.classes-box-img{
  margin-bottom: 30px;
  border-radius: 51px;
  overflow: hidden;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
     border-radius: 51px;
      border: 1px solid #D3AE5D;
  }
  &:hover{
    img{
      scale: 1.1;
    }
  }
}
.classes-category-title{
  color: #19262D;
  font-family: "SangBleu Sunrise";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 15px;
}
.classes-content{
  ul{
    padding-inline: 5px;
    margin-bottom: 20px;
    li{
      color: #424242;
      font-family: "Product Sans Regular";
      font-size: 22px;
      font-style: normal;
      font-weight: 400;
      line-height: 209.091%;
      position: relative;
      padding-left: 25px;
      margin-block: 5px;
      transition: 0.5s;
      &::before{
        position: absolute;
        content: ' ';
        font-size: 20px;
        left: 0;
        top: 50%;
        width: 10px;
        height: 8px;
        background-color: #D3AE5D;
        transform: translateY(-50%);
      }
      &:hover{
        transform: translateX(10px);
      }
    }
  }
}
/* --------- Emotional and Mental Healing Page ---------- */
.emotional-and-mental-healing-banner{
  h1{
  font-size: 73px;
  line-height: 119.178%;
  }
  p{
  font-size: 20px;
  line-height: 160%;
  }
  .banner-content {
    width: 50%;
    margin-top: 24%;
}
}
.thm-btn{
    background: #D3AE5D;
    color: #fff;
    border-color: #D3AE5D;
}
.emotional-and-mental-healing-intro{
  background: #fff;
  padding-bottom: 120px;
  .about-rainbow-right-flower {
    width: auto;
    right: auto;
    bottom: 0;
}
.about-us-img-content {
  text-align: right;
  margin-bottom: 40px;
    .big-img {
        border-radius: 26px;
        border: 0;
        padding: 0;
        display: inline-block;
        margin-left: auto;
    }
        .small-img {
        position: absolute;
        right: auto;
        bottom: -40px;
        border-radius: 10px;
        &::after{
          display: none;
        }
    }
}
}
.career-growth-healing-facts{
  background-image: url(../inner-img/career-groth-healing-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  .inner-title{
    color: #fff;
  }
  ul{
    margin-top: 25px;
    li{
      position: relative;
      color: #FFF;
      font-size: 20px;
      font-style: normal;
      font-weight: normal;
      line-height: 150%;
      padding-left: 40px;
      margin-bottom: 20px;
      &::before{
        position: absolute;
        content: ' ';
        left: 0;
        top: 9px;
        width: 31px;
        height: 31px;
        background-image: url(../inner-img/circle-check.webp);
        background-repeat: no-repeat;
        background-size: contain;
      }
    }
  }
}
.what-happens-during-healing{
  position: relative;
  .about-rainbow-right-flower {
    width: auto;
    right: 0;
    bottom: -67px;
}
}
.circle-img-box{
  width: 439px;
  height: 439px;
  border-radius: 50%;
  position: relative;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  &::after{
    position: absolute;
    content: ' ';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #D3AE5D;
    left: -20px;
    z-index: -1;
  }
}
.what-happens-during-healing{
  .step-number{
    border-radius: 10px;
    background: #D3AE5D;
    font-family: "Product Sans Bold";
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 78.947%;
    padding: 10px 20px;
    display: inline-block;
    color: #fff;
    margin-bottom: 11px;
  }
  p strong{
    font-family: "Product Sans Bold";
  }
  ul{
    li{
      position: relative;
      color: #424242;
      font-family: "Product Sans Regular";
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 215%;
      padding-left: 15px;
      &::before{
        position: absolute;
        content: ' ';
        left: 0;
        top: 18px;
        width: 9px;
        height: 9px;
        background-color: #D3AE5D;
        box-shadow: 0 0 0 2px rgba(211, 174, 93, 0.212);
        border-radius: 50%;
      }
    }
  }
  .row:not(:last-child){
    margin-bottom: 90px;
  }
  .container .row:nth-child(3){
    .circle-img-box{
      &::after{
        left: unset;
        right: -20px;
      }
    }
  }
}
.step-title{
color: #121212;
font-family: "Product Sans Regular";
font-size: 38px;
font-style: normal;
font-weight: normal;
line-height: 152.632%;
}
.mb-0{
  margin-bottom: 0;
}
.what-happen-healing{
  background-image: url(../inner-img/career-groth-healing-slider-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.mb-35{
  margin-bottom: 35px;
}
.healing-box{
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  .healing-img{
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  &:hover{
    .hover-content{
      transform: translateY(0);
    }
  }
}
.healing-content {
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, #56441F 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
    top: 50%;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 30px 10px;
}
.healing-title{
  font-family: "Product Sans Regular";
  color: #FFF;
font-size: 24px;
font-style: normal;
font-weight: normal;
line-height: 18px; /* 75% */
}
.hover-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 50px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #D3AE5D 0%, #D3AE5D 100%);
    transform: translateY(100%);
    transition: all .5s;
    .healing-title{
      margin-bottom: 10px;
    }
    p{
      color: #fff;
      margin-bottom: 28px;
    }
    .primary-btn{
      background:#FFFFFF;
      border-color: #FFFFFF;
      color: #D3AE5C;
      &:hover{
        color: #fff;
      }
    }
}
.healing-slider{
  .slick-list{
    margin: 0 -15px;
  }
  .slick-slide{
    margin: 0 15px;
  }
.slick-dots{
      bottom: -60px;
}
}
.healing-journy{
  position: relative;
  .about-rainbow-right-flower {
    width: auto;
    bottom: 25px;
    left: 12%;
}
.mt-60 {
    padding-top: 60px;
}
}
.healing-journy-box {
    border-radius: 12px;
    background: #F2EADA;
    padding: 10px;
    width: 90%;
    margin-inline: auto;
    img{
      width: 100%;
      border-radius: 12px;
      margin-bottom: 10px;
    }
    p{
      margin-bottom: 0;
    }
}
.why-this-healing-word{
  background-image: url(../inner-img/emotional-and-mental-healing-bg1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 150px;
  .inner-title,p{
    color: #fff;
  }
}
.need-to-speak-box{
  border-radius: 42px;
  background: #F8F8F8;
  .need-to-speak-img img{
    width: 100%;
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
  }
  .col-lg-7{
    padding: 37px;
  }
}
.need-to-speak-img{
  height: 100%;
}
.contact-item{
  padding-left: 40px;
  position: relative;
  margin-bottom: 28px;
  .icon{
    width: 29px;
    height: 29px;
    border: 1px solid #fff;
    box-shadow: 0 0 0 3px #D3AE5D;
    background: #D3AE5D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 7px;
    position: absolute;
    left: 0;
    img{
      filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(4deg) brightness(104%) contrast(101%);
    }
  }
  h6{
    color: #303030;
    font-family: "Product Sans Bold";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 22px;
  }
  p a{
    color: #303030;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 22px;
    &:hover{
      color: #D3AE5D;
    }
  }
  p{
    margin: 0;
  }
}
.final-word{
  background-image: url(../inner-img/final-word-form-the-heart.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  p{
    color: #424242;
    text-align: center;
    font-family: "Product Sans Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
  }
  .heart-vector1{
    position: absolute;
    top: 10%;
    left: 10%;
  }
  .heart-vector2{
    position: absolute;
    top: 10%;
    right: 10%;
  }
}
.consultation-services{
      padding-block: 60px;
  .classes-box {
    border: 1px solid #D3AE5D;
    padding: 10px;
    border-radius: 31px;
    height: 100%;
    transition: all .5s;
    &:hover{
      box-shadow: 0 0 17px 0px #d3ae5d9d;
      transform: translateY(-5px);
    }
}
.classes-box-img {
    margin-bottom: 25px;
    border-radius: 32px;
    overflow: hidden;
    img{
      border-radius: 32px;
    }
}
}
.help-you-bg{
      padding-block: 140px;
          .col-lg-6 {
        flex: 0 0 auto;
        width: 53%;
    }
}
.instant-energy-reading{
  border-radius: 42px;
background: #EDEEF3;
padding: 40px;
.instant-energy-reading-img{
  border-radius: 32px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
}
/*******************************
  Responsive
********************************/
@media (max-width: 1920px) { 
}
@media (max-width: 1600px), (max-width: 1536px){
  .form-control {
    font-size: 18px;
    padding: 16px 15px;
}
  p {
  font-size: 18px;
}
  .header-area{
    padding-block: 18px;
  }
  .hero {
    .hero-content{
      width: 60%;
      h1{
        font-size: 55px;
      }
    }
  }
  .sub-section-title {
    font-size: 31px;
  }
  .section-title {
    font-size: 45px;
  }
  .about-img {
    width: 400px;
    height: 400px;
    right: 130px;
    top: 120px;
  }
  .counter {
      & .counter-item {
          h4 {
              font-size: 60px;
          }
          p{
            font-size: 20px;
          }
      }
  }
  .left-leaf {
  width: 17%;
}
.card-title {
  font-size: 34px;
}
.why-choose-vector {
    width: 50%;
}
.why-choose-card {
    transform: translatex(40px);
    padding-right: 110px;
    .card-title {
        font-size: 24px;
    }
    p{
      font-size: 16px;
    }
}
.why-choose{
  .col-lg-3{
    width: 30%;
  }
  .col-lg-5 {
    width: 40%;
  }
  & .row {
        & .col-lg-3:last-child {
            .why-choose-card {
              transform: translatex(-35px);
              padding-left: 110px;
            }
           & .why-choose-content {
                .why-choose-card:nth-child(1), .why-choose-card:nth-child(3) {
                    transform: translateX(-90px);
                }
              }
        }

    }
}
.why-icon {
  width: 83px;
  height: 83px;
  border: 7px solid rgb(229, 209, 255);
}
.why-choose-content {
  gap: 60px;
    .why-choose-card:nth-child(1), .why-choose-card:nth-child(3) {
        transform: translateX(90px);
    }
}
.achievements-card {
    .card-title {
        font-size: 22px;
    }
}
.testimonials-right-img {
    width: 20%;
}
.session-works-card {
    .card-title {
        font-size: 25px;
    }
}
.session-works-card {
    &::before {
        font-size: 52px;
    }
}
.yellow-left-leaf {
    width: 11%;
}
.session-work-vector-right{
    width: 10%;
}
.start-here-left-vector {
    width: 16%;
}
.happy-life-img {
      left: 190px;
    .yellow-flower {
        bottom: -60px;
        left: -128px;
        width: 35%;
    }
}
.stone-candle-vector {
    width: 11%;
}
.happy-life {
    .col-lg-8 {
        padding-right: 145px;
    }
    &::after{
      width: 320px;
        height: 320px;
    }
}
.testimonials-left-img {
    bottom: -240px;
    width: 22%;
}
.testimonials-right-vector {
    width: 13%;
}
.profile-info {
    h4 {
        font-size: 20px;
    }
}
.faq-yellow-leaf{
  width: 13%;
}
.faw-img-box {
  right: 0;
  text-align: center;
}
.faq-girl{
  width: 85%;
}
.faq-vector {
    width: 70%;
    bottom: -135px;
    left: 110px;
}
.stone-leaf-vector {
    width: 18%;
}
.hand-card-vector {
    width: 30%;
}

}
@media (max-width: 1440px), (max-width: 1366px){
  .title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .sec-gap {
    padding: 50px 0;
  }
  body{
    font-size: 16px;
  }
  p{
    font-size: 16px;
  }
  .logo{
    width: 130px;
  }
  .header-area.sticky {
    .logo {
        width: 110px;
    }
}
#menu>.main-menu>ul>li>a {
  font-size: 16px;
}
#menu li:hover>ul>li {
  height: 36px;
}
#menu>.main-menu>ul>li.has-sub>a::before {
  top: 24px;
}
#menu ul ul li a{
  font-size: 16px;
}
.primary-btn{
  font-size: 15px;
  padding: 12px 24px;
}
  .hero {
      & .hero-content {
          h1 {
              font-size: 50px;
          }
      }
  }
  .hero-item{
    height: 100dvh;
  }
  .hero-content {
    padding-top: 85px;
  }

.slick-dots {
  bottom: 10px;
    & li {
      button {
            width: 12px;
            height: 12px;
        }
        &.slick-active {
            button {
                width: 51px;
            }
        }
    }
  }
  .sub-section-title {
      font-size: 26px;
  }
    .section-title {
      font-size: 40px;
  }
  .about-img {
      width: 350px;
      height: 350px;
      right: 90px;
      top: 100px;
      &::after {
        right: -25px;
    }
  }
      .left-leaf {
        width: 15%;
    }
    .counter {
        & .counter-item {
            h4 {
                font-size: 50px;
            }
            p{
              font-size: 18px;
            }
        }
    }
    .service-content{
    padding: 20px;
  }
  .why-choose-content{
    gap: 40px;
      .why-choose-card:nth-child(1), .why-choose-card:nth-child(3) {
      transform: translateX(70px);
  }
  }
    .why-choose {
      & .row {
          & .col-lg-3:last-child {
              .why-choose-card {
                  transform: translatex(-25px);
              }
               & .why-choose-content {
                  .why-choose-card:nth-child(1), .why-choose-card:nth-child(3) {
                      transform: translateX(-65px);
                  }
              }
          }
      }
  }
  .why-choose-vector {
        width: 43%;
    }
    .why-icon {
        width: 63px;
        height: 63px;
        border: 5px solid rgb(229, 209, 255);
        padding: 10px;
        outline-offset: 5px;
    }
    .why-choose-card {
       padding-right: 80px;
       transform: translatex(30px);
              .card-title {
            font-size: 20px;
        }
        p {
            font-size: 14px;
        }
    }
    .card-title {
        font-size: 28px;
    }
    .why-choose{
              & .row {
            & .col-lg-3:last-child {
                .why-choose-card {
                    transform: translatex(-35px);
                    padding-left: 80px;
                }
            }
        }
    }
    .why-choose-left-vector {
      width: 10%;
  }
  .right-leaf {
    width: 12%;
  }
  .achievements {
    &::after {
        width: 290px;
        height: 290px;
        top: 25px;
        right: 25px;
    }
  }
  .diya {
      width: 11%;
  }
      .achievements-card {
        .card-title {
            font-size: 19px;
        }
    }
    .excepteur {
      padding-block: 110px;
  }
  .slider-container {
    .slide-card {
        height: 270px;
        span{
          img{
            width: 41px;
          }
        }
    }
}
    .session-works-card {
      padding: 95px 30px 30px;
        & .card-title {
            font-size: 20px;
        }
          &::before {
            font-size: 42px;
        }
        img{
          width: 47%;
        }
    }
    .under-box {
      padding: 33px 26px;
  }
  .play-up {
    h4 {
        font-size: 22px;
    }
  }
  .play-box{
    padding: 18px;
  }
  .play-btn {
    width: 69px;
    height: 69px;
    &::before{
      width: 69px;
      height: 69px;
    }
  }
      .happy-life {
        .col-lg-8 {
          padding: 60px 180px;
            padding-right: 115px;
            ul{
              li{
                  padding-left: 35px;
                  span{
                    font-size: 20px;
                  }
                &::before{
                  width: 23px;
                  height: 23px;
                }
              }
            }
        }
        &::after {
            width: 280px;
            height: 280px;
        }
    }
      .happy-life-img {
          left: 150px;
        .yellow-flower {
            bottom: -50px;
            left: -110px;
        }
    }
    .start-here-left-vector {
        width: 13%;
        bottom: -70px;
    }
    .testi-card {
      padding: 16px 13px;
      img{
        width: 14%;
      }
      p {
          font-size: 14px;
      }
  }
  .testimonial-slider {
    .slick-slide {
        margin: 40px 30px;
    }
}
    .profile-info {
        h4 {
            font-size: 17px;
        }
    }
    .testimonial-slider {
      .slick-arrow {
          width: 40px;
          height: 40px;
      }
  }
  .stone-candle-vector {
    width: 10%;
  }
  .testimonials-left-img {
    bottom: -180px;
    width: 18%;
  }
  .testimonials-right-img {
        width: 16%;
        bottom: -30px;
    }
  .accordion__item .accordion__title {
    font-size: 19px;
  }
  .accordion__title-text::before {
    font-size: 18px;
  }
  .accordion__item .accordion__content {
    font-size: 16px;
  }
  .accordion__title::after {
    font-size: 30px;
    top: 13px;
  }
  .accordion__title.accordion-active::after {
    top: 15px;
}
    .faw-img-box {
      width: 45%;
  }
  .get-in-touch-content {
    p {
      img{
        width: 36px;
      }
    }
  }
  .faq-vector-yoga {
    width: 20%;
}
      .faq-yellow-leaf {
        width: 10%;
    }
  .form-control {
    font-size: 15px;
    padding: 15px 12px;
  }
      .form-control {
        font-size: 16px;
        padding: 12px 15px;
    }
    footer .footer-title, footer h5 {
    font-size: 20px;
  }
  footer {
    padding-top: 80px;
    padding-bottom: 20px;
}
  footer a {
    font-size: 16px;
  }
  .footer-logo {
        width: 130px;
    }
    .right{
      padding: 20px;
    }
    /* Inner Pages */
  .inner-title {
    font-size: 70px;
    margin-bottom: -16px;
  }
  .banner-content{
    img{
      width: 90px;
    }
  }
  .featured-tag {
    padding: 13px 19px;
    font-size: 16px;
  }
  .blog-title {
    font-size: 24px;
    line-height: 32px;
  }
  .blog-meta {
    font-size: 14px;
    padding-bottom: 4px;
    margin-bottom: 10px;
  }
  .read-more {
    font-size: 14px;
    img{
      height: 15px;
    }
  }
  .blog-details {
    padding-top: 160px;
    h1{
      font-size: 42px;
    }
        h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
        h3 {
        font-size: 25px;
  }
}
  .pagination {
    & a {
        font-size: 16px;
    }
}
      .latest-post-item {
        .blog-title {
            font-size: 16px;
            margin-bottom: 2px;
        }
    }
        .blog-sidebar-category {
        & ul {
            & li {
              margin-bottom: 15px;
                a {
                    font-size: 16px;
                    &::before{
                      top: 0;
                    }
                }
            }
        }
    }
    .related-article-item {
      h3 {
          font-size: 17px;
          line-height: 22px;
      }
  }
      .small-line {
        width: 100px;
        height: 4px;
        margin-bottom: 13px;
    }
}
@media (max-width: 1199.98px){
  .popup .popup__content {
    width: 80%;
}
    .sec-gap {
      padding: 40px 0;
  }
  .logo {
    width: 120px;
  }
  .header-area.sticky {
    .logo {
      width: 100px;
    }
  }
  .hero-item {
    height: auto;
  }
  .hero {
    & .hero-content {
        h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        p{
          margin-bottom: 15px;
        }
    }
  }
  .sub-section-title {
    font-size: 22px;
  }
  .section-title {
    font-size: 26px;
  }
    .about-img {
      width: 300px;
      height: 300px;
      right: 40px;
      top: 80px;
  }
  .counter {
    padding-block: 20px;
      & .counter-item {
          h4 {
              font-size: 40px;
          }
          p{
            font-size: 16px;
          }
      }
  }
  .all-services{
    flex-wrap: wrap;
    .service-item{
      .row{
        .col-md-5{
          order: -1;
        }
      }
    }
  }
  .achievements-card {
    border-radius: 15px;
    padding: 14px;
    .card-title {
        font-size: 18px;
    }
    img {
      width: 15%;
    }
  }
    .diya {
      width: 8%;
  }
      .why-choose-content{
        gap: 15px;
        .why-choose-card:nth-child(1), .why-choose-card:nth-child(3) {
            transform: translateX(40px);
        }
      }
    .why-icon {
      width: 53px;
      height: 53px;
      padding: 7px;
      border: 4px solid rgb(229, 209, 255);
    }
    .why-choose-card {
      padding-right: 70px;
      transform: translatex(20px);
      .card-title {
        font-size: 17px;
        margin-bottom: 2px;
      }
      p {
        font-size: 12px;
      }
    }
        .why-choose {
        & .row {
            & .col-lg-3:last-child {
                .why-choose-card {
                  transform: translatex(-15px);
                  padding-left: 70px;
                }
                & .why-choose-content {
                  .why-choose-card:nth-child(1), .why-choose-card:nth-child(3) {
                      transform: translateX(-35px);
                  }
            }
        }
    }
  }
  .why-choose-left-vector {
    width: 8%;
    bottom: 80px;
  }
  .achievements {
    &::after {
      width: 210px;
      height: 210px;
      top: 15px;
      right: 0px;
    }
  }
  .right-leaf {
    bottom: -20px;
  }
  .excepteur {
    padding-block: 30px;
  }
  .slider-container {
    .slide-card {
        height: 210px;
        span {
          img {
            width: 31px;
          }
        }
    }
  }
      .yellow-left-leaf {
        width: 8%;
    }
      .session-works-card {
        margin-top: 60px;
        padding: 65px 10px 20px 10px;
          &::before {
          font-size: 36px;
          top: 18px;
          left: 18px;
        }
    }
        .play-btn {
        width: 59px;
        height: 59px;
        &::before {
            width: 59px;
            height: 59px;
        }
    }
    .play-up {
        h4 {
            font-size: 19px;
        }
    }
    .play-box {
      padding: 12px;
    }
      .under-box {
        padding: 18px 14px;
    }
      .session-work-vector-right {
        width: 8%;
            top: 85px;
    }
    .happy-life {
      .col-lg-8 {
          padding: 30px 70px;
          padding-right: 50px;
          & ul {
            & li {
              padding-left: 28px;
              span {
                font-size: 17px;
              }
              &::before {
                width: 18px;
                height: 18px;
              }
            }
          }
        }
    .happy-life-img {
      left: 40px;
      .yellow-flower {
        width: 30%;
        left: -30px;
      }
    }
    &::after {
      width: 220px;
      height: 220px;
    }
  }
  .half-moon{
    width: 10%;
  }
  .stone-candle-vector {
    width: 9%;
    bottom: -10px;
  }
  .start-here-left-vector {
    width: 9%;
    bottom: -30px;
  }
  .testi-card {
    img {
       margin-bottom: 10px;
    }
    p {
      font-size: 12px;
    }
  }
      .profile-info {
        h4 {
            font-size: 15px;
        }
    }
  .testimonials-right-vector {
    width: 10%;
    top: 20px;
  }
  .testimonial-slider {
    .slick-arrow {
      width: 30px;
      height: 30px;
    }
    .slick-slide {
      margin: 20px 20px;
    }
    .slick-list {
      margin: 0 -20px;
    }
    .slick-prev {
      left: -50px;
    }
    .slick-next {
      right: -50px;
    }
  }
  .mb-50 {
    margin-bottom: 20px;
  }
  .testimonials-left-img {
      bottom: -115px;
      width: 16%;
  }
    .faw-img-box {
      width: 38%;
  }
  .faq-girl {
    width: 100%;
    }
    .faq-vector {
      width: 90%;
      left: 20px;
  }
  .get-in-touch {
    padding-block: 40px;
  }
  .stone-leaf-vector {
    bottom: -80px;
  }
  .hand-card-vector {
    bottom: -160px;
  }
  .blog-card {
    margin-bottom: 30px;
  }
  .blog-content {
    padding: 20px;
  }
  .blog-title {
    font-size: 22px;
    line-height: 26px;
  }
      .blog-details {
        padding-top: 150px;
        h1{
          font-size: 36px;
        }
    }
  .related-article {
    padding-top: 30px;
  }
  .blog-meta{
    line-height: 18px;
  }
  .sidebar {
    h3 {
        margin-bottom: 20px;
    }
}
.mb-30 {
    margin-bottom: 20px;
}
.pagination {
    & a {
        img {
            width: 116px;
            height: 90px;
        }
    }
}
}
@media (max-width: 991.98px){
  .contact-form{
  .btn-group{
    justify-content: center;
  }
}
  .container-fluid{
    padding: 0 20px;
  }
    .sec-gap {
      padding: 30px 0;
    }
  .hero-item {
    height: 550px;
    &::before{
      background: linear-gradient(280deg, rgb(3 6 8 / 42%) 24.57%, rgb(0 0 0 / 66%) 49.54%);
    }
  }
  .hero{
    .hero-content {
      width: 70%;
      padding-top: 75px;
    }
  }
  .header-area.sticky {
    padding-block: 15px;
  }
  .main-menu {
    flex-direction: column;
    gap: 40px;
  }
      #menu>.main-menu>ul>li>a,
      #menu>.main-menu>ul>ul>li>a{
        font-size: 18px;
    }
        #menu li:hover>ul>li {
        height: auto;
    }
    #menu .main-menu ul ul li a {
      background: #ffffff1a;
      border-bottom: 1px solid #15222B;
      padding-block: 12px;
    }
    #menu .main-menu ul ul li:hover a {
    background-color: #1D225A;
  }
  .desktop-flex{
    display: none;
  }
  .mobile-flex{
    display: flex;
    position: absolute;
    right: 65px;
    top: 20px;
  }
  .primary-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .about-img {
    position: relative;
    width: 350px;
    height: 350px;
    right: unset;
    top: unset;
    margin-inline: auto;
  }
  .left-leaf {
    top: -100px;
    width: 18%;
  }
  .about-content{
    padding-top: 70px;
    text-align: center;
    .btn-group{
      justify-content: center;
    }
  }
  .service-content {
      padding: 20px;
  }
  .all-services{
    padding-bottom: 35px;
  }
  .why-choose{
    .left-leaf {
      top: -45px;
    }
    .col-lg-5{
      display: none;
    }
    .col-lg-3{
      width: 45%;
    }
    .row {
        .col-lg-3:last-child {
            .why-choose-card {
              padding-left: 0;
            }
          }
      }
    }
    .why-choose-card{
      text-align: center;
      padding-right: 0;
      padding: 20px;
      padding-top: 90px;
      transform: translatex(0);
      background: #dbc0fa42;
      height: 100%;
      border-radius: 12px;
      p{
        margin-bottom: 0;
      }
    }
        .why-choose-content {
        .why-choose-card:nth-child(1), .why-choose-card:nth-child(3) {
            transform: translateX(0);
        }
    }
    .why-icon{
      left: 50%;
      transform: translateX(-50%);
      top: 20px;
      padding: 9px;
    }
    .why-choose {
    & .row {
        & .col-lg-3:last-child {
            & .why-choose-card {
                .why-icon {
                  right: unset;
                  left: 50%;
                  transform: translateX(-50%);
                }
            }
        }
    }
  }
  .why-choose {
        & .row {
            & .col-lg-3:last-child {
                & .why-choose-card {
                  text-align: center;
                  transform: translateX(0);
                  padding: 20px;
                  padding-top: 90px;
                }
            }
        }
    }
      .why-choose {
        & .row {
            & .col-lg-3:last-child {
                & .why-choose-content {
                    .why-choose-card:nth-child(1), .why-choose-card:nth-child(3) {
                        transform: translateX(0);
                    }
                }
            }
        }
    }
  .excepteur {
    &::after {
      background: linear-gradient(271deg, #FFF 50.54%, rgba(255, 255, 255, 0.00) 91.07%);
    }
  }
    .yellow-left-leaf {
      width: 10%;
      top: 25px;
    }
    .session-works-card {
      margin-top: 90px;
      border-radius: 10px;
      padding: 55px 10px 20px 10px;
      .card-title{
        font-size: 18px;
      }
      img {
        width: 37%;
      }
      &::before {
        font-size: 30px;
      }
    }
    .video-box {
        border-radius: 15px;
    }
    .under-box{
      border-radius: 15px;
    }
    .play-up {
      gap: 10px;
      margin-bottom: 10px;
  }
      .play-box {
        padding: 8px;
    }
        .happy-life{
          flex-direction: column;
          .happy-life-img {
            width: 40%;
            position: relative;
            left: unset;
            .yellow-flower {
              left: -43px;
              bottom: -30px;
            }
          }
         .col-lg-8 {
            padding: 30px 50px;
            padding-top: 40px;
          }
        }
        .start-here-left-vector {
        bottom: 30px;
        z-index: 2;
    }
    .half-moon {
    bottom: 400px;
    top: unset;
  }
      .testimonials-right-vector {
        display: none;
    }
    .testimonials-left-img {
        bottom: -80px;
    }
        .testimonial-slider {
        .slick-slide {
            margin: 40px 20px;
        }
    }
    .faw-img-box {
        display: none;
    }
      .get-in-touch-content {
        & p {
            img {
                width: 28px;
            }
        }
        p{
          margin-bottom: 20px;
        }
    }
          .form-control {
        padding: 14px 12px;
    }
    .form-icon{
      width: 22px;
    }
    footer {
      padding-top: 40px;
      padding-bottom: 10px;
      .col-lg-6{
        text-align: center;
      }
    }
    .social-links{
      justify-content: center;
    }
    footer .footer-title, footer h5 {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .copyright {
    padding: 10px 0;
    font-size: 16px;
    margin-top: 40px;
    flex-direction: column;
  }
  .footer-logo{
    margin-inline: auto;
  }
  .why-choose {
    .row {
        margin-top: 10px;
    }
  }
      .inner-title {
        font-size: 60px;
        margin-bottom: -16px;
    }
    .banner-content {
        img {
            width: 80px;
        }
    }
      .blog-list {
        margin-top: 10px;
        & .blog-card:nth-child(2n) {
            .row .col-lg-5 {
                order: 1;
            }
        }
    }
    .header-area{
      .container{
        height: 100%;
      }
    }
    .sidebar {
    padding-top: 0;
}
    .blog-details {
      padding-top: 150px;
        h1 {
            font-size: 30px;
        }
    }
        .blog-content {
        padding: 10px;
    }
        .latest-post-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .latest-post-item {
        .blog-title {
            margin-bottom: 6px;
        }
    }
  }
@media (max-width: 575.98px){
    body {
      font-size: 14px;
    }
    .popup .popup__content {
      width: 95%;
      border-radius: 10px;
    }
    .left{
      display: none;
    }
        .right {
        padding: 20px 15px;
    }
        .title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .popup .popup__content .close {
    width: 30px;
    height: 30px;
  }
    .popup .popup__content .close span{
    width: 15px;
  }
    .sec-gap {
      padding: 20px 0;
    }
      #menu .main-menu.open {
        padding: 10px;
        padding-top: 60px;
    }
        #menu>.main-menu>ul>li>a, #menu>.main-menu>ul>ul>li>a {
        font-size: 15px;
    }
    #menu>.main-menu>ul>li>a{
      padding: 15px 6px;
    }
        #menu ul ul li a {
        font-size: 15px;
    }
        #menu .submenu-button {
        height: 45px;
        width: 50px;
    }
        #menu .submenu-button:after {
        top: 15px;
        right: 19px;
    }
        #menu .submenu-button.submenu-opened:after {
        top: 20px;
    }
  .primary-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
      .header-area {
        padding-block: 8px;
    }
        .logo {
        width: 95px;
    }
        .header-area.sticky {
        .logo {
            width: 85px;
        }
    }
        .header-area.sticky {
        padding-block: 5px;
    }
  p{
    font-size: 14px;
  }
      .hero-item {
        height: 460px;
        &::before {
            background: linear-gradient(280deg, rgb(3 6 8 / 67%) 24.57%, rgb(0 0 0 / 78%) 49.54%);
        }
    }
      .hero {
        .hero-content {
            width: 100%;
            padding-top: 50px;
            text-align: center;
            h1{
              font-size: 28px;
            }
            .btn-group{
              justify-content: center;
            }
        }
    }
        .slick-dots {
        & li {
              button {
                width: 10px;
                height: 10px;
            }
            &.slick-active {
                button {
                    width: 41px;
                }
            }
        }
    }
        .about-content {
        padding-top: 80px;
    }
    .about-img {
        width: 290px;
        height: 290px;
                &::after {
            right: -20px;
        }
    }
        .sub-section-title {
        font-size: 20px;
    }
        .section-title {
        font-size: 24px;
    }
        .counter {
        & .counter-item {
            text-align: center;
                        h4 {
                font-size: 30px;
            }
                        p {
                font-size: 14px;
                margin-bottom: 0;
            }
            &::after {
              display: none;
          }
        }
    }
        .left-leaf {
        top: -85px;
        width: 25%;
    }
    .mb-20 {
    margin-bottom: 10px;
  }
  .service-content {
        padding: 15px;
    }
    .service-item{
      border-radius: 14px;
    }
  .all-services {
    padding-bottom: 50px;
    gap: 10px;
    padding-inline: 10px;
  }
      .card-title {
        font-size: 22px;
    }
    .service-img {
    border-radius: 14px;
}
    .why-choose {
        .left-leaf {
            top: -60px;
            width: 30%;
        }
    }
        .why-choose {
          .row {
        margin-top: 0px;
    }
        .col-lg-3 {
            width: 95%;
        }
    }
    .achievements-card {
      border-radius: 10px;
        .card-title {
            font-size: 16px;
            margin-bottom: 5px;
        }
    }
    .diya{
      display: none;
    }
    .excepteur {
        &::after {
            background: linear-gradient(271deg, #FFF 90.54%, rgba(255, 255, 255, 0.00) 160.07%);
        }
    }
    .excepteur-content{
      text-align: center;
      .btn-group{
        justify-content: center;
      }
    }
        .slider-container {
        .slide-card {
            height: 150px;
        }
    }
    .slider-container {
    .slider-row {
        gap: 10px;
        margin-bottom: 10px;
    }
}
.mb-30 {
    margin-bottom: 10px;
}
    .yellow-left-leaf {
        width: 12%;
        top: 0px;
    }
    .session-works-card {
      margin-top: 105px;
        .card-title {
            font-size: 17px;
            margin-bottom: 3px;
        }
    }
        .container-fluid {
        padding: 0 6px;
    }
        .video-box {
        border-radius: 8px;
        height: 300px;
    }
        .under-box{
        border-radius: 8px;
        justify-content: flex-start;
        padding: 8px 10px;
    }
        .play-btn {
        width: 49px;
        height: 49px;
        padding: 17px;
        &::before{
          width: 49px;
        height: 49px;
        }
    }
        .play-up {
                  margin-bottom: 5px;
        h4 {
            font-size: 17px;
        }
    }
      .happy-life {
        .happy-life-img {
            width: 90%;
                .start-here-girl {
                  border-radius: 10px;
              }
            .yellow-flower {
                width: 25%;
                left: -10px;
                bottom: -40px;
            }
        }
          .col-lg-8 {
            padding: 30px 15px;
            padding-top: 50px;
             ul {
                & li {
                    padding-left: 22px;
                    margin-bottom: 15px;
                  span {
                        font-size: 16px;
                    }
                    &::before {
                        width: 16px;
                        height: 16px;
                    }
                }
            }
        }
          &::after {
            width: 160px;
            height: 160px;
        }
    }
    .half-moon {
        display: none;
    }
        .stone-candle-vector {
        width: 13%;
        bottom: 0px;
    }
    .testi-card{
      padding: 12px;
      img{
        width: 13%;
        margin-bottom: 3px;
      }
    }
        .testimonial-slider {
        .slick-slide {
            margin: 30px 20px;
        }
    }
        .testimonials-left-img {
        bottom: -50px;
        width: 22%;
    }
        .testimonials-right-img {
        width: 20%;
        bottom: -5px;
    }
    .faq {
    .container {
        padding-left: 15px;
    }
}
    .accordion__item .accordion__title {
          padding: 5px 20px 10px 0px;
        font-size: 17px;
        margin-bottom: 0;
    }
        .accordion__title-text::before {
        font-size: 15px;
    }
        .accordion__title::after {
        font-size: 22px;
        top: 10px;
    }
        .accordion__title.accordion-active::after {
        top: 11px;
    }
        .accordion__item .accordion__content {
        font-size: 14px;
        padding-left: 0;
    }
    .accordion__item {
        margin: 5px auto;
    }
    .faq-yellow-leaf {
      width: 14%;
    bottom: -27px;
  }
      .get-in-touch {
        padding-block: 30px;
    }
        .form-control {
        font-size: 15px;
        padding: 12px 12px;
        border-radius: 5px;
    }
        .stone-leaf-vector {
        width: 30%;
    }
    .hand-card-vector {
        width: 40%;
        bottom: -100px;
    }
    footer{
      text-align: center;
      .col-lg-4{
        p{
          margin-bottom: 0;
        }
      }
    }
        footer .footer-title, footer h5 {
        font-size: 18px;
    }
    footer h5{
      line-height: 40px;
    }
    .footer-title{
      margin-bottom: 5px;
    }
    footer a {
        font-size: 14px;
    }
    .footer-title:after {
    margin-inline: auto;
    margin-top: -12px;
  }
  .copyright{
    margin-top: 20px;
  }
  .copyright p{
    font-size: 14px;
  }
  .call {
    width: 36px;
    height: 36px;
  }
  .wp {
    width: 38px;
    height: 38px;
  }
  .fixed-btn {
    right: 5px;
    gap: 14px;
    bottom: 5%;
  }
  .inner-banner{
    .banner-content{
      padding-top: 80px;
        img {
          width: 50px;
        }
    }
  }
  .featured-tag {
    padding: 10px 15px;
    font-size: 12px;
  }
  .inner-title {
    font-size: 40px;
    margin-bottom: -10px;
  }
    .blog-content {
      padding: 10px;
  }
  .blog-title {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 2px;
    }
        .blog-meta {
        font-size: 13px;
        padding-bottom: 5px;
        margin-bottom: 5px;
        line-height: 15px;
    }
      .read-more {
        font-size: 12px;
          img {
            height: 13px;
        }
    }
    .blog-card {
        margin-bottom: 15px;
    }
        .blog-details {
        padding-top: 100px;
        h1{
          font-size: 26px;
        }
        h2{
          font-size: 22px;

        }
        h3{
          font-size: 18px;

        }
        .blog-content{
          ul, ol{
            padding-left: 15px;
            line-height: 125.111%;
          }
          li{
            font-size: 14px;
          }
        }
    }
    .small-line {
        width: 70px;
        height: 3px;
        margin-bottom: 6px;
    }
    .sidebar{
      h3{
        text-align: left;
        font-size: 20px;
        padding-bottom: 2px;
        margin-bottom: 10px;
      }
    }
    .latest-post-item {
      gap: 8px;
    .blog-content {
        text-align: left;
        width: 60%;
    }
  }
      .blog-sidebar-category {
        text-align: left;
        & ul {
            & li {
                a {
                    font-size: 15px;
                }
            }
        }
    }
    .pagination {
      margin-top: 10px;
          h4 {
            font-size: 17px;
        }
        a{
            font-size: 14px;
            line-height: 130.778%;
            display: block;
              img {
                width: 136px;
                height: 110px;
            }
        }
  }
    .related-article{
      padding-top: 15px;
      .title{
        text-align: left;
        margin-bottom: 3px;
      }
    }
    .related-article-item {
        h3 {
            font-size: 17px;
            line-height: 22px;
            text-align: left;
        }
        .blog-content{
          padding: 5px 0;
        }
    }
    .session-works-card {
        padding: 20px 10px 20px 10px;
        margin-top: 80px;
        img{
          position: relative;
          left: unset;
          top: unset;
          margin-top: -80px;
          transform: unset;
          margin-bottom: 10px;
        }
    }
  }