:root {
  --ff1: "Onest", sans-serif;
  --ff2: "Alice", sans-serif;
}

body {
  position: relative;
  background-color: #eff0f3;
  font-family: var(--ff1);
}

.ff1 {
  font-family: var(--ff1);
}
.ff2 {
  font-family: var(--ff2);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff2);
}



.container {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .container {
    padding: 0 calc(5vw - 20px);
  }
  .inner-container {
    padding: 0 calc(8% - 20px);
  }
}

@media screen and (min-width: 1200px) {
  .container {
    padding: 0;
    max-width: 1152px;
    margin: 0 auto;
  }
}










.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  height: 60px;
  border-radius: 100px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.21em;
  color: #368bc8;
}
.btn-primary {
  background-color: #368bc8;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .btn {
    font-size: 16px;
  }
}



/* header */
/* header */

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 10px 10px;
  background-color: #0d538c;
  color: #fff;
  padding: 0 20px;
  z-index: 100;
}
.header-nav {
  display: none;
}
.logo {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 108px;
  font-size: 16px;
  font-weight: 500;
  line-height: 0.87em;
}

.contact-btn {
  display: flex;
  align-items: center;
  height: 33px;
  padding: 0 16px;
  border-radius: 100px;
  background-color: #fff;
  font-size: 12px;
  line-height: 1.47em;
  letter-spacing: -0.02em;
  color: #368bc8;
}

.lang-btn {
  font-size: 16px;
  color: #909090;
}
.lang-btn.active {
  font-weight: 600;
  font-size: 16px;
  color: #368bc8;
}

@media screen and (max-width: 992px) {

	.burger-btn {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 0;
		width: 34px;
		height: 34px;
		cursor: pointer;
		transition: .3s ease-in;
    flex-shrink: 0;
	}

	.burger {
		position: relative;
		display: block;
		width: 32px;
		height: 4px;
    border-radius: 20px;
		background-color: #fff;
		transition: 0.5s ease;
    flex-shrink: 0;
	}

	.burger::after,
	.burger::before {
		content: "";
		display: block;
		width: 32px;
		height: 4px;
    border-radius: 20px;
		background-color: #fff;
		position: absolute;
		left: 0;
		right: 0;
		will-change: transform;
		transition: transform 0.3s ease-in;
	}

	.burger::before {
		bottom: 9px;
	}

	.burger::after {
		top: 9px;
	}


  .menu {
    position: fixed;
    top: -505px;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 100%;
    height: 505px;
    padding: 128px 0 70px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 0 0 30px 30px;
    z-index: 90;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.25);
    transition: .5s;
  }
  .menu.open {
    transform: translateY(505px);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .menu-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    max-width: 256px;
    height: 44px;
    font-size: 14px;
    line-height: 1.21em;
    color: #000;
    background: #eff3f5;
    border-radius: 4px;
    text-align: left;
  }

  .menu-item.menu-item-primary {
    color: #fff;
    background: #0d538c;
  }

  .close-menu-btn {
    position: absolute;
    top: 80px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
}


@media screen and (min-width: 992px) {
  .header {
    border-radius: 0 0 20px 20px;
    padding: 0 24px 0 45px;
  }
  
  .header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header-nav-item {
    position: relative;
    font-size: 14px;
    line-height: 1.21em;
    padding: 5px 20px;
  }
  .header-nav-item.active {
    background: #00739d;
    border-radius: 100px;
  }

  .burger-btn,
  .menu {
    display: none;
  }
  .lang-btn {
    color: rgba(255, 255, 255, 0.67);
    font-weight: 300;
  }
  .lang-btn.active {
    color: #fff;
  }

}


/* header */
/* header */


/* hero-section */
/* hero-section */
.hero-section {
  position: relative;
  width: 100%;
  padding: 100px 0 60px;
  color: #fff;
  margin-top: 40px;
}

.hero-section-decor {
  position: absolute;
  display: block;
  flex-shrink: 0;
  left: 15px;
  top: -150px;
}

.hero-section-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section-cover img {
  width: 1250px;
  display: block;
  filter: blur(3px);
  animation: hero-section-cover 30s infinite;
}
@keyframes hero-section-cover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.hero-section-content {
  padding: 20px;
  border-radius: 10px 100px 10px 10px;
  background: #1c5c8b;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.37em;
}

