@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,700;1,5..1200,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Piazzolla:ital,opsz,wght@0,8..30,100..900;1,8..30,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz@0,14..32;1,14..32&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

:root {
  --centerWidth: 1238px;
  --headerHeight: 70px;
  --bodyBg: #CAD1DA;
  --textColor: #333;
  --textColorMuted: #333741;
  --fontFamily: "Open Sans", serif;
  --textFont: 400 16px/24px var(--fontFamily);
  --textBtn: 600 16px/1.5 var(--fontFamily);
  --titleFontH1: 700 120px/1 "Playfair", serif;
  --titleFontH2: 700 80px/1 "Playfair", serif;
  --titleFontH3: 700 44px/1.2 "Playfair", serif;
  --inputFont: 400 16px/2.2 'Inter';
  --placeholderColor: rgba(255, 255, 255, 0.80);
  --border: 1px solid #282727;
  --colorAccent: #FF3B5D;
  --colorSecondary: #373A42;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--text-text-muted, rgba(255, 255, 255, 0.80));
  background: #363944;
  padding: 8px 20px;
  font: var(--inputFont);
  transition: all 0.3s ease;
  color: #fff;
}

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

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

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

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

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

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

.is-highlighted {
  color: var(--colorAccent);
}

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

.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: 60px;
  padding: 0 10px;
  text-align: center;
  cursor: pointer;
  border: none;
  background: var(--colorAccent);
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.04));
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.04));
  color: #fff;
  border-radius: 10px;
  font: var(--textBtn);
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  position: relative;
  z-index: 10;
  transition: all 0.6s ease;
  white-space: nowrap;
}

.btn:hover {
  background: #000;
  color: #fff;
}

/*header*/
.header {
  position: absolute;
  left: 0;
  right: 0;
  top: 47px;
  height: var(--headerHeight);
  z-index: 100;
}

.header:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.7;
  background: #373a46;
  mix-blend-mode: hard-light;
}

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

.header_logo {
  width: 50%;
  padding: 0 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(32, 35, 39, 0.8);
}

.header_logo .logo_link {
  width: 146.05px;
  height: 46px;
}

.header_menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-right: 20px;
}

.header_menu-item {
  color: #FFF;
  font: 600 16px/1.5 var(--fontFamily);
  margin-left: 30px;
}

.header_menu-item:last-of-type {
  margin-left: 20px;
}

.header_menu-item .btn {
  height: 40px;
  width: 160px;
}

.logo_link {
  width: 100%;
  height: 100%;
}

.logo_img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.header_menu-switcher,
.header_menu-overlay {
  display: none;
}

/*main*/
.section__main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  background: url(../i/bg.png) no-repeat center 0/cover;
  padding: calc(var(--headerHeight) + 47px) 0 47px;
  z-index: 80;
}

.section__main::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.8;
  background: url(../i/bg-pattern.png) no-repeat center/cover;
  z-index: -1;
  mix-blend-mode: color-burn;
}

.main::before,
.main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #6E7382;
  z-index: -1;
}

.main::before {
  left: 15.5%;
}

.main::after {
  right: 7%;
}

.main_title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0;
  text-align: center;
}

.main_title svg {
  width: 100%;
  height: auto;
}

.main_title-item-wrap {
  white-space: nowrap;
}

.main_title-item__1,
.main_title-item__3,
.main_title-item__4,
.main_title-item__6 {
  font: 211px/0.8 'Roboto', sans-serif;
}

.main_title-item__1 {
  opacity: 0.5;
  color: #2F3B52;
  font-weight: 700;
  letter-spacing: 12.674px;
}

.main_title-item__2 {
  font-size: 70px;
  color: #1B1D22;
  opacity: 0.8;
}

.main_title-item__3 {
  opacity: 0.5;
  color: #838C9C;
  font-weight: 300;
}

.main_title-item__4 {
  color: #111;
  font-weight: 100;
}

.main_title-item__5 {
  font-size: 55px;
  color: #000;
  opacity: 0.5;
}

