@charset "UTF-8";
/** Нормализация блочной модели */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

html {
  /** Пригодится в большинстве ситуаций (когда, например, нужно будет "прижать" футер к низу сайта) */
  height: 100%;
  /** Убираем скачок интерфейса по горизонтали при появлении / исчезновении скроллбара */
  scrollbar-gutter: stable;
}

/** Плавный скролл */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
   Пригодится в большинстве ситуаций (когда, например, нужно будет "прижать" футер к низу сайта)
  */
  min-height: 100%;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul li {
  list-style: none;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
a,
input,
textarea,
select,
button,
label {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a,
a:visited,
a:hover {
  text-decoration: none;
}

a:where([class]) {
  display: inline-flex;
}

:focus,
:active {
  outline: none;
}

/** Упрощаем работу с изображениями и видео */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: top;
}

:where(address[class]) {
  font-style: normal;
}

:where(fieldset[class]) {
  border: none;
}

:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Убираем баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

textarea {
  resize: none;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
* {
  -webkit-tap-highlight-color: transparent;
}

@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #0A151E;
  --color-bg-main: #010507;
  --color-dark-alt: #1B2831;
  --color-accent: #003C78;
  --color-light-d1: #D1E9FE;
  --color-light-d2: #D2EAFF;
  --color-border: #708998;
  --font-family-base: "Inter", sans-serif;
  --font-family-accent: "Lexend", sans-serif;
  --container-width: 73.75rem;
  --container-padding-x: 1rem;
  --header-height: 3.5rem;
  --transition-duration: 0.2s;
}
@media (width > 73.81125rem) {
  :root {
    --container-width: 90rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

body {
  font-size: clamp(1rem, 0.8765822785rem + 0.5063291139vw, 1.25rem);
  padding-top: clamp(0.625rem, 0.3164556962rem + 1.2658227848vw, 1.25rem);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-base);
  color: var(--color-light-d1);
  background-image: url(../images/bg-main.svg);
  background-size: 100% auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-color: var(--color-bg-main);
}
@media (width <= 47.99875rem) {
  body {
    background-size: 150% auto;
  }
}
body:has(.projects) {
  background-image: none;
  background-color: var(--color-bg-main);
}

main {
  flex-grow: 1;
  overflow-x: hidden;
  overflow-y: clip;
  user-select: none;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
a[class] {
  text-decoration: none;
}

.logo {
  font-family: var(--font-family-accent);
  font-size: clamp(0.875rem, 0.5664556962rem + 1.2658227848vw, 1.5rem);
  max-height: 1.875rem;
}
.logo__image {
  height: clamp(0.875rem, 0.5664556962rem + 1.2658227848vw, 1.5rem);
  width: clamp(0.875rem, 0.5664556962rem + 1.2658227848vw, 1.5rem);
  height: clamp(0.875rem, 0.5664556962rem + 1.2658227848vw, 1.5rem);
  align-self: start;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition-duration: var(--transition-duration);
}
.header__body {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.3), inset 0 0.5px 0 rgba(209, 233, 254, 0.02), inset 0 -0.5px 0 rgba(255, 255, 255, 0.2);
}
.header__menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  column-gap: 1.25rem;
  height: var(--header-height);
}
@media (width <= 34.43625rem) {
  .header__menu-list {
    flex-wrap: wrap;
  }
}
@media (width <= 47.99875rem) {
  .header__menu-list {
    column-gap: 0.625rem;
  }
}
@media (width <= 34.43625rem) {
  .header__menu-item:has(a.logo) {
    order: -1;
    flex-basis: 100%;
  }
}
.header__menu-link {
  text-align: center;
}
@media (width > 47.99875rem) {
  .header__menu-link {
    padding: 0.625rem;
  }
}
@media (width <= 47.99875rem) {
  .header__menu-link {
    padding-block: 0.3125rem;
  }
}
@media (any-hover: hover) {
  .header__menu-link:hover {
    color: var(--color-light-d2);
    text-shadow: 0 0 1px var(--color-light-d2), 0 0 3px var(--color-light-d2);
  }
}
@media (any-hover: none) {
  .header__menu-link:active {
    color: var(--color-light-d2);
    text-shadow: 0 0 1px var(--color-light-d2), 0 0 3px var(--color-light-d2);
  }
}
.header__logo {
  display: flex;
  justify-content: center;
}

.button {
  color: var(--color-light-d2);
  text-shadow: 0 0 1px var(--color-light-d2), 0 0 3px var(--color-light-d2);
}
.button--accent {
  font-size: clamp(1.25rem, 1.1265822785rem + 0.5063291139vw, 1.5rem);
  background-color: var(--color-dark);
  border: 2px solid var(--color-light-d1);
  box-shadow: inset 2px 2px 4px 0 #2e5884, 0 0 10px 0 #80bfff, 0 0 43px 10px rgba(128, 191, 255, 0.25);
  border-radius: 200px;
  padding: 1.25rem 2.1875rem;
}
@media (any-hover: hover) {
  .button--accent:hover {
    box-shadow: 0 0 5px var(--color-light-d2), 0 0 3px var(--color-light-d2);
    background-color: var(--color-light-d1);
    color: var(--color-dark);
  }
}
@media (any-hover: none) {
  .button--accent:active {
    box-shadow: 0 0 5px var(--color-light-d2), 0 0 3px var(--color-light-d2);
    background-color: var(--color-light-d1);
    color: var(--color-dark);
  }
}

.banner__clouds {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100vw;
  min-height: 19.6875rem;
  height: 100%;
  pointer-events: none;
}

.cloud {
  position: absolute;
  width: 50vw;
  opacity: 1;
}
@media (width <= 58.81125rem) {
  .cloud {
    width: 48.5625rem;
  }
}

.cloud--l1 {
  --initial: -100%;
  top: 18%;
  left: 50%;
  transform: translateX(var(--initial));
  z-index: 2;
}

.cloud--l2 {
  --initial: -80%;
  top: 35%;
  left: 50%;
  transform: translateX(var(--initial));
  z-index: 1;
}

.cloud--r1 {
  --initial: 0%;
  top: 18%;
  left: 50%;
  transform: translateX(var(--initial));
  z-index: 2;
}

.cloud--r2 {
  --initial: -20%;
  top: 35%;
  left: 50%;
  transform: translateX(var(--initial));
  z-index: 1;
}

@keyframes cloud-left-out {
  from {
    transform: translateX(var(--initial));
    opacity: 1;
  }
  to {
    transform: translateX(calc(var(--initial) - 300vw));
    opacity: 0;
  }
}
@keyframes cloud-right-out {
  from {
    transform: translateX(var(--initial));
    opacity: 1;
  }
  to {
    transform: translateX(calc(var(--initial) + 300vw));
    opacity: 0;
  }
}
.cloud {
  animation-timeline: scroll(root block);
  animation-duration: var(--transition-duration);
  animation-range: entry 5% exit 50%;
}

.cloud--l1,
.cloud--l2 {
  animation-name: cloud-left-out;
}

.cloud--r1,
.cloud--r2 {
  animation-name: cloud-right-out;
}

.banner {
  position: relative;
  padding-block: 6.25rem;
  height: 100dvh;
}
.banner__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 3.125rem;
  height: 100%;
}
.banner__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  row-gap: clamp(1rem, -0.1724683544rem + 4.8101265823vw, 3.375rem);
  max-width: clamp(15.625rem, -9.1819620253rem + 101.7721518987vw, 65.875rem);
  letter-spacing: -0.04em;
  color: var(--color-accent);
}
.banner__title {
  font-family: var(--font-family-accent);
  font-size: clamp(2.5rem, 0.7721518987rem + 7.0886075949vw, 6rem);
  line-height: 0.85;
}
.banner__subtitle {
  display: inline-block;
  max-width: 33.125rem;
  line-height: 1.3;
  font-size: clamp(1rem, 0.3829113924rem + 2.5316455696vw, 2.25rem);
}
@media (width <= 34.43625rem) {
  .banner__subtitle {
    font-size: 1.25rem;
  }
}
.banner__contact-us {
  max-width: 12.5rem;
  height: 4.625rem;
  margin-inline: auto;
  margin-top: auto;
}

