.home-hero {
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow-x: hidden;
}
.home-hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.home-hero__text {
  font-family: 'Space Grotesk', sans-serif;
  flex-basis: 55%;
  padding-right: 30px;
  font-size: 56px;
  line-height: 1.2;
}
.home-hero__carousel {
  flex-basis: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 420px;
}
.home-hero__carousel-images {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 500px;
  margin-bottom: 25px;
}
.home-hero__image,
.home-hero__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  border-radius: 8px;
  /*box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);*/
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transform-origin: center center;
  transform: scale(0.85) translateX(25%);
  opacity: 0.6;
  z-index: 1;
  background: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(40px);
}
.home-hero__image.active,
.home-hero__card.active {
  transform: scale(1) translateX(0);
  opacity: 1;
  z-index: 2;
}
.home-hero__card_inner {
  padding: 40px 60px;
}
.home-hero__card_inner .content {
  padding-bottom: 40px;
}
.home-hero__card_inner .content:last-child {
  padding-bottom: 0px;
}
.home-hero__card_inner .title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.home-hero__card_inner .description {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  padding-top: 10px;
}
.home-hero__carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  gap: 12px;
}
.home-hero__nav-dot {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #8DBF00;
}
.home-hero__nav-dot.active {
  background-color: #8DBF00;
  border-color: #8DBF00;
}
.home-hero .wrp-buttons {
  display: flex;
  width: 100%;
  justify-content: end;
}
.home-hero .wrp-buttons .rotation-button {
  position: absolute;
  bottom: -8px;
  right: 50%;
}
@media (max-width: 768px) {
  .home-hero__container {
    flex-direction: column;
    text-align: center;
  }
  .home-hero__text {
    flex-basis: 100%;
    font-size: 40px;
    padding-right: 0;
    line-height: 100%;
    text-align: left;
    margin-bottom: 60px;
  }
  .home-hero__carousel {
    flex-basis: 100%;
    width: 100%;
    align-items: center;
  }
  .home-hero__carousel-images {
    max-width: 420px;
    min-height: 400px;
    margin-left: 0px;
  }
  .home-hero__image {
    transform: scale(0.9) translateX(15%);
  }
  .home-hero__image.active {
    transform: scale(1) translateX(0);
  }
  .home-hero__carousel-nav {
    width: 100%;
  }
  .home-hero .wrp-buttons .rotation-button {
    right: 60%;
  }
}
/*# sourceMappingURL=./home-hero.css.map */