.hero-section-video {
  position: relative;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}


.bottom-button-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 50px 50px 0 0;
  background: #368bc8;
  box-shadow: 0 2px 26px 0 rgba(20, 48, 88, 0.57);
  z-index: 10;
  color: #fff;
}
.bottom-button {
  border-radius: 50px 50px 0 0;
  height: 104px;
  background: linear-gradient(135deg, #fff 0%, rgba(1, 116, 157, 0) 100%);
  padding-top: 2px;
}
.bottom-button-inner {
  height: 102px;
  width: 100%;
  background: linear-gradient(194deg, #2fa9df 0%, #368bc8 100%);
  border-radius: 50px 50px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 27px;
  line-height: 0.95em;
  font-family: var(--ff2);
}


@media screen and (min-width: 992px) {
  .hero-section {
    padding: 110px 0 100px;
  }
  .hero-section-inner {
    padding-right: 8%;
  }
  .hero-section-cover img {
    transform: initial;
    width: 110%;
  }

  .bottom-button-wrapper {
    display: none;
  }
}

/* hero-section */
/* hero-section */



.section {
  position: relative;
  width: 100%;
  border-radius: 30px 30px 0 0;
}

.section-title {
  line-height: 1em;
  background: linear-gradient(90deg, #000 0%, #0d538c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  font-weight: 400;
  line-height: 1em;
  color: rgba(209, 209, 209, 0.4);
}

@media screen and (min-width: 992px) {
  .section {
    border-radius: 50px 50px 0 0;
  }
}
/* about-section */
/* about-section */

.about-section {
  padding: 50px 0;
  box-shadow: 0 4px 34px 0 rgba(45, 57, 85, 0.16);
  background: #eff0f3;
}

.about-decor1 {
  position: absolute;
  top: 70px;
  left: -60px;
  filter: blur(4px);
  width: 137px;
}
.about-decor2 {
  position: absolute;
  top: 460px;
  right: -30px;
  width: 80px;
  transform: rotate(50deg);
}

.about-decor1,
.about-decor2 {
  animation: about-decor 5s infinite linear;
}

@keyframes about-decor {
  0% {
    transform: translate(-5%, 5%);
  }
  50% {
    transform: translate(5%, -5%);
  }
  100% {
    transform: translate(-5%, 5%);
  }
}


.about-title {
  position: relative;
  padding: 0 10px 12px;
  color: #368bc8;
}
.about-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background-size: 100%;
  background-position: left center;
  background-repeat: repeat-x;
  background-image: url("data:image/svg+xml,%3Csvg width='322' height='2' viewBox='0 0 322 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1C1.37339 1 215.239 1.00002 322 1.00003' stroke='black' stroke-dasharray='6 6' /%3E%3C/svg%3E");
}

.about-image {
  width: 295px;
  height: 390px;
  border-radius: 44px;
}
@media screen and (min-width: 992px) {
  .about-section {
    padding: 90px 0 120px 0;
  }
  .about-title {
    padding: 0 20px 25px;
  }
  .about-image {
    position: relative;
    width: 100%;
    height: initial;
    max-height: 465px;
  }
  .about-image::before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 133%;
    pointer-events: none;
  }

  .about-decor1 {
      top: initial;
      bottom: 150px;
      left: -136px;
      width: 274px;
    }
    .about-decor2 {
      display: none;
    }
}
/* about-section */
/* about-section */






/* road-section */
/* road-section */

.road-section {
  padding: 60px 0 180px 0;
  box-shadow: 0 -1px 22px 0 rgba(20, 32, 60, 0.1);
  background: #e8ebf4;
}

.road-decor1 {
  position: absolute;
  top: -50px;
  left: -100px;
  border: 19px solid #368bc8;
  border-radius: 51px;
  width: 143px;
  height: 143px;
  transform: rotate(27deg);
}
.road-decor2 {
  position: absolute;
  top: 70px;
  right: -50px;
  border: 19px solid #368bc8;
  border-radius: 50%;
  width: 108px;
  height: 108px;
  transform: rotate(27deg);
  filter: blur(4px);
}

.road-decor1 {
  animation: road-decor1 5s infinite linear;
}
.road-decor2,
.road-decor3 {
  animation: road-decor2 10s infinite linear;
}

@keyframes road-decor1 {
  0% {
    transform: translateX(-10%);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-10%);
  }
}
@keyframes road-decor2 {
  0% {
    transform: translateX(20%) scale(1);
  }
  50% {
    transform: translateX(-20%) scale(1.5);
  }
  100% {
    transform: translateX(20%) scale(1);
  }
}


