/* ==========================================================================
   Hexfront Hero Section Widget Styles
   ========================================================================== */
.hexfront-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 1080px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hexfront-hero-section {
    min-height: 80vh;
    height: 835px;
  }
}
@media (max-width: 800px) {
  .hexfront-hero-section {
    height: 630px;
  }
}
@media (max-width: 768px) {
  .hexfront-hero-section {
    min-height: 70vh;
    height: 870px;
  }
}

/* Background */
.hexfront-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hexfront-hero-image,
.hexfront-hero-video-fallback {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hexfront-hero-image,
  .hexfront-hero-video-fallback {
    background-position: right 15% center;
  }
}

.hexfront-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
@media (max-width: 768px) {
  .hexfront-hero-video {
    display: none;
  }
}

.hexfront-hero-video-fallback {
  display: none;
}
@media (max-width: 768px) {
  .hexfront-hero-video-fallback {
    display: block;
  }
}

/* Overlay */
.hexfront-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(260deg, rgba(24, 26, 32, 0) 17%, #181A20 100%);
  z-index: 2;
}

/* Shadow Blocks */
.hexfront-hero-shadows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* Rectangle 11 - Bottom to top gradient */
.hexfront-hero-shadow-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(24, 26, 32, 0) 73.95%, rgba(24, 26, 32, 0.7) 96.25%, #181A20 100%);
}

/* Rectangle 14 - Right to left gradient */
.hexfront-hero-shadow-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(270.01deg, rgba(24, 26, 32, 0.5490196078) 0.01%, rgba(24, 26, 32, 0) 11.61%);
}

