/* ==== 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-header {
  max-height: 56px;
  z-index: 1000;
}
.main-header--active {
  max-height: auto;
  min-height: calc(100vh - 32px);
  min-height: calc(100dvh - 32px);
}

.itnextlab-menu-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 16px;
}
.itnextlab-menu-container {
  width: var(--container-current-width);
}
@media screen and (min-width: 768px) {
  .itnextlab-menu-container {
    width: calc((var(--container-current-width) - 176px) / 12 * 6 + 80px);
  }
}
.itnextlab-menu-container {
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.7490196078);
  flex-grow: 1;
  border-radius: 4px;
  overflow: hidden;
  padding: 16px 24px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scaleX(0.95);
  transform-origin: right;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.itnextlab-menu-container--open {
  height: auto;
  transform: scaleX(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.itnextlab-menu-toggle {
  display: flex;
  align-self: end;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.2509803922);
  outline: none;
  border: none;
  border-radius: 4px;
  transition: width 0.25s ease-in-out;
  padding: 16px;
  gap: 40px;
  backdrop-filter: blur(16px);
}
.itnextlab-menu-toggle__cross {
  display: block;
  width: 24px;
  height: 24px;
}
.itnextlab-menu-toggle__cross path {
  transition: transform 0.25s ease-in-out;
  transform-origin: center;
}
.itnextlab-menu-toggle--open .itnextlab-menu-toggle__cross path {
  transform: rotate(45deg);
}
.itnextlab-menu-toggle__text {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 400;
  display: inline-block;
  color: #fff;
  /* Base mask: left half transparent, right half visible */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 50%, #000 50%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 50%, #000 50%, #000 100%);
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  /* Resting state = fully visible */
  -webkit-mask-position: 100% 0%;
  mask-position: 100% 0%;
}
.itnextlab-menu-toggle__text.is-switching-out {
  animation: text-mask-wipe-out 0.25s ease forwards;
}
.itnextlab-menu-toggle__text.is-switching-in {
  animation: text-mask-wipe-in 0.25s ease forwards;
}
.itnextlab-menu-background {
  display: block;
  width: 100vw;
  height: 100vh;
  z-index: 90;
  background-color: rgba(255, 255, 255, 0.1019607843);
  backdrop-filter: blur(120px);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.itnextlab-menu-background--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.itnextlab-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 0;
}
.itnextlab-menu__list li {
  font-family: "Rubik", Sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.5rem;
  text-align: center;
}
.itnextlab-menu__list li a {
  color: var(--e-global-color-primary);
}
@keyframes text-mask-wipe-out {
  0% {
    -webkit-mask-position: 100% 0%;
    mask-position: 100% 0%;
  }
  100% {
    -webkit-mask-position: 0% 0%;
    mask-position: 0% 0%;
  }
}
@keyframes text-mask-wipe-in {
  0% {
    -webkit-mask-position: 0% 0%;
    mask-position: 0% 0%;
  }
  100% {
    -webkit-mask-position: 100% 0%;
    mask-position: 100% 0%;
  }
}

.itnextlab-canvas-container canvas {
  width: 100%;
  mix-blend-mode: lighten;
}

.itnextlab-service {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: #A0A2A7 solid 1px;
}
@media screen and (min-width: 768px) {
  .itnextlab-service {
    grid-template-rows: auto;
    grid-template-columns: 4fr 6fr 2fr;
  }
}
.itnextlab-service__image {
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  border-radius: 8px;
  transform: scale(0.95);
  transition: transform 0.25s ease-in-out;
}
.itnextlab-service__text {
  color: #DFE0E2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: color 0.25s ease-in-out;
}
.itnextlab-service__title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}
.itnextlab-service__description {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.itnextlab-service__arrow {
  display: flex;
  justify-content: end;
  align-items: end;
  padding-right: 16px;
  transition: padding-right 0.25s ease-in-out;
}
.itnextlab-service__arrow svg path {
  fill: #DFE0E2;
  transition: fill 0.25s ease-in-out;
}
.itnextlab-service:hover .itnextlab-service__image {
  transform: scale(1);
}
.itnextlab-service:hover .itnextlab-service__text {
  color: #fff;
}
.itnextlab-service:hover .itnextlab-service__arrow {
  padding-right: 0;
}
.itnextlab-service:hover .itnextlab-service__arrow svg path {
  fill: #fff;
}

.service-page__hero {
  margin-top: -88px;
}
.service-page__background {
  width: 100%;
  height: 100%;
  z-index: -2;
	background-position:center;
	background-size:cover;
}
.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: 6px;
  height: 24px;
  background: url("../img/marker.svg") no-repeat center/cover;
	flex-shrink:0;
}

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

.mf-error-message {
  position: absolute;
  left: 8px;
}

body {
  font-family: "Rubik", Sans-serif;
  padding-top: 88px;
}

.lang-globe {
  height: 20px;
}