@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"), url("../fonts/Manrope-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --wrapper-padding: clamp(1rem, 4.4198895028vw + -0.0359116022rem, 3.5rem);
  --header-height: 58px;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}
html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
html::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.55);
}

body {
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  position: relative;
  background-color: #010409;
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
  overflow-x: hidden;
  padding-top: calc(var(--header-height) + 24px);
}
@media screen and (max-width: 576px) {
  body {
    padding-top: 74px;
    padding-bottom: 74px;
  }
}
body.has-work-sheet {
  padding-right: 6px;
  overflow: hidden;
}

.wrapper {
  max-width: 1264px;
  margin: 0 auto;
  padding: 0 var(--wrapper-padding);
}

img {
  vertical-align: middle;
}

a {
  color: inherit;
}

section {
  padding: 60px 0;
  position: relative;
  scroll-margin-top: var(--header-height);
}

.logo img {
  margin-top: -11px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.65));
}
@media screen and (max-width: 576px) {
  .logo img {
    margin-top: -7px;
    margin-left: -5px;
    width: 66px;
  }
}

.top-glow {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  min-width: 510px;
  pointer-events: none;
}
.top-glow svg {
  max-width: 1204px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.bg-glass {
  background: rgba(31, 87, 94, 0.2);
  border: 1px solid rgba(0, 215, 242, 0.1);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -2px -2px 10px -3px rgba(255, 255, 255, 0.25), inset 2px 2px 14px -3px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.glass-overlay {
  background: rgba(31, 87, 94, 0.2);
  box-shadow: inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
}

.glass-overlay-second {
  background: rgba(0, 215, 242, 0.2);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
}

h1, h2, h3, h4 {
  margin: 0;
}

.h1 {
  font-size: clamp(2.25rem, 1.3259668508vw + 1.9392265193rem, 3rem);
  line-height: 120%;
  font-weight: 700;
}

.h2 {
  font-size: clamp(1.875rem, 1.1049723757vw + 1.6160220994rem, 2.5rem);
  line-height: 120%;
  font-weight: 700;
}

.h3 {
  font-size: clamp(1.5rem, 0.8839779006vw + 1.2928176796rem, 2rem);
  line-height: 120%;
  font-weight: 700;
}

.h4 {
  font-size: clamp(1.25rem, 1.0178117048vw + 1.0114503817rem, 1.5rem);
  line-height: 120%;
  font-weight: 600;
}

.gradient-text {
  color: #fff;
  background: linear-gradient(90deg, #FFFFFF 0%, #02F1FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-white {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 20%, #FFFFFF 30%, #FFFFFF 70%, rgba(255, 255, 255, 0.4) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .gradient-text {
    color: transparent;
  }
  .gradient-text-white {
    color: transparent;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  background: linear-gradient(180deg, #00D0EA 0%, #174B52 100%);
  box-shadow: inset -1px -1px 5px -2px rgba(0, 0, 0, 0.35), inset 2px 2px 5px rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: inherit;
  text-decoration: none;
  height: 40px;
  text-align: center;
  transition: filter 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
}
.btn.btn-big {
  height: 48px;
  font-size: clamp(1rem, 0.5089058524vw + 0.8807251908rem, 1.125rem);
  line-height: 120%;
  font-weight: 500;
}
.btn.btn-big::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: rgba(102, 238, 255, 0.08);
  box-shadow: inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  z-index: 1;
}
.btn.btn-big span {
  padding: 0 32px;
}
.btn.w100 {
  width: 100%;
}
.btn.w100 span {
  width: 100%;
}
.btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #26CCE1 0%, #126F7B 100%);
  z-index: 2;
  opacity: 0;
  border-radius: 100px;
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn span {
  position: relative;
  z-index: 3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
.btn:hover {
  filter: drop-shadow(0px 0px 10px rgba(0, 208, 234, 0.25));
}
.btn:hover::before {
  opacity: 1;
}

.btn-outline {
  position: relative;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  user-select: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
  transition: border-color 0.35s cubic-bezier(0.19, 1, 0.22, 1), color 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn-outline:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.eyebrow {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 32px;
  border-radius: 32px;
  padding: 4px 10px 4px 4px;
  background: rgba(31, 87, 94, 0.2);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
}
.eyebrow .eyebrow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #00D0EA 0%, #174B52 100%);
}

.border-glass {
  position: relative;
}
.border-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(var(--border-angle, 45deg), #1F575E 0%, #020B0C 45%, #020B0C 55%, #1F575E 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.border-glass-secondary {
  position: relative;
}
.border-glass-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(var(--border-angle, 230deg), #1F575E 0%, #020B0C 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-header .eyebrow {
  margin-bottom: 24px;
}
.section-header .section-header-description {
  margin-top: 16px;
}

.modal-sheet {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  max-width: none;
  max-height: none;
  overflow: hidden;
  z-index: 11;
  color: inherit;
}
.modal-sheet::backdrop {
  display: none;
}
.modal-sheet.is-open .modal-sheet-overlay {
  opacity: 1;
}
.modal-sheet.is-open .modal-sheet-content {
  transform: translate(-50%, 0%);
}
.modal-sheet .modal-sheet-overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  backdrop-filter: blur(12px);
  transition: opacity 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.modal-sheet .modal-sheet-close {
  width: 32px;
  height: 32px;
  background: rgba(0, 215, 242, 0.2);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
  position: relative;
  border-radius: 50%;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.modal-sheet .modal-sheet-close:hover {
  color: rgb(255, 255, 255);
}
.modal-sheet .modal-sheet-close:hover::before {
  opacity: 1;
}
.modal-sheet .modal-sheet-close::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 215, 242, 0.6);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.modal-sheet .modal-sheet-close * {
  position: relative;
  z-index: 2;
}
.modal-sheet .modal-sheet-content-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 24px;
}
.modal-sheet .modal-sheet-content {
  padding: 24px var(--wrapper-padding) 45px;
  height: initial;
  position: fixed;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%) translateY(100%);
  max-width: 768px;
  width: 100%;
  background: linear-gradient(180deg, #00464E 0%, #010409 90.25%);
  box-shadow: inset 0 1px 0 0 rgba(31, 87, 94, 0.2), inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -2px -2px 10px -3px rgba(255, 255, 255, 0.25), inset 2px 2px 14px -3px rgba(0, 0, 0, 0.45);
  border-radius: 16px 16px 0 0;
  transition: transform 0.35s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.circle-btn {
  background: rgba(0, 215, 242, 0.2);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
}

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

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

.header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 576px) {
  .header {
    bottom: 16px;
    top: initial;
  }
}
.header .header-block {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 9px 0 24px;
}
@media screen and (max-width: 1024px) {
  .header .header-block {
    padding-left: 9px;
  }
}
@media screen and (max-width: 576px) {
  .header .header-block {
    flex-direction: row-reverse;
  }
}
.header .header-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--header-height);
  background: rgba(31, 87, 94, 0.2);
  border: 1px solid rgba(0, 215, 242, 0.1);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -2px -2px 10px -3px rgba(255, 255, 255, 0.25), inset 2px 2px 14px -3px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .header .navigation {
    display: none;
  }
}
.header .navigation-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: clamp(1rem, 0.390625vw + 0.8125rem, 1.125rem);
  line-height: 130%;
  font-weight: 600;
}
.header .menu-item:hover > a {
  color: rgb(255, 255, 255);
}
.header .menu-item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--header-height);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.header .current-menu-item {
  position: relative;
}
.header .current-menu-item > a {
  color: rgb(255, 255, 255);
}
.header .current-menu-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 29px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}
.header .header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.header .language-select {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  height: 100%;
}
@media screen and (max-width: 576px) {
  .header .language-select {
    position: fixed;
    top: 24px;
    right: var(--wrapper-padding);
    height: auto;
  }
}
.header .language-select.is-open .language-select-list {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(100%);
  opacity: 1;
}
.header .language-select .language-select-btn {
  text-transform: uppercase;
  border: 0;
  padding: 0 4px;
  background-color: transparent;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  height: 100%;
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .header .language-select .language-select-btn {
    height: 37px;
    padding: 0 11px;
    border-radius: 37px;
    background: rgba(31, 87, 94, 0.2);
    border: 1px solid rgba(0, 215, 242, 0.1);
    box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -2px -2px 10px -3px rgba(255, 255, 255, 0.25), inset 2px 2px 14px -3px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
  }
}
.header .language-select .language-select-btn:hover {
  color: rgb(255, 255, 255);
}
.header .language-select .language-select-list {
  position: absolute;
  bottom: -8px;
  right: 0;
  transform: translateY(110%);
  list-style: none;
  padding: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  border-radius: 20px;
  visibility: hidden;
  pointer-events: none;
  background: rgba(31, 87, 94, 0.2);
  border: 1px solid rgba(0, 215, 242, 0.1);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -2px -2px 10px -3px rgba(255, 255, 255, 0.25), inset 2px 2px 14px -3px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.header .language-select .language-select-list-link {
  color: inherit;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.header .language-select .language-select-list-link:hover {
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 1024px) {
  .header .logo {
    margin-right: auto;
  }
}
@media screen and (max-width: 576px) {
  .header .logo {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 24px;
    left: var(--wrapper-padding);
    height: 37px;
    border-radius: 37px;
    padding: 0 14px;
    background: rgba(31, 87, 94, 0.2);
    border: 1px solid rgba(0, 215, 242, 0.1);
    box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -2px -2px 10px -3px rgba(255, 255, 255, 0.25), inset 2px 2px 14px -3px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
  }
}
.header .navbar-btn {
  width: 40px;
  height: 40px;
  background: rgba(0, 215, 242, 0.2);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
  position: relative;
  border-radius: 50%;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  margin-right: 16px;
  display: none;
}
.header .navbar-btn:hover {
  color: rgb(255, 255, 255);
}
.header .navbar-btn:hover::before {
  opacity: 1;
}
.header .navbar-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 215, 242, 0.6);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.header .navbar-btn * {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .header .navbar-btn {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .header .navbar-btn {
    margin-right: 0;
  }
}

.sidebar {
  position: fixed;
  top: -2px;
  left: -2px;
  bottom: -2px;
  padding: 26px 16px 26px calc(var(--wrapper-padding) + 2px);
  transform: translateX(-100%);
  width: 260px;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .sidebar.is-open {
    transform: translateX(0%);
  }
}
@media screen and (min-width: 577px) {
  .sidebar {
    background: rgba(31, 87, 94, 0.2);
    box-shadow: inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
  }
}
@media screen and (max-width: 576px) {
  .sidebar {
    top: initial;
    bottom: 82px;
    left: var(--wrapper-padding);
    padding: 0 var(--wrapper-padding);
    height: auto;
    transform: translateY(10%) translateZ(0);
    opacity: 0;
    width: calc(100% - var(--wrapper-padding) * 2);
    border-radius: 20px;
    background: rgba(31, 87, 94, 0.2);
    border: 1px solid rgba(0, 215, 242, 0.1);
    box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -2px -2px 10px -3px rgba(255, 255, 255, 0.25), inset 2px 2px 14px -3px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    will-change: backdrop-filter;
    contain: paint;
  }
  .sidebar.is-open {
    opacity: 1;
    transform: translateY(0%);
  }
}
.sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}
@media screen and (max-width: 576px) {
  .sidebar .sidebar-header {
    display: none;
  }
}
.sidebar .navbar-btn-close {
  width: 32px;
  height: 32px;
  background: rgba(0, 215, 242, 0.2);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
  position: relative;
  border-radius: 50%;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.sidebar .navbar-btn-close:hover {
  color: rgb(255, 255, 255);
}
.sidebar .navbar-btn-close:hover::before {
  opacity: 1;
}
.sidebar .navbar-btn-close::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 215, 242, 0.6);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.sidebar .navbar-btn-close * {
  position: relative;
  z-index: 2;
}
.sidebar .navigation {
  margin-top: 44px;
}
@media screen and (max-width: 576px) {
  .sidebar .navigation {
    padding: 24px 0;
    margin-top: 0;
    border-radius: 20px;
  }
}
.sidebar .navigation-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  font-size: clamp(1rem, 0.390625vw + 0.8125rem, 1.125rem);
  line-height: 130%;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .sidebar .navigation-ul {
    align-items: center;
  }
}
.sidebar .menu-item:hover > a {
  color: rgb(255, 255, 255);
}
.sidebar .menu-item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.sidebar .current-menu-item {
  position: relative;
}
.sidebar .current-menu-item > a {
  color: rgb(255, 255, 255);
}
.sidebar .current-menu-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 29px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}

