:root {
  --max-width: 1020px;
  --bg-color-dark-blue: #192145;
}

::-webkit-scrollbar {
  width: 2px !important;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.16) !important;
}

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

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

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

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

/*fonts*/
.roboto-normal {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth"100;
}

.open-sans-normal {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth"100;
}

.arimo-normal {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*main styles*/
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 17px;
  font-style: normal;
  font-variation-settings: "wdth"100;
  line-height: normal;
  color: #5C7078;
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.btn {
  font-family: "Open Sans", sans-serif;
  line-height: 1.4em;
  width: 260px;
  height: 55px;
  background: #f78f57;
  color: #FFFFFF;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.4);
}

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

.decor-line {
  position: relative;
  margin: 20px 0;
  border-top: 2px dashed #73cef5;
  min-height: 2px;
  width: 100%;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.decor-line .decor {
  display: block;
  width: 52px;
  height: 37px;
  background: url("../i/icon-logo.png") no-repeat center center / contain;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
}

/*header*/
.header {
  background-color: var(--bg-color-dark-blue);
  color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  padding: 10px 20px 20px;
  margin: 0 auto;
}

.header_hamburger {
  display: none;
  width: 25px;
  height: 25px;
}

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

.logo_link {
  display: block;
  width: 240px;
  height: 70px;
}

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

.header_menu {
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.menu_items {
  display: -ms-flexbox;
  display: flex;
}

.menu_item {
  margin: 0 10px;
  cursor: pointer;
}

.menu_item.is-active {
  color: #73cef5;
  pointer-events: none;
}

.menu_item:hover {
  color: #73cef5;
}

.menu_link {
  color: inherit;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.05em;
  font-size: 15px;
}

/*content*/
.content {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  overflow-x: hidden;
  padding-top: 100px;
}

.title-block {
  color: #3078BE;
  font-family: "Arimo", sans-serif;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/*animation*/
.is-animated .fadeInLeft,
.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;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

/*main*/
.main {
  background: var(--mainPageBg) no-repeat center center / cover;
  position: relative;
}

.main_wrap {
  min-height: var(--mainMinHeight, 630px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.main__home {
  --mainPageBg: url("../i/main_bg.jpg");
  --mainMinHeight: 767px;
}

.main__services {
  --mainPageBg: url("../i/services_bg.jpg");
}

.main__why-us {
  --mainPageBg: url("../i/why-us-page_bg.jpg");
}

.main__services .main_wrap {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.main_decoration {
  background: url("../i/icon-logo.png") no-repeat center center / contain;
  width: 280px;
  height: 197px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.main_decoration__home {
  width: 440px;
  height: 310px;
  -webkit-transform: translate(-50%, 25%);
  transform: translate(-50%, 25%);
}

.main_text-block {
  padding-top: 130px;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.main_text {
  line-height: 1.4;
  font-size: 27px;
}

.main_text__1 {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.15em;
  color: #192145;
  margin-right: 140px;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.main_text__2 {
  position: relative;
  letter-spacing: 0.05em;
  font-size: 46px;
  color: #3078BE;
  margin: -10px 0 15px 100px;
}

.main_text__2 .decor {
  display: block;
  position: absolute;
  width: 75px;
  height: 75px;
  top: 0;
  right: -30%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("../i/home-main-decor-1.png") no-repeat center center / contain;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.main_title {
  position: relative;
  font-weight: 900;
  color: #192145;
  font-size: 120px;
  text-align: center;
}

.main__services .main_title,
.main__why-us .main_title {
  font-size: 134px;
  letter-spacing: 0.05em;
}

body.lang-es .main__why-us .main_title {
  font-size: 80px;
}

.main__services .main_title {
  padding-right: 40px;
  margin: 0 50px 50px 0;
}

.main__why-us .main_title {
  padding-right: 20px;
  margin: 75px 0 0;
}

.main_title .decor {
  display: block;
  position: absolute;
  top: 40px;
  right: -20px;
  -webkit-transform: translate(50%, -100%);
  transform: translate(50%, -100%);
  width: 98px;
  height: 50px;
  background: url("../i/home-main-decor-2.png") no-repeat center center / contain;
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.main_btn {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

/*about-us*/
.about-us {
  padding: 90px 0;
}

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

.about-us_content {
  width: calc(50% - 70px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about-us_image {
  width: calc(50% - 30px);
  height: 649px;
  background: url("../i/about-us.jpg") no-repeat center center / cover;
}

.about-us_title {
  margin-bottom: 20px;
}

.about-us_subtitle {
  font-size: 26px;
  max-width: 280px;
  color: #242323;
  line-height: 1.4;
}

.about-us_text {
  line-height: 1.5;
}

.about-us_text .accent {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #F78F57;
}

.about-us_text p {
  margin-bottom: 30px;
}

.about-us_decoration {
  max-width: 85%;
}

/*services-block*/
.services-block {
  background-color: #6791b5;
  padding: 90px 0;
}

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

.services-block_title {
  color: #184766;
  margin-bottom: 50px;
}

.services-block_items {
  margin-bottom: 40px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.services-block_item {
  width: 25%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  color: #FFFFFF;
}

.services-block_item-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
  padding: 0 15px;
  height: 85px;
}

.services-block_item-number {
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 5px solid #FFFFFF;
  border-radius: 50%;
  background-color: #6791b5;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 5;
}

.services-block_item-number span {
  opacity: 0;
}

.services-block_item-number::after {
  content: "";
  display: block;
  border-top: 2px dashed #73cef5;
  height: 2px;
  width: 360%;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(5px, -50%);
  transform: translate(5px, -50%);
  z-index: 0;
}

.services-block_item:last-child .services-block_item-number::after {
  display: none;
}

.services-block_item-icon {
  width: 200px;
  height: 200px;
  background-color: rgba(1, 28, 55, 0.32);
  border-radius: 20px;
  margin-bottom: 30px;
}

.icon {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.services-block_item:nth-of-type(1) .fadeIn {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.services-block_item:nth-of-type(2) .fadeIn {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.services-block_item:nth-of-type(3) .fadeIn {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.services-block_item:nth-of-type(4) .fadeIn {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.icon__business-development {
  background-image: url("../i/serv_1.png");
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.icon__project-management {
  background-image: url("../i/serv_2.png");
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.icon__online-platform {
  background-image: url("../i/serv_3.png");
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.icon__online-marketing {
  background-image: url("../i/serv_4.png");
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.services-block_item-text {
  line-height: 1.4;
  max-width: 210px;
  padding-left: 10px;
}

.services-block_item:nth-of-type(2n) .services-block_item-title,
.services-block_item:nth-of-type(2n) .services-block_item-number,
.services-block_item:nth-of-type(2n) .services-block_item-text {
  opacity: 0.6;
}

/*why-us-block*/
.why-us-block {
  padding: 70px 0;
  background: url("../i/why-us_bg.jpg") no-repeat center center / cover;
}

.why-us-block_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
}

.why-us-block_title {
  margin-bottom: 10px;
}

.why-us-block_decoration {
  max-width: 50%;
}

.why-us-block_items {
  padding-top: 50px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
}

.why-us-block_item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 20%;
  margin-bottom: 40px;
}

.why-us-block_item-title {
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  min-height: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #242323;
}

.why-us-block_item-img {
  width: 196px;
  height: 196px;
  position: relative;
  margin-bottom: 50px;
}

.why-us-block_item .img {
  width: 112%;
  height: 112%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  left: -10px;
  top: 0;
}

.why-us-block_item .img span {
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-51%, -50%);
  transform: translate(-51%, -50%);
}

.why-us-block_item .icon__1 {
  background-image: url("../i/why-us-icon-bg-1.jpg");
  z-index: 5;
}

.why-us-block_item .icon__1 span {
  background-image: url("../i/why-us_icon_1.png");
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.why-us-block_item .icon__2 {
  background-image: url("../i/why-us-icon-bg-2.jpg");
  z-index: 4;
}

.why-us-block_item .icon__2 span {
  background-image: url("../i/why-us_icon_2.png");
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.why-us-block_item .icon__3 {
  background-image: url("../i/why-us-icon-bg-3.jpg");
  z-index: 3;
}

.why-us-block_item .icon__3 span {
  background-image: url("../i/why-us_icon_3.png");
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.why-us-block_item .icon__4 {
  background-image: url("../i/why-us-icon-bg-2.jpg");
  z-index: 2;
}

.why-us-block_item .icon__4 span {
  background-image: url("../i/why-us_icon_4.png");
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.why-us-block_item .icon__5 {
  background-image: url("../i/why-us-icon-bg-4.jpg");
  z-index: 1;
}

.why-us-block_item .icon__5 span {
  background-image: url("../i/why-us_icon_5.png");
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.why-us-block_item-text {
  line-height: 1.5;
  padding: 0 10px;
}

.why-us-block_btn {
  opacity: 0;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-top: 20px;
}

/*contact-us*/
.contact-us {
  padding: 60px 0 90px;
  background-color: #bad1e0;
  overflow: hidden;
}

.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 {
  color: #184766;
  text-align: center;
  margin-bottom: 10px;
}

.contact-us_subtitle {
  color: #0A5587;
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.contact-us_logo {
  width: 117px;
  height: 80px;
  background: url("../i/icon-logo.png") no-repeat center center / contain;
  margin-bottom: 20px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.contact-us_name {
  letter-spacing: 0.03em;
  color: #0A5587;
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-us_location {
  color: #0A5587;
  font-family: "Arimo", sans-serif;
  font-size: 16px;
  letter-spacing: 0.03em;
  position: relative;
  padding-left: 60px;
  text-align: center;
}

.icon__location {
  width: 60px;
  height: 60px;
  background: url("../i/location.png") no-repeat center center / contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact-us_form {
  margin-top: 60px;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

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

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

.contact-us_fields {
  width: 100%;
  max-width: 590px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-us_field {
  width: calc(50% - 10px);
  margin-bottom: 20px;
}

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

.field_input,
.field_textarea {
  width: 100%;
  height: 35px;
  background: #FFFFFF;
  padding: 10px;
  border-radius: 10px;
}

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

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

.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;
  color: #007d2d;
  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: 250px;
}

/*services page*/
.services-item_header {
  background-color: #31c9f7;
  padding: 25px 0;
}

.services-item:nth-of-type(1) .services-item_header {
  border-top: 40px solid #31c9f7;
}

.services-item:nth-of-type(2n + 1) .services-item_header {
  background-color: #6791b5;
}

.services-item_header-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #FFFFFF;
}

.services-item_number {
  width: 110px;
  height: 110px;
  margin-right: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 10px solid #FFFFFF;
  border-radius: 50%;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 5;
}

.services-item_number span,
.services-item_icon .icon {
  opacity: 0;
}

.services-item_number .fadeIn,
.services-item_icon .icon {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.services-item_title {
  font-size: 38px;
  max-width: 390px;
  margin-right: auto;
}

.services-item_icon {
  width: 120px;
  height: 120px;
  background-color: rgba(1, 28, 55, 0.32);
  border-radius: 15px;
  margin-left: 20px;
}

.services-item_icon .icon {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.services-item_content {
  padding: 60px 0 90px;
}

.services-item:nth-of-type(1) .services-item_content,
.services-item:nth-of-type(3) .services-item_content {
  background-color: #e3f4ff;
}

.services-item:nth-of-type(2) .services-item_content,
.services-item:nth-of-type(4) .services-item_content {
  background: url("../i/serv-2-bg.jpg") no-repeat center center / cover;
}

.services-item_content-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.services-item_img {
  width: 280px;
  height: 340px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.services-item_img__business-development {
  background-image: url("../i/business_dev_serv.jpg");
}

.services-item_img__project-management {
  background-image: url("../i/project_manag.jpg");
}

.services-item_img__online-platform {
  background-image: url("../i/platform_design.jpg");
}

.services-item_img__online-marketing {
  background-image: url("../i/marketing.jpg");
}

.services-item_description {
  line-height: 1.4;
}

.services-item_description p:not(:last-child) {
  margin-bottom: 20px;
}

/*why-us page*/
.why-us {
  padding: 120px 0 50px;
}

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

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

.why-us-item {
  width: calc(50% - 10px);
  margin-bottom: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.why-us-item_number {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border: 8px solid #BAD1E0;
  border-radius: 50%;
  background: #FFF;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #BAD1E0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.why-us-item:nth-of-type(2n + 1) .why-us-item_number::after {
  content: "";
  display: block;
  border-top: 2px dashed #73cef5;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translate(5px, -50%);
  transform: translate(5px, -50%);
  z-index: -1;
}

.why-us-item_number .fadeIn {
  opacity: 0;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  z-index: 2;
}

.why-us-item_title {
  font-size: 26px;
  color: #242323;
  margin-bottom: 20px;
}

.why-us-item_pic {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 260px;
  margin-bottom: 30px;
}

.why-us-item_pic-decor {
  margin-left: 10px;
  width: 30px;
  height: 100%;
  background-color: #e3f4ff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.why-us-item:nth-of-type(2n) .why-us-item_pic {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.why-us-item:nth-of-type(2n) .why-us-item_pic-decor {
  margin: 0 10px 0 0;
}

.why-us-item_img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.why-us-item_img__1 {
  background-image: url("../i/why-us_design.jpg");
}

.why-us-item_img__2 {
  background-image: url("../i/why-us_compatibility.jpg");
}

.why-us-item_img__3 {
  background-image: url("../i/why-us_flexibility.jpg");
}

.why-us-item_img__4 {
  background-image: url("../i/why-us_monetization.jpg");
}

.why-us-item_img__5 {
  background-image: url("../i/why-us_analytics.jpg");
}

.why-us-item_img__6 {
  background-image: url("../i/why-us_ssl.jpg");
}

.why-us-item_img__7 {
  background-image: url("../i/why-us_support.jpg");
}

.why-us-item_img__8 {
  background-image: url("../i/why-us_help.jpg");
}

.why-us-item_text {
  line-height: 1.5;
  padding: 0 20px;
}

/*footer*/
.footer {
  padding: 20px 0 30px;
  background-color: var(--bg-color-dark-blue);
}

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

.copyright {
  color: #73CEF5;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.copyright span {
  margin-right: 20px;
}

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

.footer_menu-item {
  margin: 10px 0 10px 40px;
}

.footer_menu-link {
  font-size: 15px;
  color: #FFFFFF;
}

.footer_menu-link.is-active {
  color: #73CEF5;
  pointer-events: none;
}

.footer_menu-link:hover {
  color: #73CEF5;
}

/*privacy and terms*/
.privacy-and-terms .content {
  padding: 150px 0 50px;
  --max-width: 840px;
}

.privacy-and-terms .content .title {
  color: #F78F57;
  letter-spacing: 0.05em;
  font-size: 42px;
  margin-bottom: 25px;
}

.privacy-and-terms .content p {
  margin-bottom: 25px;
  line-height: 1.5;
}

.privacy-and-terms .content h4 {
  font-size: 24px;
  margin-bottom: 25px;
}

.privacy-and-terms .content a {
  font-weight: 700;
  color: #605e5e;
  text-decoration: underline;
}

.privacy-and-terms .content a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  .header_wrap {
    padding: 15px 20px;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .logo_link {
    height: 45px;
    width: 152px;
  }

  .header_hamburger {
    display: block;
    position: relative;
  }

  .header_hamburger .icon {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .header_hamburger .icon__hamburger {
    display: block;
    height: 3px;
    background: #FFFFFF;
  }

  .header_hamburger.is-active .icon__hamburger {
    display: none;
  }

  .icon__hamburger::before,
  .icon__hamburger::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    left: 0;
  }

  .icon__hamburger::before {
    top: -10px;
  }

  .icon__hamburger::after {
    bottom: -10px;
  }

  .icon__close::before,
  .icon__close::after {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
  }

  .icon__close::before {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  .icon__close::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }

  .header_hamburger.is-active .icon__close {
    display: block;
  }

  .header_menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    padding: 100px 20px 20px;
    background-color: rgba(10, 85, 135, 0.96);
    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;
    letter-spacing: 2px;
    font-size: 20px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.5);
    display: block;
    text-align: left;
  }

  .header_menu .language-switcher {
    margin: auto -20px -20px;
    width: calc(100% + 40px);
  }

  .header_menu .dropdown_button {
    padding: 20px;
  }

  .header_menu .dropdown_menu {
    bottom: 100%;
    top: initial;
  }

  .header_menu .icon_arrow-down {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .content {
    padding-top: 75px;
  }

  .privacy-and-terms .content {
    padding-top: 100px;
  }

  .main .main_title {
    font-size: 80px;
  }

  body.lang-es .main__why-us .main_title {
    font-size: 50px;
  }

  .content .main {
    --mainMinHeight: 540px;
  }

  .main_decoration__home {
    width: 280px;
    height: 197px;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }

  .title-block {
    font-size: 40px;
  }

  .services-block_item-title {
    font-size: 20px;
  }

  .about-us_content,
  .about-us_image {
    width: calc(50% - 15px);
  }

  .services-block_item-icon {
    width: 140px;
    height: 140px;
  }

  .services-block_item-number::after {
    display: none;
  }

  .why-us-block_items {
    padding-top: 0;
  }

  .why-us-block_item {
    -ms-flex-align: center;
    align-items: center;
  }

  .why-us-block_item-title {
    font-size: 18px;
  }

  .why-us-block_item-img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }

  .why-us-block_item .img span {
    width: 70px;
    height: 70px;
  }
}

@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }

  .content .main__services,
  .content .main__why-us {
    --mainMinHeight: calc(100vw - 20px);
  }

  .main_text-block {
    padding-top: 30px;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .main_text {
    font-size: 28px;
  }

  .main_text__1 {
    margin-right: 0;
  }

  .main_text__2 {
    margin: 0 90px 20px 0;
    font-size: 38px;
  }

  .main .main_title {
    font-size: 56px;
    padding-right: 110px;
    text-align: left;
  }

  .main_title .decor {
    top: auto;
    right: 10px;
    bottom: 10px;
    -webkit-transform: none;
    transform: none;
  }

  .main__services .main_title,
  .main__why-us .main_title {
    padding: 0;
    margin: 0;
  }

  .main__services .main_title {
    margin: 0 25px 20px 0;
  }

  .main__why-us .main_title {
    margin-top: 50px;
  }

  body.lang-es .main__why-us .main_title {
    font-size: 46px;
  }

  body.lang-es .main__why-us .main_title .decor {
    right: 0;
  }

  .main__services .main_title .decor,
  .main__why-us .main_title .decor {
    right: -50px;
    bottom: 85%;
  }

  .main_btn {
    width: 100%;
    margin-top: 60px;
  }

  .main .main_decoration {
    width: 180px;
    height: 130px;
    -webkit-transform: translate(-50%, 70%);
    transform: translate(-50%, 70%);
  }

  .about-us {
    padding: 130px 0 40px;
  }

  .about-us_image {
    display: none;
  }

  .about-us_content {
    width: 100%;
  }

  .about-us_title {
    margin-bottom: 0;
  }

  .about-us_btn,
  .services-block_btn,
  .why-us-block_btn {
    width: 100%;
  }

  .services-block,
  .why-us-block,
  .contact-us {
    padding: 40px 0;
  }

  .services-block_title {
    margin-bottom: 20px;
  }

  .services-block_items {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .services-block_item {
    width: 100%;
    margin: 0 0 40px;
    padding-bottom: 40px;
    position: relative;
  }

  .services-block_item::after {
    content: "";
    display: block;
    border-bottom: 2px dashed #73cef5;
    width: 70%;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .services-block_item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .services-block_item:last-child::after {
    display: none;
  }

  .services-block .services-block_item .fadeIn,
  .services-block_item-icon .icon {
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important;
  }

  .services-block_item-title {
    font-size: 28px;
    height: auto;
    margin-bottom: 20px;
  }

  .services-block_item-number {
    margin-bottom: -15px;
    width: 100px;
    height: 100px;
    border-width: 8px;
    font-size: 40px;
  }

  .services-block_item-icon {
    width: 80vw;
    height: 80vw;
    margin-bottom: 20px;
  }

  .services-block_item-text {
    max-width: initial;
    padding: 0 20px;
  }

  .why-us-block_decoration {
    max-width: 85%;
  }

  .why-us-block_items {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .why-us-block_item {
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .why-us-block_item-title {
    width: 100%;
    min-height: initial;
    margin-bottom: 15px;
    font-size: 28px;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .why-us-block_item-img {
    width: 140px;
    height: 140px;
    margin: 0 20px 0 0;
  }

  .why-us-block_item .img,
  .why-us-block_item .img span {
    width: 100%;
    height: 100%;
  }

  .why-us-block_item .img {
    left: 0;
    background: none;
  }

  .why-us-block_item-text {
    width: calc(100% - 160px);
    padding: 0;
  }

  .contact-us_name {
    font-size: 17px;
  }

  .contact-us_location {
    text-align: left;
  }

  .contact-us_form {
    margin-top: 30px;
  }

  .contact-us_field {
    width: 100%;
  }

  .services-item:nth-of-type(1) .services-item_header {
    border-top-width: 20px;
  }

  .services-item_header-wrap {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .services-item_number {
    display: none;
  }

  .services-item_title {
    font-size: 26px;
  }

  .services-item_icon {
    width: 80px;
    height: 80px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 20px 0 0;
  }

  .services-item_content {
    padding: 30px 0;
  }

  .services-item_content-wrap {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .services-item_img {
    width: calc(100vw - 80px);
    height: calc((100vw - 80px) * 1.2143);
    margin: 0 0 30px;
  }

  .why-us {
    padding-top: 100px;
  }

  .why-us_title {
    margin-bottom: 20px;
  }

  .why-us-item {
    width: 100%;
    margin: 0 0 20px;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .why-us-item_text {
    width: 100%;
  }

  .why-us-item_number {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin: 0 20px 0 0;
  }

  .why-us-item_title {
    width: calc(100% - 80px);
    margin: 0;
    text-align: left;
  }

  .why-us-item_number::after {
    display: none !important;
  }

  .why-us-item_pic {
    margin: 20px 0;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .why-us-item_pic-decor {
    width: 100%;
    height: 15px;
    margin: 10px 0 0 !important;
  }

  .privacy-and-terms .content .title {
    font-size: 30px;
  }

  .footer {
    padding: 20px 0;
  }

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

  .footer_menu-item {
    margin: 0 10px 20px;
  }

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

  .copyright span {
    margin: 0;
  }
}

@media screen and (max-width: 375px) {
  .header_menu {
    width: 260px;
  }

  .main_text-block {
    padding: 30px 20px 0;
  }

  .main__home .main_title {
    padding-right: 85px;
  }
}