/* ==== RESET (Modern) ==== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure,
blockquote, dl, dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: inherit;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.main-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--e-global-typography-primary-font-family);
  gap: 16px;
}
.main-menu a {
  color: #000;
}

.mobile-nav {
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transition: grid-template-rows 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.mobile-nav > div {
  overflow: hidden;
}
.mobile-nav.active {
  grid-template-rows: 1fr;
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  opacity: 1;
}
.mobile-nav.active a {
  opacity: 1;
  transition: opacity 0.25s ease-in calc((var(--linkIndex) + 1) * 0.25s);
}
.mobile-nav .main-menu {
  flex-direction: column;
  align-items: center;
}
.mobile-nav .main-menu a {
  font-size: 1.5rem;
  line-height: 2rem;
}

.burger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.burger__layer {
  display: block;
  background: var(--e-global-color-accent);
  width: 32px;
  height: 2px;
  margin-bottom: 6px;
  transition: width 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.burger__layer:last-child {
  margin-bottom: 0;
}
.burger__layer:nth-child(1) {
  transform-origin: top left;
}
.burger__layer:nth-child(2) {
  transform-origin: center;
}
.burger__layer:nth-child(3) {
  transform-origin: bottom left;
}
.burger_open .burger__layer:nth-child(1) {
  width: 35.78px;
  transform: rotate(26.57deg) translate(2.5px, -1px);
}
.burger_open .burger__layer:nth-child(2) {
  transform: scaleX(0);
}
.burger_open .burger__layer:nth-child(3) {
  width: 35.78px;
  transform: rotate(-26.57deg) translate(2.5px, 1px);
}

.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 700px;
}
.hero__image {
  position: relative;
  min-height: auto;
}
@media screen and (min-width: 768px) {
  .hero__image {
    min-height: calc(100% + 96px);
  }
}
.hero__image-logo {
  background-size: auto calc(100% - 96px);
}
.hero__image-man {
  background-size: contain;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero__image-man::after {
    content: "";
    display: block;
    position: absolute;
    height: 48px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(27, 30, 35, 0), #1B1E23);
  }
}

@property --left-mask {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
@property --right-mask {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}
.dlj-benefit {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  height: 100%;
  font-family: var(--e-global-typography-primary-font-family);
}
.dlj-benefit__icon {
  width: 64px;
  height: 64px;
}
.dlj-benefit-list {
  align-items: stretch;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  transition: --left-mask 0.3s ease, --right-mask 0.3s ease;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, var(--e-global-color-secondary) calc(var(--left-mask) * 25px), var(--e-global-color-secondary) calc(100% - var(--right-mask) * 25px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, var(--e-global-color-secondary) calc(var(--left-mask) * 25px), var(--e-global-color-secondary) calc(100% - var(--right-mask) * 25px), transparent 100%);
}
.dlj-benefit-list .elementor-widget-digital_linkjoy_benefit.elementor-widget-digital_linkjoy_benefit {
  width: calc(100% - 32px);
}
@media screen and (min-width: 768px) {
  .dlj-benefit-list .elementor-widget-digital_linkjoy_benefit.elementor-widget-digital_linkjoy_benefit {
    width: calc((100% - 32px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .dlj-benefit-list .elementor-widget-digital_linkjoy_benefit.elementor-widget-digital_linkjoy_benefit {
    width: calc((100% - 48px) / 3);
  }
}
.dlj-benefit-list .elementor-widget-digital_linkjoy_benefit.elementor-widget-digital_linkjoy_benefit {
  flex-shrink: 0;
  scroll-snap-align: start;
}

.dlj-service {
  display: grid;
  grid-template-columns: 2fr 9fr 1fr;
  gap: 16px;
  font-family: var(--e-global-typography-primary-font-family);
  color: #fff;
  align-items: center;
  padding: 32px 0;
  border-bottom: calc(1px - var(--is-prev) * 1px) solid #fff;
  transition: padding 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out, border-radius 0.25s ease-in-out, border 0.2s ease-in-out;
}
.dlj-service svg path {
  transition: fill 0.25s ease-in-out;
}
.dlj-service.is-prev {
  border-bottom-color: var(--e-global-color-accent);
}
.dlj-service__number::before {
  content: counter(my-awesome-counter, decimal-leading-zero);
  font-size: 4rem;
  line-height: 4rem;
  font-variant-numeric: tabular-nums;
}
.dlj-service__title {
  font-size: 1.5rem;
  line-height: 2rem;
}
.dlj-service__list {
  counter-reset: my-awesome-counter;
}
.dlj-service:hover {
  background-color: #fff;
  color: var(--e-global-color-accent);
  padding: 32px 16px;
  border-radius: 16px;
}
.dlj-service:hover svg path {
  fill: var(--e-global-color-accent);
}

.elementor-widget-digital-linkjoy-service {
  counter-increment: my-awesome-counter;
  --is-hovered: 0;
  --is-prev: 0;
}

.service-page__hero {
  margin-top: -88px;
}
.service-page__background {
  width: 100%;
  height: 100%;
  z-index: -2;
}
.service-page__background::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(60px) brightness(60%);
}
.service-page__image {
  max-height: 420px;
}
.service-page__about ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.service-page__about ul li {
  display: flex;
  gap: 8px;
}
.service-page__about ul li::before {
  content: "";
  display: block;
  width: 7px;
  height: 24px;
  background: url("../assets/img/marker.svg") no-repeat center/cover;
}

.elementor-widget-digital-linkjoy-animation {
  width: 100%;
  height: 100%;
  z-index: 0;
}

#dlj-canvas {
  width: 100%;
  height: 100%;
}

.mf-input-wrapper {
  position: relative;
}

.mf-error-message {
  position: absolute;
  right: 8px;
  top: 0px;
}

.mf-btn-wraper {
  height: 100%;
}
.mf-btn-wraper button {
  height: 100%;
  width: 100%;
}