.hero .hero-block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 37px;
  padding-top: 48px;
  padding-bottom: 32px;
  border-bottom-right-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: inset 15px 30px 30px 0 #010409;
  background: linear-gradient(135deg, #010409 50%, rgba(1, 4, 9, 0) 100%), linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px), radial-gradient(171% 180% at -5% 0%, #010409 0%, rgb(2, 4, 8) 50%, rgba(1, 110, 126, 0.8) 78.15%, rgba(0, 215, 242, 0) 100%), radial-gradient(79.75% 116.38% at 50% 0%, #00D7F2 0%, #00D7F2 82.14%, #FFFFFF 100%);
  background-size: 100% 100%, 56px 56px, 56px 56px, 100% 100%, 100%, 100%;
}
@media screen and (max-width: 900px) {
  .hero .hero-block {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .hero .hero-block {
    padding-top: 0;
    box-shadow: initial;
    border-radius: 18px;
  }
}
.hero .hero-block .hero-image-cubes {
  user-select: none;
  pointer-events: none;
  position: absolute;
  width: clamp(30.625rem, 45.2631578947vw + 5.1644736842rem, 41.375rem);
  max-width: initial;
  right: 10px;
  bottom: clamp(-3.75rem, -5.2631578947vw + -0.7894736842rem, -5rem);
}
@media screen and (max-width: 900px) {
  .hero .hero-block .hero-image-cubes {
    width: 92%;
    right: -20px;
    bottom: clamp(-4.0625rem, -9.2592592593vw + -0.7291666667rem, -5.9375rem);
  }
}
@media screen and (max-width: 768px) {
  .hero .hero-block .hero-image-cubes {
    width: 100%;
    right: initial;
    left: 0;
  }
}
@media screen and (max-width: 576px) {
  .hero .hero-block .hero-image-cubes {
    display: none;
  }
}
.hero .hero-block .hero-image {
  position: relative;
  margin-right: clamp(2rem, 22.1052631579vw + -10.4342105263rem, 7.25rem);
}
@media screen and (max-width: 900px) {
  .hero .hero-block .hero-image {
    margin-left: auto;
    margin-right: 90px;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero-block .hero-image {
    margin: 0 auto;
  }
}
.hero .hero-block .hero-image .hero-image-app {
  position: relative;
}
.hero .hero-block .hero-image .hero-image-app::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: 0;
  background: rgba(31, 87, 94, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45);
  border-radius: 24px;
}
.hero .hero-block .hero-image .hero-image-app img {
  position: relative;
  width: 223px;
  border-radius: 20px;
}
.hero .hero-block .hero-data {
  position: relative;
  max-width: 760px;
  padding-right: clamp(8.125rem, -34.2105263158vw + 27.3684210526rem, 0rem);
  text-wrap: balance;
  overflow-wrap: break-word;
}
@media screen and (max-width: 576px) {
  .hero .hero-block .hero-data {
    padding-right: 0;
    text-align: center;
  }
}
.hero .hero-block .hero-data .hero-title {
  margin-top: 24px;
}
.hero .hero-block .hero-data .hero-description {
  margin-top: 16px;
  font-size: clamp(1rem, 0.4419889503vw + 0.8964088398rem, 1.25rem);
  line-height: 120%;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .hero .hero-block .hero-data .hero-description {
    padding: 0 8px;
  }
  .hero .hero-block .hero-data .hero-description br {
    display: none;
  }
}
.hero .hero-block .hero-data .hero-link {
  margin-top: 40px;
}

.cta .cta-block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: clamp(0rem, 8.7890625vw + -4.21875rem, 2.8125rem);
  flex-direction: column;
  height: clamp(22.375rem, 20.1171875vw + 12.71875rem, 28.8125rem);
  background: radial-gradient(85.27% 141% at 50% 0%, #010409 0%, rgb(2, 4, 8) 61.54%, rgba(1, 110, 126, 0.5) 78.15%, rgba(0, 215, 242, 0) 100%), radial-gradient(79.75% 116.38% at 50% 0%, #00D7F2 0%, #00D7F2 82.14%, #FFFFFF 100%);
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .cta .cta-block {
    margin-top: clamp(3.875rem, -15.7760814249vw + 7.572519084rem, 0rem);
  }
}
.cta .cta-title {
  max-width: 692px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta .cta-title {
    margin-top: clamp(-3.875rem, 15.7760814249vw + -7.572519084rem, 0rem);
  }
}
.cta .cta-description {
  max-width: 692px;
  text-align: center;
  margin-top: 24px;
  padding: 0 32px;
  font-size: clamp(1rem, 0.4419889503vw + 0.8964088398rem, 1.25rem);
  line-height: 120%;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .cta .cta-description br, .cta .cta-title br {
    display: none;
  }
}
.cta .cta-btn {
  margin-top: 40px;
}

.footer {
  margin-top: 56px;
  padding-bottom: 32px;
}
.footer .footer-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .footer-block {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }
}
.footer .footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer-info {
    align-items: center;
    text-align: center;
  }
}
.footer .footer-info .footer-info-description {
  margin-top: auto;
  max-width: 250px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer .footer-info .footer-info-description {
    margin-top: 24px;
  }
}
.footer .footer-navigation {
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer-navigation .navigation-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  font-size: clamp(1rem, 0.390625vw + 0.8125rem, 1.125rem);
  line-height: 130%;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .footer .footer-navigation .navigation-ul {
    justify-content: center;
  }
}
.footer .legal {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer .legal {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}

.faq .faq-list .faq-item {
  background: #020B0C;
  border-radius: 24px;
  overflow: hidden;
  padding: 12px 24px;
}
@media screen and (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 12px 16px;
    border-radius: 18px;
  }
}
.faq .faq-list .faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: -110px;
  transform: translateX(-50%);
  width: 1700px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 215, 242, 0.2);
  filter: blur(70px);
  pointer-events: none;
}
.faq .faq-list .faq-item + .faq-item {
  margin-top: 24px;
}
.faq .faq-list .faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}
.faq .faq-list .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq .faq-list .faq-item .faq-button {
  border: 0;
  padding: 24px 0;
  background: transparent;
  color: inherit;
  font-size: clamp(1rem, 0.390625vw + 0.8125rem, 1.125rem);
  line-height: 130%;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .faq .faq-list .faq-item .faq-button {
    padding: 12px 0;
  }
}
.faq .faq-list .faq-item .faq-button:hover .faq-icon {
  color: rgb(255, 255, 255);
}
.faq .faq-list .faq-item .faq-button .faq-icon {
  margin-left: 24px;
  transition: color 0.35s cubic-bezier(0.19, 1, 0.22, 1), transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  color: rgba(255, 255, 255, 0.7);
}
.faq .faq-list .faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.faq .faq-list .faq-item .faq-answer .faq-answer-inner {
  overflow: hidden;
}
.faq .faq-list .faq-item .faq-answer .faq-answer-inner * {
  margin-top: 0;
}
.faq .faq-list .faq-item .faq-answer .faq-answer-inner *:last-child {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .faq .faq-list .faq-item .faq-answer .faq-answer-inner *:last-child {
    margin-bottom: 12px;
  }
}