.main_title-item__6 {
  font-weight: 400;
  background: linear-gradient(30deg, #FFAB96 13.41%, #FF0F47 86.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main_pic {
  background: url(../i/scroll-img.svg) no-repeat center/contain;
  width: 84px;
  height: 110px;
  margin: 0 auto 25px;
  position: relative;
}

.main_pic::before {
  content: '';
  position: absolute;
  bottom: 40%;
  left: 50%;
  height: 3000px;
  width: 1px;
  background: #6E7382;
}

.main_text {
  text-align: center;
  color: #333741;
  font: 400 22px/1.17 'Oxygen';
}

.main_text-item {
  display: block;
}

.main_text-item__1 {
  font: 700 50px/1 "Playfair", serif;
  margin-bottom: 6px;
}

/*advantages*/
.section__advantages {
  position: relative;
  min-height: 855px;
  z-index: 200;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 35px;
  background: url(../i/bg.png) no-repeat center 0/cover;
}

.section__advantages::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  background: url(../i/pattern-bg-2.png) no-repeat center bottom/cover;
  z-index: -1;
}

.advantages_bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 855px;
  background: #C3C6D6;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 61%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 61%, 0% 100%);
  z-index: -1;
  overflow: hidden;
}

.advantages_bg::before,
.advantages_bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
}

.advantages_bg::before {
  bottom: 0;
  right: 0;
  mix-blend-mode: multiply;
  background: url(../i/bg-2.png) no-repeat center 0/cover;
  z-index: -2;
}

.advantages_bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: url(../i/advantages-img.jpg) no-repeat right 0/cover;
  z-index: -1;
}

.advantages_inner {
  width: 60%;
  margin-left: auto;
  padding-left: 80px;
  position: relative;
}

.advantages_inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 200px;
  -webkit-transform: translate(0, -65%);
  transform: translate(0, -65%);
  width: 353px;
  height: 353px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url(../i/arrow-1.svg) no-repeat center/contain;
  z-index: 200;
}

.advantages_text {
  padding: 100px 0 0;
  max-width: 560px;
  position: relative;
}

.advantages_title {
  text-transform: uppercase;
  color: #FFF;
  font: 300 55px/1.6 'Roboto', sans-serif;
  white-space: nowrap;
}

.advantages_title b {
  font-weight: 500;
}

.advantages_title-time {
  position: absolute;
  right: 100%;
  margin-right: 16px;
  top: 100px;
  font-weight: 400;
  border-radius: 11px;
  background: #373A42;
  padding: 0 15px;
  width: 160px;
  height: 85px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
}

.advantages_title .icon {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  line-height: 62px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.40);
}

.advantages_text-decoration {
  color: #2B2E39;
  font: 500 24px/1.3 'Piazzolla';
  letter-spacing: 0.963px;
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  margin-top: 10px;
}

.advantages_text-decoration div:nth-child(2) {
  text-indent: 70px;
}

.advantages_images {
  margin-top: 35px;
  max-width: 560px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.advantages_image-text {
  position: absolute;
  left: 0;
  top: 50px;
  color: #C3C6D6;
  font: 300 36px/1.3 'Piazzolla';
  letter-spacing: 1.429px;
  z-index: -1;
}

.advantages_image-text div:nth-child(2) {
  font-size: 24px;
  letter-spacing: 0.963px;
  text-indent: -30px;
}

/*development*/
.section__development {
  padding-bottom: 135px;
}

.development_separator {
  border-top: 3px solid #333;
  padding: 18px 0 18px 90px;
  color: #333;
  font: italic 400 25px/1.2 'Roboto', sans-serif;
}

.development_separator b {
  font-weight: 700;
}

.development_title {
  width: -webkit-max-content;
  width: max-content;
  margin: 0 20px 35px auto;
  position: relative;
}

.development_title .icon {
  position: absolute;
  right: 100%;
  margin-right: 30px;
  bottom: 0;
  color: var(--colorAccent);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 69px;
  height: 69px;
  margin-right: 26px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 69px;
}

.development_title .icon::after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 2px;
  width: 332px;
  background: currentColor;
}