.banner__main > * {
  z-index: 100;
}

.about {
  margin-block: clamp(3.125rem, 1.582278481rem + 6.3291139241vw, 6.25rem);
}
.about__title {
  font-size: clamp(2.5rem, 1.7594936709rem + 3.0379746835vw, 4rem);
  text-wrap: nowrap;
  letter-spacing: -0.04em;
}
.about__title:not(:last-child) {
  padding-bottom: 3.25rem;
}
@media (width <= 47.99875rem) {
  .about__title:not(:last-child) {
    padding-bottom: 1.875rem;
  }
}
.about__list {
  display: grid;
  row-gap: 2.25rem;
}
@media (width <= 58.81125rem) {
  .about__list {
    row-gap: 1.875rem;
  }
}
@media (width <= 47.99875rem) {
  .about__list {
    row-gap: 1.25rem;
  }
}
.about__item {
  z-index: 100;
  position: relative;
  display: grid;
  row-gap: 0.625rem;
  border-radius: 40px;
  font-size: clamp(1.375rem, 1.0664556962rem + 1.2658227848vw, 2rem);
  padding: 2.25rem 3.125rem;
}
@media (width <= 47.99875rem) {
  .about__item {
    padding: 1.875rem;
  }
}
.about__item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  filter: blur(5px);
  background: linear-gradient(135deg, transparent 0%, #ffffff 25%, #D1E9FE 40%, transparent 100%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.about__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(209, 233, 254, 0.02);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  border-radius: inherit;
}
.about__item-title {
  font-weight: 600;
}