.partners .partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .partners .partners-list {
    gap: 32px;
  }
}
.partners .partners-list .partners-item {
  background: rgba(31, 87, 94, 0.2);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  padding: 0 24px;
}
.partners .partners-list .partners-item:hover {
  background: rgba(31, 87, 94, 0.4);
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  .partners .partners-list .partners-item svg {
    width: 160px;
  }
}

.prices .prices-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.prices .prices-list .prices-item {
  flex: 0 0 calc((100% - 48px) / 3);
  position: relative;
  background-color: #020B0C;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(1.5rem, 3.125vw + -0.5rem, 2rem) clamp(1rem, 3.125vw + -1rem, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .prices .prices-list .prices-item {
    flex: 0 0 calc((100% - 48px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .prices .prices-list .prices-item {
    flex: 0 0 100%;
  }
}
.prices .prices-list .prices-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 453px;
  height: 158px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse 226.5px 158.5px at 50% 0, rgba(0, 215, 242, 0.2) 0%, rgba(7, 21, 26, 0) 100%);
}
.prices .prices-list .prices-item .line {
  margin: 32px 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(1, 4, 9, 0) 0%, rgba(0, 215, 242, 0.6) 50%, rgba(1, 4, 9, 0) 100%);
}
.prices .prices-list .prices-item .prices-item-cost {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 8px;
}
.prices .prices-list .prices-item .prices-item-cost .prices-item-cost-value {
  font-size: clamp(1.875rem, 1.1049723757vw + 1.6160220994rem, 2.5rem);
  line-height: 120%;
  font-weight: 700;
}
.prices .prices-list .prices-item .prices-item-cost .prices-item-cost-count {
  font-size: 24px;
  line-height: 33px;
}
.prices .prices-list .prices-item .prices-item-soon {
  margin-top: 24px;
  height: 32px;
  border-radius: 32px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #00D0EA 0%, #174B52 100%);
}
.prices .prices-list .prices-item .prices-item-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.prices .prices-list .prices-item .prices-item-list .prices-item-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.prices .prices-list .prices-item .prices-item-list .prices-item-list-item + .prices-item-list-item {
  margin-top: 16px;
}
.prices .prices-list .prices-item .prices-item-list .prices-item-list-item .prices-item-list-item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 215, 242, 0.2);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.prices .prices-list .prices-item .prices-item-link {
  margin-top: auto;
}