.development_text {
  max-width: 847px;
  color: #333;
  font: 300 40px/1.4 "Open Sans", sans-serif;
  margin-left: 140px;
}

.development_text b {
  font-weight: 600;
}

/*news*/
.section__news {
  --centerWidth: 1040px;
  padding: 30px 0 70px;
  margin-bottom: 40px;
  position: relative;
  z-index: 100;
}

.section__news::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  height: 200px;
  width: 50%;
  border-top-left-radius: 12px;
  background: #A8AFBC;
}

.news_bg {
  height: 230px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -2;
  background: #99A0AA;
}

.news_bg::after {
  content: '';
  position: absolute;
  z-index: -2;
  right: 0;
  left: 0;
  bottom: 0;
  height: 230px;
  background: url(../i/bg-2.png) no-repeat center 0/cover;
  mix-blend-mode: multiply;
}

.decoration__news {
  width: 582.514px;
  height: 666.108px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: url(../i/decoration-1.svg) no-repeat center/contain;
}

.news {
  margin: 0 0 0 auto;
  width: 100%;
  max-width: 853px;
  min-height: 308px;
  overflow: hidden;
  z-index: 10;
  border-radius: 8px;
  padding: 20px 250px 20px 40px;
  position: relative;
  background: linear-gradient(30deg, #FFAB96 13.41%, #FF0F47 86.6%);
}

.news::before {
  content: '';
  position: absolute;
  right: -15%;
  top: 50%;
  z-index: -1;
  width: 672px;
  height: 723px;
  -webkit-transform: rotate(-54deg) translate(0%, -66%);
  transform: rotate(-54deg) translate(0%, -66%);
  background: #252831;
}

.news_badge {
  padding: 5px 20px;
  margin-bottom: 20px;
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  color: #414658;
  font: 600 20px/normal 'Montserrat';
  border-radius: 39px;
  border: 4px solid #B2C1CB;
  background: #91A7B4;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2) inset;
}

.news_title {
  color: #FFF;
  font: 800 36px/normal 'Montserrat';
  margin-bottom: 10px;
}

.news_description {
  color: #FFF;
  font: 400 23px/1.4 'Open Sans';
}

.news_link {
  margin: 20px 0 0 auto;
  color: #FF365B;
  font: 700 20px/normal 'Montserrat';
  width: -webkit-max-content;
  width: max-content;
}

.news_decoration {
  position: absolute;
  right: 30px;
  top: 20px;
  width: 74px;
  height: 74px;
  font-size: 74px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

/*section design*/
.section__design {
  --centerWidth: 1040px;
  padding: 70px 0;
  border-top: 1px solid rgba(98, 104, 114, 0.50);
}

.design_title {
  color: #161515;
  font-family: Playfair;
  font-size: 138px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 120px;
}

.design_title .is-highlighted {
  background: linear-gradient(30deg, #FFAB96 13.41%, #FF0F47 86.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.design {
  position: relative;
  z-index: 10;
}

.design_text {
  max-width: 517px;
  margin-left: auto;
  color: #333;
  font: 300 40px/1.4 "Open Sans", sans-serif;
}

.design_img {
  position: absolute;
  top: 0;
  left: -137px;
  width: 596px;
  height: 850px;
  z-index: -1;
}

.design_img-text {
  color: #4B4949;
  font: 300 45px/1.3 "Open Sans", sans-serif;
  margin-top: 40px;
}

.design_img-text b {
  font-weight: 700;
}

/*section basics*/
.section__basics {
  --centerWidth: 1040px;
  padding: 60px 0;
  background: #202327;
  margin-bottom: 160px;
}

.basics_text {
  max-width: 824px;
  color: #B2B4C0;
  font: 400 60px/1.5 "Open Sans", sans-serif;
}

.basics_text .is-highlighted-2 {
  position: relative;
  font-weight: 600;
  color: #fff;
}

.basics_text .is-highlighted-2::before {
  content: '';
  width: 274.791px;
  height: 26.387px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
  background: url(../i/text-decoration.svg) no-repeat center bottom/contain;
}

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

.basics_image {
  width: 617px;
  height: 617px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.basics_image__3 {
  width: 566px;
  height: 570px;
  position: relative;
  right: 0;
  background-image: url(../i/basics-img-1.png);
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.basics_image__2 {
  -webkit-transform: translate(30%, 8%);
  transform: translate(30%, 8%);
  position: relative;
  z-index: 2;
  background-image: url(../i/basics-img-2.png);
}

.basics_image__1 {
  position: relative;
  z-index: 3;
  -webkit-transform: translate(50%, 40%);
  transform: translate(50%, 40%);
  background-image: url(../i/basics-img-3.png);
}

/**/
.management_info-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 3px solid #333;
  padding-top: 18px;
  padding-right: 106px;
}

.management_img-block {
  width: 201px;
  height: 201px;
  position: relative;
  margin: 0 106px 33px auto;
}

.management_img-block::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  width: 243px;
  height: 85px;
  background: url(../i/arrow-2.svg) no-repeat center/contain;
  margin-right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.management_img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: url(../i/product-photo.png) no-repeat center/cover;
}

.management_img-text {
  color: #2F281E;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  width: 490px;
  height: 108px;
  right: 100%;
  bottom: 100%;
  border-radius: 26px;
  background: #FFF;
  box-shadow: 0px 2px 15px 0px rgba(23, 58, 86, 0.10);
  -webkit-transform: translate(70px, 25px);
  transform: translate(70px, 25px);
}

.management_img-text::before,
.management_img-text::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.management_img-text::before {
  right: 60px;
  bottom: -15%;
  height: 35px;
}

.management_img-text::after {
  right: 5%;
  bottom: -35%;
  width: 20px;
  height: 20px;
}

.management_title {
  color: #767F90;
  font: 400 25px/1.2 'Roboto', sans-serif;
}

.management_name {
  color: #333;
  font: 400 25px/1.1 'Roboto', sans-serif;
}

.management_info-position {
  color: #7B8493;
  font: 400 20px/1.1 'Roboto', sans-serif;
  display: block;
}

/*section workflow*/
.section__workflow {
  position: relative;
  padding: 60px 0 85px;
  background: url(../i/bg-3.png) no-repeat center 0/cover;
}

.workflow_title {
  color: #333741;
  font: 700 120px/1 'Playfair';
  letter-spacing: -4.8px;
  margin: 0 0 40px 40px;
  max-width: 1056px;
}

.workflow_description {
  margin-left: 93px;
  max-width: 830px;
  color: #333741;
  font-family: Oxygen;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 36.8px */
}

.workflow_description-title {
  color: var(--Gray-1, #333);
  font-family: "Open Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 56px */
  margin-bottom: 20px;
}

.workflow_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 60px 0;
}

.workflow_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #333741;
  font-family: "Open Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  padding: 25px 20px;
  max-width: calc(33.3% - 30px);
  border-radius: 8px;
  border: 2px solid #F2F4F6;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.workflow_item-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 55px;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
  background-color: #333741;
  -webkit-clip-path: path("M30 0.8C46.57 0.8 60 14.34 60 30.9C60 35.44 58.99 39.74 57.19 43.6C50.14 45.03 41.54 47.49 35.83 51.58C28.72 56.66 17.81 55.52 10.8 54.01C4.2 48.48 0 40.17 0 30.9C0 14.34 13.43 0.8 30 0.8Z");
  clip-path: path("M30 0.8C46.57 0.8 60 14.34 60 30.9C60 35.44 58.99 39.74 57.19 43.6C50.14 45.03 41.54 47.49 35.83 51.58C28.72 56.66 17.81 55.52 10.8 54.01C4.2 48.48 0 40.17 0 30.9C0 14.34 13.43 0.8 30 0.8Z");
}

.workflow_item-title {
  display: -ms-flexbox;
  display: flex;
  width: 310px;
  height: 50px;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 20px;
  color: #333741;
  font-family: Playfair;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 31.2px */
}

.workflow_item-text {
  margin-bottom: 30px;
}

.workflow_item-action {
  margin-top: auto;
}

.workflow_item-action .btn {
  width: 224px;
}

/*contact us*/
.section__contact-us {
  overflow: hidden;
  background: #202327 url(../i/decoration-2.svg) no-repeat center bottom -120px;
  padding: 40px 0 150px;
}

.contact-us_title {
  color: #FFF;
  margin-bottom: 70px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font: 700 80px/1 'Playfair';
}

.contact-us_title .icon {
  color: var(--colorAccent);
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 69px;
  height: 69px;
  margin-left: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 69px;
}

.contact-us_title .icon::after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 2px;
  width: 3000px;
  background: currentColor;
}

.contact-us_block {
  max-width: 1110px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 8px;
  background: #424550;
  box-shadow: 0px 10px 30px 0px rgba(25, 26, 40, 0.60);
}

.contact-us_description,
.contact-us-custom_success {
  color: #D1D1D1;
  text-align: center;
  font: 400 18px/1.6 Oxygen;
  margin-bottom: 40px;
}

.contact-us-custom_success {
  margin: 40px 0;
  display: none;
  font-weight: 700;
}

.is-success .contact-us-custom_success {
  display: block;
}

.contact-us_form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-us-custom-fields {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.contact-us-custom-field:not(.contact-us-custom-field__message) {
  max-width: calc(50% - 10px);
}

.contact-us-custom-field .label {
  display: none;
}

.contact-us-custom-field_error {
  margin-top: 4px;
  color: var(--colorAccent);
}

.contact-us-custom_button {
  width: 220px;
  margin: 0 auto;
}

/*about*/
.section__about {
  min-height: 855px;
  padding: 117px 0 30px;
  position: relative;
}

.about {
  position: relative;
  overflow: hidden;
}

.about_bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 855px;
  background: #C3C6D6;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 61%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 61%, 0% 100%);
  z-index: -1;
  overflow: hidden;
}

.about_bg::before,
.about_bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
}

