@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
:root {
  --dark: #000;
  --light: #fff;
  --bg: #030303;
  --color-txt: rgba(255, 255, 255, 0.8);
  --color-border: rgba(255, 255, 255, 0.3);
  --offset: 100px;
  --font-main: "Gilroy", sans-serif;
}
@media (max-width: 767px) {
  :root {
    --offset: 50px;
  }
}

/* GLOBAL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: var(--light);
  min-width: 320px;
  -webkit-overflow-scrolling: touch;
  font: 400 1rem/1.3 var(--font-main);
  color: var(--dark);
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: underline;
  color: inherit;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
}

p {
  margin: 0 0 13px;
}
p:last-child {
  margin-bottom: 0;
}

input[type=search], input[type=submit], input[type=text], textarea {
  -webkit-appearance: none;
}

input, textarea {
  width: 100%;
  border-radius: 6px;
  padding-left: 14px;
  padding-right: 14px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
  outline: none;
  font-size: 1.125rem;
  color: var(--dark);
  transition: border-color 0.3s;
}
input:focus, textarea:focus {
  border-color: var(--dark);
}
@media (max-width: 767px) {
  input, textarea {
    font-size: 16px;
  }
}

input {
  height: 2.778em;
}

textarea {
  resize: vertical;
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

input[placeholder] {
  text-overflow: ellipsis;
}

input::-moz-placeholder {
  text-overflow: ellipsis;
}

input:-moz-placeholder {
  text-overflow: ellipsis;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

button {
  cursor: pointer;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.heading {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1, h2, .heading {
  font-weight: 400;
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  h1, h2, .heading {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
}

/* COMMON */
.text-up {
  text-transform: uppercase;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-underline {
  text-decoration: underline;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: clip;
}

.content-page {
  flex: 1 0 auto;
  min-height: 1px;
  background-color: var(--light);
  position: relative;
  z-index: 99;
}

.container {
  width: 100%;
  max-width: 1360px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* BUTTON */
.button {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark);
  border-radius: 6px;
  padding: 12px 24px;
  color: var(--light);
  background-color: var(--dark);
  outline: none;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
}
.button:hover {
  color: var(--dark);
}
.button:hover:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.button_full {
  width: 100%;
}

/* HEADER */
.header {
  padding: 50px 0;
  position: relative;
  z-index: 99;
}
.header__container {
  display: flex;
  gap: 20px;
}
.header__end {
  margin-left: auto;
}
.header__title {
  max-width: 18.406em;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 0;
}
.header__title span {
  display: block;
  font-weight: 300;
  font-size: 0.75em;
  margin-top: 0.5em;
}
.header__group {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1360px) {
  .header__title {
    font-size: calc(28px + 4 * (100vw - 400px) / 960);
  }
}
@media (max-width: 767px) {
  .header {
    padding: 14px 0;
  }
}

.dropdown {
  position: relative;
  z-index: 99;
  text-transform: uppercase;
  line-height: 1;
  font-size: 1.125rem;
}
.dropdown.is-active .dropdown__btn:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  margin-top: -4px;
}
.dropdown.is-active .dropdown__menu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown__btn {
  padding: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}
