@font-face {
  font-family: "interbold";
  src: url("assets/fonts/inter-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "interlight";
  src: url("assets/fonts/inter-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "intermedium";
  src: url("assets/fonts/inter-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ubuntubold";
  src: url("assets/fonts/ubuntu-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ubuntu_light";
  src: url("assets/fonts/ubuntu-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ubuntumedium";
  src: url("assets/fonts/ubuntu-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ubunturegular";
  src: url("assets/fonts/ubuntu-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: ubunturegular;
}

html {
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  background: #1E222E;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

h2 {
  font-family: interbold;
  font-style: normal;
  font-size: 48px;
  line-height: 64px;
  text-align: center;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  max-width: 801px;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
@media (min-width: 360px) and (max-width: 1023px) {
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 360px) and (max-width: 1023px) {
  .locked {
    overflow: hidden;
  }
}

.header {
  position: fixed;
  width: 100%;
  background: #1E222E;
  display: flex;
  justify-content: center;
  z-index: 1000;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .header {
    overflow-x: hidden;
    height: 80px;
  }
}
@media (min-width: 1024px) {
  .header {
    display: flex;
    height: 104px;
  }
}
.header-container {
  width: 100%;
  max-width: 1920px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  align-items: center;
  padding: 24px 108px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .header-container {
    padding: 24px;
  }
}
@media (min-width: 360px) and (max-width: 1023px) {
  .header-container {
    overflow-x: hidden;
    height: 80px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .header-container {
    padding: 24px 60px;
  }
}
.header-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
  gap: 32px;
}
.header__toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
  background: url("assets/svg/menu-toggle-arrow.svg");
  z-index: 200;
  width: 24px;
  height: 24px;
  transition: all 0.4s;
}
.header__toggle:hover {
  opacity: 0.8;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .header__toggle {
    display: block;
  }
}
.header__logo {
  width: 154.21px;
  height: 32px;
  background: url("assets/svg/logo-full.svg");
}
.header__button {
  width: 135px;
  height: 56px;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .header__button {
    display: none !important;
    pointer-events: none;
  }
}
.header-dropdown {
  opacity: 0.6;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .header-dropdown {
    display: none;
    pointer-events: none;
  }
}
.header-dropdown:hover {
  opacity: 1;
}
.header-dropdown::after {
  display: block;
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  background-image: url("assets/svg/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.header-dropdown_active {
  opacity: 1;
}
.header-dropdown_active .header-dropdown-options {
  display: block;
}
.header-dropdown_active .header-dropdown__value {
  border: 1px solid #1FC477;
}
.header-dropdown_active::after {
  transform: rotate(180deg);
}
.header-dropdown__value {
  cursor: pointer;
  margin: 0;
  padding: 16px 16px 16px 24px;
  width: 320px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: #1E222E;
  color: white;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  line-height: 24px;
  font-family: ubunturegular;
}
.header-dropdown__value::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.header-dropdown__value::-ms-expand {
  display: none;
}
.header-dropdown-options {
  position: absolute;
  top: 70px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}
.header-dropdown__option {
  display: block;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 12px 16px 12px 24px;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  height: 48px;
  background: #2B3142;
  color: white;
}
.header-dropdown__option:hover, .header-dropdown__option:active {
  background: #3E4760;
}
.header-dropdown__option_active {
  background: #1FC477 !important;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .header_opened .header-mobile {
    display: flex;
    flex-direction: column;
  }
}
.header_opened .header__toggle {
  transform: scaleY(-1);
}
.header-mobile {
  display: none;
  position: fixed;
  top: 80px;
  width: 100%;
  height: calc(100vh + 80px);
  background-color: #2B3142;
  z-index: 9999;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header-mobile::-webkit-scrollbar {
  display: none;
}
.header-mobile-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.header-mobile__close {
  background: url("assets/svg/menu-close.svg");
  width: 24px;
  height: 24px;
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}
.header-mobile__close:active, .header-mobile__close:hover {
  opacity: 0.8;
}
.header-mobile__value {
  pointer-events: none;
  background-color: #2B3142;
  color: #ffffff;
  font-family: interbold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.04em;
  padding: 24px;
  border: none;
  outline: none;
  margin-bottom: 10px;
}
.header-mobile__value::placeholder {
  color: #ffffff;
  opacity: 1;
}
.header-mobile__item {
  padding: 12px 24px;
  background-color: #2B3142;
  color: #ffffff;
  font-family: interlight;
  font-size: 16px;
  line-height: 24px;
  border: none;
  position: relative;
  cursor: pointer;
}
.header-mobile__item:hover, .header-mobile__item:active {
  background: #3E4760;
}
.header-mobile__item_active {
  background: #1FC477 !important;
}
.header-mobile__item:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 24px;
  display: block;
  height: 24px;
  width: 24px;
  background-image: url("assets/svg/menu-arrow.svg");
}

.promo {
  width: 100%;
  padding-top: 104px;
  height: 960px;
  background-image: url("assets/images/bg-main.jpg");
  background-position-y: -268px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .promo {
    height: auto;
    background-position: top;
    background-size: 200%;
    padding: 80px 24px 36px;
  }
}
.promo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  justify-content: flex-start;
  width: 100%;
  position: relative;
  max-width: 1512px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .promo-container {
    display: block;
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .promo-container {
    width: calc(100% - 60px);
  }
}
@media (min-width: 1280px) and (max-width: 1440px) {
  .promo-container {
    width: calc(100% - 120px);
  }
}
@media (min-width: 1440px) and (max-width: 1920px) {
  .promo-container {
    width: calc(100% - 216px);
  }
}
@media (min-width: 1920px) {
  .promo-container {
    width: calc(100% - 408px);
  }
}
.promo-card {
  width: 724px;
  height: 560px;
  flex: none;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .promo-card {
    width: 100%;
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .promo-card {
    width: 380px;
  }
}
@media (min-width: 1280px) and (max-width: 1920px) {
  .promo-card {
    width: 599px;
  }
}
@media (min-width: 1920px) {
  .promo-card {
    width: 724px;
  }
}
.promo-card h1 {
  color: #FFFFFF;
  font-family: "interbold";
  font-size: 72px;
  line-height: 84px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 4px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .promo-card h1 {
    font-size: 32px;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.03em;
    width: calc(100% - 60px);
    padding-top: 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .promo-card h1 {
    font-size: 48px;
    line-height: 64px;
  }
}
.promo-card h1 span {
  color: #1FC477;
  line-height: inherit;
  letter-spacing: inherit;
  font-family: inherit;
}
.promo-card__button {
  margin-top: 30px;
  font-size: 20px;
  line-height: 32px;
  padding: 16px 24px;
  width: 200px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .promo-card__button {
    margin-top: 16px;
    width: 100%;
    max-width: 312px;
  }
}
.promo-card__text {
  padding-top: 16px;
  font-family: intermedium;
  font-style: normal;
  font-size: 24px;
  line-height: 48px;
  color: #FFFFFF;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .promo-card__text {
    font-family: intermedium;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    padding-top: 9px;
  }
}
.promo-tiles {
  width: 736px;
  height: 560px;
  flex: none;
  flex-grow: 0;
  flex-shrink: 0;
}
.promo-tiles-line {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 4px;
  margin-bottom: 4px;
}
.promo-tiles-line_second {
  margin-left: 94px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .promo-tiles {
    display: none;
  }
}
@media (min-width: 1280px) and (max-width: 1920px) {
  .promo-tiles {
    position: absolute;
    left: 665px;
  }
}
@media (min-width: 1920px) {
  .promo-tiles {
    position: absolute;
    left: 776px;
  }
}
.promo-tile {
  width: 184px;
  height: 184px;
  border-radius: 4px;
  padding: 16px 20px 16px 16px;
  background-color: #3E4760;
  color: white;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: none;
  flex-grow: 0;
  flex-shrink: 0;
}
.promo-tile__icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-top: 10px;
  margin-left: 10px;
}

.promo-tile__icon_big {
  width: 48px;
  height: 48px;
  margin: 0;
}

.promo-tile__text {
  font-family: ubunturegular;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.promo-tile_main {
  background: linear-gradient(213.86deg, #29D56D 22.31%, #1D917C 79.92%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.promo-tile_main .promo-tile__icon {
  width: 50px;
  height: 60px;
  margin-top: 6px;
  margin-left: 0;
}
.promo-tile_empty {
  background: rgba(43, 49, 66, 0.3);
  backdrop-filter: blur(16px);
  flex: none;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (min-width: 1920px) {
  .promo {
    background-size: cover;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1FC477;
  border-radius: 8px;
  color: #ffffff;
  outline: 0;
  font-family: ubunturegular;
  border: 0;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
.button:hover {
  background-color: #1EE57B;
}
.button:active {
  background-color: #1E9463;
}
.button:disabled {
  opacity: 0.4;
}

.companies {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.companies h2 {
  display: block;
  padding-top: 98px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .companies h2 {
    padding-top: 22px;
  }
}

.slider {
  width: 100%;
  margin-top: 46px;
  position: relative;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider {
    margin-top: 14px;
  }
}
.slider-list {
  list-style: none;
  width: 100%;
  text-align: center;
  position: relative;
  padding: 0;
  margin: 0;
}
.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  text-align: center;
  padding: 0;
  transition: all 1.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  height: 720px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-item {
    height: 356px;
  }
}
.slider-item-bg {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-item-bg {
    border-radius: 12px 12px 16px 16px;
  }
}
@media (max-width: 1920px) {
  .slider-item-bg {
    background-position: center !important;
  }
}
.slider-item-bg_small {
  background-position-y: -145px;
}
.slider-item-bg_medium {
  background-position-y: -400px;
}
.slider-item-bg_large {
  background-position-y: -45px;
}
.slider-item-bg_white {
  background-position-y: 0px;
}
.slider-item-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 648px;
  height: 224px;
  background: #2B3142;
  border-radius: 12px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-item-label {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 116px !important;
    border-radius: 0 0 12px 12px;
    text-overflow: ellipsis;
  }
}
.slider-item-label_big {
  height: 256px;
}
.slider-item-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-item-content {
    padding: 16px;
    gap: 12px;
  }
}
.slider-item__title {
  font-family: interbold;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-item__title {
    font-family: intermedium;
    font-size: 16px;
    line-height: 24px;
  }
}
.slider-item-crew {
  display: flex;
  position: absolute;
  top: 47px;
  right: 50px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-item-crew {
    top: 18px;
    right: 18px;
  }
}
.slider-item-crew__icon {
  margin-right: 8px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-item-crew__icon {
    width: 16px;
    height: 16px;
    margin-right: 13px;
    margin-top: 4px;
  }
}
.slider-item-crew__amount {
  color: #1FC477;
  font-family: interlight;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.04em;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-item-crew__amount {
    font-size: 16px;
    line-height: 24px;
  }
}
.slider-item__text {
  font-family: interlight;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  text-align: left;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-item__text {
    font-size: 12px;
    line-height: 20px;
  }
}
.slider-item.active {
  display: block;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.slider-nav {
  display: flex;
  position: absolute;
  gap: 12px;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  user-select: none;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-nav {
    margin-top: 14px;
    gap: 4px;
    bottom: 127px;
  }
}
.slider-nav__item {
  cursor: pointer;
  width: 88px;
  height: 88px;
  background-color: #2B3142;
  opacity: 0.8;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .slider-nav__item {
    width: 48px;
    height: 48px;
  }
}
.slider-nav__item:active {
  opacity: 1;
}
.slider-nav__item_next {
  background-image: url("assets/svg/slider/arrow-next.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.slider-nav__item_prev {
  background-image: url("assets/svg/slider/arrow-prev.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.opportunites {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opportunites_mb {
  padding-bottom: 50px;
}
.opportunites h2 {
  display: block;
  padding-top: 72px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .opportunites h2 {
    padding-top: 52px;
  }
}
.opportunites-container {
  display: flex;
  gap: 24px;
  padding-top: 48px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .opportunites-container {
    display: block;
  }
}
.opportunites-container-inner {
  display: flex;
  gap: 24px;
}
@media (min-width: 360px) and (max-width: 760px) {
  .opportunites-container-inner {
    display: block;
    margin-bottom: 20px;
  }
}
@media (min-width: 760px) and (max-width: 1023px) {
  .opportunites-container-inner {
    margin-bottom: 20px;
  }
}
.opportunites-item {
  padding: 48px;
  border-radius: 24px;
  border: 1px solid #3E4760;
  flex: 1 1 100%;
  max-width: 288px;
}
@media (min-width: 360px) and (max-width: 760px) {
  .opportunites-item {
    margin-bottom: 20px;
  }
  .opportunites-item:last-child {
    margin-bottom: 0;
  }
}
.opportunites-item__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: #1FC477;
  font-family: interlight;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .opportunites-item__icon {
    height: 40px;
    width: 40px;
  }
}
.opportunites-item__desc {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color:  #FFF;
  font-family: interlight;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .opportunites-item__desc {
    font-size: 16px;
    line-height: 25px;
  }
}
.features {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features h2 {
  display: block;
  padding-top: 74px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .features h2 {
    padding-top: 52px;
  }
}
.features-lines {
  margin-top: 44px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .features-lines {
    margin-top: 13px;
  }
}
.features-line {
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .features-line {
    gap: 4px;
    padding-bottom: 4px;
    width: 100%;
    flex-direction: column;
  }
}
.features-item {
  display: block;
  gap: 24px;
  padding: 48px;
  height: 314px;
  background: #2B3142;
  box-shadow: 0 8px 24px rgba(24, 24, 24, 0.3);
  border-radius: 24px;
  flex: 1 1 100%;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .features-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 16px;
    justify-content: flex-start;
    gap: 0;
  }
}
.features-item-info {
  display: flex;
  flex-direction: column;
}
.features-item__icon {
  width: 96px;
  height: 96px;
  font-size: 24px;
  margin-bottom: 18px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .features-item__icon {
    height: 48px;
    width: 48px;
  }
}
.features-item__title {
  font-family: interbold;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .features-item__title {
    font-size: 16px;
    line-height: 25px;
    padding-top: 17px;
  }
}
.features-item__text {
  font-family: interlight;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  padding-top: 13px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .features-item__text {
    font-size: 16px;
    line-height: 25px;
    padding-top: 4px;
  }
}
.tech {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.tech h2 {
  display: block;
  padding-top: 72px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .tech h2 {
    padding-top: 52px;
  }
}
.tech-container {
  display: flex;
  gap: 24px;
  padding-top: 48px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .tech-container {
    display: block;
  }
}
.tech-item {
  padding: 48px;
  border-radius: 24px;
  border: 1px solid #3E4760;
  flex: 1 1 100%;
  max-width: 392px;
  background-image: url("assets/svg/tech/tech-bg.svg");
  background-repeat: no-repeat;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .tech-item {
    margin-bottom: 20px;
  }
  .tech-item:last-child {
    margin-bottom: 0;
  }
}
.tech-item__icon {
  margin-bottom: 24px;
  color: #1FC477;
  font-family: interlight;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.tech-item__icon img {
  display: block;
  margin: 0 auto;
}
.tech-item__desc {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color:  #FFF;
  font-family: interlight;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .tech-item__desc {
    font-size: 16px;
    line-height: 25px;
  }
}
.sdk {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .sdk {
    display: none;
  }
}
.sdk h2 {
  display: block;
  padding-top: 52px;
}
.sdk-flow {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  margin-top: 46px;
  padding-bottom: 24px;
}
.sdk-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 360px;
  height: 216px;
  background: #2B3142;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .sdk-block {
    height: 280px;
  }
}
.sdk-block__header {
  padding: 24px 32px;
  width: 100%;
  font-family: interbold;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .sdk-block__header {
    height: 84px;
    display: flex;
    align-items: center;
  }
}
.sdk-block-row {
  display: flex;
  width: 100%;
  flex-direction: row;
}
.sdk-block__node {
  width: 50%;
  height: 72px;
  padding: 24px;
  font-family: interlight;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .sdk-block__node {
    display: flex;
    align-items: center;
    height: 100px;
  }
}
.sdk-block__node_active {
  background: #1FC477;
}
.sdk-block__node_active {
  background: #1FC477;
}
.sdk-block__node_darker {
  background: rgba(255, 255, 255, 0.05);
}
.sdk-block__node_dark {
  background: rgba(255, 255, 255, 0.1);
}
.sdk-block__node_light {
  background: rgba(255, 255, 255, 0.15);
}
.sdk-block__node_lighter {
  background: rgba(255, 255, 255, 0.2);
}
.sdk-joint {
  width: 232px;
  height: 216px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 56px;
  gap: 12px;
}
.sdk-joint_vertical {
  padding-top: 0;
  height: 116px;
  width: 302px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-left: 14px;
}
.sdk-joint_vertical .sdk-joint__arrow {
  width: 12px;
  height: 100%;
  background-image: url("assets/svg/sdk/sdk-joint-vertical.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0;
  margin-right: -7px;
}
.sdk-joint_vertical .sdk-joint__text {
  width: 146px;
  text-align: left;
}
.sdk-joint__arrow {
  width: 100%;
  height: 12px;
  background-image: url("assets/svg/sdk/sdk-joint-horizontal.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -8px;
}
.sdk-joint__text {
  font-family: interlight;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  text-align: center;
}
.sdk-app {
  width: 232px;
  height: 216px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(213.86deg, #29D56D 22.31%, #1D917C 79.92%);
  border-radius: 12px;
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .sdk-app {
    height: 280px;
  }
}
.sdk-app:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  display: block;
  width: 20px;
  height: 24px;
  background-image: url("assets/svg/sdk/sdk-app-shield.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.sdk-app:after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  display: block;
  width: 40px;
  height: 8px;
  background-image: url("assets/svg/sdk/sdk-app-dots.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.sdk-app__text {
  font-family: interbold;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: left;
}
.sdk-discovery {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
}
.sdk-discovery__node {
  font-family: interlight;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  height: 72px;
  padding: 24px;
  width: 295px;
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .sdk-discovery__node {
    width: 223px;
  }
}
@media (min-width: 1440px) {
  .sdk-discovery__node {
    width: 295px;
  }
}
.sdk-discovery__node_darkest {
  background: #2B3142;
  font-family: interbold;
  width: 334px !important;
  padding-left: 32px;
}
.sdk-discovery__node_darker {
  background: rgba(255, 255, 255, 0.05);
}
.sdk-discovery__node_dark {
  background: rgba(255, 255, 255, 0.1);
}
.sdk-discovery__node_light {
  background: rgba(255, 255, 255, 0.15);
}
.sdk-discovery__node_lighter {
  background: rgba(255, 255, 255, 0.2);
}

.management {
  border-radius: 24px;
  margin-top: 74px;
  background-color: #2B3142;
  width: 100%;
  height: 640px;
  padding: 96px 128px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .management {
    height: auto;
    padding: 16px;
    margin-top: 46px;
    border-radius: 12px;
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .management {
    padding: 96px 60px;
  }
}
@media (min-width: 1280px) and (max-width: 1920px) {
  .management {
    padding: 96px 104px;
  }
}
@media (min-width: 1920px) {
  .management {
    padding: 96px 128px;
  }
}
.management-top {
  width: 100%;
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .management-top {
    max-width: 400px;
  }
}
@media (min-width: 1280px) and (max-width: 1920px) {
  .management-top {
    max-width: 496px;
  }
}
@media (min-width: 1280px) and (max-width: 1920px) {
  .management-top {
    max-width: 496px;
  }
}
@media (min-width: 1920px) {
  .management-top {
    max-width: 616px;
  }
}
.management-top__title {
  font-family: interbold;
  font-size: 48px;
  line-height: 64px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-top: 14px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .management-top__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.management-top__text {
  font-family: interlight;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  margin-top: 22px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .management-top__text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 24px;
  }
}
.management-bottom__text {
  font-family: interlight;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  padding-bottom: 14px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .management-bottom__text {
    margin-top: 22px;
    font-size: 12px;
    line-height: 16px;
    padding-bottom: 8px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .management-bottom {
    max-width: 496px;
  }
}
@media (min-width: 1280px) and (max-width: 1920px) {
  .management-bottom {
    max-width: 496px;
  }
}
@media (min-width: 1920px) {
  .management-bottom {
    max-width: 616px;
  }
}
.management-protocols {
  display: flex;
  gap: 8px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .management-protocols {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
.management-protocols__item {
  height: 48px;
  background: #1FC477;
  border-radius: 8px;
  color: #ffffff;
  outline: 0;
  font-family: interbold;
  text-transform: uppercase;
  border: 0;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .management-protocols__item {
    width: 100%;
    max-width: 402px;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .management-protocols__item {
    padding: 10px 18px;
    font-size: 15px;
  }
}
.management-protocols__item_side {
  border: 1px solid #1FC477;
  background: #3E4760;
}
.management__image {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  height: 448px;
  background-image: url("assets/images/management.png");
  background-size: cover;
  background-repeat: no-repeat;
  right: 0;
  top: 96px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .management__image {
    width: 100%;
    height: 186px;
    position: relative;
    right: unset;
    top: unset;
    border-radius: 6px;
    overflow: hidden;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .management__image {
    width: 450px;
  }
}
@media (min-width: 1280px) and (max-width: 1919px) {
  .management__image {
    width: 500px;
  }
}
@media (min-width: 1920px) {
  .management__image {
    width: 600px;
  }
}

.app {
  border-radius: 24px;
  margin-top: 70px;
  background-color: #29C37B;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .app {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .app {
    padding: 60px;
    height: 673px;
  }
}
@media (min-width: 1280px) and (max-width: 1920px) {
  .app {
    padding: 69px 104px;
    height: 673px;
  }
}
@media (min-width: 1920px) {
  .app {
    height: 636px;
    padding: 96px 128px;
  }
}
.app-content {
  display: flex;
  flex-direction: column;
  flex: none;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .app-content {
    width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .app-content {
    padding-top: 20px;
    width: 480px;
  }
}
@media (min-width: 1280px) and (max-width: 1920px) {
  .app-content {
    padding-top: 30px;
    width: 496px;
  }
}
@media (min-width: 1920px) {
  .app-content {
    padding-top: 0;
    width: 612px;
  }
}
.app__phone {
  width: 570px;
  height: calc(100% - 80px);
  left: 0;
  background-image: url(assets/images/mobile-vpn-screen.webp);
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  background-size: 392px;
  background-position-x: 182px;
  background-position-y: -15px;
  bottom: 0;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .app__phone {
    position: relative;
    width: 100%;
    height: 200px;
    left: unset;
    background-size: 112px 228px;
    background-position-y: 18px;
    background-position-x: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 4px 4px 0 0;
    margin-top: -14px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .app__phone {
    width: 36%;
    height: 100%;
    background-position-x: 81%;
    background-position-y: -12%;
    background-size: cover;
    top: 5%;
    left: 7%;
  }
}
@media (min-width: 1280px) and (max-width: 1440px) {
  .app__phone {
    width: 36%;
    height: 100%;
    background-position-x: 81%;
    background-position-y: -12%;
    background-size: cover;
    top: 5%;
    left: 7%;
  }
}
.app__title {
  font-family: interbold;
  font-size: 48px;
  line-height: 64px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-bottom: 13px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .app__title {
    font-size: 24px;
    line-height: 32px;
    padding-top: 14px;
  }
}
.app__text p {
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  font-family: interlight;
  padding-top: 10px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .app__text p {
    font-size: 16px;
    line-height: 24px;
    padding-top: 0;
  }
}
.app-google-play {
  display: flex;
  gap: 16px;
  padding-top: 66px;
  align-items: center;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .app-google-play {
    padding-top: 22px;
    gap: 7px;
  }
}
@media (min-width: 1440px) and (max-width: 1920px) {
  .app-google-play {
    padding-top: 86px;
  }
}
@media (min-width: 1920px) {
  .app-google-play {
    padding-top: 86px;
  }
}
.app-google-play__link {
  width: 50px;
  height: 50px;
  outline: 0;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  flex: none;
  flex-grow: 0;
  flex-shrink: 0;
}
.app-google-play__link_google-play {
  background-image: url("assets/svg/google-play-mini.svg");
}
.app-google-play__link_microsoft {
  background-image: url("assets/svg/microsoft.svg");
}
.app-google-play__link_app-store {
  background-image: url("assets/svg/app-store.svg");
}
.app-google-play__text {
  width: 431px;
  font-family: interlight;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .app-google-play__text {
    font-size: 12px;
    line-height: 16px;
    width: 100%;
  }
}

.steps {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.steps h2 {
  max-width: 100%;
  padding-top: 72px;
  padding-bottom: 46px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .steps h2 {
    padding-top: 50px;
    padding-bottom: 14px;
  }
}
.steps-items {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}
.steps-item {
  display: flex;
  padding: 48px;
  background: #2B3142;
  border-radius: 24px;
  width: 100%;
  height: 176px;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .steps-item {
    justify-content: flex-start;
    height: auto !important;
    padding: 16px;
    flex-direction: column;
    border-radius: 12px;
    align-items: flex-start;
  }
}
.steps-item_big {
  height: 208px;
}
.steps-item-info {
  width: calc(100% - 92px);
}
@media (min-width: 360px) and (max-width: 1023px) {
  .steps-item-info {
    width: 100%;
    order: 2;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .steps-item-info {
    width: calc(100% - 120px);
  }
}
.steps-item-info__title {
  font-family: interbold;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .steps-item-info__title {
    font-size: 16px;
    line-height: 24px;
    margin-top: 4px;
  }
}
.steps-item-info__text {
  font-family: interlight;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  padding-top: 16px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .steps-item-info__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.steps-item__number {
  width: 80px;
  height: 80px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #FFFFFF;
  font-family: interbold;
  background-color: #1FC477;
  border-radius: 12px;
  flex: none;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .steps-item__number {
    font-size: 16px;
    line-height: 24px;
    width: 48px;
    height: 48px;
    border-radius: 6px;
  }
}

.contact-wrapper {
  margin-top: -72px;
  padding-top: 40px;
  width: 100%;
  height: 708px;
}

.contact {
  position: relative;
  border-radius: 24px;
  margin-top: 72px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .contact {
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
    padding: 0;
    margin-top: 0px;
    text-align: center;
  }
}
@media (min-width: 1024px) and (max-width: 1920px) {
  .contact {
    padding: 12px;
  }
}
@media (min-width: 1920px) {
  .contact {
    padding: 76px 12px 12px;
  }
}
.contact__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("assets/images/contact.jpg");
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-position-y: -148px;
  background-repeat: no-repeat;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .contact__bg {
    position: static;
    width: 100%;
    height: 240px;
    background-position: left center;
    margin-top: 48px;
    border-radius: 12px 12px 0 0;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .contact__bg {
    background-position: center;
  }
}
@media (min-width: 1440px) and (max-width: 1920px) {
  .contact__bg {
    background-position-y: -53px;
  }
}
@media (min-width: 1920px) {
  .contact__bg {
    background-position-y: -148px;
  }
}
.contact-form {
  height: 100%;
  background: #1E222E;
  backdrop-filter: blur(16px);
  border-radius: 12px;
  z-index: 2;
  padding: 48px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .contact-form {
    padding: 16px;
  }
}
@media (min-width: 1024px) and (max-width: 1920px) {
  .contact-form {
    width: 480px;
  }
}
@media (min-width: 1920px) {
  .contact-form {
    width: 604px;
  }
}
.contact-form__title {
  font-family: interbold;
  font-size: 48px;
  line-height: 64px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 4px;
  margin-bottom: 30px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .contact-form__title {
    padding: 16px;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 24px;
    margin-top: -10px;
  }
}
.contact-form__button {
  height: 56px;
  margin-top: 20px;
  font-family: ubunturegular;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .contact-form__button {
    margin-top: 0;
  }
}
.contact-form__terms {
  font-family: interlight;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  padding-top: 30px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .contact-form__terms {
    font-size: 12px;
    line-height: 16px;
    padding-top: 10px;
    text-align: left;
  }
}
.contact-form__terms a {
  font-family: interlight;
  font-size: inherit;
  line-height: inherit;
  color: #1FC477;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.contact-form__terms a:hover {
  opacity: 0.8;
}
.contact__error {
  margin-top: 5px;
  color: #FFFFFF;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .contact__error {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 5px;
    text-align: left;
  }
}
.input {
  width: 100%;
  height: 56px;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  caret-color: #1FC477;
  font-family: ubunturegular;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  outline: none;
  border: none;
  background-color: #2B3142;
}
.input_error {
  background: #B11C1C;
}
.input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.input:disabled {
  opacity: 0.4;
}
.input:active, .input:hover {
  background-color: #3E4760;
}

.footer {
  width: 100%;
  margin-top: 97px;
  padding-bottom: 152px;
  padding-top: 40px;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .footer {
    margin-top: 49px;
  }
}
@media (max-width: 1440px) {
  .footer {
    padding-bottom: 60px;
  }
}
@media (min-width: 1440px) and (max-width: 1920px) {
  .footer {
    padding-bottom: 120px;
  }
}
.footer-top {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .footer-top {
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
}
.footer__logo {
  width: 154.21px;
  height: 32px;
  background: url("assets/svg/logo-full.svg");
}
@media (min-width: 360px) and (max-width: 1023px) {
  .footer__logo {
    margin-bottom: 23px;
  }
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials__item {
  display: block;
  text-decoration: none;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-socials__item:active, .footer-socials__item:hover {
  opacity: 0.8;
}
.footer-socials__item_git {
  background-image: url("assets/svg/social/github.svg");
}
.footer-socials__item_telegram {
  background-image: url("assets/svg/social/telegram.svg");
}
.footer-socials__item_twitter {
  background-image: url("assets/svg/social/twitter.svg");
}
.footer__line {
  width: 100%;
  height: 0;
  opacity: 0.2;
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-top: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.footer__link {
  font-family: ubunturegular;
  font-size: 16px;
  line-height: 24px;
  color: #1FC477;
  text-decoration: none;
}
.footer__copyright {
  font-family: ubunturegular;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.success-popup {
  border-radius: 8px;
  background-color: #2B3142;
  position: fixed;
  z-index: 2;
  font-size: 18px;
  padding: 12px 16px;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.success-popup.visible {
  opacity: 1;
}

a {
  font-size: 16px;
  line-height: 24px;
  color: #1FC477;
  text-decoration: none;
}

.wrap {
  width: 100%;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 360px) and (max-width: 1023px) {
  .wrap {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .wrap {
    padding: 0 30px;
  }
}
@media (min-width: 1280px) and (max-width: 1440px) {
  .wrap {
    padding: 0 60px;
  }
}
@media (min-width: 1440px) and (max-width: 1920px) {
  .wrap {
    padding: 0 108px;
  }
}
@media (min-width: 1920px) {
  .wrap {
    padding: 24px 204px;
  }
}

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