.about_bg::before {
  bottom: 0;
  right: 0;
  mix-blend-mode: multiply;
  background: url(../i/bg-2.png) no-repeat center 0/cover;
  z-index: -2;
}

.about_bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: url(../i/about-img.jpg) no-repeat right 0/cover;
  z-index: -1;
}

.about_bg-img {
  position: absolute;
  bottom: 20%;
  z-index: 10;
  -webkit-transform: translate(-120%, 0);
  transform: translate(-120%, 0);
  left: 40%;
}

.about_inner {
  padding: 58px 0 0 140px;
  width: 50%;
  margin-left: 40%;
  max-width: 700px;
}

.about_text-decoration {
  color: #2B2E39;
  font: 500 24px/1.3 'Piazzolla';
  letter-spacing: 0.963px;
  -webkit-transform: translate(177px, 0);
  transform: translate(177px, 0);
}

.about_text-decoration div:nth-child(2) {
  text-indent: 74px;
}

.about_text-decoration-2 {
  color: #C3C6D6;
  font: 300 36px/1.3 'Piazzolla';
  letter-spacing: 1.429px;
  -webkit-transform: translate(-100px, 0);
  transform: translate(-100px, 0);
}

.about_text-decoration-2 div:nth-child(2) {
  color: #C3C6D6;
  font: 300 24px/1.3 'Piazzolla';
  letter-spacing: 0.963px;
  text-indent: 25px;
}

