:root {
  --color-text: #FFFFFF;
  --color-text-light-1: #899FD8;
  --color-text-light-2: #4F6398;
  --color-text-light-3: #C0C0C0;
  --color-text-dark: #000000;
  --color-accent: #FFB41D;
  --color-accent-2: #4220EA;
  --color-accent-3: #8F31E3;
  --max-width: 1230px;
  --max-width-2: 1480px;
  --color-placeholder: rgba(31, 33, 40, 0.5);
}

/*icons*/
@font-face {
  font-family: 'icomoon';
  src:
    url('../f/icons/icomoon.ttf') format('truetype'),
    url('../f/icons/icomoon.woff') format('woff'),
    url('../f/icons/icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.icon {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon__hamburger::before {
  content: "\e909";
}

.header_hamburger.is-active .icon__hamburger::before {
  content: "\e908";
}

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

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

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

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

/*main styles*/
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth"100;
  font-size: 20px;
  line-height: 1.5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #000000;
  color: var(--color-text);
}

.title {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 58px;
  width: 220px;
  padding: 10px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  text-align: center;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  position: relative;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  width: 90%;
  height: 25px;
  border-radius: 10px;
  background: var(--color-accent);
  -webkit-filter: blur(44px);
  filter: blur(44px);
}

.btn:hover {
  opacity: 0.7;
}