.dropdown__btn:hover {
  background-color: var(--white);
  color: var(--color-brand);
}
.dropdown__btn:after {
  content: "";
  width: 0;
  height: 0;
  border: 3px solid transparent;
  border-top: 5px solid currentColor;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.dropdown__menu {
  list-style: none;
  padding: 5px 0;
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0 0 0 -47px;
  border-radius: 6px;
  background-color: #f5f5f5;
  width: 94px;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
}
.dropdown__menu li {
  padding: 7px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}
.dropdown__menu li:hover {
  background-color: var(--light);
}

/* INTRO */
.intro {
  /* min */
  /* max */
}
.intro-main {
  background-color: var(--light);
  padding-bottom: 77px;
  overflow: hidden;
}
.intro-main__container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.intro-main__media {
  flex-grow: 1;
  min-height: 1px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.intro-main__img {
  max-height: 100%;
}
.intro-mobile {
  padding: 25px 0;
}
.intro-mobile__title {
  text-align: center;
  margin: 0 auto 25px;
}
@media (min-width: 992px) {
  .intro-main {
    height: 100vh;
    position: relative;
    z-index: 10;
  }
  .intro-bottom {
    height: 100vh;
    width: 100%;
    position: sticky;
    bottom: 0;
    display: flex;
  }
  .intro-bottom picture, .intro-bottom img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 1400px) {
  .intro-main {
    padding-bottom: 50px;
  }
  .intro-main__media {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .intro-main {
    padding-bottom: 25px;
  }
  .intro-main__media {
    padding-top: 18px;
  }
}

/* SECTION */
.section {
  padding-top: var(--offset);
  padding-bottom: var(--offset);
}
.section_bg {
  background-color: var(--bg);
  color: var(--light);
}
.section_bg-img {
  background-color: var(--bg);
  color: var(--light);
  background-image: url("../img/bg.webp");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
.section-header {
  text-align: center;
  margin-bottom: var(--offset);
}
.section-block:not(:last-child) {
  margin-bottom: var(--offset);
}

/* STEPS-HEADER */
.steps-header {
  text-align: center;
  margin-bottom: var(--offset);
}
.steps-header__subtitle {
  font-size: 1.75rem;
  max-width: 23.928em;
  margin: 0 auto 45px;
}
@media (max-width: 767px) {
  .steps-header-header {
    margin-bottom: 50px;
  }
  .steps-header__subtitle {
    font-size: 1.25rem;
  }
}

.steps {
  font-size: 1.125rem;
  /* min */
  /* max */
}
.steps__marker {
  position: relative;
}
.steps__marker:before {
  content: "";
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  background-color: var(--dark);
  border-radius: 50%;
}
.steps__subtitle {
  letter-spacing: -0.02em;
}
.steps__caption {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.steps__content {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 992px) {
  .steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
    position: relative;
  }
  .steps:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 34px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("../img/steps-arrow.svg") no-repeat 0 0/contain;
  }
  .steps__item {
    max-width: 17.6875rem;
  }
  .steps__item:first-child .steps__marker:before {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .steps__item:last-child .steps__marker:before {
    display: none;
  }
  .steps__marker {
    padding-top: 40px;
  }
  .steps__marker:before {
    margin-top: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .steps {
    border-left: 1px solid rgba(0, 0, 0, 0.6);
    padding-left: 25px;
  }
  .steps__item:not(:last-child) {
    margin-bottom: 50px;
  }
  .steps__item:first-child {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .steps__item:last-child {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  .steps__marker:before {
    left: -30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .steps__content .list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 40px;
  }
}
@media (max-width: 767px) {
  .steps__caption {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }
  .steps__content {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .steps__content .list {
    flex-direction: column;
    gap: 4px 0;
  }
}

.list {
  margin: 0;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

/* ABOUT */
.about {
  /* min */
  /* max */
}
.about-media {
  aspect-ratio: 424/632;
  border-radius: 24px;
  overflow: hidden;
}
.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-caption {
  font-size: 1.25rem;
  margin-bottom: 13px;
}
.about-digit {
  padding-left: 18px;
  height: 100%;
  border-left: 0.03em solid var(--color-border);
}
.about-digit__title {
  font-size: 2.8125rem;
  margin-bottom: 20px;
}
.about-digit__content {
  font-weight: 300;
  color: var(--color-txt);
}
@media (min-width: 768px) {
  .about-column {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .about-column__item {
    max-width: 16rem;
  }
}
@media (min-width: 1201px) {
  .about-grid {
    display: grid;
    gap: 39px;
    grid-template-columns: 32.5% 1fr;
    grid-template-areas: "aside header" "aside content";
  }
  .about-grid__header {
    grid-area: header;
  }
  .about-grid__aside {
    max-width: 424px;
    grid-area: aside;
  }
  .about-grid__content {
    grid-area: content;
    margin-top: auto;
  }
  .about-digit {
    padding-top: 218px;
  }
}
@media (max-width: 1360px) {
  .about-digit__title {
    font-size: calc(36px + 9 * (100vw - 400px) / 960);
  }
}
@media (max-width: 1200px) {
  .about-grid__header {
    text-align: center;
    margin-bottom: 39px;
  }
  .about-grid__content {
    margin-top: 39px;
  }
  .about-media {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about-caption {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  .about-column__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .about-digit {
    padding-left: 40px;
  }
  .about-digit__title {
    margin-bottom: 10px;
  }
}

/* MISSION */
.mission {
  /* min */
  /* max */
}
.mission {
  display: flex;
}
.mission__title {
  font-size: 1.25rem;
  margin-right: 20px;
}
.mission__content {
  font-weight: 300;
  color: var(--color-txt);
}
@media (min-width: 992px) {
  .mission-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  .mission-grid__item {
    width: 50%;
    max-width: 33.625rem;
  }
}
@media (max-width: 991px) {
  .mission-grid__item:not(:last-child) {
    margin-bottom: 50px;
  }
  .mission {
    flex-direction: column;
  }
  .mission__title {
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .mission__title {
    font-size: 1.125rem;
  }
}

.quote {
  background: url("../img/quote-decor.svg") no-repeat 0 0;
  padding-top: 99px;
  font-size: 2rem;
  color: var(--color-txt);
  font-weight: 300;
}
.quote_max {
  max-width: 23.906em;
}
.quote__strong {
  color: var(--light);
  font-weight: 500;
}
@media (max-width: 767px) {
  .quote {
    background-size: 100px 39px;
    padding-top: 79px;
    font-size: 1.5rem;
  }
}

/* BENEFIT */
.benefit-section {
  margin-bottom: 100px;
}
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
  row-gap: 40px;
}
.benefit-grid__item {
  width: 33.333%;
  padding: 0 20px;
}
.benefit {
  max-width: 20.5rem;
  height: 100%;
  border-left: 0.03em solid var(--color-border);
  padding-left: 40px;
}
.benefit__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.benefit__icon img, .benefit__icon svg {
  max-height: 100%;
}
.benefit__title {
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.benefit__content {
  color: var(--color-txt);
  font-weight: 300;
}
@media (max-width: 991px) {
  .benefit-grid {
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    margin: 0 0 -15px;
    padding-bottom: 15px;
  }
  .benefit-grid__item {
    width: 286px;
    flex-shrink: 0;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .benefit {
    max-width: 100%;
    padding-left: 25px;
  }
  .benefit__title {
    font-size: 1.125rem;
  }
}

/* MARQUEE */
.marquee {
  width: 100%;
  overflow: hidden;
}
.marquee__row {
  width: -webkit-max-content;
  width: max-content;
  display: flex;
  will-change: transform;
  -webkit-animation: marquee 100s linear infinite;
  animation: marquee 100s linear infinite;
}
.marquee__row:not(:last-child) {
  margin-bottom: 7px;
}
.marquee__row:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.marquee__row .collection {
  margin: 0 6px;
  flex-shrink: 0;
}
.marquee__reverse {
  margin-left: -115px;
  /*animation-direction: reverse;*/
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .marquee__row {
    -webkit-animation: marquee 80s linear infinite;
    animation: marquee 80s linear infinite;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateZ(0) translateX(0%);
    transform: translateZ(0) translateX(0%);
  }
  100% {
    -webkit-transform: translateZ(0) translate(-50%);
    transform: translateZ(0) translate(-50%);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateZ(0) translateX(0%);
    transform: translateZ(0) translateX(0%);
  }
  100% {
    -webkit-transform: translateZ(0) translate(-50%);
    transform: translateZ(0) translate(-50%);
  }
}
/* COLLECTION */
.collection {
  aspect-ratio: 300/300;
  width: 100%;
  max-width: 18.75rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.collection:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), var(--dark));
}
.collection__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.collection__body {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.collection__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38%;
}
.collection__logo img {
  max-height: 100%;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .collection {
    max-width: 8.75rem;
  }
  .collection__logo {
    padding: 0 20px;
  }
}

/* CONNECT */
.connect-form__item:not(:last-child) {
  margin-bottom: 28px;
}
@media (min-width: 992px) {
  .connect-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
  .connect-grid__item {
    width: 50%;
    padding: 0 10px;
  }
  .connect-form {
    max-width: 33.625rem;
  }
}
@media (max-width: 991px) {
  .connect-grid__item:not(:last-child) {
    margin-bottom: 50px;
  }
  .connect-info {
    text-align: center;
  }
  .connect-info .social-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

/* SOCIAL-LIST */
.social-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.social-list__item {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.social-list__item:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.social-list__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 10px;
}
.social-list__icon img, .social-list__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* FORM */
.form-label {
  display: block;
}
.form-label__caption {
  display: block;
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.form-group {
  /* min */
  /* max */
}
@media (min-width: 576px) {
  .form-group {
    display: flex;
    margin: 0 -8px;
  }
  .form-group__item {
    width: 50%;
    padding: 0 8px;
  }
}
@media (max-width: 575px) {
  .form-group__item:not(:last-child) {
    margin-bottom: 28px;
  }
}

/* FOOTER */
.footer {
  width: 100%;
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.1);
  padding: 50px 0;
  position: sticky;
  left: 0;
  bottom: 0;
}
.footer__logo {
  text-align: center;
}

/* HELPERS */
.mb-0 {
  margin-bottom: 0;
}

.pt-100 {
  padding-top: 100px;
}

.font-md {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}
/* LENIS */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Phone input styles for intl-tel-input */

.iti {
    width: 100%;
    position: relative;
}

.iti__tel-input {
    width: 100%;
    box-sizing: border-box;
    padding-left: 92px;
}

.iti .iti__country-name {
    color: black;
}

.iti.iti--fullscreen-popup {
    color: black;
    z-index: 9999 !important;
}

.iti .iti__selected-country-primary {
    padding-left: 20px;
}