.road-decor3 {
  display: none;
}

@media screen and (min-width: 992px) {
  .road-section {
    padding: 120px 0;
  }
  .road-decor1,
  .road-decor2 {
    display: none;
  }
  .road-decor3 {
    position: absolute;
    top: 60px;
    right: -30px;
    width: 124px;
    z-index: 1;
    display: block;
    transform: rotate(51deg);
  }
}

/* road-section */
/* road-section */


/* areas-section */
/* areas-section */

.areas-section {
  position: relative;
  padding-bottom: 172px;
  box-shadow: 0 -1px 22px 0 rgba(20, 32, 60, 0.1);
  background: #368bc8;
  color: #fff;
}

.areas-subtitle {
  line-height: 82%;
  color: rgba(255, 255, 255, 0.3);
}

.areas-title {
  line-height: 82%;
  color: #fff;
  text-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}


.areas-section-decor1 {
  position: absolute;
  top: 60px;
  left: -120px;
  transform: rotate(-66deg);
  width: 340px;
  filter: blur(100px);
}

.areas-section-decor2 {
  position: absolute;
  top: 200px;
  right: -142px;
  transform: rotate(-66deg);
  width: 316px;
  filter: blur(100px);
}
.areas-section-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 460px;
  background-color: #fff;
  padding-bottom: 100px;
  padding-left: 20px;
  border-radius: 22px;
}

.areas-inner-decor {
  position: absolute;
  filter: blur(4px);
  top: -36px;
  right: -40px;
  width: 137px;
  height: 137px;
  color: #368bc8;
  animation: areas-inner-decor 20s infinite linear;
}
@keyframes areas-inner-decor {
  0% {
    transform: translate(-30%, 10%);
  }
  50% {
    transform: translate(30%, -10%);
  }
  100% {
    transform: translate(-30%, 10%);
  }
}

