@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --centerWidth: 1280px;
  --bodyBg: #151515;
  --textColor: #fff;
  --textColorMuted: #8C8C8C;
  --iconColor: #B9B9B9;
  --fontFamily: "Mulish", serif;
  --textFont: 400 18px/1.4 var(--fontFamily);
  --textBtn: 600 18px/1.4 var(--fontFamily);
  --titleFontH1: 700 62px/1.2 var(--fontFamily);
  --titleFontH2: var(--titleFontH1);
  --titleFontBig: 700 64px/normal var(--fontFamily);
  --placeholderColor: #fff;
  --border: 1px solid #282727;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 16px 0;
  line-height: normal;
  font-size: 24px;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  --placeholderColor: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  padding-left: 10px;
}

textarea {
  height: 108px;
  max-width: 100%;
  resize: none;
}

/*main styles*/
body {
  font: var(--textFont);
  color: var(--textColor);
  background: var(--bodyBg);
  position: relative;
  overflow-x: hidden;
}

::-webkit-input-placeholder {
  color: var(--placeholderColor);
}

:-ms-input-placeholder {
  color: var(--placeholderColor);
}

::-ms-input-placeholder {
  color: var(--placeholderColor);
}

::placeholder {
  color: var(--placeholderColor);
}

.center {
  max-width: var(--centerWidth);
  width: calc(100% - 40px);
  height: inherit;
  margin: 0 auto;
}

.title__h1 {
  font: var(--titleFontH1);
}

.title__h2 {
  font: var(--titleFontH2);
}

.btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 56px;
  padding: 5px 22px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #fff;
  background: #fff;
  color: #111;
  border-radius: 100px;
  font: var(--textBtn);
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: all 0.6s ease;
}

.btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  transition: all 0.6s ease;
  border-radius: inherit;
}

.btn:hover {
  background: transparent;
}

.btn:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.btn__secondary {
  background: transparent;
  color: #fff;
}

.btn__secondary::after {
  background: rgba(255, 255, 255, 0.2);
}

.btn:hover .icon {
  -webkit-transform: translate(5px, 0);
  transform: translate(5px, 0);
}