.swiper-wrapper {
  width: 100vw;
}

.swiper-slide-active .content img {
  filter: brightness(1) !important;
}

.swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--color-light-d1);
  margin: 0 6px;
  transition: all var(--transition-duration) ease;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid transparent;
}
@media (any-hover: hover) {
  .swiper-pagination-bullet:hover {
    opacity: 1;
    transform: scale(1.1);
  }
}
@media (any-hover: none) {
  .swiper-pagination-bullet:active {
    opacity: 1;
    transform: scale(1.1);
  }
}

.swiper-pagination-bullet-active {
  background: var(--color-light-d1) !important;
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 0 10px var(--color-light-d1);
  border: 1px solid var(--color-light-d1);
}

.collection .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.collection .content img {
  width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: 30px;
}

.portfolio {
  position: relative;
  padding-block: 6.25rem;
  margin-bottom: 2.5rem;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 3.125rem;
}
@media (width <= 58.81125rem) {
  .portfolio {
    row-gap: 1.5625rem;
  }
}
@media (width <= 47.99875rem) {
  .portfolio {
    padding-block: 3.125rem;
  }
}
.portfolio__collection {
  width: 100vw;
}
.portfolio__inner {
  position: relative;
  padding-bottom: 30px;
}
.portfolio__slide {
  max-width: 30vw;
}
@media (width <= 58.81125rem) {
  .portfolio__slide {
    max-width: 60vw;
  }
}
@media (width <= 34.43625rem) {
  .portfolio__slide {
    max-width: 75vw;
  }
}
.portfolio__slide img {
  border-radius: 30px;
}
.portfolio__title {
  font-size: clamp(1.875rem, 0.8259493671rem + 4.3037974684vw, 4rem);
  letter-spacing: -0.04em;
}

.portfolio__inner {
  pointer-events: none;
}

.portfolio__inner .swiper-slide {
  pointer-events: auto;
}

.portfolio__inner .swiper-pagination,
.portfolio__inner .swiper-pagination-bullet {
  pointer-events: auto !important;
}

.description__title {
  font-size: clamp(1.875rem, 1.3196202532rem + 2.2784810127vw, 3rem);
}
.description__text {
  max-width: 75.9375rem;
}

.projects__inner.genoneai {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
}
.projects__inner.genoneai .swiper-wrapper.genoneai {
  display: flex;
  align-items: center;
}
.projects__inner.genoneai .genoneai__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 40vw;
  width: 100%;
  aspect-ratio: 1/1.8;
}
@media (width > 58.81125rem) {
  .projects__inner.genoneai .genoneai__slide {
    max-width: 25vw;
  }
}

.projects {
  display: grid;
  row-gap: 2.5rem;
  margin-block: 3.3125rem;
  font-size: clamp(1.125rem, 0.6930379747rem + 1.7721518987vw, 2rem);
  letter-spacing: -0.04em;
}
.projects__inner {
  position: relative;
  padding-bottom: 50px;
  width: 100vw;
}
.projects__slide {
  max-width: 75.9375rem;
  width: 84vw;
}
@media (width > 47.99875rem) {
  .projects__slide {
    width: 60vw;
  }
}
.projects__title {
  padding-inline: var(--container-padding-x);
  font-size: clamp(1.875rem, 0.8259493671rem + 4.3037974684vw, 4rem);
  font-weight: 500;
}
.projects__description {
  display: grid;
  row-gap: 1.0625rem;
}
.projects__link {
  margin-top: 1.25rem;
}

