/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[3]!./src/blocks/landing/hero-landing/main.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
:root {
  --main-title: 72px;
  --accent: #AA076B;
  --text-primary: #263238;
  --text-secondary: #5D6375;
}

.hero {
  padding: 200px 0 80px;
}
.hero__content {
  display: flex;
  gap: 60px;
  align-items: center;
}
.hero__text {
  width: 100%;
  max-width: 780px;
}
.hero__title {
  font-size: var(--main-title);
  font-weight: 700;
  line-height: 105%;
  margin-bottom: 22px;
  color: var(--text-primary);
}
.hero__title b {
  color: var(--accent);
}
.hero__subtitle {
  font-weight: 400;
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.hero__btn {
  display: flex;
}
.hero__slider {
  width: 100%;
  max-width: 430px;
}
.hero-landing-admin {
  padding: 0;
}

.hero .wrap h1.hero-title-admin {
  font-size: 42px;
}
.hero .wrap h1.hero-title-admin b {
  color: #AA076B;
}

.testimonials {
  position: relative;
}
.testimonials__slider {
  position: relative;
  height: 430px;
}
.testimonials__slider .swiper-slide {
  display: flex;
}
.testimonials__slider .swiper-slide img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.testimonials__pagination {
  right: -66px !important;
}

@keyframes settleFromTop {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-40px);
  }
  70% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
.swiper-slide.bounce-center {
  animation: settleFromTop 1s ease-in-out forwards;
  z-index: 2;
}

/* TABLET */
@media only screen and (max-width: 1024px) {
  :root {
    --main-title: 64px;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 90px;
  }
  .hero__slider {
    margin: 0 auto;
  }
  .hero__btn {
    display: none;
  }
  .testimonials__pagination {
    display: none;
  }
}
/* END TABLET */
/* MOBILE */
@media only screen and (max-width: 576px) {
  :root {
    --main-title: 40px;
  }
  .hero {
    padding: 100px 0 40px;
  }
  .hero__content {
    gap: 70px;
  }
  .testimonials__slider {
    height: 300px;
  }
}
/* MOBILE END */

/*# sourceMappingURL=index.css.map*/