@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h3, h4, h5, h6, a, ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm_sans/DMSans-Regular.ttf");
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm_sans/DMSans-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm_sans/DMSans-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm_sans/DMSans-Italic.ttf");
  font-style: italic;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm_sans/DMSans-BoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm_sans/DMSans-MediumItalic.ttf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm_sans/DMSans-RegularItalic.ttf");
  font-style: italic;
}
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  vertical-align: middle;
}
.icon__open-window {
  background: url(../img/icons/open-window.svg) no-repeat center center;
}
.icon__no-card {
  background: url(../img/icons/no-card.svg) no-repeat center center;
  width: 24px;
}
.icon__no-card_black {
  background: url(../img/icons/no-card-black.svg) no-repeat center center;
  width: 24px;
}
.icon__no-card_yellow {
  background: url(../img/icons/no-card-yellow.svg) no-repeat center center;
  width: 24px;
}
.icon__no-card_violet {
  background: url(../img/icons/no-card-violet.svg) no-repeat center center;
  width: 24px;
}
.icon__no-card_green {
  background: url(../img/icons/no-card-green.svg) no-repeat center center;
  width: 24px;
}
.icon__massage {
  background: url(../img/icons/message.svg) no-repeat center center;
  width: 48px;
  height: 48px;
}

body {
  background-color: #fff;
  color: #333;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.container {
  margin: 0 auto;
  max-width: 1405px;
  padding: 0 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

h2 {
  color: #333;
  text-align: center;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  margin: 15px 0;
  line-height: 1;
  letter-spacing: -0.84px;
}
@media screen and (min-width: 1200px) {
  h2 {
    line-height: 60px;
    letter-spacing: -3.84px;
    font-size: 64px;
  }
}

h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -2.72px;
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 34px;
  }
}

h4 {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
}
@media screen and (min-width: 1200px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  color: #333;
  font-family: DM Sans;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.96px;
  padding: 10px 0;
}

h6 {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.64px;
}

p {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
}

section {
  padding: 20px 0;
}

ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
ul li {
  width: 100%;
  padding-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #232323;
}
@media screen and (min-width: 1200px) {
  ul li {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.96px;
    padding-bottom: 25px;
    padding-left: 56px;
  }
}
ul li:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/icons/check-circle.png) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1200px) {
  ul li:before {
    width: 30px;
    height: 30px;
  }
}

.switcher {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 34px;
}
.switcher__input {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.switcher__input:checked + .switcher__slider:before {
  -webkit-transform: translateX(26px);
          transform: translateX(26px);
}
.switcher__slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  border-radius: 34px;
  border: 1px solid #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switcher__slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn {
  font-size: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 7px 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
}
@media screen and (min-width: 1200px) {
  .btn {
    font-size: 21px;
    padding: 10px 20px;
  }
}
.btn__default {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}
.btn__default:hover {
  background: rgba(0, 0, 0, 0.1);
}
.btn__default.btn__not-active:hover {
  background: rgba(0, 0, 0, 0.05);
}
.btn__primary {
  color: #fff;
  background: #4A54F5;
}
.btn__primary:hover {
  background: #3a42c5;
}
.btn__primary.btn__not-active:hover {
  background: #4A54F5;
}
.btn__transparent {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.btn__transparent:hover {
  background: rgba(255, 255, 255, 0.2);
}
.btn__transparent.btn__not-active:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn__light {
  color: #4A54F5;
  background: #fff;
}
.btn__light:hover {
  background: #f5f5f5;
}
.btn__light.btn__not-active:hover {
  background: #fff;
}
.btn__line {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
  color: #232323;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #4A54F5;
}
.btn__line:hover {
  border-radius: 100px;
  background: #4A54F5;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .btn__line {
    width: inherit;
    font-size: 19px;
    padding: 10px 18px;
    line-height: 24px;
    letter-spacing: -0.76px;
  }
}
.btn__line_active {
  border-radius: 100px;
  border: 1px solid #4A54F5;
}
.btn__not-active {
  cursor: default;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}
.header__logo {
  font-weight: 700;
  text-decoration: none;
  color: #000;
  line-height: normal;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 126px;
}
.nav__burger {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .nav__burger {
    display: none;
  }
}
.nav__burger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav__burger span:nth-child(1) {
  top: 0;
}
.nav__burger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav__burger span:nth-child(3) {
  bottom: 0;
}
.nav__container {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .nav__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.nav__link {
  margin-left: 48px;
  color: #232323;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.36px;
}
.nav__link:hover {
  color: #4A54F5;
}
.nav__auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .nav__auth .btn {
    font-size: 15px;
    padding: 7px 12px;
  }
}