.form::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 50%;
  height: 30%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  background: #001123;
  filter: blur(100px);
  border-radius: 50%;
  animation: gradient-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gradient-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
}
.form {
  position: relative;
  padding-block: clamp(2.5rem, 0.0316455696rem + 10.1265822785vw, 7.5rem);
  height: 100%;
  font-size: clamp(1.25rem, 0.3860759494rem + 3.5443037975vw, 3rem);
  display: grid;
  z-index: 100;
}
.form::before {
  content: "CONTACT US CONTACT US CONTACT US CONTACT US";
  position: absolute;
  top: 0;
  transform: translateX(-25%);
  font-size: clamp(2.5rem, 0.0316455696rem + 10.1265822785vw, 7.5rem);
  font-weight: 600;
  color: #060F16;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  width: max-content;
}
@media (width > 73.81125rem) {
  .form::before {
    inset: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (width <= 34.43625rem) {
  .form::before {
    display: none;
  }
}
.form__list {
  padding-block: 10dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 0.75rem;
  z-index: 100;
}
.form__item {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
@media (width <= 34.43625rem) {
  .form__item {
    row-gap: 1.25rem;
  }
}
@media (width <= 58.81125rem) {
  .form__item:has(input[type=text]) {
    max-height: 12.5rem;
  }
}
@media (width <= 58.81125rem) {
  .form__item:has(ul) {
    max-height: 18.75rem;
  }
}
.form__label {
  text-align: center;
  opacity: 30%;
  letter-spacing: -0.04em;
}
.form__input-inner {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 1.625rem;
}
.form__input-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(175deg, transparent 0%, #ffffff 50%, #D1E9FE 60%, transparent 90%);
  filter: blur(5px);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.form__input {
  font-size: clamp(1rem, 0.753164557rem + 1.0126582278vw, 1.5rem);
  padding-block: 0.625rem;
  padding-left: 1.5rem;
  padding-right: 2.8125rem;
  width: 100%;
  height: 3.25rem;
  border-radius: 1.625rem;
  background-color: rgba(209, 233, 254, 0.08);
  color: var(--color-light-d1);
}
.form__input::placeholder {
  color: var(--color-light-d1);
  opacity: 30%;
}
.form__next-btn {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  background-color: #505B61;
  border-radius: 50%;
  transition-duration: var(--transition-duration);
}
@media (any-hover: hover) {
  .form__next-btn:hover {
    box-shadow: 0 0 1px var(--color-light-d2), 0 0 3px var(--color-light-d2);
    background-color: var(--color-light-d1);
  }
}
@media (any-hover: none) {
  .form__next-btn:active {
    box-shadow: 0 0 1px var(--color-light-d2), 0 0 3px var(--color-light-d2);
    background-color: var(--color-light-d1);
  }
}
@media (width <= 34.43625rem) {
  .form__next-btn {
    width: 30px;
    height: 30px;
  }
}
.form__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5625rem;
  cursor: pointer;
}
.form__socials-item {
  width: 34px;
  height: 28px;
  color: #505B61;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: var(--transition-duration);
}
.form__socials-item[data-value=telegram] svg, .form__socials-item[data-value=email] svg {
  scale: 1.1;
}
.form__socials-item[data-value=whatsapp] {
  margin-right: -2px;
}
.form__socials-item.active {
  color: var(--color-light-d1);
}
.form__text {
  display: flex;
  row-gap: 0.75rem;
  max-width: 43.75rem;
  max-height: 18.75rem;
  align-items: center;
}
.form__text-inner {
  width: 100%;
}
.form__text-input {
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  height: 9.25rem;
  border-radius: 20px;
  font-weight: 300;
  overflow-y: auto;
}
.form__text-input::-webkit-scrollbar {
  width: 0;
}
@media (width <= 47.99875rem) {
  .form__text-input {
    height: 6.25rem;
  }
}
.form__text-btn {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11.875rem;
  border-radius: 200px;
  height: 3rem;
  padding: 0.625rem 1.25rem;
  background-color: #505B61;
  font-size: clamp(0.875rem, 0.6898734177rem + 0.7594936709vw, 1.25rem);
  text-align: center;
  color: rgba(209, 233, 254, 0.3);
  line-height: 1.4;
  transition-duration: var(--transition-duration);
}
@media (width <= 47.99875rem) {
  .form__text-btn {
    height: 2.5rem;
    padding-inline: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .form__text-btn:hover {
    color: #505B61;
    box-shadow: 0 0 5px var(--color-light-d2), 0 0 3px var(--color-light-d2);
    background-color: var(--color-light-d1);
  }
}
@media (any-hover: none) {
  .form__text-btn:active {
    color: #505B61;
    box-shadow: 0 0 5px var(--color-light-d2), 0 0 3px var(--color-light-d2);
    background-color: var(--color-light-d1);
  }
}
.form__options {
  max-width: 35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  column-gap: 0.25rem;
}
.form__options-next-btn {
  align-self: center;
}
.form__option {
  position: relative;
  line-height: 1.4;
  padding: 0.625rem 1.25rem;
  border-radius: 200px;
  background-color: rgba(209, 233, 254, 0.08);
  opacity: 30%;
  color: var(--color-light-d1);
  cursor: pointer;
  font-size: clamp(0.875rem, 0.6898734177rem + 0.7594936709vw, 1.25rem);
  transition-duration: var(--transition-duration);
}
.form__option::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(175deg, transparent 0%, rgb(255, 255, 255) 30%, #ffffff 50%, rgb(255, 255, 255) 75%, transparent 100%);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}
.form__option.active {
  color: var(--color-bg-main);
  opacity: 1;
  box-shadow: 0px 0px 8px var(--color-light-d1), 0px 0px 4px rgba(0, 0, 0, 0.2509803922);
  background-color: var(--color-light-d1);
  transition-duration: var(--transition-duration);
}
@media (width <= 47.99875rem) {
  .form__option {
    padding: 0.3125rem 0.625rem;
  }
}
.form__budget-label {
  position: relative;
  display: inline-block;
}
.form__budget-label::after {
  content: "*CAD";
  position: absolute;
  top: 0;
  translate: 0 -5px;
  letter-spacing: -0.04em;
  font-size: clamp(1rem, 0.753164557rem + 1.0126582278vw, 1.5rem);
}
.form__progress {
  width: 2.5rem;
  height: 0.375rem;
  background-color: #091520;
  border-radius: 3px;
  margin-inline: auto;
  transition: opacity var(--transition-duration);
}
.form__progress-bar {
  width: 0;
  height: 100%;
  background-color: var(--color-light-d1);
  box-shadow: 0px 0px 8px var(--color-light-d1), 0px 0px 4px rgba(0, 0, 0, 0.2509803922);
  border-radius: inherit;
  transition-duration: var(--transition-duration);
}
.form__success {
  font-size: clamp(1rem, 0.5680379747rem + 1.7721518987vw, 1.875rem);
}

.next-button {
  width: 36px;
  height: 36px;
  background-color: #505B61;
  border-radius: 50%;
  transition-duration: var(--transition-duration);
  background-image: url("../icons/arrow.png");
  background-size: 9px 14px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (any-hover: hover) {
  .next-button:hover {
    box-shadow: 0 0 5px var(--color-light-d2), 0 0 3px var(--color-light-d2);
    background-color: var(--color-light-d1);
    background-image: url("../icons/arrow-hover.png");
  }
}
@media (any-hover: none) {
  .next-button:active {
    box-shadow: 0 0 5px var(--color-light-d2), 0 0 3px var(--color-light-d2);
    background-color: var(--color-light-d1);
    background-image: url("../icons/arrow-hover.png");
  }
}
@media (width <= 34.43625rem) {
  .next-button {
    width: 30px;
    height: 30px;
  }
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  width: 100%;
  transition-duration: var(--transition-duration);
}
.form-step.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.footer {
  background-color: var(--color-bg-main);
  padding-block: 1.375rem;
  font-size: 0.875rem;
  font-weight: 100;
  letter-spacing: -0.04em;
  text-align: center;
}
@media (width <= 47.99875rem) {
  .footer {
    padding-block: 0.9375rem;
  }
}
.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_contacts {
  display: grid;
  white-space: nowrap;
  padding-bottom: 1.5625rem;
  row-gap: 0.3125rem;
}
@media (any-hover: hover) {
  .footer_contacts a:hover {
    color: var(--color-light-d2);
    text-shadow: 0 0 1px var(--color-light-d2), 0 0 3px var(--color-light-d2);
  }
}
@media (any-hover: none) {
  .footer_contacts a:active {
    color: var(--color-light-d2);
    text-shadow: 0 0 1px var(--color-light-d2), 0 0 3px var(--color-light-d2);
  }
}

/*# sourceMappingURL=main.css.map */