.advantages .advantages-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .advantages .advantages-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .advantages .advantages-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 576px) {
  .advantages .advantages-list {
    grid-template-columns: 1fr;
  }
}
.advantages .advantages-list .advantages-item {
  grid-column: span 2;
}
@media screen and (max-width: 1024px) {
  .advantages .advantages-list .advantages-item {
    grid-column: span 1;
  }
}
.advantages .advantages-list .advantages-item:nth-child(6n+1), .advantages .advantages-list .advantages-item:nth-child(6n) {
  grid-column: span 3;
}
@media screen and (max-width: 1024px) {
  .advantages .advantages-list .advantages-item:nth-child(6n+1), .advantages .advantages-list .advantages-item:nth-child(6n) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 576px) {
  .advantages .advantages-list .advantages-item:nth-child(6n+1), .advantages .advantages-list .advantages-item:nth-child(6n) {
    grid-column: span 1;
  }
}
.advantages .advantages-list .advantages-item {
  position: relative;
  border-radius: 24px;
  background-color: #020B0C;
  overflow: hidden;
  padding: 24px 24px 2px;
}
@media screen and (max-width: 576px) {
  .advantages .advantages-list .advantages-item {
    border-radius: 18px;
    padding: 16px 16px 2px;
  }
}
.advantages .advantages-list .advantages-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 453px;
  height: 158px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse 226.5px 158.5px at 50% 0, rgba(0, 215, 242, 0.2) 0%, rgba(7, 21, 26, 0) 100%);
}
.advantages .advantages-list .advantages-item .description {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
}
.advantages .advantages-list .advantages-item .icon {
  background-color: #020B0C;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.advantages .advantages-list .advantages-item .icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 56px;
  height: 43px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse 72px 48px at 50% 0, rgba(0, 215, 242, 0.2) 0%, rgba(7, 21, 26, 0) 100%);
}
.advantages .advantages-list .advantages-item .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(0deg, #01AEC4 0%, #010609 82%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.advantages .advantages-list .advantages-item .advantages-footer {
  position: relative;
  margin-top: 60px;
}
.advantages .advantages-list .advantages-item .circle {
  height: 90px;
  background: transparent url("../img/circle.svg") no-repeat center top/100%;
  box-shadow: inset 0px -13px 20px -3px #020B0C;
}

