/* никальный header */
.uniq-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gold);
}

.uniq-header .nav-left .header-nav-text {
  color: var(--grey);
}

.uniq-header .nav-right .header-nav-text {
  color: var(--grey);
}

.uniq-header .nav-right .burger-menu svg {
  color: var(--grey);
}
/* Уникальный header */

.ecosystem-hero {
  display: flex;
  flex-direction: column;
  /* padding: 80px 80px 78px 80px; */
  position: relative;
  overflow: hidden;
}

.ecosystem-hero__up {
  padding-top: 146px;
  width: 100%;
  height: 90dvh;
  background-image: url("../assets/images/ecosystem/hero/circle-up.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecosystem-hero__up .title-h1 {
  color: var(--gold);
  font-weight: 400;
    word-spacing: 100cqw;
}

.ecosystem-hero__up .title-h4 {
  text-align: center;
  color: var(--gold);
}

.ecosystem-hero__down {
  width: 100%;
  height: 90dvh;
  background-image: url("../assets/images/ecosystem/hero/circle-down.svg");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ecosystem-hero__down .title-h3 {
  text-align: center;
}

.ecosystem-hero__down .body1 {
  text-align: center;
  color: var(--grey);
}
/* анимированный блок */
.ecosystem-hero__animate {
  width: 100%;

  position: absolute;
  top: 30%;
  /* left: 0; */
}

.ecosystem-hero__animate-wrapper {
  width: 100%;
  height: 100%;
  min-height: 610px;
  display: flex;
  justify-content: center;
  position: relative;
}

.circle-hero {
  background-color: var(--white);
  border-radius: 50%;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--light-gold);
}

.circle-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-center {
  position: relative;
}

.circle-center__logo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
}

.circle-center__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* кружочки по бокам */
.circle-center-wrapper {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 572px;
  height: 572px;
}

.circle-left1 {
  width: 344px;
  height: 344px;
  position: absolute;
  z-index: 2;
  top: 50%;
}

.circle-right1 {
  width: 344px;
  height: 344px;
  position: absolute;
  z-index: 2;
  top: 50%;
}

.circle-left2 {
  width: 266px;
  height: 266px;
  position: absolute;
  z-index: 1;
  top: 65%;
}

.circle-right2 {
  width: 266px;
  height: 266px;
  position: absolute;
  z-index: 1;
  top: 65%;
}
/* кружочки по бокам */

