.hexfront-core {
  position: relative;
  width: 100%;
}
.hexfront-core__container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 65px;
}
@media (max-width: 1024px) {
  .hexfront-core__container {
    flex-direction: column-reverse;
  }
}
.hexfront-core__visual {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.hexfront-core__img-wrapper {
  position: relative;
  border-radius: 4px;
}
.hexfront-core__img-wrapper-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hexfront-core__img-wrapper-inner img.hexfront-core__main-img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hexfront-core__img-wrapper:hover .hexfront-core__img-wrapper-inner img.hexfront-core__main-img {
  transform: scale(1.05);
}
.hexfront-core__content {
  flex: 1;
  min-width: 300px;
  color: #ffffff;
  max-width: 735px;
}
.hexfront-core__title {
  margin: 0;
  margin-bottom: 20px;
}
.hexfront-core__desc {
  opacity: 0.8;
  color: #9f9fb4;
}
.hexfront-core__desc p {
  color: #9f9fb4;
  margin-bottom: 15px;
}

.hexfront-magic-scene {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .hexfront-magic-scene {
    right: 35%;
  }
}
@media (max-width: 768px) {
  .hexfront-magic-scene {
    right: 15%;
  }
}

.hexfront-magic__wand-wrapper {
  position: absolute;
  z-index: 5;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom left;
  bottom: -8px;
  right: -68px;
  transform-origin: center center;
  transform: rotate(25deg);
}
.hexfront-magic__wand-wrapper .hexfront-magic__wand {
  width: 121px;
  height: auto;
  display: block;
}

.hexfront-magic__trail-wrapper {
  position: absolute;
  bottom: 40px;
  left: 50px;
  z-index: 4;
  opacity: 0;
  transform: scale(0.8) translate(-10px, 10px);
  transition: all 0.4s ease-out;
}
.hexfront-magic__trail-wrapper .hexfront-magic__trail {
  width: 80px;
  height: auto;
}

.hexfront-magic__stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hexfront-magic__stars .hexfront-magic__star {
  position: absolute;
  width: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}
.hexfront-magic__stars .hexfront-magic__star.star-1 {
  top: 20%;
  left: 60%;
  width: 18px;
  transition-delay: 0.1s;
}
.hexfront-magic__stars .hexfront-magic__star.star-2 {
  top: 40%;
  left: 80%;
  width: 24px;
  transition-delay: 0.2s;
}
.hexfront-magic__stars .hexfront-magic__star.star-3 {
  top: 55%;
  left: 50%;
  width: 14px;
  transition-delay: 0.15s;
}

.hexfront-magic-scene:hover .hexfront-magic__wand-wrapper {
  transform: rotate(5deg) translateY(-5px);
}
.hexfront-magic-scene:hover .hexfront-magic__trail-wrapper {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}
.hexfront-magic-scene:hover .hexfront-magic__star {
  opacity: 1;
}
.hexfront-magic-scene:hover .hexfront-magic__star.star-1 {
  transform: translate(10px, -30px) scale(1.1) rotate(5deg);
}
.hexfront-magic-scene:hover .hexfront-magic__star.star-2 {
  transform: translate(-28px, -22px) scale(1) rotate(-10deg);
}
.hexfront-magic-scene:hover .hexfront-magic__star.star-3 {
  transform: translate(-5px, -65px) scale(1.2) rotate(45deg);
}/*# sourceMappingURL=hexfront-core.css.map */