.center {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/*header*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  z-index: 10;
}

.header .center {
  max-width: calc(var(--max-width) + 80px);
}

.header_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0;
}

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

.logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 40px;
}

.logo_link {
  display: block;
  width: 160px;
  height: 40px;
}

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

.menu_item {
  margin: 0 20px;
  transition: all 0.3s ease;
}

.menu_item:hover,
.menu_item.is-active {
  color: var(--color-accent-2);
}

.menu_item.is-active {
  pointer-events: none;
}

.header_hamburger {
  margin: 0 40px 0 20px;
}

.icon__hamburger {
  font-size: 32px;
  color: var(--color-accent);
}

/*content*/
.content {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.main {
  background: url('../i/bg-main.png') no-repeat center center / cover;
}

.main__index {
  padding: 220px 0 140px;
}

.main__social,
.main__talk-team {
  padding: 300px 0 100px;
  background-image: url('../i/bg-main-2.png');
}

.main__talk-team {
  padding-bottom: 40px;
}

.main_wrap {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main .main_decoration {
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.main__talk-team .main_decoration,
.main__social .main_decoration {
  width: 590px;
  height: 700px;
  right: 0;
  top: 0;
  -webkit-transform: translate(15px, -170px);
  transform: translate(15px, -170px);
}

.main__talk-team .main_decoration {
  background-image: url('../i/bg-main_team.png');
}

.main__social .main_decoration {
  background-image: url('../i/bg-main_social.png');
}

.main__index .main_decoration {
  left: 0;
  top: 0px;
  width: 290px;
  height: 290px;
  background-image: url('../i/shape_arrow.svg');
  -webkit-transform: translate(-70%, -75px);
  transform: translate(-70%, -75px);
}

.main_title {
  line-height: 1.2;
}

.main__index .main_title {
  font-size: 95px;
  max-width: 800px;
  position: relative;
  z-index: 1;
  margin-bottom: 95px;
}

.main__social .main_title,
.main__talk-team .main_title {
  font-size: 75px;
  margin-bottom: 165px;
  letter-spacing: 0.05em;
  max-width: 700px;
}

.main__talk-team .main_title {
  margin-bottom: 274px;
}

.main__index .main_title__accent-1 {
  color: var(--color-accent-2);
  opacity: 0.6;
}

.main__index .main_title__accent-2,
.main__social .main_title__accent-3,
.main__talk-team .main_title__accent {
  color: var(--color-accent-2);
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
  padding-left: 10px;
  letter-spacing: 0.05em;
}

.main__talk-team .main_title__accent {
  color: var(--color-accent);
}

.main__social .main_title__accent-1 {
  color: var(--color-accent);
}

.main__social .main_title__accent-2 {
  font-size: 50px;
}

.main__social .main_title__accent-4 {
  padding-left: 75px;
}

.main_subtitle {
  font-size: 32px;
}

.main__index .main_subtitle {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-bottom: 40px;
  margin-right: 10%;
}

.main__social .main_subtitle {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-right: 300px;
}

.main__social .main_subtitle br {
  display: none;
}

.main__social .main_subtitle__accent {
  margin-left: 200px;
}

.main_subtitle__accent-1,
.main_subtitle__accent-2 {
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
}

.main_subtitle__accent-1 {
  color: var(--color-accent-2);
}

.main_subtitle__accent-2 {
  color: var(--color-accent);
}

.main_btn {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-right: calc(10% + 40px);
}

.main_step {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
}

.main_step-title {
  color: var(--color-accent-2);
}

.step_title {
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.step_name {
  font-weight: 900;
  font-size: 68px;
}

.step_title__accent {
  font-family: "Libre Baskerville", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
  font-size: 46px;
}

.content_inner__1 {
  background: url(../i/index-content.png) no-repeat center center / cover;
}

.mission {
  padding: 95px 0 280px;
}

.mission_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mission_title {
  font-size: 70px;
  margin-bottom: 50px;
}

.mission_title__accent {
  color: var(--color-accent);
}

.mission_text-block {
  max-width: 1030px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.mission_text-decor {
  position: relative;
  width: 280px;
  height: 136px;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mission_text-decor__circle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 240px;
  height: 240px;
  -webkit-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%);
  background: url('../i/mission-icon-1.svg') no-repeat center center / contain;
  z-index: 2;
}

.mission_text-decor__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 166px;
  height: 81px;
  -webkit-transform: translate(66%, -50%);
  transform: translate(66%, -50%);
  background: url('../i/mission-icon-2.svg') no-repeat center center / contain;
  z-index: 1;
}

.mission_text {
  color: var(--color-text-light-1);
  font-size: 23px;
}

.mission_text__accent {
  color: var(--color-text);
}

.mission_decor {
  height: 410px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: 120px;
}

.mission_decor .liquid-mask-rect {
  -webkit-animation: thermometer-level 4s ease-in-out infinite;
  animation: thermometer-level 4s ease-in-out infinite;
}

@-webkit-keyframes thermometer-level {

  0%,
  100% {
    y: 22.6494px;
    height: 360.748px;
  }

  50% {
    y: 250px;
    height: 133px;
  }
}

@keyframes thermometer-level {

  0%,
  100% {
    y: 22.6494px;
    height: 360.748px;
  }

  50% {
    y: 250px;
    height: 133px;
  }
}

.mission_decor-item__2 {
  width: 500px;
  height: 175px;
  position: relative;
  margin-left: 125px;
}

.mission_decor-item__2::before,
.mission_decor-item__2::after {
  content: "";
  position: absolute;
  top: 0;
}

.mission_decor-item__2::before {
  left: 0;
  width: 100%;
  height: 258px;
  background: url('../i/mission-vector.svg') no-repeat center center / contain;
}

.mission_decor-item__2::after {
  right: 0;
  width: 155px;
  height: 155px;
  background: url('../i/mission-cross.svg') no-repeat center center / contain;
  -webkit-transform: translate(125px, -7px);
  transform: translate(125px, -7px);
}

.approach_title {
  font-size: 95px;
  line-height: 1.2;
  margin-bottom: 70px;
}

.approach_title__accent {
  color: var(--color-accent-2);
}

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

.approach_item {
  width: calc(50% - 20px);
  padding: 24px;
  border: 1px solid var(--color-accent-2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.approach_item__2 {
  border-color: var(--color-accent-3);
}

.approach_item-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #000000;
  border-radius: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.approach_item-icon .icon {
  width: 60px;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 3px solid var(--color-accent-2);
  border-radius: 16px;
}

.approach_item-icon__2 .icon {
  border-color: var(--color-accent-3);
}

.approach_item-icon .icon::after {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background: url('../i/approach_item-1.svg') no-repeat center center / contain;
}

.approach_item-icon__2 .icon::after {
  background-image: url('../i/approach_item-2.svg');
}

.approach_item-title {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 20px;
}

.approach_item-text {
  color: var(--color-text-light-2);
}

.design {
  padding-top: 130px;
  background: linear-gradient(180deg, #000000 0%, #000000 38%, var(--color-accent-2) 38%, var(--color-accent-2) 100%);
}

.design .center {
  max-width: var(--max-width-2);
}

.design_wrap {
  width: 100%;
  min-height: 1108px;
  background: url('../i/design-bg.png') no-repeat center center / cover;
  padding: 170px 65px 70px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 24px;
  position: relative;
}

.design_wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 130px;
  width: 124px;
  height: 284px;
  background: url('../i/design-el-decor.png') no-repeat center center / contain;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 2;
}

.design_title {
  font-size: 74px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 24px;
  padding-left: 55px;
  max-width: 680px;
}

.design_title__accent {
  color: var(--color-accent-3);
}

.design_subtitle {
  font-family: "Lato", sans-serif;
  font-size: 38px;
  margin-bottom: 24px;
  padding-left: 55px;
  max-width: 480px;
}

.design_btn {
  padding-left: 55px;
}

.design_items {
  margin-top: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.design_item {
  border-radius: 16px;
  padding: 40px 30px 30px 54px;
  position: relative;
  z-index: 1;
}

.design_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  z-index: -1;
  backdrop-filter: blur(12px);
}

.design_item__1 {
  width: 42%;
  max-width: 416px;
  margin-right: 24px;
}

.design_item__1::before {
  background: linear-gradient(180deg, rgba(9, 144, 255, 0.25) 0%, rgba(42, 110, 245, 0.25) 100%);
}

.design_item__2 {
  width: 57%;
  max-width: 560px;
}

.design_item__2::before {
  background: linear-gradient(180deg, rgba(153, 35, 244, 0.25) 0%, rgba(84, 35, 244, 0.25) 100%);
}

.design_item-number {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 70px;
  line-height: 1;
  opacity: 0.32;
  margin-bottom: 25px;
}

.design_item-title {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 10px;
}

.design_item-text {
  color: var(--color-text-light-2);
}

.process {
  background: var(--color-accent-2);
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 160px;
  height: 200px;
  background: url('../i/decor-process-5.svg') no-repeat center center / contain;
  z-index: 1;
}

.process_decor {
  height: 500px;
  width: 100%;
  background-color: #000000;
  background-image: url('../i/decor-process-2.png'), url('../i/decor-process-1.png');
  background-position: center center, left top;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
}

.process_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 220px;
  position: relative;
}

.process_wrap::before {
  content: "";
  position: absolute;
  top: 180px;
  left: -70px;
  width: 230px;
  height: 250px;
  background: url('../i/decor-process-3.svg') no-repeat center center / contain;
  z-index: 1;
}

.process_wrap::after {
  content: "";
  position: absolute;
  top: 380px;
  left: -80px;
  width: 61px;
  height: 61px;
  background: url('../i/decor-process-4.svg') no-repeat center center / contain;
  z-index: 1;
}

.process_title {
  font-size: 95px;
  line-height: 1.2;
  margin-bottom: 60px;
  z-index: 2;
  position: relative;
  color: var(--color-text-dark);
  max-width: 610px;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.process_title__accent {
  font-style: italic;
  text-transform: capitalize;
  color: var(--color-accent);
  font-weight: 400;
}

.process_items {
  padding-top: 66px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
}

.process_item {
  width: calc(50% - 10px);
}

.process_item-title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 46px;
  margin-bottom: 40px;
}

.process_item-text {
  color: #899FD8;
}

.process_item__1 .process_item-text {
  max-width: 450px;
}

.index-items {
  padding: 140px 0 130px;
  background: linear-gradient(180deg, #000000 0%, #000000 40%, #05074A 40%, #05074A 100%);
}

.index-items_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -15px;
}

.index-item {
  width: calc(33.3333% - 30px);
  margin: 0 15px;
  padding: 100px 30px 50px;
  background: url('../i/card-bg-1.svg') no-repeat top center / 100% 100%;
}

.index-item__2 {
  background-image: url('../i/card-bg-2.svg');
}

.index-item_title {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 30px;
  min-height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.index-item_text {
  color: var(--color-text-light-2);
}

.index-item__2 .index-item_text {
  color: var(--color-text-light-3);
}

/*contact us*/
.contact-us {
  background: url('../i/contact-us_bg-1.png') no-repeat center center / cover;
}

.contact-us__talk-team {
  background-image: url('../i/contact-us_bg-2.png');
}

.contact-us_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 0 40px;
}

.contact-us_title {
  font-size: 70px;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.contact-us__talk-team .contact-us_title {
  color: var(--color-text);
}

.contact-us_subtitle {
  font-size: 26px;
  margin: 0 auto 40px;
  max-width: 910px;
  text-align: center;
}

.contact-us_form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.contact-us_content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-us_form.is-success .contact-us_content {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.contact-us_fields {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-us_field {
  width: 100%;
  margin-bottom: 40px;
}

.field_input,
.field_textarea {
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  color: var(--color-text-dark);
}

.field_textarea {
  height: 120px;
  display: block;
  resize: none;
  line-height: 1;
  padding-top: 18px;
}

.field_error {
  font-size: 14px;
  color: #ffb9b9;
}

.field_error:not(:empty) {
  margin-top: 5px;
}

.contact-us_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;
  font-size: 26px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.contact-us_form.is-success .contact-us_success {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
  height: 415px;
}

/*other page*/
.text-block {
  padding-bottom: 166px;
  background-color: #fff;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 27, 41, 0.6) 0, rgba(0, 0, 0, 0.8) 29%, rgba(0, 0, 0, 0.8) 31%, rgba(0, 0, 0, 0.0) 100%);
}

.text-block_wrap {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.text-block_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background: var(--color-accent-2);
  z-index: 1;
  border-radius: 30px 0 0 0;
}

.text-block__talk-team .text-block_wrap::before {
  background: var(--color-accent);
}

.text-block_wrap::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  z-index: -1;
  width: 270px;
  height: 270px;
  -webkit-transform: translate(90px, -80px);
  transform: translate(90px, -80px);
  background: url(../i/text-block-decor-1.png) no-repeat center center / contain;
}

.text-block__talk-team .text-block_wrap::after {
  background-image: url(../i/text-block-decor-2.png);
}

.text-block_text {
  padding: 45px 0;
  font-size: 24px;
  max-width: 880px;
  padding-right: 80px;
  z-index: 3;
  color: #D3DCF4;
}

.text-block__talk-team .text-block_text {
  color: var(--color-text-dark);
  padding-right: 160px;
}

.text-block_decor {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 450px;
  height: 460px;
  -webkit-transform: translate(-50%, 45%);
  transform: translate(-50%, 45%);
  z-index: 2;
  background: url(../i/text-block-img-1.svg) no-repeat center center / contain;
}

.text-block__talk-team .text-block_decor {
  background-image: url(../i/text-block-img-2.svg);
}

.business {
  padding: 90px 0 0;
  background: var(--color-accent);
  color: var(--color-text-dark);
}

.business_decoration {
  height: 500px;
  width: 100%;
  background-color: #000000;
  background-image: url('../i/decor-business-2.png'), url('../i/decor-business-1.png');
  background-position: center center, left top;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
}

.business_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.business_title {
  font-size: 85px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 50px;
}

.business_title__accent {
  color: var(--color-accent-2);
}

.business_block {
  -ms-flex-item-align: end;
  align-self: flex-end;
  max-width: 1005px;
  margin-bottom: 40px;
}

.business_block-wrap {
  padding: 30px 100px 30px 130px;
  width: 100%;
  background: url('../i/card-bg-3.svg') no-repeat center center / contain;
  min-height: 240px;
}

.business_block-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}

.business_items-block {
  padding-bottom: 40px;
  width: 100%;
}

.business_items-title {
  font-size: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000000;
  margin-bottom: 20px;
}

.business_items {
  padding-left: 210px;
}

.business_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid #000000;
}

.business_item-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  width: 27%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
}

.business_item-text {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.business_item-icon {
  width: 50px;
  height: 50px;
  margin-left: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url('../i/item-plus-2.svg') no-repeat center center / contain;
}

.social_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.social_title {
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-size: 85px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 80px;
  text-align: right;
  max-width: 750px;
}

.social_block {
  margin-bottom: 80px;
}

.social_block-title {
  color: var(--color-accent);
  font-size: 48px;
  margin-bottom: 40px;
}

.social_block-text {
  color: var(--color-text-light-2);
  font-size: 28px;
}

.social_items-block {
  margin-bottom: 50px;
}

.social_items-title {
  font-size: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFFFFF;
  margin-bottom: 20px;
  color: var(--color-accent-2);
}

.social_items {
  padding-left: 210px;
  position: relative;
}

.social_decoration {
  width: 335px;
  height: 316px;
  position: absolute;
  top: 100px;
  left: 0;
  -webkit-transform: translateX(-65%);
  transform: translateX(-65%);
  background: url('../i/social-decor.svg') no-repeat center center / contain;
}

.social_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid #FFFFFF;
}

.social_item-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  width: 32%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
}

.social_item-text {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.social_item-icon {
  width: 50px;
  height: 50px;
  margin-left: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url('../i/item-plus-1.svg') no-repeat center center / contain;
}

.info {
  margin: 50px 0 80px;
}

.info_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  padding: 126px 40px 40px;
  min-height: 334px;
  width: 100%;
  background: url('../i/card-bg-4.svg') no-repeat center center / contain;
}

.info_title {
  font-size: 28px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  max-width: 970px;
}

.info_text {
  color: var(--color-text-light-2);
  max-width: 815px;
}

.info_text__accent {
  color: var(--color-text);
}

.steps {
  background: #9923F4;
  padding: 90px 0 0;
  color: var(--color-text-dark);
}

.steps_decoration {
  margin: -160px 0 -100px;
  height: 500px;
  width: 100%;
  background-color: #000000;
  background-image: url('../i/decor-steps-2.png'), url('../i/decor-steps-1.png');
  background-position: center center, left top;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
}

.steps_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.steps_item:first-of-type {
  margin-bottom: 40px;
}

.steps_item .step_title,
.steps_item .step_name {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
}

.steps_item .step_name {
  color: var(--color-text);
}

.step_block {
  margin-top: 35px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  position: relative;
  padding: 30px 100px 30px 130px;
  width: 100%;
  background: url('../i/card-bg-5.svg') no-repeat center center / contain;
  min-height: 240px;
  max-width: 1011px;
}

.step__2 .step_block {
  background-image: url('../i/card-bg-6.svg');
}

.step_text {
  padding-right: 270px;
  font-size: 22px;
}

.step_img {
  position: absolute;
  top: 0;
  right: 75px;
  width: 260px;
  height: 260px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url('../i/steps-item-img-1.png') no-repeat center center / contain;
}

.step_img__2 {
  background-image: url('../i/steps-item-img-2.png');
}

/*footer*/
.footer {
  margin: 60px 0;
  background-color: #1B1B21;
  padding: 35px 0 20px;
}

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

.footer_logo {
  margin: 0 0 50px;
}

.footer_copyright {
  color: var(--color-text-light-2);
}

.footer_menu-item:not(:last-child) {
  margin-bottom: 20px;
}

.footer_menu-item:hover,
.footer_menu-item.is-active {
  color: var(--color-accent-2);
}

.footer_menu-item.is-active {
  pointer-events: none;
}

.footer_menu-link {
  font-size: 16px;
}

/*privacy*/
.privacy-and-terms .header {
  position: relative;
  background: #000000;
  height: auto;
}

.terms_header {
  padding: 50px 0;
}

.terms_header__terms {
  background: var(--color-accent-2);
}

.terms_header__policy {
  background: var(--color-accent-3);
}

.terms_title {
  font-size: 54px;
  font-weight: 700;
}

.terms_title__accent {
  color: var(--color-accent);
}

.terms_inner {
  background: #d3dcf4;
  color: var(--color-text-dark);
  font-size: 15px;
  padding: 25px 0 50px;
}

.terms_inner .center {
  max-width: 640px;
}

.terms p {
  margin-bottom: 25px;
  text-align: justify;
}

h4 {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 700;
}

.terms ol {
  padding-left: 25px;
  margin-bottom: 25px;
}

.terms li {
  margin-bottom: 5px;
  list-style: disc inside;
}

.terms a {
  color: inherit;
  text-decoration: underline;
}

.terms a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1230px) {
  .main__index {
    padding: 200px 0 100px;
  }

  .main__social,
  .main__talk-team {
    padding: 260px 0 100px;
  }

  .main__talk-team {
    padding-bottom: 50px;
  }

  .main__talk-team .main_decoration,
  .main__social .main_decoration {
    width: 400px;
    height: 500px;
    top: 90px;
  }

  .main__index .main_title {
    font-size: 75px;
    margin-bottom: 50px;
    padding-left: 100px;
  }

  .main__social .main_title,
  .main__talk-team .main_title {
    font-size: 55px;
    padding-left: 10%;
  }

  .main__index .main_decoration {
    left: 130px;
  }

  .main__social .main_subtitle__accent {
    margin-left: 140px;
  }

  .mission {
    padding: 40px 0;
  }

  .mission_decor-item__2 {
    margin-left: 40px;
  }

  .mission_title,
  .design_title,
  .contact-us_title,
  .step_name,
  .business_title,
  .social_title {
    font-size: 55px;
  }

  .approach_title,
  .process_title {
    font-size: 75px;
    margin-bottom: 40px;
  }

  .design {
    padding-top: 60px;
  }

  .design_wrap {
    padding: 80px 40px 40px;
    min-height: 910px;
  }

  .design_wrap::before {
    right: 20px;
    width: 88px;
    height: 200px;
  }

  .process_decor,
  .steps_decoration,
  .business_decoration {
    height: 300px;
  }

  .process::before {
    width: 100px;
    height: 145px;
  }

  .process_wrap::before {
    top: 110px;
    left: 0;
  }

  .process_wrap::after {
    top: 280px;
    left: 0;
  }

  .process_items {
    padding-top: 40px;
  }

  .process_item-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .process_wrap {
    padding-top: 150px;
  }

  .index-items {
    padding: 80px 0 40px;
  }

  .index-item {
    min-height: 500px;
  }

  .index-item_title,
  .contact-us_subtitle {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .index-item_text {
    font-size: 16px;
  }

  .footer {
    margin: 35px 0;
  }

  .terms_header {
    padding: 20px 0;
  }

  .social_title {
    margin-bottom: 40px;
    max-width: 400px;
  }

  .social_block-text {
    font-size: 20px;
  }

  .terms_title,
  .step_title,
  .step_title__accent,
  .social_block-title {
    font-size: 34px;
  }

  .text-block .text-block_text {
    padding: 40px 0 130px 40px;
    font-size: 20px;
    max-width: initial;
  }

  .text-block_decor {
    left: 50%;
    width: 370px;
    height: 380px;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }

  .text-block_wrap::before {
    border-bottom-left-radius: 30px;
  }

  .step_text {
    font-size: 20px;
    padding-right: 220px;
  }

  .step_img {
    width: 220px;
    height: 220px;
  }

  .business_block-wrap {
    padding-left: 100px;
    padding-right: 40px;
  }

  .business_items,
  .social_items {
    padding-left: 120px;
  }

  .info {
    margin: 0;
  }
}

@media screen and (max-width: 1023px) {
  .header_wrap {
    padding: 15px 0;
  }

  .header_hamburger {
    position: relative;
    z-index: 20;
    margin-right: 0;
    cursor: pointer;
  }

  .header_menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    padding: 80px 20px 20px;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.3s ease;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header_menu.is-visible {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .header_menu .menu_items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
  }

  .header_menu .menu_item {
    margin: 0;
  }

  .header_menu .menu_link {
    padding: 15px 20px 15px 0;
    min-width: 220px;
    border-bottom: 1px solid #FFFFFF;
    display: block;
    text-align: left;
  }

  .main__index .main_subtitle {
    max-width: 430px;
    margin: 0 0 40px;
  }

  .main_btn {
    margin-right: 0;
  }

  .main__index .main_title {
    font-size: 65px;
    max-width: 660px;
  }

  .design_wrap {
    min-height: 865px;
    padding-top: 40px;
  }

  .design_item {
    padding: 20px;
  }

  .process_title {
    max-width: 470px;
  }

  .process_decor,
  .steps_decoration,
  .business_decoration {
    height: 230px;
    position: relative;
    margin: -5px 0;
  }

  .index-items {
    padding: 40px 0;
    background: #05074A;
  }

  .index-items_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .index-item {
    min-height: 475px;
    width: calc(50% - 30px);
    max-width: 345px;
  }

  .main__social .main_title,
  .main__talk-team .main_title {
    padding-left: 0;
    margin-bottom: 400px;
  }

  .main__talk-team .main_title {
    margin-bottom: 465px;
  }

  .main__social,
  .main__talk-team {
    padding: 100px 0 40px;
  }

  .main__social .main_subtitle {
    margin-right: 0;
  }

  .main__talk-team .main_decoration,
  .main__social .main_decoration {
    width: 321px;
    height: 400px;
    top: 58%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .business_block-wrap {
    min-height: 190px;
    padding-left: 74px;
    max-width: 790px;
  }

  .business_block-text {
    font-size: 16px;
  }

  .business_items,
  .social_items {
    padding-left: 80px;
  }

  .business_items-title,
  .social_items-title {
    font-size: 34px;
  }

  .business_item-title,
  .social_item-title {
    font-size: 24px;
  }

  .business_item-text,
  .social_item-text {
    font-size: 20px;
  }

  .social_item:last-child {
    border-bottom: none;
    position: relative;
  }

  .social_item:last-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 150px);
    height: 1px;
    background: #FFFFFF;
  }

  .social_items {
    margin-bottom: 100px;
  }

  .social_decoration {
    width: 245px;
    height: 245px;
    top: 100%;
    left: initial;
    right: 0;
    -webkit-transform: translate(20px, -73px);
    transform: translate(20px, -73px);
  }

  .info_wrap {
    padding: 65px 20px 20px;
    min-height: 190px;
    max-width: 730px;
    margin: 0 auto;
  }

  .info_title {
    font-size: 20px;
  }

  .info_text {
    font-size: 16px;
  }

  .steps {
    padding-top: 40px;
  }

  .step_block {
    margin-top: 20px;
    padding: 20px 20px 20px 80px;
    min-height: 174px;
    max-width: 730px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }

  .step_text {
    font-size: 16px;
    padding-right: 20px;
  }

  .step_img {
    position: static;
    width: 120px;
    height: 120px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transform: none;
    transform: none;
  }
}

@media screen and (max-width: 767px) {
  .main__index {
    padding: 230px 0 60px;
  }

  .main__index .main_decoration {
    left: 10px;
    -webkit-transform: translateY(-77%);
    transform: translateY(-77%);
    width: 200px;
    height: 200px;
  }

  .main__index .main_title {
    font-size: 38px;
    margin-bottom: 30px;
    max-width: 330px;
    padding-left: 0;
  }

  .main__social .main_title {
    font-size: 28px;
    margin-bottom: 450px;
  }

  .main__talk-team .main_title {
    font-size: 32px;
    margin-bottom: 500px;
  }

  .main__social .main_title__accent-2 {
    font-size: 22px;
  }

  .main__social .main_title__accent-4 {
    padding-left: 30px;
  }

  .main__talk-team .main_decoration,
  .main__social .main_decoration {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -47%);
    transform: translate(-50%, -47%);
  }

  .main_subtitle {
    font-size: 22px;
  }

  .main__social .main_subtitle {
    -ms-flex-item-align: initial;
    -ms-grid-row-align: initial;
    align-self: initial;
  }

  .main__social .main_subtitle br {
    display: block;
  }

  .main__social .main_subtitle__accent {
    margin: 0;
  }

  .main__index .main_subtitle {
    font-size: 17px;
  }

  .main__index .main_subtitle {
    max-width: 220px;
    margin-bottom: 50px;
  }

  .main__index .main_subtitle__accent-1,
  .main__index .main_subtitle__accent-2 {
    font-size: 21px;
  }

  .main__social .main_subtitle__accent-1,
  .main__social .main_subtitle__accent-2 {
    font-size: 26px;
  }

  .btn,
  .main_btn {
    width: 100%;
  }

  .btn {
    height: 48px;
    font-size: 16px;
  }

  .btn::before {
    width: 80%;
    height: 17px;
    -webkit-filter: blur(27px);
    filter: blur(27px);
  }

  .mission_title,
  .step_name,
  .business_title,
  .social_title {
    font-size: 30px;
  }

  .approach_title,
  .process_title {
    margin-bottom: 30px;
    font-size: 48px;
  }

  .content_inner__1 {
    overflow-x: hidden;
    background-image: url(../i/index-content-mob.png);
    background-position-y: 20%;
    background-size: contain;
  }

  .mission {
    padding: 15px 0;
  }

  .mission_wrap {
    position: relative;
  }

  .mission_text-block {
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -ms-flex-item-align: initial;
    -ms-grid-row-align: initial;
    align-self: initial;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .mission_text-decor {
    height: 88px;
    width: 100%;
    margin-right: 0;
  }

  .mission_text {
    font-size: 15px;
    padding-left: 115px;
  }

  .mission_text-decor__circle {
    width: 160px;
    height: 160px;
    top: 0;
    -webkit-transform: translate(-15%, -20%);
    transform: translate(-15%, -20%);
  }

  .mission_text-decor__line {
    width: 120px;
    height: 60px;
  }

  .mission_decor {
    height: 250px;
    margin-right: 0;
  }

  .mission_decor-item__1 {
    position: absolute;
    left: 37px;
    top: 210px;
    width: 38px;
    height: 210px;
  }

  .mission_decor-item__1 svg {
    width: 100%;
    height: 100%;
  }

  .mission_decor-item__2 {
    margin: 0;
    width: 100%;
    height: 100%;
  }

  .mission_decor-item__2::after {
    display: none;
  }

  .mission_decor-item__2::before {
    left: 35%;
    top: 17%;
    height: 180px;
  }

  .approach_items {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .approach_item {
    width: 100%;
  }

  .approach_item:first-child {
    margin-bottom: 40px;
  }

  .approach_item-title {
    font-size: 28px;
  }

  .approach_item-text {
    font-size: 15px;
  }

  .design {
    padding-top: 40px;
    background: linear-gradient(180deg, #000000 0%, #000000 56%, var(--color-accent-2) 56%, var(--color-accent-2) 100%);
  }

  .design_wrap {
    min-height: initial;
    padding: 40px 20px 20px;
    background-color: #0D0F1B;
    background-size: 100%;
    background-position-y: center;
    background-size: 144%;
    background-position: 100% 38%;
  }

  .design_wrap::before {
    right: 40px;
    width: 62px;
    height: 142px;
    -webkit-transform: translateY(63%);
    transform: translateY(63%);
  }

  .design_title {
    font-size: 38px;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .design_subtitle {
    font-size: 26px;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .design_btn {
    padding: 0;
    width: 100%;
    margin-bottom: 254px;
  }

  .design_items {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .design_item {
    width: 100%;
    max-width: initial;
    margin: 0;
  }

  .design_item__1 {
    margin-bottom: 20px;
  }

  .design_item-number {
    font-size: 60px;
    margin-bottom: 20px;
  }

  .design_item-title {
    line-height: 1.2;
  }

  .design_item-text {
    font-size: 15px;
  }

  .process::before {
    top: 75px;
    left: 40px;
    -webkit-transform: none;
    transform: none;
  }

  .process_wrap {
    padding-top: 200px;
  }

  .process_wrap::before {
    top: 0px;
    left: 70px;
    z-index: 0;
    width: 120px;
    height: 108px;
  }

  .process_wrap::after {
    width: 25px;
    height: 25px;
    top: 55px;
    left: 60px;
  }

  .process_title {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .process_items {
    padding-top: 50px;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .process_item {
    width: 100%;
    margin-bottom: 30px;
  }

  .process_item-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .process_item-text {
    max-width: initial !important;
    color: #A9D7FF;
  }

  .process_decor,
  .steps_decoration,
  .business_decoration {
    height: 187px;
  }

  .index-items {
    background: transparent;
  }

  .index-items_wrap {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
  }

  .index-item {
    /*min-height: 475px;*/
    width: 100%;
    max-width: 345px;
    margin: 0 0 30px;
    padding: 115px 0 0;
    display: -ms-flexbox;
    display: flex;
  }

  .index-item_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .index-item_title {
    font-size: 28px;
    min-height: initial;
    padding: 0 20px;
  }

  .index-item_text {
    -ms-flex-positive: 1;
    flex-grow: 1;
    background: #05074A;
    padding: 20px;
    font-size: 15px;
    border: 2.5px solid #1B56CB;
    border-top: none;
    border-radius: 0 0 26px 26px;
  }

  .index-item__2 .index-item_text {
    background: transparent;
    border: none;
  }

  .contact-us_title {
    font-size: 38px;
  }

  .contact-us_subtitle {
    font-size: 18px;
  }

  .contact-us_field {
    margin-bottom: 25px;
  }

  .field_input,
  .field_textarea {
    padding: 10px 20px;
    font-size: 18px;
  }

  .field_input {
    height: 48px;
  }

  .field_textarea {
    padding-top: 15px;
  }

  .field_label {
    font-size: 16px;
  }

  .footer {
    margin: 0;
    padding: 40px 0;
  }

  .footer_wrap {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: initial;
    justify-content: initial;
    font-size: 18px;
    text-align: center;
  }

  .footer_info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
  }

  .footer_logo {
    margin-bottom: 20px;
  }

  .text-block_wrap::before {
    left: -20px;
    border-radius: 0;
  }

  .text-block .text-block_text {
    padding-left: 0;
  }

  .business {
    padding-top: 40px;
  }

  .business_block-wrap {
    min-height: initial;
    max-width: initial;
    padding: 0;
    background: none;
    padding: 20px;
    background-color: rgb(255, 255, 255, 0.2);
    border-radius: 26px;
  }

  .business_block-title,
  .social_block-title {
    font-size: 24px;
  }

  .business_items-title,
  .social_items-title {
    font-size: 30px;
    margin-bottom: 0;
  }

  .social_block-title {
    margin-bottom: 10px;
  }

  .business_items,
  .social_items {
    padding-left: 0;
  }

  .business_item,
  .social_item {
    position: relative;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 60px;
  }

  .business_item-icon,
  .social_item-icon {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
  }

  .business_item-title,
  .social_item-title {
    width: 100%;
    margin: 0 0 15px;
  }

  .business_item-text,
  .social_item-text,
  .social_block-text {
    font-size: 16px;
  }

  .business_items-block {
    padding-bottom: 80px;
  }

  .social_wrap {
    padding-top: 40px;
  }

  .social_block {
    margin-bottom: 40px;
  }

  .info_wrap {
    margin: 40px 0 80px;
    background: none;
    padding: 30px 20px;
    min-height: initial;
    max-width: initial;
    background: none;
    border: 2.5px solid var(--color-accent);
    border-radius: 26px;
  }

  .info_title {
    margin-bottom: 30px;
  }

  .step_title__accent {
    font-size: 28px;
  }

  .step_block {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-item-align: initial;
    -ms-grid-row-align: initial;
    align-self: initial;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 100px 20px 20px 20px;
    width: 100%;
    min-height: 530px;
    max-width: 390px;
    margin: 20px auto 0;
    border-radius: 26px;
    background-image: url('../i/card-bg-5-mob.svg');
    background-size: cover;
    background-position-y: top;
  }

  .step__2 .step_block {
    background-image: url('../i/card-bg-6-mob.svg');
  }

  .step_img {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }

  .step_text {
    padding-right: 0;
    margin: auto;
  }

  .steps_item:last-of-type {
    margin-bottom: 20px;
  }
}