.about_title {
  position: relative;
  color: #FFF;
  font: 700 142px/0.9 'Playfair';
  letter-spacing: 2.83px;
}

.about_title .icon {
  position: absolute;
  bottom: 20px;
  right: 100%;
  width: 69px;
  height: 69px;
  font-size: 69px;
}

.about_title .icon::after {
  content: '';
  width: 2px;
  position: absolute;
  bottom: 50%;
  height: 3000px;
  left: 50%;
  margin-left: -4px;
  background: currentColor;
}

.about_img {
  margin: 120px 0 0 -130px;
  width: 656px;
  height: 192px;
  background: url(../i/about-img-2.png) no-repeat center/contain;
}

/*principles*/
.section__principles {
  overflow: hidden;
  padding-bottom: 50px;
}

.principles_separator {
  border-top: 3px solid #333;
  padding: 18px 0 18px 90px;
  color: #333;
  font: italic 400 25px / 1.2 'Roboto', sans-serif;
}

.principles_separator b {
  font-weight: 700;
}

.principles_title {
  color: #333741;
  font: 700 80px/1 'Playfair';
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-bottom: 35px;
}

.principles_title .icon {
  position: absolute;
  right: 100%;
  bottom: 0;
  color: var(--colorAccent);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 69px;
  height: 69px;
  margin-right: 26px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 69px;
}