.areas-inner-title {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.areas {
  transform: translateY(-40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 60px 20px 30px;
  background: #368bc8;
  border-radius: 20px;
  z-index: 2;
}
.areas-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 20px;
  background-color: #fff;
  border-radius: 15px;
  min-height: 144px;
  z-index: 2;
}

.areas-inner-arrow {
  width: 50px;
  height: 60px;
  transform: rotate(160deg);
}
@media screen and (min-width: 992px) {
  .areas-section {
    padding: 120px 0;
    overflow: hidden;
  }

  .areas {
    gap: 16px;
    padding: 0 20px;
    transform: none;
  }

  .areas-section-inner {
    width: 394px;
    height: 464px;
    padding-top: 30px;
    padding-left: 20px;
    align-items: start;
  }
  
  .areas-inner-decor {
    top: initial;
    right: -60px;
    bottom: 32px;
    width: 120px;
    height: 120px;
    color: #fff;
  }

  .areas-inner-title {
    flex-direction: column-reverse;
    gap: 60px;
  }
  .areas-inner-arrow {
    width: 80px;
    height: 110px;
    transform: rotate(-106deg);
  }

  
  .areas-section-decor1 {
    top: 10px;
    left: -12%;
    width: 46%;
  }

  .areas-section-decor2 {
    top: 90px;
    right: 21%;
    width: 46%;
  }
}

/* areas-section */
/* areas-section */







/* advantages-section */
/* advantages-section */
.advantages-section {
  padding: 70px 0;
  box-shadow: 0 4px 34px 0 rgba(45, 57, 85, 0.16);
  background: #fff;
}
@media screen and (min-width: 992px) {
  .advantages-section {
    padding: 120px 0;
  }
}
/* advantages-section */
/* advantages-section */



/* banner-section */
/* banner-section */
.section-banner {
  overflow: hidden;
  padding: 60px 0;
  background: #eff0f3;
}

.banner-image-circle {
  position: absolute;
  top: 144px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 264px;
  height: 264px;
  border-radius: 50%;
  background: linear-gradient(180deg, #368bc8 0%, #2fa9df 100%);
}

.banner-section-image {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-section-image::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
}



.banner-decor {
  position: absolute;
  left: -460px;
  top: -30px;
  width: 750px;
  transform: rotate(82deg);
  mix-blend-mode: multiply;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .section-banner {
    padding: 140px 0;
  }
  .banner-image-circle {
    top: -10.7vw;
    right: initial;
    left: 64%;
    width: 47%;
    height: auto;
    margin: 0;
  }
  .banner-image-circle::after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
  }
  .banner-section-image {
    position: absolute;
    left: 64%;
    top: 0;
    bottom: 0;
    width: 435px;
  }
  .banner-decor {
    width: 40%;
    transform: rotate(115deg);
    top: 20px;
    left: 5%;
  }
}

/* banner-section */
/* banner-section */


/* reviews-section */
/* reviews-section */
  .reviews-section {
    padding: 40px 0;
    box-shadow: 0 -1px 22px 0 rgba(20, 32, 60, 0.1);
    background: #e8ebf4;
  }

  .reviews-swiper-pagination {
    position: relative;
    width: 100%;
    display: flex;
    gap: 8px;
    justify-content: center;
    --swiper-pagination-bottom: 0;
    --swiper-pagination-bullet-horizontal-gap: 0;
    --swiper-pagination-bullet-width: 16px;
    --swiper-pagination-bullet-height: 16px;
    --swiper-pagination-bullet-inactive-color: none;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-color: #3b4c73;
  }
  .reviews-swiper-pagination .swiper-pagination-bullet {
    border: 1px solid #3b4c73;
    transition: .3s;
  }

  .other-reviews-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #255190;
    padding: 0 10px 8px;
    border-bottom: 1px solid #255190;
  }

  .reviews-card {
    display: flex; 
    gap: 10px; 
    padding: 24px; 
    border-radius: 16px;
    background-color: white;
    min-height: 150px;
  }

@media screen and (min-width: 992px) {
  .reviews-section {
    padding: 100px 0;
  }
}
/* reviews-section */
/* reviews-section */


/* faq-section */
/* faq-section */

.faq-section {
  position: relative;
  padding: 84px 0 150px 0;
  background: #fff;
}

.faq-section-decor1 {
  position: absolute;
  top: 250px;
  left: -210px;
  transform: rotate(-66deg);
  width: 400px;
  filter: blur(100px);
}

.faq-section-decor2 {
  position: absolute;
  top: 40px;
  right: -230px;
  transform: rotate(-66deg);
  width: 400px;
  filter: blur(100px);
}

.accordion {
  background-color: #fff;
  border-radius: 10px;
}

.accordion-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  color: #000;
  position: relative;
  padding: 14px;
  padding-right: 40px;
  min-height: 60px;
  font-size: 14px;
  font-weight: 500;
}

.accordion-header::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 10px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6L12 17L23 6' stroke='%23368BC8' stroke-width='2' /%3E%3C/svg%3E");
}

.accordion-body {
  overflow: hidden;
  height: 0;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  will-change: height;
}

.accordion-content {
  font-size: 14px;
  padding: 0 14px 14px;
}

.active.accordion-header::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media screen and (min-width: 992px) {
  .faq-section {
    padding-bottom: 160px;
  }
  .faq-section-decor1 {
    top: 146px;
    left: -66px;
    width: 52%;
  }

  .faq-section-decor2 {
    top: -15px;
    right: -60px;
    width: 50%;
  }

  .accordion-header {
    padding: 30px;
    min-height: 72px;
    padding-right: 60px;
  }
  .accordion-content {
    padding: 0 30px 30px;
  }
  .accordion-header::after {
    right: 20px;
  }
}
/* faq-section */
/* faq-section */