.btn .icon {
  transition: all 0.6s ease;
  margin-left: 10px;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*header*/
.header {
  padding: 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}

.header_wrap {
  min-height: 56px;
}

.header_logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header_wrap,
.header_menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header_menu {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header_menu-items {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header_menu-item {
  margin: 0 30px;
  position: relative;
}

.header_menu-item:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 100%;
  background: #fff;
  height: 1px;
  transition: all 0.3s ease-in-out;
}

.header_menu-item:hover:before {
  right: 0;
}

.header_menu-toggle {
  display: none;
}

.section {
  border-bottom: var(--border);
  position: relative;
  z-index: 2;
}

.section .center {
  padding: 140px 40px;
  border: var(--border);
  border-top: none;
  border-bottom: none;
}

/*main section*/
.section__main {
  height: 100vh;
  background: url(../i/main-bg.jpg) no-repeat center 0/cover;
}

.section__main .center {
  border: none;
  padding: 90px 0 160px;
}

.main {
  height: 100%;
  text-align: center;
  max-width: 800px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 auto;
}

.main_text {
  margin: 32px 0;
}

.main_actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main_action {
  margin: 0 10px;
  width: 210px;
}

.main_action .btn {
  width: 100%;
}

.main_counter {
  width: 100%;
  max-width: 440px;
  padding: 16px 24px;
  margin: 130px auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 22px;
  border: 1px solid #FFFEFE;
  background: linear-gradient(87deg, rgba(255, 255, 255, 0.13) 0%, rgba(207, 137, 239, 0.41) 98.87%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: left;
}

.main_counter-number {
  font-size: 52px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.main_counter-text {
  margin-left: 20px;
  font-size: 20px;
  line-height: normal;
}

/*why us section*/
.why-us_title-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.why-us_title {
  margin-right: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.why-us_description {
  text-align: left;
}

.why-us_items {
  margin-top: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.why-us_item {
  -ms-flex: 1;
  flex: 1;
  border-left: var(--border);
  padding-left: 40px;
  margin-left: 40px;
}

.why-us_item:first-of-type {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

.why-us_item-title {
  font: var(--titleFontBig);
  margin-bottom: 24px;
}

.why-us_item-description {
  display: -ms-flexbox;
  display: flex;
  color: var(--textColorMuted);
}

.why-us_item .icon {
  margin-right: 16px;
  color: var(--iconColor);
}

/*footer*/
.section__about-us {
  position: relative;
}

.section__about-us .center::before,
.section__about-us .center::after,
.section__process .center::before,
.section__process .center::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.8;
}

.section__about-us .center,
.section__process .center {
  position: relative;
}

.section__about-us .center::before {
  left: 0;
  top: 100%;
  -webkit-transform: translate(-60%, -30%);
  transform: translate(-60%, -30%);
}

.section__about-us .center::after {
  left: 100%;
  top: 0;
  -webkit-transform: scale(0.8) translate(-40%, -20%);
  transform: scale(0.8) translate(-40%, -20%);
}

.section__process .center::before {
  left: 0;
  top: 100%;
  -webkit-transform: translate(-50%, -10%);
  transform: translate(-50%, -10%);
}

.section__process .center::after {
  left: 100%;
  top: 0;
  -webkit-transform: scale(0.8) translate(-50%, 0);
  transform: scale(0.8) translate(-50%, 0);
}

.section__about-us::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: var(--border);
  z-index: -1;
}

.about-us_details {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-us_img {
  max-height: 698px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-us_action,
.about-us_description {
  width: calc(50% - 40px);
}

/*benefits*/
.benefits_img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-height: 816px;
  margin: 40px 0;
}

.benefits_title {
  text-align: center;
}

.benefits_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.benefits_item {
  width: 50%;
  padding: 0 40px;
  margin-bottom: 170px;
  border-right: var(--border);
}

.benefits_item:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

.benefits_item-title {
  font: var(--titleFontBig);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.benefits_item-description {
  display: -ms-flexbox;
  display: flex;
  color: var(--textColorMuted);
}

.benefits_item .icon {
  margin-right: 16px;
  color: var(--iconColor);
}

/*contact us*/
.section__contact-us {
  background: url(../i/contact-us-bg.jpg) no-repeat center bottom;
}

.section__contact-us .center {
  border: none;
}

.contact-us {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.contact-us_title {
  text-align: center;
}

.contact-us_badge {
  font-size: 32px;
  line-height: 22px;
  font-weight: 600;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.19);
  padding: 18px 24px;
  width: -webkit-max-content;
  width: max-content;
  margin: 32px auto 0;
}

.contact-us_description {
  text-align: center;
  margin-top: 32px;
}

.contact-us_form {
  width: 100%;
  max-width: 640px;
  padding: 40px;
  margin: 140px auto 0;
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.30);
  background: rgba(0, 0, 0, 0.41);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.contact-us-custom-field {
  position: relative;
  margin-bottom: 60px;
  width: 100%;
}

.contact-us-custom-field:last-of-type {
  margin-bottom: 0;
}

.contact-us-custom-field_error {
  font-size: 16px;
  color: #fff;
  margin-top: 5px;
  transition: ease 200ms;
}

.contact-us-custom-field_error:empty {
  margin-top: 0;
}

.contact-us-custom_success {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  transition: all 1s ease;
  color: #fff;
  text-align: center;
}

.contact-us-custom.is-success .contact-us-custom_success {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}

.contact-us-custom_button {
  margin: 32px auto 0;
  min-width: 210px;
}

/*section promo*/
.section__promo .center {
  border: none;
  padding-bottom: 0;
}

.section__promo {
  height: 100vh;
  overflow: hidden;
}

.promo {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.promo_img {
  min-height: 100vh;
  margin: -96px -100px 0 0;
}

.promo_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.promo_content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 800px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
}

.promo_title {
  margin-bottom: 32px;
}

.promo_description__2 {
  margin-top: 180px;
  margin-bottom: 32px;
}

/*our-pluses*/
.section__our-pluses .center {
  padding: 140px 0 0;
}

.our-pluses_title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.our-pluses_description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.our-pluses_items {
  padding: 60px;
  background: #282727;
}

.our-pluses_item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.our-pluses_item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.our-pluses_item-title {
  text-transform: uppercase;
  font: var(--titleFontBig);
  margin-bottom: 24px;
}

.our-pluses_item-description {
  display: -ms-flexbox;
  display: flex;
  color: var(--textColorMuted);
}

.our-pluses_item-description .icon {
  margin-right: 16px;
  color: var(--iconColor);
}

/*process*/
.process_title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.process_description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.process_item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process_item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.process_item-title {
  text-transform: uppercase;
  font: var(--titleFontBig);
  margin-bottom: 24px;
}

.process_item-description {
  display: -ms-flexbox;
  display: flex;
  color: var(--textColorMuted);
}

.process_item-description .icon {
  margin-right: 16px;
  color: var(--iconColor);
}

/*platform*/
.platforms_title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.platforms_item {
  max-width: 560px;
}

.platforms_item__2 {
  margin: 0 0 0 auto;
}

.platforms_img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 80px 0;
}

.platforms_item-title {
  font-size: 32px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 32px;
}

/*technologies*/
.technologies_title-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 140px;
}

.technologies_title,
.technologies_description {
  max-width: calc(50% - 20px);
}

.technologies_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.technologies_item {
  width: calc(50% - 30px);
  padding-right: 60px;
  margin: 0 60px 126px 0;
  border-right: var(--border);
}

.technologies_item:nth-child(even) {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.technologies_item:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

.technologies_item-title {
  font-size: 46px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: normal;
}

.technologies_item-icons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.technologies_item-icon {
  width: 100px;
  height: 100px;
  margin: 0 60px 0 0;
}

.technologies_item-icon .icon {
  width: 100%;
  height: 100%;
  font-size: 100px;
  color: #323232;
}

.technologies_item-icon:last-of-type {
  margin-right: 0;
}

/*static page*/
.section__static-page .center {
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.static-page p {
  margin-bottom: 20px;
}

.static-page h1 {
  margin-bottom: 40px;
  font: var(--titleFontH1)
}

.static-page h4 {
  margin: 40px 0 20px;
  font-size: 32px;
  font-weight: 600;
}

.static-page ul {
  margin-bottom: 20px;
}

.static-page li {
  margin-bottom: 10px;
  list-style: disc;
  list-style-position: inside;
}

.static-page a {
  color: #FF6A0D;
  text-decoration: underline;
}

/*footer*/
.footer {
  padding: 40px 20px;
}

.footer_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer_menu-item {
  margin-left: 48px;
  position: relative;
}

.footer_menu-item:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 100%;
  background: #fff;
  height: 1px;
  transition: all 0.3s ease-in-out;
}

.footer_menu-item:hover:before {
  right: 0;
}