/*
UX/UI DESIGN AND FRONTEND DEVELOPMENT BY:
Evgenii Golubev | unpleme.com | telegram - @unpleme
*/

/* DEFAULT  */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;

  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--text-dark);

  /* will-change: opacity; */
  /* transform: translateZ(0);
  -webkit-transform: translateZ(0); */
  transition: 0.2s;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --dark-purple: #16132A;
  --accent-dark: #7632B9;
  --accent-bright: #994CE6;
  --text-dark: #16132A;
  --text-bright: #EBEBEB;
  --text-subtitle: #554F7F;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  background: var(--dark-purple);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark-purple);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #26233b;
  border-top-color: var(--accent-dark);
  border-radius: 50%;
  animation: spinPreloader 1s linear infinite;
}

@keyframes spinPreloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: inherit;
}

span {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

section {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.header,
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  /* padding: 0 16px; */
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

button {
  background: transparent;
  cursor: pointer;
  font-size: inherit;
}

.btn {
  display: flex;
  padding: 20px 32px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;

  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--text-bright);

  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* 
.btn:hover {
  transform: translateY(-2px);
} */

.btn-with-icon {
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 20px 28px 20px 32px;
}

.btn__icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.btn__text {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--text-bright);
}

.btn-with-icon:hover .btn__icon {
  transform: rotate(-45deg);
}

.btn-transparent {
  color: var(--text-bright);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-transparent:hover {
  color: var(--text-bright);
  box-shadow: inset 0 0 0 1px var(--accent-dark);
  background: var(--accent-dark);
}

.btn-purple {
  color: var(--text-bright);
  box-shadow: inset 0 0 0 1px var(--accent-dark);
  background: var(--accent-dark);
}

.btn-purple:hover {
  box-shadow: inset 0 0 0 1px #522083;
  background: #522083;
}

/* END DEFAULT  */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.pretitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-bright);
}

.pretitle::before {
  content: '';
  display: flex;
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--accent-dark);
  margin-right: 12px;
}

.title {
  font-size: 56px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--dark-purple);
}

.subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--text-subtitle);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.wrapper {}

.pre-hero {
  display: flex;
  width: 100%;
  background: var(--accent-dark);
  justify-content: center;
}

.pre-hero__container {}

.pre-hero__list {
  display: flex;
  width: 100%;
  justify-content: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 0px;
}

.pre-hero__item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pre-hero__dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: white;
  z-index: 1;
}

.pre-hero__dot--pulse {
  position: relative;
  background: var(--preHeroDotPulseColor);
}

.pre-hero__dot--pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--preHeroDotPulseColor);
  z-index: 0;
  animation: preHeroDotPulse 1s linear infinite;
}

@keyframes preHeroDotPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.pre-hero__text {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--text-bright);
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.header {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(22, 19, 42, 0.9);
  backdrop-filter: blur(20px);
  z-index: 5;
}

.header__container {
  flex-direction: row;
  padding-top: 16px;
  padding-bottom: 16px;
  align-items: center;
}

.header__logo-wrapper {
  display: flex;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  margin-right: 48px;
}

.header__logo-img {
  display: flex;
  width: auto;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
}

.header__logo-wrapper:hover {
  opacity: 0.5;
}

.header__nav {
  display: flex;
  align-items: center;
  margin-right: 48px;
}

.header__menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header__menu-item {
  display: flex;
}

.header__menu-item-link {
  display: flex;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  white-space: nowrap;
}

.header__menu-item:hover {
  opacity: 0.5;
}