@keyframes centerWrapperScale {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes logoMove {
  0% {
    transform: translate(-50%, -200%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

@keyframes circleLeft1Move {
  0% {
    left: 50%;
    opacity: 0.7;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 33%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes circleLeft2Move {
  0% {
    left: 50%;
    opacity: 0.7;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 23%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes circleRight1Move {
  0% {
    right: 50%;
    opacity: 0;
    transform: translate(0, -50%);
  }
  100% {
    right: 13%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes circleRight2Move {
  0% {
    right: 50%;
    opacity: 0;
    transform: translate(0, -50%);
  }
  100% {
    right: 6%;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Начальное состояние для анимации */
.circle-center-wrapper {
  transform: translate(-50%, -50%) scale(0.8);
}

.circle-center__logo {
  transform: translate(-50%, -200%);
}

.circle-left1 {
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.circle-left2 {
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.circle-right1 {
  right: 0;
  opacity: 0;
  transform: translate(50%, -50%);
}

.circle-right2 {
  right: 0;
  opacity: 0;
  transform: translate(50%, -50%);
}

.ecosystem-hero.animate-active .circle-center-wrapper {
  animation: centerWrapperScale 1.2s ease-out forwards;
}

.ecosystem-hero.animate-active .circle-center__logo {
  animation: logoMove 1.2s ease-out 0.3s forwards;
}

.ecosystem-hero.animate-active .circle-left1 {
  animation: circleLeft1Move 1s ease-out 0.2s forwards;
}

.ecosystem-hero.animate-active .circle-left2 {
  animation: circleLeft2Move 1s ease-out 0.4s forwards;
}

.ecosystem-hero.animate-active .circle-right1 {
  animation: circleRight1Move 1s ease-out 0.6s forwards;
}

.ecosystem-hero.animate-active .circle-right2 {
  animation: circleRight2Move 1s ease-out 0.8s forwards;
}

/* анимированный блок */

.ecosystem-children-section {
  display: flex;
  flex-direction: column;
}

.section-services-heading {
  padding: 140px 0 80px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.section-heading-container__logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.section-heading-subtitle-g {
  color: var(--grey);
  text-align: center;
}

.section-heading-subtitle-w {
  color: var(--white);
  text-align: center;
}

.section-heading-container__title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.section-heading-container__title .title-h2 {
  font-weight: 300;
}

.section-heading-container__title .title-h4 {
  font-weight: 300;
  text-align: center;
}

.ecosystem-children-container {
  width: 100%;
  height: 100dvh;
  position: relative;
}

.ecosystem-children-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-children-block {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: var(--white);
  padding: 60px 0 52px;
}

.children-block-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 60px 36px 40px;
  border-bottom: 1px solid var(--light-gold);
  background-color: var(--white);
  transition: 0.3s ease-in-out;
}

.children-block-item__wrapper {
  display: flex;
  gap: 20px;
}

.block-item__img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  flex-shrink: 1;
}

.block-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-item__description {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* flex-grow: 1; */
}

.block-item__description .body1 {
  color: var(--grey);
}

.block-item__description .btn-tertiary {
  align-self: flex-start;
  display: none;
}

.block-item__description-title {
  display: flex;
  justify-content: space-between;
}

.block-item__description-title .title-h3 {
  color: var(--grey);
}

.block-item__description-title .body1 {
  color: var(--grey);
}

/* ховера */

.children-block-item:hover {
  background-color: var(--beige);
}

.children-block-item:hover .block-item__description .btn-tertiary {
  display: flex;
}

/* скролл */

.scroll-slide-up {
  transform: translateY(100%);
}

/* скролл */

.ecosystem-beauty-section {
  display: flex;
  flex-direction: column;
}

.ecosystem-beauty-container {
  width: 100%;
  height: 100dvh;
  position: relative;
}

.ecosystem-beauty-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-first-block,
.ecosystem-second-block,
.ecosystem-third-block {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: var(--white);
  padding: 80px 0 52px;
}

.ecosystem-first-block,
.ecosystem-second-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 80px 52px 50px;
}

.beauty-block-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0 36px 0;
  border-bottom: 1px solid var(--light-gold);
  background-color: var(--white);
}

.beauty-block-item__wrapper {
  display: flex;
  gap: 20px;
}

.ecosystem-third-block {
  padding: 80px 80px 52px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.beauty-block-item__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 37px;
}

.beauty-block-item__container-descript {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.beauty-block-item__container-descript .body1 {
  color: var(--grey);
}

.tags-container {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 10px;
  background-color: var(--beige);
  display: flex;
  justify-content: center;
  align-items: center;
}
.tag .body1 {
  color: var(--grey);
  white-space: nowrap;
}

.beauty-block-item__container-tabs {
  display: flex;
  flex-direction: column;
}

.img-tab {
  width: 108px;
  height: 108px;
  padding: 10px;
  cursor: pointer;
}

.img-tab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-tab.active {
  border: 1px solid var(--light-gold);
}
/* 
[data-gallery-target] {
  transition: opacity 3s ease-in-out;
} */

.ecosystem-leasure-section {
  display: flex;
  flex-direction: column;
}

.ecosystem-leasure-container {
  width: 100%;
  height: 100dvh;
  position: relative;
}

.ecosystem-subheading-container {
  padding: 0 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.subheading-title-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.subheading-title-container .title-h3 {
  color: var(--grey);
}

.ecosystem-subheading-container .body1 {
  color: var(--grey);
  text-align: center;
}

.subheading-tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.subhead-tag {
  padding: 10px;
  background-color: var(--beige);
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(25% - 10px);
}

.subhead-tag .body1 {
  color: var(--grey);
}

.ecosystem-leasure-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leasure-block-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0 36px 0;
  border-bottom: 1px solid var(--light-gold);
  background-color: var(--white);
  transition: 0.3s ease-in-out;
}

.leasure-block-item__wrapper {
  display: flex;
  gap: 20px;
}

.leasure-block-item .block-item__description {
  justify-content: space-between;
}

.block-item__description .btn-drawer {
  font-weight: 400;
  display: flex;
}

.community-block-item .title-h3 {
  color: var(--grey);
}

.ecosystem-beauty-container__mobile {
  display: none;
}

.ecosystem-leasure-banner__mobile {
  display: none;
}

/* стили драввер */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(167, 151, 123, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.drawer-panel {
  position: relative;
  width: calc(50% + 16px);
  height: 100dvh; /* поменяли со 100% на 100dvh */
  background-color: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 80px 50px 30px;
  display: flex;
  overflow-y: auto;
}

.drawer-overlay.active .drawer-panel {
  transform: translateX(0);
}

.drawer-close {
  position: fixed; 
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.drawer-close img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px; 
}

.drawer-content-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 25%;
  margin-bottom: 60px;
}

.drawer-content-title .title-h4 {
  color: var(--grey);
}

.drawer-content-title .body1 {
  color: var(--grey);
}

.drawer-content-title .btn-primary {
  align-self: start;
}

/* слайдер в дравере */
.beauty-container-slider__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beauty-container-slider {
  width: 100%;
}

.slider-img {
  width: 100%;
  height: 380px;
  max-height: 380px;
}

.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beauty-container-slider .splide__track {
  overflow: hidden;
}

.beauty-container-slider .splide__list {
  display: flex;
}

.beauty-container-slider .splide__slide {
  flex-shrink: 0;
}

.slider-count {
  color: var(--grey);
}

.slider-count .current {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.slider-count .current.fade-out {
  transform: translateY(-10px);
  opacity: 0;
}

.slider-count .current.fade-in {
  transform: translateY(0);
  opacity: 1;
}

.beauty-container-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.slider-arrow {
  width: 40px;
  height: 30px;
  cursor: pointer;
}

.slider-arrow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* слайдер в дравере */

body.drawer-open {
  overflow: hidden;
}
/* стили драввер */

@media (max-width: 1600px) {
  .ecosystem-hero__down .title-h3 {
    padding-top: 140px;
  }

  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 30%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 18%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: 8%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: 2%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}

@media (max-width: 1440px) {
  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 27%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 14%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: 2%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: -5%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  .slider-img {
    width: 100%;
    height: 370px;
    max-height: 370px;
  }

  .ecosystem-children-block {
    padding: 10px 0;
  }
}

@media (max-width: 1440px) and (max-height: 825px) {
  .ecosystem-hero__down {
    width: 100%;
    height: 95dvh;
    justify-content: flex-end;
    padding-bottom: 68px;
  }
  .children-block-item {
    padding: 20px 20px 30px 20px;
  }
}

@media (max-width: 1280px) {
  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 24%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 10%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: -5%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: -11%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

 .ecosystem-children-block {
    padding: 10px 0;
  }

  .children-block-item__wrapper {
    gap: 15px;
  }

  .children-block-item {
    padding: 20px 20px 30px 20px;
  }

  .children-block-item__wrapper .block-item__description .title-h3 {
    font-size: 32px;
  }

  .ecosystem-first-block,
  .ecosystem-second-block {
    padding: 80px 30px 52px 20px;
  }

  .ecosystem-third-block {
    padding: 80px 30px 52px 20px;
  }

  .drawer-panel {
    padding: 60px 24px 20px;
  }
}

@media (max-width: 1360px) and (max-height: 735px) {
  .ecosystem-hero__down {
    padding-top: 280px;
    height: max-content;
    padding-bottom: 68px;
  }
}

@media (max-width: 1024px) {
  .section-services-heading {
    padding: 100px 24px 60px 24px;
  }

  .ecosystem-subheading-container {
    padding: 0 24px 60px;
  }

  .ecosystem-hero__animate-wrapper {
    min-height: 408px;
  }

  .circle-hero {
    padding: 10px;
  }

  .circle-center-wrapper {
    width: 360px;
    height: 360px;
  }

  .circle-center__logo {
    width: 48px;
    height: 48px;
  }

  .circle-left1 {
    width: 240px;
    height: 240px;
  }

  .circle-right1 {
    width: 240px;
    height: 240px;
  }

  .circle-left2 {
    width: 180px;
    height: 180px;
  }

  .circle-right2 {
    width: 180px;
    height: 180px;
  }

  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 30%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 18%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: 4%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: -3%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  .ecosystem-hero__up {
    padding-top: 126px;
    height: 80dvh;
  }

  .ecosystem-hero__animate {
    top: 30%;
  }

  .ecosystem-hero__down {
    justify-content: flex-start;
    height: max-content;
    padding: 140px 24px;
  }

  .ecosystem-hero__down .title-h3 {
    padding: 0;
  }

  .ecosystem-children-block {
    width: 55%;
  }

  .children-block-item {
    padding: 20px 16px 26px 16px;
  }

  .children-block-item__wrapper {
    gap: 10px;
  }

  .block-item__img {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }

  .ecosystem-first-block,
  .ecosystem-second-block {
    padding: 80px 16px 52px 16px;
  }

  .ecosystem-third-block {
    padding: 80px 16px 52px 16px;
  }

  .beauty-block-item {
    padding: 20px 0 26px 0;
  }

  .drawer-content-title {
    padding-right: 10%;
    margin-bottom: 20px;
  }

  .slider-img-drawer {
    height: 320px !important;
  }
}

@media (max-width: 800px) {
  .ecosystem-hero__animate {
    top: 33%;
  }

  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 26%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      left: 12%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: -5%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      right: -11%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}

@media (max-width: 768px) {
  .ecosystem-children-container {
    display: flex;
    flex-direction: column;
    height: max-content;
  }

  .ecosystem-children-block {
    position: static;
    width: 100%;
    padding: 60px 16px 0;
  }
  .children-block-item {
    padding: 20px 0 30px;
  }

  .children-block-item:hover {
    background-color: var(--white);
  }

  .block-item__description .btn-tertiary {
    display: flex;
  }

  .scroll-slide-up {
    transform: translateY(0);
  }

  .ecosystem-first-block,
  .ecosystem-second-block {
    justify-content: flex-start;
    position: static;
    height: max-content;
    width: 100%;
  }

  .ecosystem-first-block {
    padding: 60px 16px 0;
  }

  .ecosystem-second-block {
    padding: 0 16px 40px;
  }

  .d-none-mobile {
    display: none;
  }

  .d-none-container {
    display: none;
  }

  .ecosystem-beauty-list__mobile {
    display: flex;
    flex-direction: column;
    height: max-content;
  }

  .ecosystem-beauty-container__mobile {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 16px 40px;
  }

  .ecosystem-beauty-container__mobile .body1 {
    color: var(--grey);
  }

  .beauty-container-slider__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .beauty-container-slider {
    width: 100%;
  }

  .slider-img {
    width: 100%;
    height: 380px;
    max-height: 380px;
  }

  .slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .beauty-container-slider .splide__track {
    overflow: hidden;
  }

  .beauty-container-slider .splide__list {
    display: flex;
  }

  .beauty-container-slider .splide__slide {
    flex-shrink: 0;
  }

  .slider-count .current {
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .slider-count .current.fade-out {
    transform: translateY(-10px);
    opacity: 0;
  }

  .slider-count .current.fade-in {
    transform: translateY(0);
    opacity: 1;
  }

  .beauty-container-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
  }

  .slider-arrow {
    width: 40px;
    height: 30px;
    cursor: pointer;
  }

  .slider-arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .ecosystem-subheading-container {
    align-items: flex-start;
  }

  .subheading-title-container {
    flex-direction: row;
    align-items: flex-end;
  }

  .subheading-title-container .title-h3 {
    order: 2;
  }

  .subheading__img {
    order: 1;
  }

  .ecosystem-subheading-container .body1 {
    text-align: left;
  }

  .subheading-tags {
    justify-content: flex-start;
  }

  .subhead-tag {
    width: auto;
  }

  .ecosystem-leasure-container {
    height: max-content;
  }

  .leasure-container__mobile {
    padding: 60px 16px 40px;
  }

  .ecosystem-leasure-banner__mobile {
    display: flex;
    min-height: 420px;
    height: 420px;
    width: 100%;
    margin-bottom: 60px;
  }

  .ecosystem-leasure-banner__mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .drawer-panel {
    width: 100%;
    padding: 60px 16px 20px;
    overflow-y: auto;
    height: 100dvh;
  }
  
  .drawer-content {
    gap: 20px;  
    justify-content: flex-start;
  }

  .drawer-content-title {
    padding-right: 0;
    order: 2;
    margin-bottom: 0;
  }

  .drawer-content-title .btn-primary {
    align-self: center;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .drawer-slider-position {
    order: 1;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .section-services-heading {
    padding: 100px 16px 60px 16px;
  }

  .ecosystem-subheading-container {
    padding: 0 16px 60px;
  }

  .ecosystem-children-section
    .section-services-heading
    .section-heading-container__title
    .title-h2
    br {
    display: none;
  }

  .ecosystem-children-section
    .section-services-heading
    .section-heading-container__title
    .title-h4
    br {
    display: none;
  }

  .ecosystem-beauty-section
    .section-services-heading
    .section-heading-container__title
    .title-h2
    br {
    display: none;
  }

  .ecosystem-beauty-section
    .section-services-heading
    .section-heading-container__title
    .title-h4
    br {
    display: none;
  }

  .ecosystem-leasure-section
    .section-services-heading
    .section-heading-container__title
    .title-h2
    br {
    display: none;
  }

  .ecosystem-leasure-section
    .section-services-heading
    .section-heading-container__title
    .title-h4
    br {
    display: none;
  }

  .ecosystem-community-section
    .section-services-heading
    .section-heading-container__title
    .title-h2
    br {
    display: none;
  }

  .ecosystem-community-section
    .section-services-heading
    .section-heading-container__title
    .title-h4
    br {
    display: none;
  }

  .ecosystem-hero__animate-wrapper {
    min-height: 204px;
  }

  .circle-hero {
    padding: 6px;
  }

  .circle-center-wrapper {
    width: 160px;
    height: 160px;
  }

  .circle-center__logo {
    width: 32px;
    height: 32px;
  }

  .circle-left1 {
    width: 140px;
    height: 140px;
  }

  .circle-right1 {
    width: 140px;
    height: 140px;
  }

  .circle-left2 {
    width: 100px;
    height: 100px;
  }

  .circle-right2 {
    width: 100px;
    height: 100px;
  }

  .ecosystem-hero__up {
    height: max-content;
    padding: 124px 16px 160px;
    background-size: cover;
  }

  .ecosystem-hero__animate {
    top: 35%;
  }

  .ecosystem-hero__down {
    padding: 160px 16px 80px;
  }

  .ecosystem-hero__down .title-h3 br {
    display: none;
  }

  .ecosystem-hero__down .body1 br {
    display: none;
  }

  .slider-img {
    width: 100%;
    height: 320px;
    max-height: 320px;
  }

  .ecosystem-subheading-container .body1 br {
    display: none;
  }

  .ecosystem-leasure-banner__mobile {
    min-height: 360px;
    height: 360px;
  }

  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 52%;
      left: 33%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 60%;
      left: 20%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 52%;
      right: 8%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 60%;
      right: 3%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

}

@media (max-width: 520px) {
  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 52%;
      left: 28%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
   @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 60%;
      left: 12%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 52%;
      right: 3%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 60%;
      right: -4%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}

@media (max-width: 485px) {
  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 52%;
      left: 28%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 60%;
      left: 12%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 52%;
      right: -2%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 60%;
      right: -10%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}

@media (max-width: 430px) {
  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 52%;
      left: 28%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 60%;
      left: 12%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 52%;
      right: -5%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 60%;
      right: -12%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}

@media (max-width: 402px) {
  @keyframes circleLeft1Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 52%;
      left: 28%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleLeft2Move {
    0% {
      left: 50%;
      opacity: 0.7;
      transform: translate(-50%, -50%);
    }
    100% {
      top: 60%;
      left: 12%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 52%;
      right: -8%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 60%;
      right: -13%; 
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}

@media (max-width: 375px) {
  @keyframes circleRight1Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 52%;
      right: -10%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @keyframes circleRight2Move {
    0% {
      right: 50%;
      opacity: 0;
      transform: translate(0, -50%);
    }
    100% {
      top: 60%;
      right: -16%;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}
