@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

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

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

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

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

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

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

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

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

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

/**
  Приводим к единому цвету svg-элементы
 */
[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

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

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@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;
  }
}
@font-face {
  font-family: "Kumbh Sans";
  src: url("../fonts/KumbhSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kumbh Sans";
  src: url("../fonts/KumbhSans-Medium.woff2") format("woff2");
  font-weight: 500;
  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-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --darkblue: #04011c;
  --blue: #231c54;
  --gradient2:linear-gradient(90deg, rgb(250, 169, 165), #FFF) ;
  --gradient: linear-gradient(90deg, rgb(250, 169, 165), #7f1fea);
  --purple: #7918EE;
  --font-title: "Anton", sans-serif;
  --font-family: "Roboto", sans-serif;
  --white: #FFF;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.full-vw-line {
  position: relative;
}
.full-vw-line::before, .full-vw-line::after {
  position: absolute;
  width: calc((var(--100vw) - var(--container-width)) / 2);
  height: 0.0625rem;
  background-color: var(--color-dark-15);
}
.full-vw-line--top::before {
  content: "";
  bottom: 100%;
}
.full-vw-line--bottom::after {
  content: "";
  top: 100%;
}
.full-vw-line--left::before, .full-vw-line--left::after {
  right: 100%;
}
.full-vw-line--right::before, .full-vw-line--right::after {
  left: 100%;
}

.circle-icon {
  --circleSize: 3.25rem;
  --circleMarginLeft: 1.25rem;
  position: relative;
  min-height: var(--circleSize);
  padding-right: calc(var(--circleSize) + var(--circleMarginLeft));
}
@media (width <= 90.06125rem) {
  .circle-icon {
    --circleSize: 2.75rem;
    --circleMarginLeft: 0.875rem;
  }
}
@media (width <= 47.99875rem) {
  .circle-icon {
    --circleSize: 2.5rem;
  }
}
.circle-icon::after {
  width: var(--circleSize);
  height: var(--circleSize);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  right: 0;
  background: url("../../icons/arrow-top-right_black.svg") center no-repeat var(--color-accent);
  border-radius: 50%;
}

body {
  background: var(--darkblue);
  font-size: 1.125rem;
  font-family: var(--font-family);
}
@media (width <= 90.06125rem) {
  body {
    font-size: 1rem;
  }
}

* {
  box-sizing: border-box;
  outline: none;
}

a {
  text-decoration: none;
  color: var(--white);
}
a:hover {
  color: var(--blue);
  transition: 0.3s ease;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

.container {
  max-width: clamp(20rem, -2.5619834711rem + 92.5619834711vw, 90rem);
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (width <= 63.99875rem) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

h1 {
  color: #FFF;
  font-size: clamp(3.75rem, 2.742768595rem + 4.132231405vw, 6.875rem);
  line-height: normal;
}

h2 {
  color: #FFF;
  font-size: clamp(3.75rem, 2.742768595rem + 4.132231405vw, 6.875rem);
  margin: 0;
  text-align: center;
}

.btn {
  padding: 20px 40px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--blue);
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-transparent {
  background: transparent;
  border: 1px solid var(--white);
}
.btn-transparent:hover {
  border: 1px solid var(--white);
  background: transparent !important;
}
.btn:hover {
  background: var(--purple);
  transition: 0.3s ease;
  color: #FFF;
}

@media (width <= 63.99875rem) {
  .header {
    overflow: hidden;
  }
}
.header__top {
  padding: 30px 0;
  position: relative;
  height: 129px;
}
@media (width <= 63.99875rem) {
  .header__top {
    height: 70px;
  }
}
.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top a.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(1rem, 0.395661157rem + 2.479338843vw, 2.875rem);
  font-weight: 700;
}
.header__top a.logo small {
  font-size: clamp(0.875rem, 0.7944214876rem + 0.3305785124vw, 1.125rem);
  position: relative;
  font-weight: 400;
}
.header__top a.logo small::before {
  content: "";
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #FFF;
}
.header__top ul {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 0.020661157rem + 2.479338843vw, 2.5rem);
}
@media (width <= 63.99875rem) {
  .header__top ul {
    visibility: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 0.3s ease;
  }
  .header__top ul.active {
    position: absolute;
    top: 100%;
    height: calc(100vh - 70px);
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: flex;
    background: var(--darkblue);
    z-index: 2;
    left: 0;
    flex-direction: column;
    justify-content: center;
    gap: calc((100vh - 70px) / 15);
    transition: opacity 0.3s ease;
  }
  .header__top ul.active li a {
    font-size: clamp(1.3125rem, 1.0103305785rem + 1.2396694215vw, 2.25rem);
  }
}
.header__top ul li a {
  font-weight: 700;
}
.header__top .mobile_nav {
  display: grid;
  gap: 5px;
  display: none;
}
@media (width <= 63.99875rem) {
  .header__top .mobile_nav {
    display: grid;
  }
}
.header__top .mobile_nav:hover span {
  background: var(--blue);
}
.header__top .mobile_nav.active {
  position: relative;
  width: 30px;
  height: 19px;
}
.header__top .mobile_nav.active span:nth-child(2) {
  display: none;
}
.header__top .mobile_nav.active span:first-child {
  rotate: -45deg;
  position: absolute;
  transition: 0.3s;
  top: 50%;
}
.header__top .mobile_nav.active span:last-child {
  rotate: 45deg;
  position: absolute;
  transition: 0.3s;
  top: 50%;
}
.header__top .mobile_nav span {
  width: 30px;
  height: 3px;
  display: table;
  background: #FFF;
}
.header__bottom {
  height: calc(100vh - 129px);
  display: flex;
  align-items: center;
}
.header__bottom h1 {
  margin-top: 0;
}
.header__bottom .container {
  max-width: 50%;
  display: grid;
  justify-items: center;
  text-align: center;
  background: transparent;
  position: relative;
}
@media (width <= 63.99875rem) {
  .header__bottom .container {
    max-width: 100%;
  }
}
.header__bottom .container * {
  position: relative;
  z-index: 1;
}
.header__bottom .container::after {
  content: "";
  width: 1px;
  height: 1px;
  border-radius: 420px;
  position: absolute;
  box-shadow: rgb(130, 34, 233) -3px -1px 470px 1000px;
  top: 50%;
  aspect-ratio: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.89;
  animation: shadowBox 1s ease-in forwards;
}
@media (width <= 63.99875rem) {
  .header__bottom .container::after {
    content: "";
    width: 1px;
    height: 1px;
    border-radius: 420px;
    position: absolute;
    box-shadow: rgb(130, 34, 233) -3px -1px 470px 1000px;
    top: 50%;
    aspect-ratio: 1;
    left: 50%;
    aspect-ratio: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.89;
  }
}
.header__bottom h1 small {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__bottom-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (width <= 47.99875rem) {
  .header__bottom-navigation {
    display: grid;
    width: 100%;
  }
}

span.subtitle {
  font-size: clamp(1rem, 0.8992768595rem + 0.4132231405vw, 1.3125rem);
  background: var(--gradient2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes shadowBox {
  to {
    box-shadow: rgb(130, 34, 233) -3px -1px 470px 260px;
  }
}
.services {
  position: relative;
  z-index: 2;
}
.services .container {
  max-width: 90%;
  padding: clamp(1.25rem, 0.444214876rem + 3.305785124vw, 3.75rem);
  background: var(--gradient);
  border-radius: 40px;
}
.services .container.no-bg {
  background: transparent;
  padding: 0;
}
.services .container.no-bg h2 {
  color: #FFF;
  margin-bottom: 60px;
  text-align: left;
}
@media (width <= 63.99875rem) {
  .services .container.no-bg h2 {
    text-align: center;
    margin-top: 60px;
  }
}
.services .container.revert {
  margin-top: 60px;
  background: transparent;
  color: #FFF;
}
@media (width <= 63.99875rem) {
  .services .container.revert {
    padding: 0;
  }
}
.services .container.revert .box .item {
  background: var(--blue);
  padding: 20px;
  border-radius: 20px;
}
.services .container.revert .btn svg path {
  stroke: #FFF;
}
.services .container.revert h2 {
  color: #FFF;
}
.services .container h2 {
  color: var(--darkblue);
  opacity: 0.8;
  margin-bottom: 60px;
  line-height: normal;
  font-size: clamp(2.875rem, 2.270661157rem + 2.479338843vw, 4.75rem);
}
@media (width <= 63.99875rem) {
  .services .container h2 br {
    display: none;
  }
}
.services .icon {
  color: #FFF;
  font-size: 1.5rem;
}
.services .box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9375rem, 0.4338842975rem + 2.0661157025vw, 2.5rem);
}
@media (width <= 80rem) {
  .services .box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 47.99875rem) {
  .services .box {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.services .box .item {
  display: grid;
  gap: 1.25rem;
}
.services .box .item:hover .icon {
  scale: 1.2;
  transition: scale 0.7s ease;
}
.services .box .btn {
  background: transparent;
  padding: 0;
  width: auto;
  margin-right: auto;
  min-width: unset;
  margin-top: -20px;
}
.services .box .btn svg {
  width: 54px;
  height: auto;
}
.services .box .btn svg path {
  fill: var(--darkblue);
  stroke: var(--darkblue);
}
.services .box .icon {
  background: var(--darkblue);
  display: table;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.services .box .icon img {
  width: 40px;
}
@media (width <= 90.06125rem) {
  .services .box .icon {
    width: 120px;
    height: 120px;
    display: grid;
  }
}
.services .box .icon i {
  font-size: 3.125rem;
}
@media (width <= 90.06125rem) {
  .services .box .icon i {
    font-size: 2.5rem;
  }
}
.services .box .title {
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  display: table;
}
@media (width <= 90.06125rem) {
  .services .box .title {
    font-size: 1.6875rem;
  }
}

.aboutUs {
  padding: 150px 0;
}
.aboutUs .box {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
}
@media (width <= 63.99875rem) {
  .aboutUs .box {
    display: flex;
    flex-direction: column-reverse;
  }
}
.aboutUs .box-item:first-child {
  position: relative;
}
.aboutUs .box-item:first-child * {
  position: relative;
  z-index: 1;
}
.aboutUs .box-item:first-child::after {
  content: "";
  width: 1px;
  height: 1px;
  border-radius: 420px;
  position: absolute;
  box-shadow: rgb(130, 34, 233) -3px -1px 470px 320px;
  top: 50%;
  aspect-ratio: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.89;
}
@media (width <= 63.99875rem) {
  .aboutUs .box-item:first-child::after {
    content: "";
    width: 320px;
    height: 320px;
    border-radius: 420px;
    background: rgba(131, 35, 232, 0.61);
    position: absolute;
    box-shadow: -3px -1px 470px 80px #8222e9;
    top: 50%;
    aspect-ratio: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.89;
  }
}
.aboutUs .box h2, .aboutUs .box .title {
  text-align: left;
  font-size: clamp(1.6875rem, 1.3047520661rem + 1.5702479339vw, 2.875rem);
  font-weight: 700;
  color: #FFF;
  margin-bottom: 20px;
  margin-top: 0;
}
.aboutUs .box p {
  color: #FFF;
  opacity: 0.7;
}
.aboutUs .box .image {
  background: var(--gradient);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: block;
}
.aboutUs .box .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.why {
  padding-bottom: 150px;
}
.why h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  margin: 0 0 60px;
}
.why .container {
  margin: unset;
  margin-left: auto;
  overflow: hidden;
}
.why .box .item {
  color: #FFF;
  display: grid;
  gap: 20px;
}
.why .box .item::before {
  content: attr(data-num);
  color: #FFF;
  display: table;
  width: 100%;
  font-weight: 700;
  font-size: 2.125rem;
}
.why .box .item:hover .title::after {
  width: 100%;
  transition: width 0.5s ease;
}
.why .box .item .title {
  padding-top: 20px;
  border-top: 1px solid #FFF;
  background: var(--gradient2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0041322314rem + 0.4958677686vw, 1.5rem);
  position: relative;
}
.why .box .item .title::after {
  content: "";
  height: 1px;
  width: 0;
  background: var(--purple);
  display: table;
  position: absolute;
  top: 0;
  left: 0;
}
.footer {
  padding: 76px 0 0;
}
.footer form {
  margin: 0 auto;
  display: grid;
  gap: 20px;
  max-width: 600px;
  background: var(--blue);
  border-radius: 40px;
  padding: 40px;
}

form p {
  color: #FFF;
  text-align: center;
}
form input {
  background: transparent;
  border: 0;
  border-left: 4px solid var(--purple);
  border-bottom: 1px solid var(--purple);
  padding: 20px 40px;
  color: #FFF;
}
form input::-moz-placeholder {
  color: #FFF;
}
form input::placeholder {
  color: #FFF;
}
form textarea {
  background: transparent;
  border: 0;
  border-left: 4px solid var(--purple);
  border-bottom: 1px solid var(--purple);
  padding: 20px 40px;
  resize: none;
  color: #FFF;
}
form textarea::-moz-placeholder {
  color: #FFF;
}
form textarea::placeholder {
  color: #FFF;
}
form button {
  background: var(--gradient);
  border-radius: 60px;
  border: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
form button svg {
  width: 34px;
}
form small {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
form small svg {
  width: 20px;
}
form small svg path {
  stroke: #FFF;
}

.copyright {
  padding: 60px 0;
  text-align: center;
  color: #FFF;
}/*# sourceMappingURL=main.css.map */