.header__contacts {
  display: flex;
  gap: 24px;
  margin-left: auto;
  margin-right: 40px;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__contact-icon {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-top: 2px;
}

.header__contact-link {
  display: flex;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  white-space: nowrap;

  text-decoration: underline;
  text-decoration-color: var(--accent-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.header__contact:hover {
  opacity: 0.5;
}

.header__callback {}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.hero {}

.hero__container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 48px;
  align-items: start;
}

.hero__title {
  grid-column: span 6;
  font-size: 72px;
  line-height: 76px;
  color: var(--text-bright);
  text-wrap: balance;
  margin-top: 72px;
}

.hero__title span {
  color: var(--accent-bright);
}

.hero__subtitle {
  grid-column: span 3;
  max-width: 500px;
}

.hero__btns {
  grid-column: span 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.hero__bullets {
  grid-column: span 6;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 56px;
  padding: 40px 0;
  margin-top: 32px;
}

.hero__bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__bullet-icon {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero__bullet-text {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  white-space: nowrap;
}

.hero__bullet:hover .hero__bullet-icon {
  transform: rotate(90deg);
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.video-block {
  position: relative;
  aspect-ratio: 3/1;
  overflow: visible;
}

.video-block__container {
  align-items: flex-start;
  height: 100%;
  z-index: 2;
}

.video-block__active {
  position: sticky;
  top: 120px;
  left: 0;
  display: grid;
  max-width: 300px;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 8px 8px 16px 8px;
  background: rgba(22, 19, 42, 0.5);
  backdrop-filter: blur(24px);
  margin-top: 40px;
  margin-bottom: 40px;
}

.video-block__active:hover {
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.video-block__thumbnail {
  grid-column: span 6;
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-block__text {
  grid-column: span 4;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--text-bright);
  margin-left: 8px;
}

.video-block__play {
  grid-column: span 2;
  display: flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: var(--accent-dark);
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 19V5L19 12L8 19Z" fill="%23EBEBEB"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  margin-left: auto;
  margin-right: 8px;
}

.video-block__play:hover {
  background-color: #522083;
  transform: scale(0.95);
}

/* 
.video-block__active * {
  user-select: none;
  -webkit-user-select: none;
} */

.video-block__video {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.equip-types {
  background: var(--white);
}

.equip-types__container {
  padding-top: 80px;
  padding-bottom: 96px;
  gap: 80px;
}

.equip-types__title {
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.05em;
  color: var(--dark-purple);
  text-wrap: balance;
}

.equip-types__title span {
  color: var(--accent-dark);
}

.equip-types__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.equip-types__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 32px 32px 24px 32px;
  background: #E4F6FF;
}

.equip-types__line {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 0%;
  height: 4px;
  background: var(--accent-dark);
}

.equip-types__num {
  display: flex;
  width: 48px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--accent-dark);
  white-space: nowrap;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(118, 50, 185, 0.2);
  margin-bottom: 24px;
}

.equip-types__name {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
}

.equip-types__subname {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: normal;
  color: #554F7F;
  text-wrap: balance;
  margin-bottom: 16px;
}

.equip-types__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 24px;
}

.equip-types__bullet {
  display: flex;
  padding: 6px 12px;
  border-radius: 24px;
  background: #D3F0FE;

  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #554F7F;
  white-space: nowrap;

}

.equip-types__note {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(118, 50, 185, 0.2);

  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: auto;
}

.equip-types__item:hover {
  background: #D3F0FE;
}

.equip-types__item:hover .equip-types__num {
  background: var(--accent-dark);
  box-shadow: inset 0 0 0 1px var(--accent-dark);
  color: var(--text-bright);
}

.equip-types__item:hover .equip-types__line {
  width: 100%;
}

.equip-types__item:hover .equip-types__bullet {
  background: #C1E8FA;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX
.marquee {
  display: flex;
  width: 100%;
  padding: 16px 0;
  background-color: var(--accent-dark);
  overflow: hidden;
}

.marquee__wrapper {
  display: flex;
  width: 100%;
}

.marquee__group {
  display: flex;
  flex: 0 0 auto;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  animation: marquee var(--marquee-speed) linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05em;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-bright);
}

.marquee__item::after {
  content: '';
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background-image: url('../img/plus-marquee.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 24px;
  margin-right: 24px;

}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
} */

.marquee {
  display: flex;
  width: 100%;
  padding: 16px 0;
  background-color: var(--accent-dark);
  overflow: hidden;
}

.marquee * {
  -webkit-user-select: none;
  user-select: none;
}

.marquee__wrapper {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  animation: marquee var(--marquee-speed) linear infinite;
}

.marquee__group {
  display: inline-flex;
  flex-shrink: 0;
}

.marquee__item {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.05em;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-bright);
}

.marquee__item::after {
  content: '';
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background-image: url('../img/plus-marquee.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 24px;
  margin-right: 24px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.models {}

.models__container {
  padding-top: 96px;
  padding-bottom: 120px;
}

.models__pretitle {
  margin-bottom: 32px;
}

.models__title {
  color: var(--text-bright);
  margin-bottom: 32px;
}

.models__subtitle {
  max-width: 370px;
  margin-bottom: 56px;
}

.models__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.models__card {
  display: flex;
  flex-direction: column;
  background: #1C1836;
}

.models__img-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
}

.models__img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.models__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 48px;
  flex-grow: 1;
}

/* Рамка обводит карточку целиком. Раньше она рисовалась только у нижней
   части (слева, справа и снизу) и выглядела как незамкнутая «П». */
.models__card:hover {
  box-shadow:
    0 0 0 1px var(--accent-dark),
    0 32px 48px -24px rgba(103, 44, 162, 0.35);
}

.models__card:hover .models__img {
  transform: scale(1.050);
}

.models__head {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.models__info {
  display: flex;
  flex-direction: column;
}

.models__prename {
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.models__name {
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.models__subname {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin-bottom: 32px;
}

.models__badge {
  display: inline-flex;
  padding: 9px 10px 8px 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-bright);
}

.models__badge--in-stock {
  background: #0A9B58;
}

.models__badge--out-of-stock {
  background: #E81A1D;
}

.models__specs {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 32px;
}

.models__spec {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  align-items: center;
  border-bottom: 1px solid #292449;
}

.models__spec:nth-child(1) {
  border-top: 1px solid #292449;
}

.models__spec-label {
  display: inline-flex;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #6F68A1;
}

.models__spec-value {
  display: inline-flex;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-bright);
}

.models__spec:hover {
  background: rgba(41, 36, 73, 0.6);
}

.models__spec:hover .models__spec-value {
  color: var(--accent-bright);
}

.models__features-title {
  font-size: 16px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin-bottom: 24px;
}

.models__features {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.models__feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #6F68A1;
}

.models__feature::before {
  content: '';
  display: flex;
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--accent-bright);
}

.models__btns {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 16px;
  margin-top: auto;
}

.models__btn {
  display: flex;
}

.models__btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.using-benefit {}

.using-benefit__container {
  padding-bottom: 104px;
}

.using-benefit__pretitle {
  margin-bottom: 32px;
}

.using-benefit__title {
  color: var(--text-bright);
  margin-bottom: 32px;
}

.using-benefit__subtitle {
  max-width: 470px;
  margin-bottom: 56px;
}

.using-benefit__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.using-benefit__item {
  display: flex;
  flex-direction: column;
  background: #1C1836;
  padding: 32px;
  overflow: hidden;
}

.using-benefit__icon {
  display: flex;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 24px;

  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.using-benefit__item:hover {
  box-shadow: inset 0 0 0 1px var(--accent-dark), 0 32px 16px -16px rgba(103, 44, 162, 0.08);
}

.using-benefit__name {
  display: inline-flex;
  flex-direction: column;
  color: var(--text-bright);
  margin-bottom: 16px;
}

.using-benefit__value {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.using-benefit__subname {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.using-benefit__text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #6F68A1;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */

.profit {
  background: var(--white);
  overflow: hidden;
}

.profit__container {
  padding-top: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid #E4D6F1;
}

.profit__pretitle {
  color: var(--text-dark);
  margin-bottom: 32px;
}

.profit__title {
  color: var(--text-dark);
  margin-bottom: 32px;
}

.profit__subtitle {
  margin-bottom: 56px;
}

.profit__swiper {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: visible;
}

.profit__swiper-wrapper {
  display: flex;
  margin-bottom: 16px;
}

.profit__slide {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #E4F6FF;
  height: auto;
  transition: background-color 0.2s;
}

.profit__name {
  max-width: 260px;
  font-size: 20px;
  line-height: 24px;
  text-wrap: balance;
  margin-bottom: 20px;
}

.profit__dot {
  display: flex;
  width: 6px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  background: var(--accent-dark);
  margin-bottom: 16px;
}

.profit__subname {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: normal;
}

.profit__slide:hover {
  background: var(--dark-purple);
  transition: background-color 0.2s;
}

.profit__slide:hover .profit__name {
  color: var(--text-bright);
}

.profit__slide:hover .profit__subname {
  color: #6F68A1;
}

.profit__nav {
  display: flex;
}

.profit__nav-btn {
  display: flex;
  width: 36px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  padding: 12px;
}

.profit__nav-btn:hover {
  box-shadow: inset 0 0 0 1px #bcd6e3;
}

.profit__prev {
  background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 11.3301L8.8875 10.4426L4.775 6.33008L8.8875 2.21758L8 1.33008L3 6.33008L8 11.3301Z" fill="%237632B9"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.profit__next {
  background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.8875 11.3301L3 10.4426L7.1125 6.33008L3 2.21758L3.8875 1.33008L8.8875 6.33008L3.8875 11.3301Z" fill="%237632B9"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.profit__nav-btn.swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.modes {
  background: var(--white);
}

.modes__container {
  padding-top: 72px;
  padding-bottom: 96px;
}

.modes__pretitle {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.modes__title {
  font-size: 48px;
  line-height: 52px;
  margin-bottom: 40px;
}

.modes__table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  background: #F9FAFC;
  border: 1px solid #D8DEEB;
  margin-bottom: 40px;
}

.modes__row--header .modes__cell {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: left;
  letter-spacing: -0.05em;
  color: var(--text-dark);
  background: #F4EFF9;
}

.modes__cell {
  vertical-align: top;
  padding: 16px 24px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  text-align: left;
  color: #554F7F;
  border-bottom: 1px solid #D8DEEB;
  border-right: 1px solid #D8DEEB;
}

.modes__cell:first-child {
  font-weight: 700;
}

.modes__cell:last-child {
  border-right: none;
}

.modes__body .modes__row:last-child .modes__cell {
  border-bottom: none;
}

.modes__row:hover .modes__cell {
  background: #F4EFF9;
}

.modes__body .modes__row:hover .modes__cell:first-child {
  color: var(--accent-dark);
}

.modes__under-table {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

.modes__note {
  display: flex;
  gap: 4px;
  align-items: flex-start;
}

.modes__note-img {
  display: flex;
  width: 24px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  object-fit: contain;
}

.modes__note-text {
  max-width: 400px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #554F7F;
  letter-spacing: normal;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.niches {
  overflow: visible;
}

.niches__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  padding-top: 104px;
  padding-bottom: 104px;
}

/* Приклеиваем всю колонку целиком — вместе с кнопкой.
   Раньше приклеен был только текст (.niches__info), поэтому при прокрутке
   он съезжал вниз и наезжал на кнопку, стоявшую в конце высокой колонки. */
.niches__aside {
  position: sticky;
  top: 124px;
  align-self: start;
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.niches__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.niches__pretitle {
  margin-bottom: 32px;
}

.niches__title {
  color: var(--text-bright);
  margin-bottom: 32px;
}

.niches__subtitle {
  text-wrap: balance;
}

.niches__list {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 67px;
}

.niches__item {
  position: sticky;
  top: 124px;
  display: flex;
  width: 100%;
  background: #1C1836;
}

.niches__img-wrapper {
  position: relative;
  display: flex;
  width: 50%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.niches__img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.niches__item-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 32px;
}

.niches__item-title {
  max-width: 260px;
  font-size: 20px;
  line-height: 24px;
  text-wrap: balance;
  color: var(--text-bright);
  margin-bottom: 20px;
}

.niches__item-dot {
  display: flex;
  width: 6px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  background: var(--accent-dark);
  margin-bottom: 16px;
}

.niches__item-text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: normal;
  color: #6F68A1;
  margin-bottom: 16px;
}

.niches__tags {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 4px;

}

.niches__tag {
  display: flex;
  padding: 6px 12px;
  border-radius: 24px;
  background: #262147;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: var(--text-bright);
  white-space: nowrap;
}

.niches__item--reverse {}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */


.faq {
  background: var(--white);
}

.faq__container {
  padding-top: 80px;
  padding-bottom: 72px;
}

.faq__pretitle {
  color: var(--text-dark);
  margin-bottom: 32px;
}

.faq__title {
  margin-bottom: 32px;
}

.faq__subtitle {
  margin-bottom: 56px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.faq__item {
  margin-bottom: 0;
  border: none;
  background-color: #E4F6FF;
  overflow: hidden;
}

.faq__trigger {
  position: relative;

  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text-dark);

  width: 100%;
  padding: 32px 86px 32px 32px;
  display: flex;
  cursor: pointer;
  background-color: transparent;
  text-decoration: none;
  margin: 0;
  border: 0;
}

.ac .ac-trigger::after {
  content: "";
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transform: translate(0);
  position: absolute;
  right: 32px;
  top: 32px;

  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.35669 18L6 16.58L12.2866 10L6 3.42L7.35669 2L15 10L7.35669 18Z" fill="%237632B9"/></svg>');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;

  transition: 0.2s;
}

.ac.is-active>.ac-header .ac-trigger::after {
  content: "";
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transform: rotate(90deg);
  position: absolute;
  right: 32px;
  top: 32px;

  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.35669 18L6 16.58L12.2866 10L6 3.42L7.35669 2L15 10L7.35669 18Z" fill="%237632B9"/></svg>');
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;

  transition: 0.2s;
}

.faq__down {
  overflow: hidden;
}

.faq__text {
  font-size: 14px;
  line-height: 22px;
  color: #554F7F;
  letter-spacing: normal;
  text-wrap: balance;

  padding: 0 86px 32px 32px;
  margin: 0;
}

.faq__item:hover {
  background: #D3F0FE;
}

.faq__item.is-active {
  background: #D3F0FE;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.ask {
  background: var(--white);
}

.ask__container {
  padding-bottom: 96px;
}

.ask__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 48px;
  align-items: flex-start;
  background: var(--dark-purple);
  overflow: hidden;
}

.ask__title {
  font-size: 40px;
  line-height: 44px;
  color: var(--text-bright);
  margin-bottom: 24px;
  z-index: 2;
}

.ask__subtitle {
  max-width: 400px;
  color: #6F68A1;
  margin-bottom: 40px;
  z-index: 2;
}

.ask__btn {
  z-index: 2;
}

.ask__img {
  position: absolute;
  top: 40px;
  right: -56px;
  display: flex;
  width: 600px;
  aspect-ratio: 600/360;
  flex: 0 0 auto;
  object-fit: contain;
  z-index: 1;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.consultation {
  overflow: visible;
}

.consultation__container {
  padding-top: 96px;
}

.consultation__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 16px;
  margin-bottom: 96px;
}

.consultation__col {
  position: relative;
  display: flex;
  flex-direction: column;
}

.consultation__col--one {}

.consultation__col--two {}

.consultation__col-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #1C1836;
  padding: 48px;
}

.consultation__col--one .consultation__col-inner {
  position: sticky;
  top: 104px;
  left: 0;
}

.consultation__title {
  font-size: 40px;
  line-height: 44px;
  color: var(--text-bright);
  margin-bottom: 24px;
}

.consultation__subtitle {
  color: #6F68A1;
  margin-bottom: 24px;
}

.consultation__contacts-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 32px;
}

.consultation__contacts {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.consultation__contact {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #292449;
}

.consultation__contact:last-child {
  border-bottom: none;
}

.consultation__contact-type {
  width: 70px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #6F68A1;
  margin-right: 24px;
}

.consultation__contact-img {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-top: 2px;
  margin-right: 8px;
}

.consultation__contact-value {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: var(--accent-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.consultation__contact:hover .consultation__contact-img,
.consultation__contact:hover .consultation__contact-value {
  opacity: 0.5;
}

.consultation__socials {
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.consultation__social {
  display: flex;
}

.consultation__social-link {
  display: flex;
  flex: 0 0 auto;
  padding: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.consultation__social-img {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.consultation__social:hover .consultation__social-link {
  background: var(--accent-dark);
  box-shadow: inset 0 0 0 1px var(--accent-dark);
}

.consultation__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 24px;
}

.consultation__label {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.consultation__field-name {
  font-size: 12px;
  line-height: 12px;
  font-weight: 560;
  letter-spacing: -0.03em;
  color: #6F68A1;
  margin-bottom: 10px;
}

.consultation__input {
  display: flex;
  width: 100%;
  padding: 16px;
  background: #17142E;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--text-bright);
  letter-spacing: -0.03em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.consultation__input:focus-within {
  box-shadow: inset 0 0 0 1px var(--accent-bright);
}

.consultation__input:hover {
  box-shadow: inset 0 0 0 1px var(--accent-bright);
}

.consultation__input::placeholder {
  color: var(--text-subtitle);
}

.consultation__input--textarea {
  min-height: 154px;
  resize: none;
  /* text-wrap: balance; */
}

.consultation__label-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 8px;
}

.consultation__label-radios {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 24px;
}

.consultation__label-radio {
  display: flex;
  align-items: center;
  gap: 8px;
}

.consultation__radio {}

.consultation__label-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.consultation__field-name--radio {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;

  margin-top: 1px;
  margin-bottom: 0;
  color: var(--text-bright);
}

.consultation__radio-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #17142E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.consultation__radio-custom::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-bright);
  opacity: 0;
  transition: opacity 0s;
}

.consultation__radio:checked+.consultation__radio-custom::before {
  opacity: 1;
}

.consultation__label-radio:hover .consultation__radio-custom {
  border: 1px solid var(--accent-bright);
}

.consultation__agreement {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 16px;
}

.consultation__agreement a {
  font: inherit;
  text-decoration: underline;
}

.consultation__agreement a:hover {
  color: var(--accent-bright);
}

.consultation__decor-text {
  font-size: 120px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--text-bright);
  margin-bottom: 112px;
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
.footer {}

.footer__container {
  flex-direction: row;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo-wrapper {
  display: flex;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  margin-right: 24px;
}

.footer__logo-img {
  display: flex;
  width: auto;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer__logo-text {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-bright);
  margin-right: 32px;
}

.footer__link {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: #554F7F;
  white-space: nowrap;
  text-decoration: underline;
  margin-right: 24px;
}

.footer__link:last-child {
  margin-right: 0;
}

.footer__link:hover {
  color: var(--accent-bright);
}

/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  z-index: 101;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(20px);
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  user-select: none;
}

.modal--active {
  opacity: 1;
  visibility: visible;
  user-select: auto;
}

.modal__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 48px;
  overflow-y: auto;

  scrollbar-width: none;
}

.modal__wrapper::-webkit-scrollbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
}

.modal__wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.modal__wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  background: #1C1836;
  padding: 48px;
  align-items: flex-start;
  margin: auto 0;
}

.modal__title {
  font-size: 40px;
  line-height: 1;
  color: var(--text-bright);
  margin-bottom: 40px;
}

.modal__close-wrapper {
  position: absolute;
  top: 48px;
  right: 48px;
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  background: transparent;
  cursor: pointer;
}

.modal__close-wrapper:hover {
  opacity: 0.5;
  transform: scale(0.95);
}

.modal__close-svg {
  display: flex;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
}


/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* XXXXXXXXXXXXXXXXXXXXX */
/* XXXXXXXXXXXXXXXXXXXXX */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */
/* * */