.principles_title .icon::after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 2px;
  width: 332px;
  background: currentColor;
}

.principles_text {
  max-width: 850px;
  color: #333;
  font: 300 40px/1.4 "Open Sans";
  padding-left: 110px;
}

/*section tech*/
.section__tech {
  background: #252831;
  padding: 60px 0 80px;
}

.tech {
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
  z-index: 10;
  border-radius: 8px;
  padding: 50px 250px 50px 360px;
  position: relative;
  background: linear-gradient(29deg, #FFAB96 13.24%, #FF0F47 121.76%);
}

.tech_img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 549px;
  height: 360px;
  background: url(../i/tech-img.png) no-repeat center/contain;
}

.tech::before {
  content: '';
  position: absolute;
  right: -15%;
  top: 50%;
  z-index: -1;
  width: 832px;
  height: 1034px;
  -webkit-transform: rotate(-45deg) translate(0, -75%);
  transform: rotate(-45deg) translate(0, -75%);
  background: #373C49;
}

.tech_title {
  color: #FFF;
  font: 800 36px/normal 'Montserrat';
  margin-bottom: 15px;
}

.tech_description {
  color: #FFF;
  font: 400 23px/1.4 "Open Sans";
}

.tech_decoration {
  position: absolute;
  right: 30px;
  top: 20px;
  width: 74px;
  height: 74px;
  font-size: 74px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

.tech_link {
  color: #FF365B;
  font: 700 20px/normal 'Montserrat';
  margin: 25px 0 0 auto;
  width: -webkit-max-content;
  width: max-content;
}

/*section tech*/
.section__database {
  padding: 60px 0;
  position: relative;
}

.database::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 590.286px;
  height: 596.231px;
  -webkit-transform: translate(0, -40%);
  transform: translate(0, -40%);
  z-index: 1;
  background: url(../i/decoration-3.svg) no-repeat right center/contain;
}

.database {
  max-width: 850px;
}

.database_title {
  color: #333741;
  font: 700 80px/1 'Playfair';
  margin-bottom: 35px;
}

.database_text {
  color: #333;
  font: 300 40px/1.4 "Open Sans";
}

/*section safety*/
.section__safety {
  padding: 0 0 105px;
}

.safety_separator {
  border-top: 3px solid #333;
  padding: 18px 0 18px 90px;
  color: #333;
  font: italic 400 25px / 1.2 'Roboto', sans-serif;
  margin-bottom: 60px;
}

.safety_separator b {
  font-weight: 700;
}

.safety_title {
  color: #161515;
  font: 700 138px/1 'Playfair';
  margin-bottom: 44px;
  padding-left: 270px;
  position: relative;
}

.safety_title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 270px;
  height: 138px;
  background: url(../i/arrow-1.svg) no-repeat center/contain;
}

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

.safety_img-block {
  width: 576px;
}