.hero {
  background: #4A54F5;
  padding: 2rem;
  text-align: center;
  color: #FFF;
  margin-top: 65px;
}
.hero__title {
  font-size: 42px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .hero__title {
    font-size: 64px;
  }
}
@media screen and (min-width: 1200px) {
  .hero__title {
    font-size: 92px;
    line-height: 80px;
    max-width: 700px;
    margin-bottom: 0;
    letter-spacing: -5.33px;
  }
}
.hero__text {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.48px;
  padding: 0 5px;
}
@media screen and (min-width: 992px) {
  .hero__text {
    max-width: 595px;
  }
}
@media screen and (min-width: 1200px) {
  .hero__content {
    padding: 30px;
  }
}
.hero__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1200px) {
  .hero__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
.hero__img {
  width: 350px;
  height: 350px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: url("../img/hero-img.png"), lightgray 50%/cover no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 992px) {
  .hero__img {
    width: 500px;
    height: 500px;
    margin: 30px;
  }
}
.hero__img .hero__mark {
  position: absolute;
}
.hero__img .hero__mark:first-child {
  top: 82px;
  right: -14px;
  background: #D2D4FC;
  -webkit-box-shadow: 0px 20px 32px 0px rgba(69, 75, 186, 0.24), 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 20px 32px 0px rgba(69, 75, 186, 0.24), 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
  color: #454BBA;
}
.hero__img .hero__mark:nth-child(2) {
  top: 191px;
  left: -71px;
  border-radius: 100px;
  background: #FFF4DA;
  -webkit-box-shadow: 0px 20px 32px 0px rgba(171, 103, 0, 0.08), 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 20px 32px 0px rgba(171, 103, 0, 0.08), 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
  color: #AB6700;
}
.hero__img .hero__mark:nth-child(3) {
  bottom: 49px;
  right: -7px;
  background: #D7F3DF;
  -webkit-box-shadow: 0px 20px 32px 0px rgba(23, 112, 48, 0.24), 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 20px 32px 0px rgba(23, 112, 48, 0.24), 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
  background: #177030;
}
@media screen and (min-width: 1200px) {
  .hero__img .hero__mark:first-child {
    top: 125px;
    right: -24px;
  }
  .hero__img .hero__mark:nth-child(2) {
    top: 280px;
    left: -100px;
  }
  .hero__img .hero__mark:nth-child(3) {
    bottom: 68px;
    right: -7px;
  }
}
.hero__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1200px) {
  .hero__btn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.main-info {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .main-info {
    padding-top: 3rem;
  }
}
.main-info__inner {
  width: 100%;
  padding-bottom: 50px;
}
.main-info__text {
  max-width: 900px;
  margin: 24px auto;
}
.main-info__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.charts {
  background: #F5F5F5;
}
.charts__inner {
  padding-bottom: 20px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .charts__inner {
    padding-bottom: 40px;
  }
}
.charts__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.charts__items img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .charts__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.charts__first-row, .charts__second-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .charts__first-row, .charts__second-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.charts__info {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .charts__info {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.customers__title {
  text-align: center;
}
.customers h2 {
  display: inline-block;
  max-width: 900px;
}
@media screen and (min-width: 1200px) {
  .customers h2 {
    padding-top: 25px;
    padding-bottom: 35px;
  }
}
.customers__inner {
  width: 100%;
}
.customers__slider {
  width: 100%;
  overflow: hidden;
}
.customers__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  border-radius: 32px;
  border: 1px solid #D4D7D9;
  background: #FFF;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .customers__slide {
    height: 240px;
  }
}
.customers__slide-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
.customers__slide-img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.customers__bio {
  min-width: 280px;
}
.customers__position {
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.96px;
  opacity: 0.3;
  margin: 0;
}
.customers__slide-content p {
  color: #333;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.84px;
  margin: 0;
}

.projects {
  padding: 20px;
}
.projects__inner {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .projects__inner {
    margin-top: 60px;
  }
}
.projects__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  margin: 20px 0;
  height: 400px;
  border-radius: 32px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .projects__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 50px;
    height: 480px;
    margin-bottom: 60px;
  }
}
.projects__item_yellow {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FFF4DA;
}
.projects__item_yellow .projects__img_yellow {
  background: url(../img/projects/financial.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 1200px) {
  .projects__item_yellow .projects__img_yellow {
    background: url(../img/projects/financial.png) no-repeat center top;
    background-size: inherit;
  }
}
.projects__item_violet {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #D2D4FC;
  -webkit-box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.04), 0px 16px 64px 0px rgba(69, 75, 186, 0.08);
          box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.04), 0px 16px 64px 0px rgba(69, 75, 186, 0.08);
}
.projects__item_violet .projects__img_violet {
  background: url(../img/projects/hiring-plan.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 1200px) {
  .projects__item_violet .projects__img_violet {
    background: url(../img/projects/hiring-plan.png) no-repeat left top;
    background-size: inherit;
  }
}
.projects__item_green {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #D7F3DF;
  -webkit-box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.04), 0px 16px 64px 0px rgba(56, 140, 80, 0.08);
          box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.04), 0px 16px 64px 0px rgba(56, 140, 80, 0.08);
}
.projects__item_green .projects__img_green {
  background: url(../img/projects/financial.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 1200px) {
  .projects__item_green .projects__img_green {
    background: url(../img/projects/financial.png) no-repeat center top;
    background-size: inherit;
  }
}
.projects__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
  margin-bottom: 10px;
  color: #333;
}
@media screen and (min-width: 1200px) {
  .projects__title {
    font-size: 64px;
    line-height: 60px;
    letter-spacing: -3.84px;
    padding-top: 93px;
  }
}
.projects__description {
  font-size: 18px;
  font-style: normal;
  line-height: 32px;
  letter-spacing: -0.96px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .projects__description {
    font-size: 24px;
    letter-spacing: -0.96px;
    padding-bottom: 18px;
  }
}
.projects__img {
  width: 100%;
  padding-bottom: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .projects__img {
    width: 652px;
    padding-bottom: 0;
    position: absolute;
    right: -10px;
    top: 40px;
    height: 480px;
  }
}
.projects__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.projects__btns .btn_yellow {
  background: #AB6700;
  color: #fff;
}
.projects__btns .btn_yellow:hover {
  opacity: 0.8;
}
.projects__btns .btn__default_yellow {
  color: #AB6700;
}
.projects__btns .btn_violet {
  background: #454BBA;
  color: #fff;
}
.projects__btns .btn_violet:hover {
  opacity: 0.8;
}
.projects__btns .btn__default_violet {
  color: #454BBA;
}
.projects__btns .btn_green {
  background: #388C50;
  color: #fff;
}
.projects__btns .btn_green:hover {
  opacity: 0.8;
}
.projects__btns .btn__default_green {
  color: #388C50;
}