.works .works-tabs-nav {
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 32px;
  background-color: rgba(31, 87, 94, 0.2);
  padding: 8px;
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  font-size: clamp(1rem, 0.390625vw + 0.8125rem, 1.125rem);
  line-height: 130%;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .works .works-tabs-nav {
    flex-direction: column;
    border-radius: 24px;
    gap: 8px;
  }
}
.works .works-tabs-button {
  padding: 9px 24px;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  background-color: transparent;
  color: #FFFFFF;
  transition: background 0.35s cubic-bezier(0.19, 1, 0.22, 1), color 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.works .works-tabs-button.is-active {
  background-color: rgba(31, 87, 94, 0.4);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
}
.works .works-tabs-button:hover:not(.is-active) {
  text-decoration: underline;
}
.works .works-tabs-content {
  position: relative;
  transition: height 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.works .works-tabs-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.works .works-tabs-panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.works .works-list {
  background-color: #020B0C;
  border-radius: 24px;
}
.works .works-list::after {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: min(100%, 1152px);
  height: 369px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: rgba(0, 215, 242, 0.2);
  filter: blur(120px);
}
.works .works-item {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .works .works-item {
    padding: 24px;
    gap: 24px;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 576px) {
  .works .works-item {
    padding: 16px;
    gap: 16px;
  }
}
.works .works-item .works-item-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 900px) {
  .works .works-item .works-item-content .works-item-field {
    display: none;
  }
}
.works .works-item .works-item-content .works-item-field + .works-item-field {
  margin-top: 24px;
}
.works .works-item .works-item-content .works-item-field .works-item-label {
  font-weight: 700;
  margin-bottom: 8px;
}
.works .works-item .works-item-content .works-item-field .works-item-text {
  color: rgba(255, 255, 255, 0.9);
}
.works .works-item .works-item-content .works-item-link {
  margin-top: 32px;
}
@media screen and (max-width: 900px) {
  .works .works-item .works-item-content .works-item-link {
    margin-top: 0;
  }
}
.works .works-item .works-item-preview {
  position: relative;
  background-color: rgba(31, 87, 94, 0.2);
  box-shadow: inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  padding: 8px;
  max-width: 605px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .works .works-item .works-item-preview {
    max-width: 100%;
  }
}
.works .works-item .works-item-preview:hover .works-item-preview-hover {
  opacity: 1;
}
.works .works-item .works-item-preview:hover .works-item-preview-hover-borders::before, .works .works-item .works-item-preview:hover .works-item-preview-hover-borders::after {
  opacity: 1;
  transform: translate(0, 0);
}
.works .works-item .works-item-preview .works-item-preview-hover {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 8px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.works .works-item .works-item-preview .works-item-preview-hover-text {
  font-size: clamp(1rem, 0.5089058524vw + 0.8807251908rem, 1.125rem);
  line-height: 120%;
  font-weight: 500;
  gap: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works .works-item .works-item-preview .works-item-preview-hover-borders {
  position: absolute;
  inset: 0;
}
.works .works-item .works-item-preview .works-item-preview-hover-borders::before, .works .works-item .works-item-preview .works-item-preview-hover-borders::after {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.works .works-item .works-item-preview .works-item-preview-hover-borders::before {
  transform: translate(-24px, 24px);
  left: 24px;
  bottom: 24px;
  background: url("data:image/svg+xml,%3Csvg width='27' height='27' viewBox='0 0 27 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 17.25V1.25C0 0.559644 0.559644 0 1.25 0C1.94036 0 2.5 0.559644 2.5 1.25V17.25C2.5 20.9779 5.52208 24 9.25 24H25.25C25.9404 24 26.5 24.5596 26.5 25.25C26.5 25.9404 25.9404 26.5 25.25 26.5H9.25C4.14137 26.5 0 22.3586 0 17.25Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}
.works .works-item .works-item-preview .works-item-preview-hover-borders::after {
  transform: translate(24px, -24px);
  right: 24px;
  top: 24px;
  background: url("data:image/svg+xml,%3Csvg width='27' height='27' viewBox='0 0 27 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.5 9.25V25.25C26.5 25.9404 25.9404 26.5 25.25 26.5C24.5596 26.5 24 25.9404 24 25.25V9.25C24 5.52208 20.9779 2.5 17.25 2.5H1.25C0.559645 2.5 0 1.94036 0 1.25C0 0.559645 0.559645 0 1.25 0H17.25C22.3586 0 26.5 4.14137 26.5 9.25Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
}
.works .works-item .works-item-preview img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.works .works-item .works-item-mobile-btn {
  display: none;
}
@media screen and (max-width: 900px) {
  .works .works-item .works-item-mobile-btn {
    display: block;
  }
}

.reviews .reviews-slider {
  position: relative;
}
.reviews .reviews-slider::after {
  content: "";
  position: absolute;
  right: calc(-1 * var(--wrapper-padding));
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(1, 4, 9, 0) 0%, #010409 70%);
}
@media screen and (max-width: 1024px) {
  .reviews .reviews-slider::after {
    width: 100px;
  }
}
@media screen and (max-width: 576px) {
  .reviews .reviews-slider::after {
    width: 50px;
  }
}
.reviews .swiper-slide {
  height: auto;
}
.reviews .reviews-item {
  height: 100%;
  background-color: #020B0C;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.reviews .reviews-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: -110px;
  transform: translateX(-50%);
  width: 1700px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 215, 242, 0.2);
  filter: blur(70px);
  pointer-events: none;
}
.reviews .reviews-item .reviews-item-text * {
  margin-top: 0;
}
.reviews .reviews-item .reviews-item-author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.reviews .reviews-item .reviews-item-author .reviews-item-name {
  font-size: clamp(1rem, 0.390625vw + 0.8125rem, 1.125rem);
  line-height: 130%;
  font-weight: 600;
}

.slider-nav {
  background: rgba(31, 87, 94, 0.2);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 24px;
  height: 40px;
  margin: 24px auto 0;
  padding: 4px;
  font-size: clamp(0.875rem, 0.5089058524vw + 0.7557251908rem, 1rem);
  line-height: 120%;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.slider-nav .slider-counter {
  width: 66px;
  text-align: center;
}
.slider-nav .slider-current {
  font-size: clamp(1rem, 0.5089058524vw + 0.8807251908rem, 1.125rem);
  line-height: 120%;
  font-weight: 500;
  margin-right: 4px;
}
.slider-nav .slider-arrow {
  width: 32px;
  height: 32px;
  background: rgba(0, 215, 242, 0.2);
  box-shadow: inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset -1px -1px 5px -2px rgba(255, 255, 255, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
  position: relative;
  border-radius: 50%;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.slider-nav .slider-arrow:hover {
  color: rgb(255, 255, 255);
}
.slider-nav .slider-arrow:hover::before {
  opacity: 1;
}
.slider-nav .slider-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 215, 242, 0.6);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.slider-nav .slider-arrow * {
  position: relative;
  z-index: 2;
}
.slider-nav .slider-arrow.slider-arrow-next {
  transform: scaleX(-1);
}

.steps .steps-list {
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .steps .steps-list {
    padding-top: 0;
  }
}
.steps .steps-list .steps-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .steps .steps-list .steps-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 56px;
  }
}
.steps .steps-list .steps-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .steps .steps-list .steps-item:nth-child(even) {
    flex-direction: column;
  }
}
.steps .steps-list .steps-item + .steps-item {
  margin-top: 56px;
}
.steps .steps-list .steps-item .item-left {
  flex: 1;
}
.steps .steps-list .steps-item .item-right {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .steps .steps-list .steps-item .item-right {
    margin: 0 auto;
  }
}
.steps .steps-list .steps-item .item-image {
  position: relative;
}
.steps .steps-list .steps-item .item-image::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: 0;
  background: rgba(31, 87, 94, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  pointer-events: none;
}
.steps .steps-list .steps-item .item-image::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 215, 242, 0.6);
  opacity: 0.6;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}
.steps .steps-list .steps-item .item-image img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.steps .steps-list .steps-item .item-list {
  margin-top: 32px;
}
.steps .steps-list .steps-item .item-list .item-list-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.steps .steps-list .steps-item .item-list .item-list-row + .item-list-row {
  margin-top: 24px;
}
.steps .steps-list .steps-item .item-list .item-list-icon {
  flex-shrink: 0;
  margin-top: 3px;
  margin-right: 8px;
  filter: drop-shadow(0 0 3px #00D7F2) drop-shadow(0 0 5px #00D7F2);
}
.steps .steps-list .steps-item .item-button {
  margin-top: 40px;
}

.contacts .contact-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 576px) {
  .contacts .contact-cards {
    flex-direction: column;
  }
}
.contacts .contact-cards .contact-card {
  flex: 0 0 calc((100% - 48px) / 3);
  position: relative;
  border-radius: 24px;
  background-color: #020B0C;
  overflow: hidden;
  padding: 2px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .contacts .contact-cards .contact-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 576px) {
  .contacts .contact-cards .contact-card {
    border-radius: 18px;
    padding: 2px 16px 16px;
  }
}
.contacts .contact-cards .contact-card:hover .link-title {
  text-decoration: underline;
}
.contacts .contact-cards .contact-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 453px;
  height: 158px;
  transform: scaleY(-1) translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse 226.5px 158.5px at 50% 0, rgba(0, 215, 242, 0.2) 0%, rgba(7, 21, 26, 0) 100%);
}
.contacts .contact-cards .contact-card .description {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
}
.contacts .contact-cards .contact-card .icon {
  background-color: #020B0C;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.contacts .contact-cards .contact-card .icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 56px;
  height: 43px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse 72px 48px at 50% 0, rgba(0, 215, 242, 0.2) 0%, rgba(7, 21, 26, 0) 100%);
}
.contacts .contact-cards .contact-card .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(0deg, #01AEC4 0%, #010609 82%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.contacts .contact-cards .contact-card .link-title {
  margin-top: auto;
}
.contacts .contact-cards .contact-card .contact-card-header {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
.contacts .contact-cards .contact-card .circle {
  transform: scaleY(-1);
  height: 90px;
  background: transparent url("../img/circle.svg") no-repeat center top/100%;
  box-shadow: inset 0px -13px 20px -3px #020B0C;
}

.error-404 .error-404-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.error-404 .error-404-block .error-404-image {
  margin-bottom: -80px;
}
@media screen and (max-width: 900px) {
  .error-404 .error-404-block .error-404-image {
    margin-bottom: -30px;
  }
}
@media screen and (max-width: 576px) {
  .error-404 .error-404-block .error-404-image {
    margin-bottom: -18px;
  }
}
.error-404 .error-404-block .error-404-image img {
  max-width: 100%;
}
.error-404 .error-404-block .error-404-info {
  border-radius: 24px;
  padding: 40px 40px 60px;
  background: rgba(31, 87, 94, 0.2);
  box-shadow: inset -1px -1px 1px -1px rgba(255, 255, 255, 0.45), inset 1px 1px 1px -1px rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
}
@media screen and (max-width: 900px) {
  .error-404 .error-404-block .error-404-info {
    padding: 40px 24px 60px;
  }
}
@media screen and (max-width: 576px) {
  .error-404 .error-404-block .error-404-info {
    padding: 40px 16px;
  }
}
.error-404 .error-404-block .error-404-info .error-404-description {
  margin-top: 24px;
}
.error-404 .error-404-block .error-404-info .error-404-button {
  margin-top: 32px;
}

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