/* footer-section */
/* footer-section */
.footer-section {
  padding: 80px 0 180px 0;
  background: #14203c;
}

/* footer-section */
/* footer-section */



/* meditation-section */
/* meditation-section */
.meditation-section {
  padding: 60px 0;
  box-shadow: 0 4px 34px 0 rgba(45, 57, 85, 0.16);
  background: #eff0f3;
  margin-top: 40px;
  overflow: hidden;
}

.meditation-title-decor {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  line-height: 1.28em;
}

.meditation-title-decor::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background-size: contain;
  background-repeat: repeat-x;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='350' height='2' viewBox='0 0 350 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1H350' stroke='%2300739D' stroke-dasharray='6 6' /%3E%3C/svg%3E");
  z-index: 1;
}

.meditation-image {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meditation-image::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.meditation-decor1 {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #368bc8 0%, #2fa9df 100%);
  box-shadow: 8px 2px 8px 0 rgba(8, 54, 92, 0.41);
  width: 210px;
  height: 210px;
}

.meditation-decor2 {
  position: absolute;
  inset: 0;
  width: 260px;
  height: 260px;
  margin: auto;
  top: -80px;
}
.meditation-decor3 {
  position: absolute;
  inset: 0;
  width: 380px;
  height: 380px;
  margin: auto;
  animation: yogi-symbol 60s infinite linear;
}
@keyframes yogi-symbol {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.meditation-bottom-block {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 50px 50px 0 0;
  background: linear-gradient(194deg, #2fa9df 0%, #368bc8 100%);
  z-index: 10;
  color: #fff;
  text-align: left;
  overflow: hidden;
  transition: .5s;
}

.gain-access-btn {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}
.content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: .5s;
  transform: translateY(100%);
  padding: 60px 20px;
}

.close-content-btn {
  position: absolute;
  top: 24px;
  right: 34px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meditation-bottom-block.active {
  height: 270px;
}

.meditation-bottom-block.active .gain-access-btn {
  transform: translateY(-100%);
}
.meditation-bottom-block.active .content {
  transform: translateY(0);
}

@media screen and (min-width: 992px) {
  .meditation-section {
    padding: 100px 0;
  }

  .meditation-image {
    position: absolute;
    right: 0;
    top: -100px;
    width: 435px;
  }
  .meditation-decor1 {
    width: 248px;
    height: 248px;
  }

  .meditation-decor2 {
    width: 300px;
    height: 300px;
  }
  .meditation-decor3 {
    width: 440px;
    height: 440px;
  }

  .meditation-title-decor::after {
    width: 40px;
    height: 75px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='34' height='77' viewBox='0 0 34 77' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30.2506 57.9357L29.278 57.7033L30.2506 57.9357ZM25.7421 76.8021L33.6817 68.4179L22.451 65.734L25.7421 76.8021ZM1.03516 1.44141L0.662666 2.36944C1.72103 2.79424 2.75655 3.2533 3.76838 3.74489L4.20538 2.84542L4.64238 1.94596C3.5883 1.43385 2.50974 0.955723 1.40765 0.51337L1.03516 1.44141ZM10.203 6.30657L9.64263 7.13485C11.5312 8.41243 13.3108 9.81473 14.9736 11.3265L15.6463 10.5866L16.319 9.84672C14.5861 8.2712 12.7315 6.80975 10.7633 5.4783L10.203 6.30657ZM20.425 15.599L19.6539 16.2357C21.0983 17.9849 22.4133 19.8317 23.5907 21.76L24.4442 21.2388L25.2977 20.7177C24.0711 18.7089 22.701 16.7848 21.1961 14.9622L20.425 15.599ZM27.6253 27.3902L26.7068 27.7855C27.5998 29.8608 28.3468 32.0014 28.9393 34.1911L29.9046 33.9298L30.8699 33.6686C30.2525 31.3871 29.4743 29.157 28.5439 26.9949L27.6253 27.3902ZM31.2329 40.7265L30.2403 40.8478C30.5129 43.0786 30.6286 45.3413 30.5796 47.6209L31.5794 47.6424L32.5791 47.6639C32.6302 45.2882 32.5096 42.93 32.2255 40.6052L31.2329 40.7265ZM30.9373 54.5372L29.9507 54.3739C29.767 55.4837 29.5431 56.5941 29.278 57.7033L30.2506 57.9357L31.2233 58.1682C31.4993 57.0131 31.7325 55.8566 31.9238 54.7005L30.9373 54.5372ZM30.2506 57.9357L29.278 57.7033L28.1509 62.4199L29.1235 62.6523L30.0961 62.8848L31.2233 58.1682L30.2506 57.9357ZM30.2506 57.9357L29.278 57.7033L30.2506 57.9357ZM25.7421 76.8021L33.6817 68.4179L22.451 65.734L25.7421 76.8021ZM1.03516 1.44141L0.662666 2.36944C1.72103 2.79424 2.75655 3.2533 3.76838 3.74489L4.20538 2.84542L4.64238 1.94596C3.5883 1.43385 2.50974 0.955723 1.40765 0.51337L1.03516 1.44141ZM10.203 6.30657L9.64263 7.13485C11.5312 8.41243 13.3108 9.81473 14.9736 11.3265L15.6463 10.5866L16.319 9.84672C14.5861 8.2712 12.7315 6.80975 10.7633 5.4783L10.203 6.30657ZM20.425 15.599L19.6539 16.2357C21.0983 17.9849 22.4133 19.8317 23.5907 21.76L24.4442 21.2388L25.2977 20.7177C24.0711 18.7089 22.701 16.7848 21.1961 14.9622L20.425 15.599ZM27.6253 27.3902L26.7068 27.7855C27.5998 29.8608 28.3468 32.0014 28.9393 34.1911L29.9046 33.9298L30.8699 33.6686C30.2525 31.3871 29.4743 29.157 28.5439 26.9949L27.6253 27.3902ZM31.2329 40.7265L30.2403 40.8478C30.5129 43.0786 30.6286 45.3413 30.5796 47.6209L31.5794 47.6424L32.5791 47.6639C32.6302 45.2882 32.5096 42.93 32.2255 40.6052L31.2329 40.7265ZM30.9373 54.5372L29.9507 54.3739C29.767 55.4837 29.5431 56.5941 29.278 57.7033L30.2506 57.9357L31.2233 58.1682C31.4993 57.0131 31.7325 55.8566 31.9238 54.7005L30.9373 54.5372ZM30.2506 57.9357L29.278 57.7033L28.1509 62.4199L29.1235 62.6523L30.0961 62.8848L31.2233 58.1682L30.2506 57.9357Z' fill='%2300739D' /%3E%3C/svg%3E");
    transform: rotate(68deg);
    left: calc(50% - 45px);
  }
  .meditation-bottom-block {
    display: none;
  }
}

/* meditation-section */
/* meditation-section */


/* about-course-section */
/* about-course-section */
.about-course {
  width: 100%;
  max-width: 450px;
  border-radius: 26px 100px 26px 26px;
  padding: 30px 20px 30px 0;
  box-shadow: 0 4px 34px 0 rgba(45, 57, 85, 0.16);
  background: linear-gradient(318deg, #368bc8 0%, #2fa9df 100%);
  color: #fff;
}
.about-course-inner {
  width: 100%;
  max-width: 370px;
  box-shadow: 0 4px 34px 0 rgba(45, 57, 85, 0.16);
  background: #0d538c;
  border-radius: 0 100px 100px 0;
  padding: 36px 50px 36px 30px;
}

/* about-course-section */
/* about-course-section */


/* course-structure-section */
/* course-structure-section */
.course-structure-section {
  position: relative;
  background: #e8ebf4;
  padding: 40px 0 90px 0;
}

.lesson-card {
  background-color: #fff;
  border-radius: 15px;
}
.lesson-number {
  display: flex;
  border-radius: 15px 0 30px 0;
  background: #0d538c;
  align-items: center;
  padding: 10px 15px;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}
.course-structure-decor1,
.course-structure-decor2 {
  display: none;
}

@media screen and (min-width: 992px) {
  .course-structure-section {
    padding: 80px 0;
  }

  .course-structure-decor1 {
    position: absolute;
    top: -60px;
    left: -110px;
    display: block;
    filter: blur(10px);
    width: 240px;
  }
  .course-structure-decor2 {
    position: absolute;
    bottom: 200px;
    right: -70px;
    display: block;
    opacity: 0.2;
    width: 190px;
  }

  .course-structure-decor1,
  .course-structure-decor2 {
    animation: course-structure-decor 10s infinite linear;
  }
  @keyframes course-structure-decor {
    0% {
      transform: translate(-5%, 10%);
    }
    50% {
      transform: translate(10%, -10%);
    }
    100% {
      transform: translate(-5%, 10%);
    }
  }

}
/* course-structure-section */
/* course-structure-section */


.format-section {
  padding: 70px 0;
  background: #eff0f3;
}
.format-decor1 {
  position: absolute;
  bottom: -50px;
  right: -97px;
  filter: blur(33.5px);
  width: 162px;
  height: 134px;
  transform: rotate(-162deg);
  z-index: 1;
  animation: format-decor1 10s;
}

@keyframes format-decor1 {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(0.9);
  }
}

.format-decor2 {
  position: absolute;
  top: -42px;
  left: -100px;
  border: 20px solid #368bc8;
  border-radius: 50px;
  width: 129px;
  height: 129px;
  transform: rotate(-27deg);
  animation: format-decor2 10s infinite linear;
}


@keyframes format-decor2 {
  0% {
    transform: translate(-5%) rotate(55deg);
  }
  50% {
    transform: translate(5%) rotate(55deg);
  }
  100% {
    transform: translate(-5%) rotate(55deg);
  }
}
@media screen and (min-width: 992px) {
  .format-section {
    padding: 110px 0;
  }
  .format-decor1 {
    bottom: -100px;
    right: -190px;
    filter: blur(70px);
    width: 425px;
    height: 350px;
    transform: rotate(-74deg);
  }
  .format-decor2 {
    top: 24px;
    left: -270px;
    border: 40px solid #368bc8;
    border-radius: 114px;
    width: 375px;
    height: 375px;
    transform: rotate(55deg);
  }
}


.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 22px;
  height: 22px;
}


.modal {
  display: none;
  position: fixed;
  inset: 0;
}

.modal.open {
  display: block;
  position: relative;
  z-index: 119;
}
.modal-overlay {
  background: rgba(0, 0, 0, .8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  cursor: crosshair;
}

.modal-container {
  position: fixed;
  inset: 0;
  height: 100%;
  z-index: 121;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gainAccess-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 390px;
  border-radius: 25px;
  padding: 50px 20px;
  background: linear-gradient(194deg, #2fa9df 0%, #368bc8 100%);
  color: #fff;
}






.typewriter::after {
  content: "|";
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%,49% {opacity:1;}
  50%,100% {opacity:0;}
}









.succes-result-form {
  background-color: #fff;
  color: #368bc8;
  padding: 30px 20px;
  font-size: 25px;
  font-weight: 500; 
  text-align: center;
}


.form-message {
  padding: 40px;
  background-color: #fff;
  color: #000;
  text-align: center;
  font-size: 25px;
  font-weight: 500; 
}








.z-2 {
  z-index: 2;
}
.ls-001 {
  letter-spacing: -0.01em;
}
.op-076 {
  opacity: 0.76;
}
.text-linear {
  background: linear-gradient(57deg, #000 0%, #0d538c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dark {
  color: #14203c;
}
.white {
  color: #fff;
}
.grey {
  color: #5c6987;
}
.dark-grey {
  color: #535353;
}
.black {
  color: #000;
}
.yellow {
  color: #eed960;
}
.blue {
  color: #368bc8;
}

.dark-blue {
  color: #255190;
}


.bg-white {
  background-color: #fff;
}
.bg-blue {
  background-color: #368bc8;
}
.bg-linear-primary {
  background: linear-gradient(178deg, #368bc8 0%, #2fa9df 100%);
}
.bg-grey {
  background-color: #EFF0F3;
}
.bg-light-blue {
  background-color: #E8EBF4;
}
.bg-hero-section {
  background: #115F96;
}
.bg-banner {
  background: linear-gradient(90deg, #eff0f3 96.87%, #2fa7dd 97.16%);
}