.business {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .business {
    margin-bottom: -60px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    padding-bottom: 100px;
    overflow: hidden;
    background: #fff;
  }
}
.business .container {
  overflow: hidden;
}
.business h3 {
  color: #232323;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  padding-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .business h3 {
    font-size: 64px;
    line-height: 60px;
    letter-spacing: -3.84px;
    max-width: 600px;
  }
}
.business ul {
  padding-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .business ul {
    padding-top: 50px;
    padding-bottom: 0;
  }
}
.business__inner {
  width: 100%;
}
.business__img {
  width: 700px;
  height: 300px;
  background: url(../img/business-tool.png) no-repeat top left;
}
@media screen and (min-width: 1200px) {
  .business__img {
    height: 600px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
}

.price {
  background-color: #4A54F5;
  padding: 45px 0;
}
@media screen and (min-width: 1200px) {
  .price {
    padding-bottom: 0;
    padding-top: 105px;
    overflow: hidden;
    margin-bottom: -60px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
.price h2 {
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .price h2 {
    padding-bottom: 10px;
  }
}
.price br {
  display: none;
}
@media screen and (min-width: 1200px) {
  .price br {
    display: inline;
  }
}
.price__inner {
  width: 100%;
}
.price__header {
  color: #fff;
}
.price__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 32px 32px 0px 0px;
  border: 1px solid #333;
  background: #FFF4DA;
}
@media screen and (min-width: 1200px) {
  .price__wrapper {
    margin-top: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 40px;
    padding-top: 83px;
    padding-bottom: 0;
  }
}
.price__wrapper_annually .price__price-year {
  display: block;
}
.price__item {
  background: #fff;
  width: 100%;
  padding: 23px;
  padding-top: 15px;
  margin: 10px;
  border-radius: 20px;
  border: 1px solid #333;
  background: #FFF;
  position: relative;
}
.price__item:hover {
  border: 1px solid #4A54F5;
}
.price__item:hover .btn__line {
  background: #4A54F5;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .price__item {
    margin: 0;
    border-radius: 0;
  }
  .price__item:nth-child(1) {
    border-top-left-radius: 20px;
  }
  .price__item:nth-child(3) {
    border-top-right-radius: 20px;
  }
}
.price__recommended {
  display: none;
  position: absolute;
  top: -40px;
  left: -2px;
  width: calc(100% + 4px);
  background: #4A54F5;
  color: #fff;
  z-index: 1;
  color: #FFF;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.68px;
  padding: 10px 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 1200px) {
  .price__recommended {
    display: block;
  }
}
.price__switcher-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  gap: 10px;
}
.price__switcher-block i {
  content: "Save 10%";
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.52px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.price__monthly-text, .price__annualy-text {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.96px;
  opacity: 0.5;
}
.price__monthly-text.active, .price__annualy-text.active {
  opacity: 1;
}
.price__subtitle {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.64px;
  margin-bottom: 19px;
  display: inline-block;
}
.price__price {
  position: relative;
}
.price__price-curency {
  vertical-align: top;
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
}
.price__price-value {
  color: #333;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -3.84px;
}
.price__priсe-term {
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
  opacity: 0.3;
}
.price__price-monthly{
  display: none;
}
.price__price-year {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
  opacity: 0.3;
  display: none;
}
.price__info-text {
  color: #333;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
}
.price__included span {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
}
.price__included ul {
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  .price__included li {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.96px;
  }
}

.btn__line {
  margin: 11px 0;
  margin-bottom: 40px;
}

.icon__massage {
  height: 60px;
}

.stages {
  padding-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .stages {
    padding: 57px 0;
    padding-top: 117px;
    overflow: hidden;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
.stages__inner {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .stages__inner {
    padding-bottom: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .stages h2 {
    padding-bottom: 28px;
  }
}
.stages__tabs-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .stages__tabs-header {
    margin-bottom: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.stages__tab {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.96px;
  color: #232323;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stages__tab:hover {
  border-radius: 100px;
  border: 1px solid #4A54F5;
  background: #4A54F5;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .stages__tab {
    width: inherit;
    font-size: 19px;
    padding: 10px 18px;
    line-height: 24px;
    letter-spacing: -0.76px;
  }
}
.stages__tab_active {
  border-radius: 100px;
  border: 1px solid #4A54F5;
}
@media screen and (min-width: 1200px) {
  .stages__tabs-content {
    text-align: center;
  }
}
.stages__tab-content {
  display: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stages__tab-content p {
  color: #232323;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.38px;
}
.stages__tab-content_active {
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .stages__tab-content {
    max-width: 800px;
    min-height: 110px;
  }
}
.stages__img {
  width: 100%;
  height: 300px;
  background: url(../img/stage-img.png) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1200px) {
  .stages__img {
    height: 350px;
    position: absolute;
    bottom: 0;
    background-size: auto;
    background-position: top center;
  }
}

.footer {
  background: #F5F5F5;
}
@media screen and (min-width: 1200px) {
  .footer {
    margin-top: -60px;
  }
}
.footer__inner {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 11px 0;
    padding-top: 21px;
  }
}
.footer__wrap {
  background: #FFF;
  padding: 20px;
  border-radius: 32px 32px 0px 0px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .footer__wrap {
    border-radius: 16px;
    margin: 20px;
  }
}
.footer__link {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.64px;
}
.footer__link_active {
  color: #4A54F5;
}
.footer__link:hover {
  color: #4A54F5;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .footer__policy {
    width: 200px;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .footer__social {
    margin-top: 17px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer__social-link {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.footer__social-link .footer__link {
  min-width: 50px;
}
.footer__made {
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  .footer__made {
    width: 200px;
  }
}
.footer .btn {
  border-radius: 100px;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
  color: #232323;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.96px;
  padding: 30px 150px;
  width: 100%;
  margin: 20px 0;
  white-space: nowrap;
}
.footer .btn:hover {
  background: #4A54F5;
  color: #FFF;
}
@media screen and (min-width: 1200px) {
  .footer .btn {
    padding: 54px 125px;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -1.28px;
  }
}