/* Rectangle 15 - Left to right gradient */
.hexfront-hero-shadow-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(270.01deg, rgba(24, 26, 32, 0) 33.24%, #181A20 99.99%);
}
@media (max-width: 800px) {
  .hexfront-hero-shadow-3 {
    background: linear-gradient(270.01deg, rgba(24, 26, 32, 0) 13.24%, #181A20 99.99%);
  }
}
@media (max-width: 768px) {
  .hexfront-hero-shadow-3 {
    background: linear-gradient(270.01deg, rgba(24, 26, 32, 0) 33.24%, #181A20 99.99%);
  }
}

/* Rectangle 12 - Radial gradient */
.hexfront-hero-shadow-4 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(270.01deg, rgba(24, 26, 32, 0) 53.24%, #181A20 99.99%);
}

/* Rectangle 13 - Bottom to top gradient */
.hexfront-hero-shadow-5 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(360deg, rgba(24, 26, 32, 0) 47%, #181A20 100%);
}

/* Content */
.hexfront-hero-content {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 75px;
  z-index: 10;
}
@media (max-width: 1024px) {
  .hexfront-hero-content {
    padding: 0 75px;
  }
}
@media (max-width: 768px) {
  .hexfront-hero-content {
    padding: 0 25px;
    text-align: left;
  }
}

.hexfront-hero-content-inner {
  max-width: 800px;
}
@media (max-width: 768px) {
  .hexfront-hero-content-inner {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Title */
.hexfront-hero-title {
  font-family: "Gemunu Libre", sans-serif;
  font-weight: 700;
  font-size: 76px;
  line-height: 68px;
  text-transform: uppercase;
  color: #D6D6E1;
  margin: 0;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .hexfront-hero-title {
    font-size: 70px;
  }
}
@media (max-width: 1024px) {
  .hexfront-hero-title {
    font-size: 56px;
    margin: 0 0 24px 0;
  }
}
@media (max-width: 768px) {
  .hexfront-hero-title {
    font-size: 40px;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 480px) {
  .hexfront-hero-title {
    font-size: 32px;
  }
}
.hexfront-hero-title .accent {
  position: relative;
  display: inline-block;
  overflow: visible;
  padding: 0.1em 0;
}
.hexfront-hero-title .accent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-1deg) scale(1.1);
  width: 110%;
  height: 130%;
  background-image: url("../images/underline-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  pointer-events: none;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: drawBrushStroke 1.1s ease-out 0.75s forwards;
}
.hexfront-hero-title .accent .word {
  display: inline-block;
  transform: rotate(-3deg);
}
@media (max-width: 768px) {
  .hexfront-hero-title .small {
    font-size: 48px;
    line-height: 68px;
  }
}

@keyframes drawBrushStroke {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/* Description */
.hexfront-hero-description {
  max-width: 628px;
  font-family: "Gemunu Libre";
  font-style: normal;
  color: #9F9FB4;
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 24px;
  line-height: 26px;
}
@media (max-width: 768px) {
  .hexfront-hero-description {
    max-width: 340px;
  }
}
.hexfront-hero-description .underlined-text {
  position: relative;
  display: inline-block;
  color: inherit;
}
.hexfront-hero-description .underlined-text .underline-svg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 17px;
  pointer-events: none;
  bottom: -17px;
  left: 37px;
  transform: scale(1.5);
}

/* Button */
.hexfront-hero-button-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  left: -65px;
  position: relative;
}
@media (max-width: 1024px) {
  .hexfront-hero-button-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .hexfront-hero-button-wrapper {
    justify-content: center;
    gap: 12px;
    flex-direction: column-reverse;
    max-width: max-content;
    align-items: flex-start;
    left: 0;
  }
}

.hexfront-hero-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  animation: slideRightToLeft 1.5s linear infinite;
}
@media (max-width: 1024px) {
  .hexfront-hero-button-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .hexfront-hero-button-icon {
    width: 36px;
    height: 36px;
    position: relative;
    left: calc(50% - 18px);
    transform: translateX(-50%);
    animation: slideTopBottom 1.5s linear infinite;
  }
}
.hexfront-hero-button-icon svg,
.hexfront-hero-button-icon i {
  width: 100%;
  height: 100%;
  color: #FF1856;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .hexfront-hero-button-icon svg,
  .hexfront-hero-button-icon i {
    transform: rotate(265deg);
  }
}

@keyframes slideRightToLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideTopBottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.hexfront-hero-button {
  position: relative;
  width: auto;
  border: none;
  padding: 12px 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: filter 0.5s ease, transform 0.2s ease, opacity 0.3s ease;
  color: #FFFFFF;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .hexfront-hero-button {
    padding: 10px 32px;
  }
}
@media (max-width: 768px) {
  .hexfront-hero-button {
    padding: 8px 28px;
  }
}
.hexfront-hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(272.49deg, #FF00B2 0%, #FF1F48 125.48%);
  clip-path: polygon(0 0, 94.44% 0, 100% 30%, 100% 100%, 0 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
}
.hexfront-hero-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(272.49deg, #FF00B2 0%, #FF1F48 125.48%);
  opacity: 0;
  clip-path: polygon(0 0, 94.44% 0, 100% 30%, 100% 100%, 0 100%);
  transition: opacity 0.5s ease;
  z-index: 1;
}
.hexfront-hero-button:hover::after {
  opacity: 1;
}
.hexfront-hero-button:hover {
  filter: drop-shadow(0px 0px 10px rgba(255, 17, 121, 0.4));
}
.hexfront-hero-button:active {
  filter: drop-shadow(0px 0px 20px rgba(255, 17, 121, 0.6));
}
.hexfront-hero-button .to-top-text {
  position: relative;
  z-index: 2;
  font-family: "Gemunu Libre";
  font-style: normal;
  text-align: center;
  color: #FFFFFF;
  white-space: nowrap;
  font-weight: 600;
  font-size: 24px;
  line-height: 26px;
}
.hexfront-hero-button.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Hover effect for icon */
.hexfront-hero-button-wrapper:hover .hexfront-hero-button-icon svg,
.hexfront-hero-button-wrapper:hover .hexfront-hero-button-icon i {
  color: #FF00B2;
}

.hexfront-hero-button-text {
  white-space: nowrap;
}

/* Elementor Editor Fixes */
.elementor-editor-active .hexfront-hero-section {
  min-height: 600px;
}/*# sourceMappingURL=hexfront-hero-section.css.map */