.safety_img-text {
  width: -webkit-max-content;
  width: max-content;
  margin: 35px 0 0 auto;
  color: #4B4949;
  font: 300 45px/1.3 "Open Sans";
}

.safety_img-text b {
  font-weight: 700;
}

.safety_img {
  width: 576px;
  height: 543.141px;
  background: url(../i/safe-img.png) no-repeat center/contain;
}

.safety_text {
  color: #333;
  font: 300 40px/1.4 "Open Sans";
  padding-left: 40px;
  max-width: calc(100% - 590px);
}

.safety_text b {
  font-weight: 600;
}

/*section ux*/
.section__ux {
  --centerWidth: 1007px;
  background: #202327;
  padding-bottom: 115px;
}

.ux_bg {
  position: relative;
  height: 347px;
  background: #E9ECF3;
}

.ux_bg-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  mix-blend-mode: multiply;
  background: url(../i/section-bg.jpg) no-repeat center/cover;
}

.ux {
  position: relative;
  padding-top: 20px;
}

.ux_icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 110px;
  color: #fff;
  -webkit-transform: translate(0, -70%);
  transform: translate(0, -70%);
  display: -ms-flexbox;
  display: flex;
  width: 166px;
  height: 166px;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 28px;
  border: 10px solid rgba(255, 255, 255, 0.30);
  background: #91A7B4;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.30), 0px 7px 21px 0px rgba(0, 0, 0, 0.15);
}

.ux_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 85px;
}

.ux_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 40px;
  margin: 0 6px;
  padding: 0 27px;
  color: #FFF;
  text-align: center;
  font: 600 20px/normal 'Montserrat';
  border-radius: 39px;
  border: 4px solid #B2C1CB;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.50) inset;
}

.ux_description {
  color: #FFF;
  font: 400 28px/1.4 "Open Sans";
}

.ux_description p {
  margin-bottom: 20px;
}

.ux_info {
  margin-top: 70px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #B2B4C0;
  font: 400 40px/1.5 "Open Sans", sans-serif;
}

.ux_text {
  max-width: 578px;
  padding-top: 20px;
}

.ux_img {
  margin-left: -45px;
  width: 416px;
  height: 782px;
  background: url(../i/ux-img.png) no-repeat center/contain;
}

/*section timelines*/
.section__timelines {
  padding: 80px 0 105px;
}

.timelines_separator {
  border-top: 3px solid #333;
  padding: 18px 0 18px 90px;
  color: #333;
  font: italic 400 25px / 1.2 'Roboto', sans-serif;
  margin-bottom: 60px;
}

.timelines_title {
  color: #333741;
  font: 700 120px/1 'Playfair';
  letter-spacing: -4.8px;
  margin-bottom: 64px;
  position: relative;
}

.timelines_title .icon {
  position: absolute;
  right: 135px;
  top: 28px;
  color: var(--colorAccent);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 69px;
  height: 69px;
  margin-right: 26px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 69px;
}

.timelines_title .icon::after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 2px;
  width: 445px;
  background: currentColor;
}

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

.timelines_img {
  border-radius: 8px;
  overflow: hidden;
  width: 407px;
  height: 750px;
  background: url(../i/timeline-img.jpg) no-repeat center/cover;
}

.timelines_info .timelines_items {
  max-width: calc(100% - 447px);
}

.timelines_item {
  position: relative;
  padding: 0 0 40px 80px;
  color: #62656A;
  font: 400 23px/1.6 'Oxygen';
}

.timelines_item::before {
  content: '';
  position: absolute;
  width: 1px;
  left: 29px;
  top: 2px;
  bottom: -2px;
  z-index: 1;
  border-left: 2px dotted #7C8898;
}

.timelines_item__6::before {
  display: none;
}

.timelines_item__3 {
  padding-bottom: 105px;
}

.timelines_item-title {
  color: #333741;
  font: 700 64px/1 'Playfair';
  letter-spacing: -2.56px;
  margin-bottom: 10px;
}

