:root {
  --tl-fx-accent: #b8874f;
  --tl-fx-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
  --tl-fx-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.tl-fx-hover-zoom,
.tl-fx-hover-zoom-soft,
.tl-fx-hover-lift,
.tl-fx-parallax-soft,
.tl-fx-parallax-medium,
.tl-fx-parallax-strong,
.tl-fx-frame,
.tl-fx-glass,
.tl-fx-rotate-continuous {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.tl-fx-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  pointer-events: none;
}

.tl-fx-glass {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--tl-fx-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tl-fx-hover-zoom img,
.tl-fx-hover-zoom-soft img,
.tl-fx-parallax-soft img,
.tl-fx-parallax-medium img,
.tl-fx-parallax-strong img,
.tl-fx-reveal-fill img {
  width: 100%;
  height: auto;
  transform: translate3d(0, var(--tl-fx-shift, 0px), 0) scale(var(--tl-fx-scale, 1));
  transition:
    transform 800ms var(--tl-fx-ease),
    filter 600ms var(--tl-fx-ease);
  will-change: transform;
}

.tl-fx-hover-zoom:hover img,
.tl-fx-hover-zoom:focus-within img {
  --tl-fx-scale: 1.08;
}

.tl-fx-hover-zoom-soft:hover img,
.tl-fx-hover-zoom-soft:focus-within img {
  --tl-fx-scale: 1.03;
}

.tl-fx-hover-lift {
  transition:
    transform 320ms var(--tl-fx-ease),
    box-shadow 320ms var(--tl-fx-ease),
    filter 320ms var(--tl-fx-ease);
}

.tl-fx-hover-lift:hover,
.tl-fx-hover-lift:focus-within {
  transform: translateY(-12px);
  box-shadow: var(--tl-fx-shadow);
}

.tl-fx-reveal,
.tl-fx-reveal-left,
.tl-fx-reveal-right,
.tl-fx-reveal-zoom,
.tl-fx-reveal-fill {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 720ms var(--tl-fx-ease),
    transform 900ms var(--tl-fx-ease),
    filter 720ms var(--tl-fx-ease);
  will-change: transform, opacity;
}

.tl-fx-reveal {
  transform: translate3d(0, 40px, 0);
}

.tl-fx-reveal-left {
  transform: translate3d(-44px, 0, 0);
}

.tl-fx-reveal-right {
  transform: translate3d(44px, 0, 0);
}

.tl-fx-reveal-zoom {
  transform: translate3d(0, 26px, 0) scale(0.94);
}

.tl-fx-reveal-fill {
  filter: none;
  transform: translate3d(0, 18px, 0);
}

.tl-fx-reveal-fill img {
  opacity: 0;
  clip-path: inset(18% 18% 18% 18%);
  --tl-fx-scale: 1.12;
  backface-visibility: hidden;
  transition:
    clip-path 1.05s cubic-bezier(0.22, 0.9, 0.2, 1),
    transform 1.05s cubic-bezier(0.22, 0.9, 0.2, 1),
    opacity 0.45s ease-out;
  will-change: clip-path, transform, opacity;
}

.tl-fx-reveal.is-visible,
.tl-fx-reveal-left.is-visible,
.tl-fx-reveal-right.is-visible,
.tl-fx-reveal-zoom.is-visible,
.tl-fx-reveal-fill.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.tl-fx-reveal-fill.is-visible img {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  --tl-fx-scale: 1;
}

.tl-fx-reveal-fill.tl-fx-hover-zoom:hover img,
.tl-fx-reveal-fill.tl-fx-hover-zoom:focus-within img {
  --tl-fx-scale: 1.08;
}

.tl-fx-reveal-fill.tl-fx-hover-zoom-soft:hover img,
.tl-fx-reveal-fill.tl-fx-hover-zoom-soft:focus-within img {
  --tl-fx-scale: 1.03;
}

.tl-fx-reveal.tl-fx-hover-lift:hover,
.tl-fx-reveal.tl-fx-hover-lift:focus-within,
.tl-fx-reveal-left.tl-fx-hover-lift:hover,
.tl-fx-reveal-left.tl-fx-hover-lift:focus-within,
.tl-fx-reveal-right.tl-fx-hover-lift:hover,
.tl-fx-reveal-right.tl-fx-hover-lift:focus-within,
.tl-fx-reveal-zoom.tl-fx-hover-lift:hover,
.tl-fx-reveal-zoom.tl-fx-hover-lift:focus-within,
.tl-fx-reveal-fill.tl-fx-hover-lift:hover,
.tl-fx-reveal-fill.tl-fx-hover-lift:focus-within {
  transform: translate3d(0, -12px, 0) scale(1);
  box-shadow: var(--tl-fx-shadow);
}

.tl-fx-delay-1 {
  transition-delay: 100ms;
}

.tl-fx-delay-2 {
  transition-delay: 180ms;
}

.tl-fx-delay-3 {
  transition-delay: 260ms;
}

.tl-fx-delay-4 {
  transition-delay: 340ms;
}

.tl-fx-float {
  animation: tl-fx-float 6.8s ease-in-out infinite;
}

.tl-fx-tint::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.08) 0%, rgba(20, 16, 12, 0.34) 100%),
    radial-gradient(circle at top right, rgba(184, 135, 79, 0.28), transparent 42%);
  pointer-events: none;
}

.tl-fx-soft-shadow img,
.tl-fx-soft-shadow .elementor-image-box-img img,
.tl-fx-soft-shadow .elementor-widget-container > img {
  box-shadow: var(--tl-fx-shadow);
}

.tl-fx-rotate-continuous > .elementor-widget-container,
.tl-fx-rotate-continuous > .e-con-inner,
.tl-fx-rotate-continuous > .elementor-container,
.tl-fx-rotate-continuous > img,
.tl-fx-rotate-continuous > a,
.tl-fx-rotate-continuous .elementor-image-box-wrapper {
  animation: tl-fx-spin var(--tl-fx-rotate-duration, 18s) linear infinite;
  transform-origin: center center;
  will-change: transform;
}

@keyframes tl-fx-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes tl-fx-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tl-fx-float {
    animation: none;
  }

  .tl-fx-rotate-continuous > .elementor-widget-container,
  .tl-fx-rotate-continuous > .e-con-inner,
  .tl-fx-rotate-continuous > .elementor-container,
  .tl-fx-rotate-continuous > img,
  .tl-fx-rotate-continuous > a,
  .tl-fx-rotate-continuous .elementor-image-box-wrapper {
    animation: none;
  }

  .tl-fx-reveal,
  .tl-fx-reveal-left,
  .tl-fx-reveal-right,
  .tl-fx-reveal-zoom,
  .tl-fx-reveal-fill {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .tl-fx-hover-lift,
  .tl-fx-hover-zoom img,
  .tl-fx-hover-zoom-soft img,
  .tl-fx-parallax-soft img,
  .tl-fx-parallax-medium img,
  .tl-fx-parallax-strong img,
  .tl-fx-reveal-fill img {
    transform: none;
    clip-path: none;
    opacity: 1;
    transition: none;
  }
}
