@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;
  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__arrow::before {
  content: '\e900';
}

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

.icon__close::before,
.header_hamburger[data-state="is-active"] .icon__hamburger::before {
  content: '\e908';
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'Open Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: 'wdth'100;
  font-size: 16px;
  line-height: 1.375;
  background-color: #ffffff;
  color: #000000;
}

body[data-lang='eng'] {
  --title-font-family: 'Figtree', sans-serif;
}

body[data-lang='ua'] {
  --title-font-family: 'Inter', sans-serif;
}

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

.btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  height: 40px;
  width: 160px;
  padding: 5px 10px;
}

.header {
  width: 100%;
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 100;
  font-family: 'Roboto', sans-serif;
}

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

.header_wrap {
  padding: 0 80px;
  position: relative;
}

.header_hamburger {
  display: none;
}

.menu_item {
  margin: 0 20px;
  color: #93aeb7;
}

.menu_link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: inherit;
  cursor: pointer;
}

.menu_item:hover,
.menu_item.is-active {
  color: #eb755c;
}

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

.language-switcher {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*animation*/
[data-state="is-animated"] .fadeInLeft,
[data-state="is-animated"].fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

[data-state="is-animated"] .fadeInRight,
[data-state="is-animated"].fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

[data-state="is-animated"] .fadeIn,
[data-state="is-animated"].fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[data-state="is-animated"] .fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

[data-state="is-animated"] .fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

[data-state="is-animated"] .zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

[data-state="is-animated"] .flipInY,
[data-state="is-animated"].flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 5deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -2deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -2deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 5deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -2deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -2deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

[data-state="is-animated"] .slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

[data-state="is-animated"].slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

[data-state="is-animated"] .lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

.main {
  padding: 120px 0 150px;
  position: relative;
  z-index: 1;
  background-image: var(--main-bg-img), url(../i/main-bg-1.png), url(../i/main-bg-2.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: var(--main-bg-img-position), left top, right bottom;
  background-size: var(--main-bg-img-size), 70%, 70%;
  overflow-x: hidden;
}

.main__home {
  --main-bg-img: url(../i/main-bg-img-home.png);
  --main-bg-img-position: 48% 44%;
  --main-bg-img-size: 940px;
}

.main__what-we-do {
  --main-bg-img: url(../i/main-bg-img-what-we-do.png);
  --main-bg-img-position: 50% 43%;
  --main-bg-img-size: 510px;
  padding-bottom: 210px;
}

.main__about-us {
  --main-bg-img: url(../i/main-bg-img-about-us.png);
  --main-bg-img-position: calc(50% - 200px) 70%;
  --main-bg-img-size: 700px;
  padding-bottom: 250px;
}

.main__contact-us {
  --main-bg-img: url(../i/main-bg-img-contact-us.png);
  --main-bg-img-position: calc(50% - 250px) 97%;
  --main-bg-img-size: 435px;
  padding-bottom: 390px;
}

.main::before,
.main::after,
.main_wrap::before,
.main_wrap::after,
.main__home .main_decor::before,
.main__home .main_decor::after {
  content: '';
  position: absolute;
  width: var(--main-decor-width);
  height: var(--main-decor-height);
  top: var(--main-decor-position-1);
  right: var(--main-decor-position-2);
  background: var(--main-decor-img) no-repeat center / contain;
}

.main_wrap::before,
.main_wrap::after {
  top: initial;
  right: initial;
  bottom: var(--main-decor-position-1);
  left: var(--main-decor-position-2);
}

.main::before {
  --main-decor-img: url(../i/main-bg-decor-3.png);
  --main-decor-width: 95px;
  --main-decor-height: 95px;
  --main-decor-position-1: 12%;
  --main-decor-position-2: calc(50% - 450px);
}

.main::after {
  --main-decor-img: url(../i/main-bg-decor-4.png);
  --main-decor-width: 66px;
  --main-decor-height: 66px;
  --main-decor-position-1: 20%;
  --main-decor-position-2: calc(50% - 500px);
}

.main_wrap::before {
  --main-decor-img: url(../i/main-bg-decor-3.png);
  --main-decor-width: 167px;
  --main-decor-height: 167px;
  --main-decor-position-1: 80px;
  --main-decor-position-2: -120px;
}

.main__about-us .main_wrap::before {
  --main-decor-position-1: -70px;
}

.main_wrap::after {
  --main-decor-img: url(../i/main-bg-decor-5.png);
  --main-decor-width: 84px;
  --main-decor-height: 84px;
  --main-decor-position-1: 50px;
  --main-decor-position-2: 10px;
}

.main__about-us .main_wrap::after {
  --main-decor-position-1: -105px;
  --main-decor-position-2: -20px;
}

.main__contact-us .main_wrap::before {
  --main-decor-position-1: -330px;
}

.main__contact-us .main_wrap::after {
  --main-decor-position-1: -350px;
  --main-decor-position-2: -20px;
}

.main__home .main_decor::before {
  --main-decor-img: url(../i/main-bg-decor-2.png);
  --main-decor-width: 150px;
  --main-decor-height: 99px;
  --main-decor-position-1: 150px;
  --main-decor-position-2: calc(50% - 150px);
}

.main__home .main_decor::after {
  --main-decor-img: url(../i/main-bg-decor-1.png);
  --main-decor-width: 112px;
  --main-decor-height: 85px;
  --main-decor-position-1: 220px;
  --main-decor-position-2: calc(50% + 40px);
}

.main_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.main_logo {
  width: 264px;
  height: 64px;
  background: url(../i/logo-1.png) no-repeat center / contain;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.main__home .main_logo {
  opacity: 0;
  margin-bottom: 600px;
}

.main__what-we-do .main_logo {
  margin-bottom: 640px;
}

.main__about-us .main_logo {
  margin-bottom: 170px;
}

.main__contact-us .main_logo {
  margin-bottom: 350px;
}

.main_subtitle {
  color: #74888f;
  font-size: 30px;
  letter-spacing: 0.3px;
}

.main__home .main_subtitle {
  opacity: 0;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.main_title {
  font-family: var(--title-font-family, inherit);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.14;
  text-transform: uppercase;
  color: #3189a5;
}

.main__home .main_title span {
  display: inline-block;
  opacity: 0;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.main__what-we-do .main_title {
  font-size: 100px;
  line-height: 0.7;
  opacity: 0;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.main__about-us .main_title {
  font-size: 70px;
  line-height: 0.9;
  margin-bottom: 40px;
  width: 100%;
  max-width: 470px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  text-align: left;
  opacity: 0;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.main__contact-us .main_title {
  font-size: 70px;
  line-height: 0.9;
  max-width: 470px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  text-align: right;
  position: relative;
  opacity: 0;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.main__contact-us .main_title::after {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% + 40px);
  width: 192px;
  height: 188px;
  background: url(../i/contac-us-main-decor.png) no-repeat center / contain;
}

.main__contact-us .main_decor {
  opacity: 0;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  position: absolute;
  bottom: 20%;
  left: 40%;
  width: 310px;
  height: 183px;
  background: url(../i/contac-us-main-decor-2.png) no-repeat center / contain;
}

.main_title__accent {
  color: #eb755c;
}

.main__about-us .main_text {
  max-width: 390px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #8695A2;
  text-align: left;
}

.about {
  margin-top: -35px;
  padding-top: 140px;
  position: relative;
  z-index: 2;
  background-image: var(--about-bg-decor), url(../i/about-bg.png);
  background-position: 90% -30px, center top;
  background-repeat: no-repeat, no-repeat;
  background-size: 400px, cover;
  color: #ffffff;
}

.about__home {
  --about-bg-decor: url(../i/about-bg-decoration.png);
}

.about__what-we-do {
  --about-bg-decor: url(../i/about-bg-decoration-2.png);
}

.about_title {
  font-family: var(--title-font-family, inherit);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about_content {
  position: relative;
  padding-left: 70px;
  padding-bottom: 180px;
}

.about__what-we-do .about_content {
  padding-bottom: 130px;
}

.about_decor {
  position: absolute;
  left: 18px;
  top: 0;
  width: 22px;
  height: 340px;
  background: url(../i/about-arrow.png) no-repeat center bottom / cover;
}

.about__what-we-do .about_decor {
  height: 180px;
}

.about_text {
  max-width: 535px;
}

.about_text p:first-of-type {
  margin-bottom: 22px;
}

.we-do {
  background: url(../i/index-block-bg.png) no-repeat left top / 70%;
  padding: 380px 0 340px;
  position: relative;
  z-index: 2;
}

.we-do::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -175px);
  transform: translate(-50%, -175px);
  width: 100%;
  height: 512px;
  background: url(../i/we-do-decor.png) no-repeat center / contain;
}

.we-do_wrap {
  display: -ms-flexbox;
  display: flex;
}

.we-do_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 20px 40px;
  min-height: 540px;
  width: 256px;
  border-radius: 20px;
  color: #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  opacity: 0;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.we-do_item__1 {
  background: url(../i/we-do-item-bg-1.png) no-repeat center / cover;
}

.we-do_item__2 {
  background: url(../i/we-do-item-bg-2.png) no-repeat center / cover;
}

.we-do_icon {
  width: 132px;
  height: 132px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 35px;
}

.we-do_icon__1 {
  background-image: url(../i/we-do-item-icon-1.png);
}

.we-do_icon__2 {
  background-image: url(../i/we-do-item-icon-2.png);
}

.we-do_item-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.75;
  margin-bottom: 28px;
}

.we-do_item-text {
  font-size: 15px;
  margin-bottom: 50px;
}

.we-do_btn {
  border-radius: 100px;
  border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.we-do_item__1 .we-do_btn:hover {
  background-color: #3189a5;
  border-color: #3189a5;
}

.we-do_item__2 .we-do_btn:hover {
  background-color: #eb755c;
  border-color: #eb755c;
}

.we-do_center {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  padding: 100px 20px;
}

.we-do_title {
  color: #9b9b9b;
  font-family: var(--title-font-family, inherit);
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  margin-bottom: 47px;
}

.we-do_title::after {
  content: '';
  position: absolute;
  left: 50%;
  top: calc(100% + 5px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 35px;
  border-left: 1px dashed #60656b;
  opacity: 0.5;
}

.we-do_decor {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
  width: 28px;
  height: 28px;
  background: url(../i/we-do-center-dot.svg) no-repeat center / cover;
  position: relative;
}

.we-do_decor::before,
.we-do_decor::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 120px;
  height: 0;
  border-top: 1px dashed #60656b;
  opacity: 0.5;
}

.we-do_decor::before {
  left: calc(100% + 10px);
}

.we-do_decor::after {
  right: calc(100% + 10px);
}

.we-do_img {
  width: 582px;
  height: 583px;
  background: url(../i/we-do-decor-center.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 270px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.info {
  background-color: #eb755c;
  padding: 100px 0 120px;
  position: relative;
  z-index: 2;
}

.info::after {
  content: '';
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #eb755c;
  clip-path: polygon(0% 0%, 100% 0%, 100% 5%, 0% 95%);
}

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

.info_logo {
  width: 80%;
  max-width: 461px;
  margin: 0 auto 25px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.info_logo img {
  width: 100%;
  height: auto;
}

.info_content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.info_item {
  margin-top: 120px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 20px;
  min-height: 590px;
  width: 256px;
  border-radius: 20px;
  color: #ffffff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #eb755c;
  z-index: 2;
  border: 2px solid #ffffff;
}

.info_item-icon {
  width: 132px;
  height: 132px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 35px;
}

.info_item-icon__1 {
  background-image: url(../i/info-item-icon-1.png);
}

.info_item-icon__2 {
  background-image: url(../i/info-item-icon-2.png);
}

.info_item-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
}

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

.info_center-decor {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.info_decor-dot {
  position: relative;
  width: 32px;
  height: 32px;
  background: url(../i/info-decor-dot.svg) no-repeat center / contain;
}

.info_decor-dot span {
  display: block;
  width: 210px;
  height: 0;
  border-top: 1px dashed #ffffff;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.info_decor-dot span:nth-of-type(2) {
  left: initial;
  right: 100%;
}

.info_decor-line {
  width: 4px;
  background-color: #ffffff;
}

.info_decor-line:nth-of-type(2) {
  height: 230px;
}

.info_decor-line:nth-of-type(4) {
  height: 480px;
}

.info_decor-line:nth-of-type(6) {
  height: 50px;
}

.info_decor-big {
  width: 450px;
  height: 450px;
  background: url(../i/info-decor-big.svg) no-repeat center / contain;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.info .info_decor-big {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.info_decor-text {
  font-family: var(--title-font-family, inherit);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 300px;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
}

.values {
  background-image:
    url(../i/values-bg-decor.png),
    url(../i/index-block-bg.png),
    linear-gradient(to right, #ffffff 0%, #ffffff var(--values-bg-end), #E9E9E9 var(--values-bg-end), #E9E9E9 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right bottom, left top, right top;
  background-size: var(--values-bg-decor-size), 70%, 100%;
  padding: 130px 0 80px;
  position: relative;
  --values-bg-end: calc(100% - 300px);
  --values-bg-decor-size: 853px;
}

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

.values_title {
  font-family: var(--title-font-family, inherit);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  color: #9B9B9B;
  text-align: right;
  width: 100%;
  max-width: 650px;
  margin-bottom: 100px;
}

.values_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 590px;
}

.values_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
}

.values_item-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 0.9;
  margin-bottom: 20px;
  padding-left: 150px;
  color: #9B9B9B;
}

.values_item-content {
  position: relative;
  padding: 20px 70px 20px 150px;
  background: url(../i/value-item-bg-1.png) no-repeat left top / cover;
  border-radius: 20px;
}

.values_item:nth-of-type(even) .values_item-content {
  background-image: url(../i/value-item-bg-2.png);
}

.values_item-number {
  position: absolute;
  left: 20px;
  top: 0;
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
  width: 114px;
  height: 114px;
  background: url(../i/value-item-icon-1.svg) no-repeat center center / cover;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 300;
  line-height: 0.9;
  color: #3189A5;
}

.values_item:nth-of-type(even) .values_item-number {
  background-image: url(../i/value-item-icon-2.svg);
  color: #EB755C;
}

.values_item-text {
  font-size: 15px;
  line-height: 1.4;
  color: #ffffff;
}

.values_item-icon {
  width: 83px;
  height: 83px;
  background: url(../i/value-item-icon-check.svg) no-repeat center center / cover;
  position: absolute;
  right: -42px;
  top: 18%;
}

.values_item__1 .values_item-icon {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.values_item__2 .values_item-icon {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.values_item__3 .values_item-icon {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.values_item__4 .values_item-icon {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.contact-us {
  background: url(../i/contact-us-bg.png) no-repeat center top / cover;
  padding: 220px 0 180px;
  position: relative;
}

.contact-us::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 400px;
  height: 400px;
  background: url(../i/about-bg-decoration.png) no-repeat center / contain;
  -webkit-transform: translateY(-38%);
  -moz-transform: translateY(-38%);
  -ms-transform: translateY(-38%);
  transform: translateY(-38%);
}

.contact-us_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.contact-us_title {
  font-family: var(--title-font-family, inherit);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.8px;
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}

.contact-us_subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
}

.contact-us_form {
  opacity: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 590px;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.contact-us_content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px;
  background-color: #5AA0B6;
  border-radius: 20px;
}

.contact-us_form[data-state="is-success"] .contact-us_content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 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: 20px;
}

.field_input,
.field_textarea {
  width: 100%;
  height: 40px;
  background: #ffffff;
  color: #000;
  padding: 10px;
}

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

.contact-us_button {
  margin-top: 20px;
  width: 220px;
  background: #EB755C;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  transition: all 0.4s ease;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  border: 3px solid #EB755C;
}

.contact-us_button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

.field_error {
  font-size: 12px;
  color: #b11d00;
}

.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(0.8);
  transform: scale(0.8);
  transition: all 1s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background-color: #5AA0B6;
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  color: #ffffff;
  text-transform: uppercase;
}

.contact-us_form[data-state="is-success"] .contact-us_success {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
  height: 360px;
}

.footer {
  padding: 30px 0;
  background-color: #000000;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

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

.copyright {
  opacity: 0.6;
}

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

.footer_menu-item {
  margin: 0 10px;
  color: #ffffff;
}

.footer_menu-link {
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  text-transform: uppercase;
  padding: 0 20px;
}

.footer_menu-item:hover,
.footer_menu-link.is-active {
  color: #EB755C;
}

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

/* other pages */
.services {
  position: relative;
  z-index: 2;
  padding: 45px 0 200px;
}

.services::after {
  content: '';
  position: absolute;
  top: -95px;
  left: calc(50% - 680px);
  width: 750px;
  height: 750px;
  background: url(../i/services-bg-decor.png) no-repeat center / contain;
}

.services_wrap {
  max-width: 570px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.services_text {
  color: #8695A2;
  margin-bottom: 70px;
}

.services_content-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
  color: #2F3639;
}

.services_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding-left: 100px;
}

.services_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.services_item:nth-of-type(1) .services_item-icon {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.services_item:nth-of-type(2) .services_item-icon {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.services_item:nth-of-type(3) .services_item-icon {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.services_item:nth-of-type(4) .services_item-icon {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

.services_item:nth-of-type(5) .services_item-icon {
  -webkit-animation-delay: 2.6s;
  animation-delay: 2.6s;
}

.services_item:last-of-type {
  margin-bottom: 0;
}

.services_item:last-of-type .services_item-icon {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.services_item-icon {
  width: 21px;
  height: 24px;
  background: url(../i/services-item-icon.svg) no-repeat center / contain;
  margin-right: 20px;
  opacity: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.services_item-text {
  font-size: 22px;
  line-height: 1;
  color: #3189A5;
}

.what-we-do {
  position: relative;
  padding: 50px 0 315px;
  background-color: #eb755c;
  z-index: 3;
}

.what-we-do::after {
  content: '';
  position: absolute;
  bottom: calc(100% - 2px);
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #eb755c;
  clip-path: polygon(0% 5%, 100% 95%, 100% 100%, 0% 100%);
}

.what-we-do_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.what-we-do_title {
  font-family: var(--title-font-family, inherit);
  text-align: center;
  font-size: 70px;
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1.4px;
  margin-bottom: 75px;
}

.what-we-do_subtitle {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.what-we-do_content {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}

.what-we-do_col {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.what-we-do_col__1 {
  -ms-flex-align: end;
  align-items: flex-end;
}

.what-we-do_item {
  padding: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 314px;
  min-height: 105px;
  position: relative;
}

.what-we-do_item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.what-we-do_item__1 {
  margin-top: 63px;
}

.what-we-do_item__2 {
  margin-top: 176px;
}

.what-we-do_item__3,
.what-we-do_item__4,
.what-we-do_item__5 {
  margin-top: 120px;
}

.what-we-do_item-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.what-we-do_number {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  position: absolute;
  left: -30px;
  top: -75px;
  font-size: 30px;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  opacity: 0;
}

.what-we-do_item__1 .what-we-do_number,
.what-we-do_item__3 .what-we-do_number,
.what-we-do_item__5 .what-we-do_number {
  left: initial;
  right: -30px;
}

.what-we-do_number-icon {
  width: 58px;
  height: 66px;
  background: url(../i/what-we-do-number-icon.svg) no-repeat center / contain;
}

.what-we-do_center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 210px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.what-we-do_dot {
  width: 32px;
  height: 32px;
  background: url(../i/info-decor-dot.svg) no-repeat center / contain;
  position: relative;
}

.what-we-do_dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 82px;
  height: 0;
  border-top: 1px dashed #ffffff;
}

.what-we-do_line {
  width: 4px;
  background-color: #ffffff;
  height: 80px;
}

.what-we-do_dot:nth-of-type(4)::before,
.what-we-do_dot:nth-of-type(8)::before {
  left: initial;
  right: 100%;
}

.what-we-do_line:nth-of-type(1) {
  height: 100px;
}

.what-we-do_line:nth-of-type(11) {
  height: 225px;
}

.what-we-do_decor-img {
  width: 823px;
  height: 764px;
  background: url(../i/what-we-do-decor-img.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: calc(100% - 210px);
  -webkit-transform: translateX(-64%);
  transform: translateX(-64%);
}

.we-do-info {
  padding-top: 310px;
}

.we-do-info_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.we-do-info_text {
  margin-bottom: 100px;
  color: #8695A2;
}

.we-do-info_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 818px;
  overflow: hidden;
}

.we-do-info_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 80px 40px 220px;
  background: url(../i/we-do-info-item-bg-1.png) no-repeat left center / cover;
  margin-bottom: 60px;
  min-height: 257px;
  border-radius: 20px;
  opacity: 0;
  color: #ffffff;
  position: relative;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 1.5s !important;
  animation-duration: 1.5s !important;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.we-do-info_item__2 {
  background: url(../i/we-do-info-item-bg-2.png) no-repeat right center / cover;
  padding: 40px 250px 40px 80px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.we-do-info_item__3 {
  background-image: url(../i/we-do-info-item-bg-3.png);
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.we-do-info_item-icon {
  width: 132px;
  height: 132px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.we-do-info_item__1 .we-do-info_item-icon {
  background-image: url(../i/we-do-info-item-icon-1.png);
}

.we-do-info_item__2 .we-do-info_item-icon {
  left: initial;
  right: 50px;
  background-image: url(../i/we-do-info-item-icon-2.png);
}

.we-do-info_item__3 .we-do-info_item-icon {
  background-image: url(../i/we-do-info-item-icon-3.png);
}

.we-do-info_item-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 20px;
}

.we-do-info_item-text {
  font-size: 15px;
}

.motivation-block {
  padding: 60px 0 80px;
}

.motivation-block_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.motivation-block_logo {
  width: 100%;
  max-width: 371px;
  margin: 0 auto 25px;
}

.motivation-block_logo img {
  width: 100%;
  height: auto;
}

.motivation-block_text {
  font-size: 20px;
  margin-bottom: 40px;
  color: #74888F;
  text-align: center;
}

.motivation-block_btn-link {
  color: #EB755C;
  font-weight: 700;
  line-height: 1.375;
  text-transform: capitalize;
  border-radius: 100px;
  border: 3px solid #EB755C;
  background: rgba(255, 255, 255, 0.20);
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.motivation-block_btn-link:hover {
  background-color: #EB755C;
  color: #ffffff;
}

.about-us {
  padding: 30px 0 90px;
  background-color: #3189A5;
  position: relative;
}

.about-us::after {
  content: '';
  position: absolute;
  bottom: calc(100% - 2px);
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #3189A5;
  clip-path: polygon(100% 5%, 0% 95%, 0% 100%, 100% 100%);
  z-index: 2;
}

.about-us::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: calc(50% - 34vw);
  width: 60%;
  max-width: 592px;
  height: 705px;
  background: url(../i/about-us-img.png) no-repeat center / contain;
  z-index: 4;
}

.about-us_wrap::before {
  content: '';
  position: absolute;
  top: -60px;
  right: calc(50% - 37vw);
  width: 210px;
  height: 210px;
  background: url(../i/about-us-bg-decoration.png) no-repeat center / contain;
  z-index: 3;
}

.about-us_decor {
  width: 241px;
  height: 32px;
  background: url(../i/about-us-line-decor.svg) no-repeat center / contain;
  margin: 0 auto 50px;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
  opacity: 0;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.about-us_text {
  max-width: 355px;
  color: #ffffff;
  z-index: 20;
  position: relative;
}

.contact-us-block {
  background: #3189A5;
  padding: 30px 0 70px;
  position: relative;
  z-index: 2;
}

.contact-us-block::before {
  content: '';
  position: absolute;
  bottom: calc(100% - 2px);
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #3189A5;
  clip-path: polygon(100% 5%, 0% 95%, 0% 100%, 100% 100%);
}

.contact-us-block::after {
  display: none;
}

/*privacy*/
.terms {
  padding: 140px 0 80px;
  color: #768D94;
}

.terms_logo {
  margin: 0 auto 40px;
}

.terms_title {
  font-size: 32px;
  font-weight: 800;
  color: #5AA0B6;
  margin-bottom: 40px;
}

.terms_title__accent {
  color: #EB755C;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #5AA0B6;
}

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

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

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

.terms a:hover {
  opacity: 0.8;
}

body[data-lang='ua'] .we-do_item-title {
  font-size: 28px;
}

body[data-lang='ua'] .we-do_title {
  font-size: 34px;
}

body[data-lang='ua'] .info_item-title {
  font-size: 26px;
}

body[data-lang='ua'] .info_decor-text {
  font-size: 34px;
}

body[data-lang='ua'] .main__contact-us .main_title {
  font-size: 58px;
  max-width: 500px;
}

body[data-lang='ua'] .values_item-title {
  font-size: 22px;
}

@media screen and (max-width: 1340px) {
  .about {
    background-size: 320px, cover;
  }

  .values_items {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .values {
    --values-bg-end: calc(100% - 237px);
    --values-bg-decor-size: 674px;
  }

  .values_title {
    text-align: center;
    margin-bottom: 60px;
  }

  .contact-us::after {
    width: 320px;
  }

  .services::after {
    top: initial;
    bottom: 100px;
    left: calc(50% - 573px);
    width: 650px;
    height: 650px;
  }

  .about-us::before {
    right: calc(50% - 41vw);
    height: 660px;
  }

  .footer_menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 50%;
  }
}

@media screen and (max-width: 1023px) {
  .main__home {
    --main-bg-img-size: 700px;
    padding-bottom: 80px;
  }

  .main__what-we-do {
    --main-bg-img-size: 380px;
    padding-bottom: 150px;
  }

  .main__about-us {
    --main-bg-img-position: 50% 36%;
    --main-bg-img-size: 415px;
    padding-bottom: 80px;
  }

  .main__contact-us {
    --main-bg-img-position: calc(50% - 200px) 100%;
    --main-bg-img-size: 380px;
    padding-bottom: 540px;
  }

  .main::before {
    --main-decor-position-2: calc(50% - 310px);
  }

  .main::after {
    --main-decor-position-2: calc(50% - 340px);
  }

  .main__home .main_logo {
    margin-bottom: 480px;
  }

  .main__what-we-do .main_logo {
    margin-bottom: 520px;
  }

  .main__about-us .main_logo {
    margin-bottom: 450px;
  }

  .main__contact-us .main_logo {
    margin-bottom: 140px;
  }

  .main_wrap::before {
    --main-decor-position-1: 200px;
    --main-decor-position-2: -75px;
  }

  .main__about-us .main_wrap::before {
    --main-decor-position-1: 300px;
    --main-decor-position-2: -10px;
  }

  .main__about-us .main_wrap::after {
    --main-decor-position-1: 265px;
    --main-decor-position-2: 65px;
  }

  .main__contact-us .main_wrap::before,
  .main__contact-us .main_wrap::after {
    display: none;
  }

  .main_wrap::after {
    --main-decor-position-1: 165px;
    --main-decor-position-2: -4px;
  }

  .main__home .main_title {
    font-size: 50px;
  }

  .main__what-we-do .main_title {
    font-size: 70px;
  }

  .main__about-us .main_title,
  .main__about-us .main_text {
    text-align: center;
    max-width: 100%;
    -ms-flex-item-align: initial;
    -ms-grid-row-align: initial;
    align-self: initial;
  }

  .main__about-us .main_title {
    margin-bottom: 20px;
  }

  .main__home .main_decor::before {
    --main-decor-width: 120px;
    --main-decor-height: 80px;
    --main-decor-position-1: 130px;
    --main-decor-position-2: calc(50% - 100px);
  }

  .main__home .main_decor::after {
    --main-decor-width: 70px;
    --main-decor-height: 55px;
    --main-decor-position-1: 170px;
    --main-decor-position-2: calc(50% + 23px);
  }

  .main__contact-us .main_decor {
    bottom: -170px;
    width: 230px;
    height: 136px;
  }

  .main__contact-us .main_title::after {
    left: initial;
    right: 0;
    width: 140px;
    height: 135px;
    top: calc(100% + 140px);
  }

  .about {
    background-size: 230px, cover;
  }

  .about_decor {
    height: 220px;
  }

  .about_content {
    padding-bottom: 110px;
  }

  .we-do {
    padding: 210px 0 250px;
  }

  .we-do::after {
    -webkit-transform: translate(-50%, -100px);
    transform: translate(-50%, -100px);
    height: 300px;
  }

  .we-do_title,
  body[data-lang='ua'] .we-do_title {
    font-size: 26px;
  }

  .we-do_item-title {
    font-size: 24px;
  }

  .we-do_img {
    width: 450px;
    height: 460px;
    top: 345px;
  }

  .we-do_decor::before,
  .we-do_decor::after {
    width: 75px;
  }

  .we-do_item {
    -ms-flex-negative: initial;
    flex-shrink: initial;
  }

  .info {
    padding: 60px 0;
  }

  .info_logo {
    max-width: 375px;
  }

  .info_content {
    width: 100%;
  }

  .info_decor-text,
  body[data-lang='ua'] .info_decor-text {
    font-size: 28px;
  }

  .info_center-decor {
    position: relative;
    margin-bottom: 350px;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .info_decor-big {
    width: 350px;
    height: 350px;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .info_decor-line:nth-of-type(4) {
    height: 390px;
  }

  .values {
    --values-bg-end: calc(100% - 197px);
    --values-bg-decor-size: 560px;
    padding: 95px 0 30px;
  }

  .values_items {
    max-width: 55vw;
  }

  .values_item-title {
    font-size: 20px;
  }

  .contact-us {
    padding: 160px 0 60px;
  }

  .contact-us::after {
    width: 230px;
    height: 230px;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
  }

  .services {
    padding-bottom: 100px;
  }

  .services::after {
    bottom: 55px;
    left: calc(50% - 460px);
    width: 450px;
    height: 450px;
  }

  .services_wrap {
    max-width: 100%;
  }

  .services_content {
    max-width: 56vw;
    margin-left: auto;
  }

  .services_items {
    padding-left: 0;
  }

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

  .what-we-do {
    padding: 20px 0 215px;
  }

  .what-we-do_title {
    font-size: 50px;
    margin-bottom: 40px;
  }

  .what-we-do_subtitle {
    font-size: 24px;
  }

  .what-we-do_content {
    padding: 0 30px;
  }

  .what-we-do_decor-img {
    width: 550px;
    height: 510px;
    top: calc(100% - 140px);
  }

  .what-we-do_line:nth-of-type(11) {
    height: 150px;
  }

  .what-we-do_center {
    width: 140px;
  }

  .what-we-do_dot::before {
    width: 50px;
  }

  .we-do-info {
    padding-top: 180px;
  }

  .what-we-do::after {
    height: 100px;
  }

  .motivation-block {
    padding: 20px 0 40px;
  }

  .about-us::after,
  .contact-us-block::before {
    height: 60px;
  }

  .about-us::before {
    right: calc(50% - 53vw);
    height: 535px;
  }

  .about-us_wrap::before {
    top: -30px;
    right: calc(50% - 48vw);
    width: 110px;
    height: 110px;
  }

  .about-us_decor {
    width: 200px;
    height: 28px;
  }

  .contact-us-block {
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    top: 0;
    padding: 0;
  }

  .header_wrap {
    padding: 20px 0;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .language-switcher {
    position: static;
    -webkit-transform: none;
    transform: none;
  }

  .header_hamburger {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 20;
    cursor: pointer;
    font-size: 30px;
    line-height: 30px;
  }

  .header_menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 80px 20px 20px;
    background-color: #ffffff;
    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;
  }

  .header_menu[data-state="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 auto;
  }

  .header_menu .menu_link {
    font-size: 20px;
    padding: 20px;
    min-width: 220px;
    display: block;
    text-align: center;
  }

  .main {
    padding-top: 80px;
  }

  .main::before,
  .main::after,
  .main_wrap::before,
  .main_wrap::after {
    display: none;
  }

  .main__home {
    --main-bg-img-size: 520px;
    --main-bg-img-position: 50% 50%;
    padding-bottom: 20px;
  }

  .main__what-we-do {
    --main-bg-img-size: 310px;
    --main-bg-img-position: 50% 50%;
    padding-bottom: 105px;
  }

  .main__about-us {
    --main-bg-img-size: 310px;
    --main-bg-img-position: 50% 125px;
    padding-bottom: 50px;
  }

  .main__contact-us {
    --main-bg-img-size: 290px;
    --main-bg-img-position: calc(50% - 50px) 100%;
    padding-bottom: 520px;
  }

  .main__home .main_logo {
    margin-bottom: 400px;
  }

  .main__what-we-do .main_logo {
    margin-bottom: 450px;
  }

  .main__about-us .main_logo {
    margin-bottom: 350px;
  }

  .main__contact-us .main_logo {
    margin-bottom: 60px;
  }

  .main .main_title,
  body[data-lang='ua'] .main__contact-us .main_title {
    font-size: 36px;
    text-align: center;
  }

  .main__home .main_subtitle {
    font-size: 24px;
  }

  .main__contact-us .main_decor {
    bottom: -258px;
    width: 160px;
    height: 100px;
    left: 60%;
  }

  .main__contact-us .main_title::after {
    width: 80px;
    height: 80px;
    top: calc(100% + 20px);
  }

  .about-us::after,
  .contact-us-block::before {
    height: 35px;
  }

  .about-us::before {
    display: none;
  }

  .about-us {
    padding-bottom: 40px;
  }

  .about {
    padding-top: 100px;
  }

  .about_content {
    padding-bottom: 95px;
  }

  .about__what-we-do .about_content {
    padding-bottom: 40px;
  }

  .about {
    background-size: 150px, cover;
    background-position: 100% -6px, center top;
  }

  .we-do {
    padding: 175px 0 40px;
  }

  .we-do_wrap {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .we-do_center {
    -ms-flex-order: 1;
    order: 1;
    padding: 0 0 40px;
  }

  .we-do_item {
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    max-width: 100%;
    min-height: initial;
  }

  .we-do_item__1 {
    margin-bottom: 40px;
  }

  .we-do_item__2 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }

  .we-do_img {
    display: none;
  }

  .we-do_btn {
    width: 100%;
  }

  .info {
    padding: 40px 0 300px;
  }

  .info::after {
    height: 40px;
  }

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

  .info_center-decor {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: calc(100% + 90px);
    margin: 0;
  }

  .info_item {
    margin-top: 0;
    width: 100%;
    margin-bottom: 40px;
    padding: 20px;
    min-height: initial;
  }

  .info_decor-dot span {
    display: none;
  }

  body[data-lang='ua'] .info_decor-text {
    font-size: 24px;
  }

  .info_decor-line:nth-of-type(6) {
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .info_item-title {
    font-size: 24px;
  }

  .info_decor-big {
    width: 280px;
    height: 280px;
    top: calc(100% - 100px);
    left: initial;
    right: 0;
    -webkit-transform: none;
    transform: none;
  }

  .info .info_decor-big {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
  }

  .info_decor-text {
    font-size: 24px;
  }

  .values {
    padding-top: 55px;
    --values-bg-end: calc(100% - 41px);
    --values-bg-decor-size: 0;
  }

  .values_title {
    margin-bottom: 30px;
  }

  .values_items {
    max-width: initial;
    width: 100%;
    -ms-flex-align: initial;
    align-items: initial;
  }

  .values_item-content {
    padding: 70px 20px 50px;
  }

  .values_item-number {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .values_item-icon {
    right: 20px;
    top: initial;
    bottom: -30px;
  }

  .contact-us::after {
    width: 150px;
    height: 150px;
    left: initial;
    right: 0;
  }

  .contact-us {
    padding-bottom: 40px;
  }

  .content__home .contact-us {
    padding-top: 120px;
  }

  .contact-us_content {
    padding: 20px;
  }

  .contact-us_button {
    margin-top: 0;
    width: 100%;
  }

  .services {
    padding: 40px 0 175px;
  }

  .services::after {
    left: calc(50% - 45px);
    width: 340px;
    height: 340px;
    bottom: 0;
  }

  .services_text {
    margin-bottom: 40px;
  }

  .services_content {
    max-width: 65vw;
    width: 100%;
    margin: 0;
  }

  .services_content-title {
    margin-bottom: 30px;
  }

  .services_item {
    margin-bottom: 20px;
  }

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

  .what-we-do {
    padding-top: 40px;
  }

  .what-we-do_title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .what-we-do::after {
    height: 35px;
  }

  .what-we-do_content {
    padding-top: 80px;
    padding-right: 60px;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
  }

  .what-we-do_center {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
  }

  .what-we-do_col {
    display: contents;
  }

  .what-we-do_item {
    margin: 0 0 80px;
    max-width: 100%;
  }

  .what-we-do_item__1 {
    -ms-flex-order: 1;
    order: 1;
  }

  .what-we-do_item__2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .what-we-do_item__3 {
    -ms-flex-order: 3;
    order: 3;
  }

  .what-we-do_item__4 {
    -ms-flex-order: 4;
    order: 4;
  }

  .what-we-do_item__5 {
    -ms-flex-order: 5;
    order: 5;
  }

  .what-we-do_item__1 .what-we-do_number,
  .what-we-do_item__3 .what-we-do_number,
  .what-we-do_item__5 .what-we-do_number {
    right: initial;
    left: -30px;
  }

  .what-we-do_line {
    height: 153px;
  }

  .what-we-do_line:nth-of-type(1) {
    height: 116px;
  }

  .what-we-do_line:nth-of-type(11) {
    height: 50px;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .what-we-do_dot::before {
    width: 20px;
    left: initial;
    right: 100%;
  }

  .what-we-do_decor-img {
    width: 400px;
    height: 370px;
    top: calc(100% - 75px);
    -webkit-transform: translateX(-90%);
    transform: translateX(-90%);
  }

  .we-do-info {
    padding-top: 100px;
  }

  .we-do-info_text {
    margin-bottom: 40px;
  }

  .we-do-info_item {
    width: 100%;
    padding: 170px 20px 20px;
    margin-bottom: 40px;
    background-position: center center;
    text-align: center;
  }

  .we-do-info_item .we-do-info_item-icon {
    top: 20px;
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .we-do-info_item-title {
    line-height: 1.1;
  }

  .motivation-block_logo {
    width: 80%;
  }

  .motivation-block_text {
    font-size: 18px;
  }

  .motivation-block_btn,
  .motivation-block_btn-link {
    width: 100%;
  }

  .footer_wrap {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer_menu {
    max-width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer_menu-link {
    padding: 10px 20px;
    text-align: center;
    display: block;
  }

  .copyright {
    text-align: center;
    margin-top: 20px;
  }

  .terms {
    padding: 80px 0 40px;
  }
}