.timelines_item-subtitle {
  color: var(--Gray-1, #333);
  font: 600 32px/1.4 "Open Sans";
}

.timelines_item-number {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 55px;
  color: #FFF;
  font: 700 50px/1 'Playfair';
  padding-bottom: 5px;
  background-color: #FF3B5D;
  -webkit-clip-path: path("M30 0.8C46.57 0.8 60 14.34 60 30.9C60 35.44 58.99 39.74 57.19 43.6C50.14 45.03 41.54 47.49 35.83 51.58C28.72 56.66 17.81 55.52 10.8 54.01C4.2 48.48 0 40.17 0 30.9C0 14.34 13.43 0.8 30 0.8Z");
  clip-path: path("M30 0.8C46.57 0.8 60 14.34 60 30.9C60 35.44 58.99 39.74 57.19 43.6C50.14 45.03 41.54 47.49 35.83 51.58C28.72 56.66 17.81 55.52 10.8 54.01C4.2 48.48 0 40.17 0 30.9C0 14.34 13.43 0.8 30 0.8Z");
}

.timelines_item-text {
  color: #62656A;
  font: 400 23px/1.6 'Oxygen';
}

.timelines_item-badge {
  position: absolute;
  right: 123px;
  top: 0;
  width: 160px;
  height: 36px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 0px 0px 8px 8px;
  background: #333741;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font: 600 19px/1.4 "Open Sans";
}

.timelines_items__2 .timelines_item {
  margin: 0 -20px 30px;
  padding: 45px 20px 40px 97px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 8px;
  border: 2px solid #7C8898;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.timelines_items__2 .timelines_item::before {
  top: 100%;
  bottom: -32px;
  left: 49px;
}

.timelines_items__2 .timelines_item-title {
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1.4;
}

.timelines_items__2 .timelines_item-number {
  background: #333741;
  top: 40px;
  left: 20px;
}

.timelines_items__2 .timelines_item-text {
  max-width: 400px;
}

/*section statistic*/
.section__statistic {
  padding: 47px 0 207px;
  background: #202327 url(../i/decoration-2.svg) no-repeat right 20% bottom -120px/328px 298px;
}

.statistic_item {
  width: -webkit-max-content;
  width: max-content;
  max-width: 100%;
  text-align: right;
  margin-left: auto;
  color: #FFF;
  font: 700 120px/1 'Playfair';
  white-space: nowrap;
  position: relative;
}

.statistic_item-percent {
  color: #4E5463;
  font: 400 90px/1 "Open Sans";
}

.statistic_item__1::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 75%;
  width: 243px;
  height: 85px;
  background: url(../i/arrow-2.svg) no-repeat center/contain;
  margin-right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.statistic_item__3 {
  font-size: 90px;
}

/*static page*/
.section__static-page {
  padding: 200px 0 100px;
  color: #373A42;
}

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

.static-page h3 {
  font: var(--titleFontH3);
  margin-bottom: 20px;
  color: #333;
}

.static-page ul li {
  list-style: disc;
  list-style-position: outside;
  margin: 0 0 20px 20px;
}

/*footer*/
.footer {
  padding: 65px 0;
  --centerWidth: 1441px;
  color: #fff;
  position: relative;
}

.footer_bg {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  z-index: -2;
  background: #747784;
}

.footer_bg::after {
  content: '';
  position: absolute;
  z-index: -2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  background: url(../i/bg-2.png) no-repeat center 0/cover;
  mix-blend-mode: multiply;
}

.footer_logo {
  margin: 0 0 40px 105px;
  width: 244px;
  height: 76.85px;
}

.footer_menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 105px;
}

.footer_menu-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.footer_menu-item {
  margin-left: 40px;
  color: rgba(255, 255, 255, 0.80);
  font: 400 16px/2.2 'Inter';
}

.footer_menu-item:first-of-type {
  margin-left: 0;
}

.copyright {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #fff;
  text-align: center;
}