@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
body {
  height: 100%;
  font-family: "Montserrat", serif;
}

.wrapper {
  max-width: 1920px;
  min-height: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #F8F8F8;
}
.wrapper .header {
  max-width: 1240px;
  width: 100%;
  height: 64px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  top: 50px;
  left: calc(50% - 620px);
  padding: 0 50px;
  z-index: 100000;
}
.wrapper .header.fixed {
  position: fixed;
  max-width: 100%;
  top: 0;
  left: 0;
}
.wrapper .header .header__logo .header__logo-img {
  max-height: 40px;
}
.wrapper .header .header__nav .header__nav__list {
  display: flex;
  grid-gap: 0 27px;
}
.wrapper .header .header__nav .header__nav__list .header__nav__list-item {
  font-weight: 600;
  line-height: 1.16;
  font-size: 12px;
}
.wrapper .header .header__nav .header__nav__list .header__nav__list-item a {
  color: #3A3A3A;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 400;
}
.wrapper .header .header__nav .header__nav__list .header__nav__list-item a:hover {
  color: black;
}
.wrapper .header .header__rightBlock {
  display: flex;
  align-items: center;
  grid-gap: 0 40px;
}
.wrapper .header .header__rightBlock .header__socials {
  display: flex;
  grid-gap: 0 10px;
}
.wrapper .header .header__rightBlock .header__socials .header__socials-link {
  display: block;
  width: 20px;
  height: 20px;
}
.wrapper .header .header__rightBlock .header__socials .header__socials-link::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
.wrapper .header .header__rightBlock .header__socials .header__socials-link.instagram-icon::before {
  background-image: url("../images/icons/bxl-instagram_dark.png");
}
.wrapper .header .header__rightBlock .header__socials .header__socials-link.facebook-icon::before {
  background-image: url("../images/icons/bxl-facebook-dark.png");
}
.wrapper .header .header__rightBlock .header__socials .header__socials-link.whatsapp-icon::before {
  background-image: url("../images/icons/bxl-whatsapp_dark.png");
}
.wrapper .header .header__rightBlock .header__socials .header__socials-link.skype-icon::before {
  background-image: url("../images/icons/bxl-skype_dark.png");
}
.wrapper .header .header__rightBlock .header__socials .header__socials-link.telegram-icon::before {
  background-image: url("../images/icons/bxl-telegram_dark.png");
}
.wrapper .header .header__rightBlock .header__languages {
  display: flex;
  align-items: center;
  grid-gap: 0 10px;
}
.wrapper .header .header__rightBlock .header__languages .header__languages-link {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.16;
  color: #3A3A3A;
  text-transform: uppercase;
}
.wrapper .header .header__rightBlock .header__languages .header__languages-link.active {
  font-weight: 700;
}
.wrapper .header .header__rightBlock .header__languages .header__languages-link:hover {
  color: black;
}
.wrapper .header .header__burgerMenu {
  display: none;
  flex-direction: column;
  grid-gap: 8px;
  cursor: pointer;
}
.wrapper .header .header__burgerMenu span {
  width: 28px;
  height: 2px;
  background-color: #ED611D;
  border-radius: 2px;
}
@media (max-width: 1460px) {
  .wrapper .header {
    max-width: 100%;
    width: 100%;
    left: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 992px) {
  .wrapper .header {
    top: 0;
    position: fixed;
  }
  .wrapper .header .header__nav {
    display: none;
  }
  .wrapper .header .header__rightBlock {
    display: none;
  }
  .wrapper .header .header__burgerMenu {
    display: flex;
  }
}
@media (max-width: 567px) {
  .wrapper .header {
    padding: 0 15px;
  }
}
.wrapper .main {
  flex: 1 1 auto;
}
.wrapper .main .topWidget {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-size: contain;
  padding-top: 140px;
  background-repeat: no-repeat;
  background-image: url("../images/top_background_min.png");
}
.wrapper .main .topWidget .topWidget__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 25px 0;
}
.wrapper .main .topWidget .topWidget__info .topWidget__info-title {
  max-width: 1176px;
  text-align: center;
  font-size: 64px;
  line-height: normal;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}
.wrapper .main .topWidget .topWidget__info .topWidget__info-text {
  max-width: 810px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.wrapper .main .topWidget .topWidget__info .topWidget__info__form {
  display: flex;
  max-width: 550px;
  width: 100%;
  position: relative;
  margin-top: 25px;
}
.wrapper .main .topWidget .topWidget__info .topWidget__info__form .topWidget__info__form-button {
  margin: 0 auto;
  padding: 18px 32px;
  border-radius: 4px;
  background-color: #2B2C30;
  box-shadow: 0px 8px 32px 0px rgba(239, 95, 29, 0.16);
  font-size: 18px;
  font-family: inherit;
  line-height: 1;
  font-weight: 700;
  color: white;
  transition: 0.2s ease-in-out;
  text-transform: uppercase;
}
.wrapper .main .topWidget .topWidget__info .topWidget__info__form .topWidget__info__form-button:hover {
  background-color: black;
}
.wrapper .main .topWidget .deviceImagesBlock img {
  max-width: 1300px;
}
@media (max-width: 1560px) {
  .wrapper .main .topWidget .topWidget__info .topWidget__info-title {
    font-size: 48px;
  }
  .wrapper .main .topWidget .deviceImagesBlock img {
    max-width: 1000px;
  }
}
@media (max-width: 992px) {
  .wrapper .main .topWidget {
    background-size: cover;
    background-position: 50%;
  }
  .wrapper .main .topWidget .deviceImagesBlock img {
    max-width: 700px;
    margin-top: 20px;
  }
}
@media (max-width: 720px) {
  .wrapper .main .topWidget .topWidget__info {
    padding: 0 15px;
  }
  .wrapper .main .topWidget .topWidget__info .topWidget__info-title {
    font-size: 36px;
  }
  .wrapper .main .topWidget .deviceImagesBlock img {
    max-width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 567px) {
  .wrapper .main .topWidget .topWidget__info .topWidget__info-title {
    font-size: 32px;
  }
  .wrapper .main .topWidget .topWidget__info .topWidget__info-text {
    font-size: 16px;
  }
}
.wrapper .main .stepsBeforeLaunch {
  max-width: 1368px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 0 auto;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch-title span {
  color: #EF5F1D;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch-text {
  max-width: 855px;
  margin-top: 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 450px));
  justify-content: center;
  margin-top: 32px;
  grid-gap: 24px;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop .stepsBeforeLaunch__loop__item {
  max-width: 450px;
  flex-basis: 25%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  grid-gap: 24px 0;
  background-color: white;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop .stepsBeforeLaunch__loop__item .stepsBeforeLaunch__loop__item-number {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #A1A4AF;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop .stepsBeforeLaunch__loop__item .stepsBeforeLaunch__loop__item-number::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #C7C8CF;
  margin-top: 12px;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop .stepsBeforeLaunch__loop__item .stepsBeforeLaunch__loop__item-info {
  display: flex;
  flex-direction: column;
  grid-gap: 8px 0;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop .stepsBeforeLaunch__loop__item .stepsBeforeLaunch__loop__item-info h3 {
  font-weight: 600;
  line-height: 1;
  font-size: 20px;
  color: #2B2C30;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop .stepsBeforeLaunch__loop__item .stepsBeforeLaunch__loop__item-info p {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #696B74;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__contactForm__container {
  width: 100%;
  max-width: 1220px;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  grid-gap: 20px 24px;
  padding: 26px 25px;
  border-radius: 4px;
  border: 1px dashed #EF5F1D;
  background-color: #F8F2EF;
  box-sizing: border-box;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__contactForm__container .stepsBeforeLaunch__contactForm-info {
  display: flex;
  flex-direction: column;
  grid-gap: 4px 0;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__contactForm__container .stepsBeforeLaunch__contactForm-info h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #2B2C30;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__contactForm__container .stepsBeforeLaunch__contactForm-info p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__contactForm__container .stepsBeforeLaunch__contactForm__form {
  display: flex;
  justify-content: flex-end;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__contactForm__container .stepsBeforeLaunch__contactForm__form .contactForm__form-button {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: white;
  padding: 18px 32px;
  text-transform: uppercase;
  background-color: #EF5F1D;
  border-radius: 4px;
  box-shadow: 0px 8px 32px 0px rgba(239, 95, 29, 0.16);
  transition: 0.2s ease-in-out;
}
.wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__contactForm__container .stepsBeforeLaunch__contactForm__form .contactForm__form-button:hover {
  background-color: black;
}
@media (max-width: 1200px) {
  .wrapper .main .stepsBeforeLaunch {
    padding: 20px 10px;
  }
}
@media (max-width: 992px) {
  .wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop .stepsBeforeLaunch__loop__item {
    flex-basis: 35%;
  }
}
@media (max-width: 720px) {
  .wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch-title {
    font-size: 36px;
  }
  .wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop {
    grid-template-columns: repeat(2, minmax(0, 450px));
  }
  .wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop .stepsBeforeLaunch__loop__item {
    flex-basis: 39%;
  }
  .wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__contactForm__container {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch-title {
    font-size: 32px;
  }
  .wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop {
    grid-template-columns: repeat(1, minmax(0, 450px));
  }
  .wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__loop .stepsBeforeLaunch__loop__item {
    flex-basis: 100%;
  }
  .wrapper .main .stepsBeforeLaunch .stepsBeforeLaunch__contactForm__container {
    padding: 20px 10px;
  }
}
.wrapper .main .modernWebsite {
  position: relative;
  padding: 120px 213px;
  margin-top: 100px;
  border-radius: 16px;
  border-radius: 16px;
  background-image: url("../images/1d3910d8fdf34317ec3d88790da1424e.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.wrapper .main .modernWebsite .modernWebsite-title {
  position: relative;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: white;
  z-index: 2;
}
.wrapper .main .modernWebsite .modernWebsite-title span {
  color: #EF5F1D;
}
.wrapper .main .modernWebsite .modernWebsite-text {
  position: relative;
  margin-top: 18px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #F7F7F7;
  z-index: 2;
}
.wrapper .main .modernWebsite .modernWebsite__content {
  position: relative;
  display: flex;
  grid-gap: 0 64px;
  margin-top: 44px;
  z-index: 2;
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list {
  flex-basis: 40%;
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item {
  max-width: 392px;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item button {
  width: 100%;
  position: relative;
  text-align: start;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  background: transparent;
  color: #E8E8E9;
  transition: all 0.2s linear;
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item button::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/Arrow_right_light.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(45deg);
  transition: all 0.2s linear;
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item.active {
  background: #EF5F1D;
  border: none;
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item.active button {
  color: #fff;
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item.active button::after {
  transform: rotate(0);
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_info .modernWebsite__content_info-item {
  display: none;
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_info .modernWebsite__content_info-item img {
  max-width: 100%;
	cursor: pointer;
}
.wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_info .modernWebsite__content_info-item.active {
  display: block;
}
@media (max-width: 1680px) {
  .wrapper .main .modernWebsite {
    padding: 120px 70px;
    margin-top: 80px;
  }
}
@media (max-width: 1200px) {
  .wrapper .main .modernWebsite {
    padding: 120px 20px;
    margin-top: 60px;
  }
}
@media (max-width: 992px) {
  .wrapper .main .modernWebsite {
    padding: 80px 20px;
  }
  .wrapper .main .modernWebsite .modernWebsite__content {
    flex-wrap: wrap;
    grid-gap: 40px 0;
  }
  .wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list {
    flex-basis: 100%;
  }
  .wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item {
    max-width: 100%;
    padding: 20px;
  }
}
@media (max-width: 720px) {
  .wrapper .main .modernWebsite {
    padding: 60px 20px;
    margin-top: 40px;
  }
  .wrapper .main .modernWebsite .modernWebsite-title {
    font-size: 36px;
  }
  .wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item {
    padding: 15px 20px;
  }
  .wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item button {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .wrapper .main .modernWebsite {
    padding: 40px 15px;
    margin-top: 20px;
  }
  .wrapper .main .modernWebsite .modernWebsite-title {
    font-size: 32px;
  }
  .wrapper .main .modernWebsite .modernWebsite__content .modernWebsite__content_list .modernWebsite__content_list-item {
    padding: 15px 10px;
  }
}
.wrapper .main .ourAdvantages {
  padding: 120px 20px 0 20px;
}
.wrapper .main .ourAdvantages .ourAdvantages-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  color: #2B2C30;
}
.wrapper .main .ourAdvantages .ourAdvantages-title span {
  color: #EF5F1D;
}
.wrapper .main .ourAdvantages .ourAdvantages-text {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #696B74;
}
.wrapper .main .ourAdvantages .ourAdvantages__content {
  display: flex;
  justify-content: center;
  grid-gap: 0 65px;
}
.wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list {
  max-width: 580px;
  margin-top: 70px;
}
.wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list .ourAdvantages_list-item {
  display: flex;
  grid-gap: 8px 0;
  padding: 0 24px;
}
.wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list .ourAdvantages_list-item .ourAdvantages_list-item-icon {
  width: 56px;
  height: 56px;
  background-image: url("../images/icons/Polygon21.png");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list .ourAdvantages_list-item .ourAdvantages_list-item-info {
  display: flex;
  flex-direction: column;
  grid-gap: 8px 0;
}
.wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list .ourAdvantages_list-item .ourAdvantages_list-item-info .ourAdvantages_list-item-title {
  display: flex;
  width: 100%;
  flex-basis: 40%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #2B2C30;
}
.wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list .ourAdvantages_list-item .ourAdvantages_list-item-info .ourAdvantages_list-item-decription {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #696B74;
}
.wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages__content-team {
  flex-basis: 50%;
}
.wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages__content-team img {
  max-width: 100%;
}



@media (max-width: 1200px) {
  .wrapper .main .ourAdvantages .ourAdvantages__content {
    flex-wrap: wrap-reverse;
    grid-gap: 30px 0;
  }
  .wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages__content-team {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .wrapper .main .ourAdvantages {
    padding: 100px 20px 0 20px;
  }
  .wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list {
    max-width: 700px;
  }
}
@media (max-width: 720px) {
  .wrapper .main .ourAdvantages {
    padding: 70px 5px 0 5px;
  }
  .wrapper .main .ourAdvantages .ourAdvantages-title {
    font-size: 36px;
  }
  .wrapper .main .ourAdvantages .ourAdvantages-text {
    font-size: 16px;
    line-height: 1.2;
  }
  .wrapper .main .ourAdvantages .ourAdvantages__content {
    grid-gap: 10px 0;
  }
  .wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .wrapper .main .ourAdvantages {
    padding: 40px 5px 0 5px;
  }
  
  .wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list {
	margin-top: 20px;
	padding: 0;
  }
  .wrapper .main .ourAdvantages .ourAdvantages__content {
    grid-gap: 10px 0;
  }
  .wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list .ourAdvantages_list-item {
    padding: 10px 0;
  }
  .wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages_list .ourAdvantages_list-item .ourAdvantages_list-item-info {
    grid-gap: 0;
  }
  .wrapper .main .ourAdvantages .ourAdvantages-title {
    font-size: 32px;
  }
  
  .wrapper .main .ourAdvantages .ourAdvantages__content .ourAdvantages__content-team img {
	margin-right: -17px;
  }
  
}
.wrapper .main .startBusiness {
  padding: 296px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: 50%;
  background-image: url("../images/Maskgroup.png");
}
.wrapper .main .startBusiness .startBusiness-title {
  max-width: 670px;
  text-align: center;
  margin: 0 auto;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #2B2C30;
}
.wrapper .main .startBusiness .startBusiness-text {
  text-align: center;
  font-size: 18px;
  margin-top: 4px;
  color: #4C3B2C;
}
.wrapper .main .startBusiness .startBusiness-button {
  display: block;
  margin: 25px auto 0 auto;
  padding: 18px 32px;
  border-radius: 4px;
  background-color: #2B2C30;
  box-shadow: 0px 8px 32px 0px rgba(239, 95, 29, 0.16);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  transition: 0.2s ease-in-out;
}
.wrapper .main .startBusiness .startBusiness-button:hover {
  background-color: black;
}
@media (max-width: 992px) {
  .wrapper .main .startBusiness {
    margin-top: -100px;
  }
}
@media (max-width: 720px) {
  .wrapper .main .startBusiness {
    padding: 296px 10px;
  }
  .wrapper .main .startBusiness .startBusiness-title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .wrapper .main .startBusiness .startBusiness-title {
    font-size: 32px;
  }
}
.wrapper .main .businessAutomation {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapper .main .businessAutomation .businessAutomation-title {
  text-align: center;
  max-width: 748px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #2B2C30;
}
.wrapper .main .businessAutomation .businessAutomation-title span {
  color: #EF5F1D;
}
.wrapper .main .businessAutomation .businessAutomation-text {
  text-align: center;
  margin-top: 18px;
  max-width: 748px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #696B74;
}
.wrapper .main .businessAutomation .businessAutomation__systems {
  margin-top: 64px;
  display: flex;
  grid-gap: 64px 50px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 250px;
}
.wrapper .main .businessAutomation .businessAutomation__systems img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.wrapper .main .businessAutomation .businessAutomation__services {
  margin-top: 84px;
  grid-gap: 0 24px;
  align-items: stretch;
}
.wrapper .main .businessAutomation .businessAutomation__services .businessAutomation__services__item {
  height: auto;
  padding: 32px;
  background-color: white;
}
.wrapper .main .businessAutomation .businessAutomation__services .businessAutomation__services__item .businessAutomation__services__item-icon {
  width: 56px;
  height: 56px;
  background-image: url("../images/Polygon21.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.wrapper .main .businessAutomation .businessAutomation__services .businessAutomation__services__item .businessAutomation__services__item-title {
  margin-top: 24px;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #2B2C30;
}
.wrapper .main .businessAutomation .businessAutomation__services .businessAutomation__services__item .businessAutomation__services__item-text {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #696B74;
}
@media (max-width: 1200px) {
  .wrapper .main .businessAutomation .businessAutomation__systems {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .wrapper .main .businessAutomation {
    margin-top: -100px;
    padding: 0 20px;
  }
  .wrapper .main .businessAutomation .businessAutomation__services {
    margin-top: 70px;
  }
  .wrapper .main .businessAutomation .businessAutomation__systems {
    grid-gap: 40px 50px;
  }
}
@media (max-width: 720px) {
  .wrapper .main .businessAutomation .businessAutomation-title {
    font-size: 36px;
  }
  .wrapper .main .businessAutomation .businessAutomation-text {
    font-size: 16px;
    line-height: 1.2;
  }
  .wrapper .main .businessAutomation .businessAutomation__services {
    margin-top: 60px;
  }
  .wrapper .main .businessAutomation .businessAutomation__systems {
    grid-gap: 30px 40px;
  }
}
@media (max-width: 576px) {
  .wrapper .main .businessAutomation .businessAutomation__services {
    margin-top: 50px;
  }
  .wrapper .main .businessAutomation .businessAutomation-title {
    font-size: 32px;
  }
  .wrapper .main .businessAutomation .businessAutomation__systems {
    grid-gap: 20px 30px;
  }
}
.wrapper .main .reviews {
  padding: 120px 0;
  margin: 170px 0 0 0;
  background-image: url("../images/f7c7af74c9d64d3837ff27c0d1bbdbd5.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
}
.wrapper .main .reviews .reviews-title {
  max-width: 567px;
  margin: 0 auto;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: white;
}
.wrapper .main .reviews .reviews-title span {
  color: #EF5F1D;
}
.wrapper .main .reviews .reviews__container {
  margin-top: 32px;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper {
  padding: 0 20px;
  box-sizing: border-box;
  align-items: flex-end;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper .reviews__item {
  position: relative;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper .reviews__item .reviews__item__bottom {
  display: none;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper .reviews__item .reviews__item-text {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 150px;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper .reviews__item .activeSlide {
  display: none;
  position: absolute;
  left: -50px;
  top: -15px;
  z-index: 100;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper .reviews__item.swiper-slide-active {
  margin: 0 auto;
  padding: 33px 20px 48px 20px;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper .reviews__item.swiper-slide-active .activeSlide {
  display: block;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper .reviews__item.swiper-slide-active .reviews__item-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #F7F7F7;
  padding-bottom: 0;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper .reviews__item.swiper-slide-active .reviews__item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.wrapper .main .reviews .reviews__container .reviews__wrapper .reviews__item.swiper-slide-active .reviews__item__bottom img {
  max-width: 220px;
}
.wrapper .main .reviews .reviews__container .reviews__item__control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 80%;
  grid-gap: 0 16px;
  padding-left: 70px;
}
.wrapper .main .reviews .reviews__container .reviews__item__control .reviews__item__control-button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4A4647;
  background-color: transparent;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 10px 16px;
  background-position: 50%;
}
.wrapper .main .reviews .reviews__container .reviews__item__control .reviews__item__control-button.prev {
  background-image: url("../images/icons/prev_slide.svg");
}
.wrapper .main .reviews .reviews__container .reviews__item__control .reviews__item__control-button.next {
  background-image: url("../images/icons/next_slide.svg");
}
.wrapper .main .reviews .reviews__container .reviews__item__control .swiper-pagination.pagination {
  width: auto;
  position: static;
}
.wrapper .main .reviews .reviews__container .reviews__item__control .swiper-pagination.pagination .swiper-pagination-bullet-active {
  background-color: #EF5F1D;
  border: none !important;
}
.wrapper .main .reviews .reviews__container .reviews__item__control .swiper-pagination.pagination .swiper-pagination-bullet {
  border: 1px solid white;
}
@media (max-width: 992px) {
  .wrapper .main .reviews {
    margin: 120px 0 0 0;
    padding: 100px 0;
  }
  .wrapper .main .reviews .reviews__wrapper {
    padding: 0 !important;
  }
  .wrapper .main .reviews .activeSlide {
    left: 15px !important;
  }
}
@media (max-width: 720px) {
  .wrapper .main .reviews {
    margin: 100px 0 0 0;
    padding: 80px 0;
  }
  .wrapper .main .reviews .reviews-title {
    font-size: 36px;
  }
  .wrapper .main .reviews .reviews__item__bottom img {
    max-width: 170px !important;
  }
  .wrapper .main .reviews .reviews__item__control {
    padding: 0 48px !important;
  }
}
@media (max-width: 576px) {
  .wrapper .main .reviews {
    margin: 80px 0 0 0;
    padding: 60px 0;
  }
  .wrapper .main .reviews .reviews-title {
    font-size: 32px;
  }
  .wrapper .main .reviews .reviews__item.swiper-slide-active {
    padding: 0 20px !important;
  }
  .wrapper .main .reviews .reviews__item__control {
    padding: 0 20px !important;
    margin-bottom: 30px;
    justify-content: center !important;
    max-width: 100% !important;
  }
  .wrapper .main .reviews .activeSlide {
    display: none !important;
  }
}
.wrapper .main .cooperationRates {
  padding: 120px 20px 160px 20px;
}
.wrapper .main .cooperationRates .cooperationRates-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #2B2C30;
}
.wrapper .main .cooperationRates .cooperationRates-title span {
  color: #EF5F1D;
}
.wrapper .main .cooperationRates .cooperationRates__content {
  display: flex;
  justify-content: center;
  grid-gap: 0 24px;
  margin-top: 44px;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item {
  display: flex;
  flex-direction: column;
  max-width: 440px;
  grid-gap: 32px 0;
  padding: 32px 32px 44px 32px;
  border-radius: 4px;
  box-sizing: border-box;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__item-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__item-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 12px;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__item-special {
  position: relative;
  display: inline;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #A1A4AF;
  z-index: 99;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__item-special::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 52%;
  background-color: #A1A4AF;
  z-index: 100;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__item-price {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__item-price::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 32px;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__rate .cooperationRates__content__rate-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__rate .cooperationRates__content__rate-description {
  min-height: 17px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__rate .cooperationRates__content__rate__list {
  display: flex;
  flex-direction: column;
  max-height: 237px;
  overflow-y: hidden;
  transition: 0.3s linear;
  grid-gap: 7px 0;
  margin-top: 24px;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item {
  display: flex;
  align-items: flex-start;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item .rate__list-item-info {
  display: flex;
  flex-direction: column;
  grid-gap: 8px 0;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item .rate__list-item-info .rate__list-item-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item .rate__list-item-info .rate__list-item-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 16px;
  background-size: contain;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content-additionallyButton {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content-additionallyButton::after {
  content: "";
  width: 24px;
  height: 24px;
  background-size: contain;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__dropdown {
  display: none;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__dropdown p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content-contactButton {
  padding: 18px 32px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic {
  background-color: white;
  background-image: url("../images/basic.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  box-shadow: 0px 12px 44px 0px rgba(46, 51, 67, 0.04);
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content__dropdown p {
  color: #696B74;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content__item-title {
  color: #A1A4AF;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content__item-title::after {
  background-color: #C7C8CF;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content__item-price {
  color: #2B2C30;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content__item-price::after {
  background-color: #C7C8CF;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content__rate .cooperationRates__content__rate-title {
  color: #2B2C30;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item::before {
  background-image: url("../images/icons/icon_basic.png");
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item .rate__list-item-info .rate__list-item-title {
  color: #2B2C30;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item .rate__list-item-info .rate__list-item-text {
  color: #696B74;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content-contactButton {
  color: white;
  background-color: #EF5F1D;
  box-shadow: 0px 8px 32px 0px rgba(239, 95, 29, 0.16);
  transition: 0.2s ease-in-out;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content-contactButton:hover {
  background-color: black;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content-additionallyButton {
  color: #EF5F1D;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.basic .cooperationRates__content-additionallyButton::after {
  background-image: url("../images/icons/arrow_basic.png");
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro {
  background-color: #EF5F1D;
  box-shadow: 0px 12px 44px 0px rgba(46, 51, 67, 0.04);
  background-image: url("../images/pro.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__dropdown p {
  color: #FFEDE5;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__item-title {
  color: #FFEDE5;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__item-title::after {
  background-color: #F7AF8E;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__rate-description {
  color: #FFEDE5;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__item-special {
  color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__item-special::before {
  background-color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__item-price {
  color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__item-price::after {
  background-color: #C7C8CF;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item::before {
  background-image: url("../images/icons/icon_pro.png");
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item .rate__list-item-info .rate__list-item-title {
  color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item .rate__list-item-info .rate__list-item-text {
  color: #FFEDE5;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content__rate .cooperationRates__content__rate-title {
  color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content-contactButton {
  color: #EF5F1D;
  background-color: white;
  box-shadow: 0px 8px 32px 0px rgba(239, 95, 29, 0.16);
  transition: 0.2s ease-in-out;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content-contactButton:hover {
  background-color: black;
  color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content-additionallyButton {
  color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.pro .cooperationRates__content-additionallyButton::after {
  background-image: url("../images/icons/arrow_pro.png");
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip {
  background-color: #2B2C30;
  box-shadow: 0px 12px 44px 0px rgba(46, 51, 67, 0.04);
  background-image: url("../images/vip.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__dropdown p {
  color: #F7F7F7;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__rate-description {
  color: #F7F7F7;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__item-title {
  color: #D5D5D6;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__item-title::after {
  background-color: #959597;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__item-price {
  color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__item-price::after {
  background-color: rgba(255, 255, 255, 0.5);
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item::before {
  background-image: url("../images/icons/icon_vip.png");
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item .rate__list-item-info .rate__list-item-title {
  color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__rate .cooperationRates__content__rate__list .rate__list-item .rate__list-item-info .rate__list-item-text {
  color: #F7F7F7;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content__rate .cooperationRates__content__rate-title {
  color: white;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content-contactButton {
  color: white;
  background-color: #EF5F1D;
  box-shadow: 0px 8px 32px 0px rgba(239, 95, 29, 0.16);
  transition: 0.2s ease-in-out;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content-contactButton:hover {
  background-color: black;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content-additionallyButton {
  color: #EF5F1D;
}
.wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item.vip .cooperationRates__content-additionallyButton::after {
  background-image: url("../images/icons/arrow_vip.png");
}
@media (max-width: 1200px) {
  .wrapper .main .cooperationRates {
    padding: 100px 20px 130px 20px;
  }
  .wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__item-price {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .wrapper .main .cooperationRates {
    padding: 80px 20px 100px 20px;
  }
  .wrapper .main .cooperationRates .cooperationRates__content {
    flex-wrap: wrap;
    grid-gap: 30px 20px;
  }
  .wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__item-price {
    font-size: 32px;
  }
}
@media (max-width: 720px) {
  .wrapper .main .cooperationRates {
    padding: 60px 20px 80px 20px;
  }
  .wrapper .main .cooperationRates .cooperationRates-title {
    font-size: 36px;
  }
  .wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item {
    grid-gap: 20px 0;
    padding: 22px 22px 34px 22px;
  }
}
@media (max-width: 576px) {
  .wrapper .main .cooperationRates {
    padding: 60px 20px 60px 20px;
  }
  .wrapper .main .cooperationRates .cooperationRates-title {
    font-size: 32px;
  }
  .wrapper .main .cooperationRates .cooperationRates__content {
    margin-top: 30px;
  }
  .wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item {
    grid-gap: 15px 0;
  }
  .wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__item-title {
    font-size: 36px;
  }
  .wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content__rate .cooperationRates__content__rate__list {
    grid-gap: 15px 0;
    margin-top: 15px;
    max-height: 250px;
	padding: 0;
  }
  .wrapper .main .cooperationRates .cooperationRates__content .cooperationRates__content__item .cooperationRates__content-contactButton {
    padding: 15px;
    line-height: 1;
  }
}
.wrapper .main .faq {
  margin-top: 40px;
  background-image: url("../images/bg_faq.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}
.wrapper .main .faq .faq-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #2B2C30;
}
.wrapper .main .faq .faq-title span {
  color: #EF5F1D;
}
.wrapper .main .faq .faq__content {
  max-width: 860px;
  margin: 44px auto 0 auto;
}
.wrapper .main .faq .faq__content .faq__content__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  grid-gap: 0 24px;
  border-bottom: 1px solid #C7C8CF;
}
.wrapper .main .faq .faq__content .faq__content__item .faq__content__item__info {
  display: flex;
  flex-direction: column;
  grid-gap: 8px 0;
}
.wrapper .main .faq .faq__content .faq__content__item .faq__content__item__info .faq__content__item-description {
  height: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #F7F7F7;
}
.wrapper .main .faq .faq__content .faq__content__item.active {
  background-color: #2B2C30;
}
.wrapper .main .faq .faq__content .faq__content__item.active::after {
  background-image: url("../images/icons/arrow_up_faq.png");
}
.wrapper .main .faq .faq__content .faq__content__item.active .faq__content__item__info .faq__content__item-title {
  color: white;
}
.wrapper .main .faq .faq__content .faq__content__item.active .faq__content__item__info .faq__content__item-description {
  height: auto;
  overflow: 1;
}
@media (max-width: 720px) {
  .wrapper .main .faq .faq-title {
    font-size: 36px;
  }
  .wrapper .main .faq .faq__content {
    margin: 40px auto 0 auto;
  }
  .wrapper .main .faq .faq__content .faq__content__item {
    padding: 20px;
  }
  .wrapper .main .faq .faq__content .faq__content__item .faq__content__item__info .faq__content__item-title {
    line-height: 1;
  }
}
@media (max-width: 576px) {
  .wrapper .main .faq {
    margin: 30px auto 0 auto;
  }
  .wrapper .main .faq .faq__content {
    margin: 30px auto 0 auto;
  }
  .wrapper .main .faq .faq__content .faq__content__item {
    padding: 15px 20px;
  }
  .wrapper .main .faq .faq__content .faq__content__item .faq__content__item__info .faq__content__item-description {
    line-height: 1.2;
  }
}
.wrapper .main .moreInfo {
  margin-top: 160px;
  padding: 150px 0;
  background-image: url("../images/389a354801624d63db2d98c697f6da8a.jpg");
  background-position: 50%;
  background-size: cover;
}
.wrapper .main .moreInfo .moreInfo-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: white;
}
.wrapper .main .moreInfo .moreInfo-title span {
  color: #EF5F1D;
}
.wrapper .main .moreInfo .moreInfo-text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #F7F7F7;
  text-align: center;
}
.wrapper .main .moreInfo .moreInfo__links {
  display: flex;
  justify-content: center;
  margin-top: 44px;
  grid-gap: 0 32px;
}
.wrapper .main .moreInfo .moreInfo__links .moreInfo__links-link {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
}
.wrapper .main .moreInfo .moreInfo__links .moreInfo__links-link.telegram {
  background-image: url("../images/icons/Telegram.png");
}
.wrapper .main .moreInfo .moreInfo__links .moreInfo__links-link.viber {
  background-image: url("../images/icons/viber.png");
}
.wrapper .main .moreInfo .moreInfo__links .moreInfo__links-link.mail {
  background-image: url("../images/icons/mail.png");
}
.wrapper .main .moreInfo .moreInfo__links .moreInfo__links-link span {
  position: absolute;
  right: -220px;
  top: calc(50% - 11px);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: white;
  text-decoration: none;
}
.wrapper .main .moreInfo .moreInfo__links .moreInfo__links-link span:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .wrapper .main .moreInfo {
    margin-top: 120px;
    padding: 120px 0;
  }
}
@media (max-width: 992px) {
  .wrapper .main .moreInfo {
    margin-top: 100px;
    padding: 100px 0;
  }
}
@media (max-width: 720px) {
  .wrapper .main .moreInfo {
    margin-top: 80px;
    padding: 80px 30px;
  }
  .wrapper .main .moreInfo .moreInfo-title {
    font-size: 36px;
  }
  .wrapper .main .moreInfo .moreInfo__links {
    justify-content: flex-start;
    grid-gap: 0 25px;
  }
  .wrapper .main .moreInfo .moreInfo__links .moreInfo__links-link {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .wrapper .main .moreInfo {
    margin-top: 60px;
    padding: 60px 20px;
  }
  .wrapper .main .moreInfo .moreInfo-title {
    font-size: 32px;
  }
  .wrapper .main .moreInfo .moreInfo__links {
    justify-content: center;
    grid-gap: 0 15px;
  }
  .wrapper .main .moreInfo .moreInfo__links .moreInfo__links-link span {
    display: none;
  }
}
.wrapper .footer {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 65px;
  background-color: #1A1B1D;
}
.wrapper .footer .footer__socials {
  display: flex;
  grid-gap: 0 16px;
}
.wrapper .footer .footer__socials .footer__socials-link {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}
.wrapper .footer .footer__socials .footer__socials-link.instagram {
  background-image: url("../images/icons/bxl-instagram-alt.png");
}
.wrapper .footer .footer__socials .footer__socials-link.tiktok {
  background-image: url("../images/icons/bxl-titktok-alt.png");
}
.wrapper .footer .footer__socials .footer__socials-link.facebook {
  background-image: url("../images/icons/bxl-facebook-alt.png");
}
.wrapper .footer .footer__socials .footer__socials-link.telegram {
  background-image: url("../images/icons/bxl-telegram-alt.png");
}
.wrapper .footer .footer__socials .footer__socials-link.viber {
  background-image: url("../images/icons/bxl-whatsapp-alt.png");
}
.wrapper .footer .footer__socials .footer__socials-link.skype {
  background-image: url("../images/icons/bxl-skype-alt.png");
}
.wrapper .footer .footer__logo {
  position: absolute;
  left: calc(50% - 91px);
}
.wrapper .footer .footer__logo img {
  max-width: 182px;
}
.wrapper .footer .footer-copyright {
  color: #4E5055;
  font-weight: 400;
  text-align: center;
  font-size: 14px;
  line-height: 1.15;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 992px) {
  .wrapper .footer {
    height: auto;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 100px;
  }
  .wrapper .footer .footer__socials {
    flex-basis: 100%;
    justify-content: center;
  }
  .wrapper .footer .footer__logo {
    top: calc(50% - 24px);
  }
}

.faq__content .accordion-item {
  border: none;
  background: transparent;
}

.faq__content .accordion-body {
  padding: 8px 24px 32px 24px;
}
.faq__content .accordion-body p {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .faq__content .accordion-body {
    padding: 8px 20px 20px 20px;
  }
}
@media (max-width: 576px) {
  .faq__content .accordion-body {
    padding: 8px 20px 15px 20px;
  }
}

.faq__content .accordion-button {
  padding: 32px 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #2B2C30;
  border: none;
  background: transparent;
  border-bottom: 1px solid #C7C8CF;
}
.faq__content .accordion-button:focus {
  outline: none;
  border-color: #EF5F1D;
  box-shadow: none;
}
.faq__content .accordion-button:not(.collapsed) {
  border: none;
  color: white;
  box-shadow: none;
  background-color: #2B2C30;
}
.faq__content .accordion-button:not(.collapsed)::after {
  color: #1A1B1D;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
@media (max-width: 720px) {
  .faq__content .accordion-button {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .faq__content .accordion-button {
    padding: 15px 20px;
  }
}

.faq__content .accordion-collapse.collapse.show {
  background-color: #2B2C30;
  border-bottom: 1px solid #C7C8CF;
}
.faq__content .accordion-collapse.collapse.show p {
  color: white;
}

.faq__content .accordion-collapse.collapsing {
  background-color: #2B2C30;
  border-bottom: 1px solid #C7C8CF;
}
.faq__content .accordion-collapse.collapsing p {
  color: white;
}

.modal-dialog.consultation {
  max-width: 800px;
  border-radius: 30px;
  overflow: hidden;
}
.modal-dialog.consultation .modal-content {
  border-radius: 30px;
  padding: 60px;
}
.modal-dialog.consultation .modal-content .modal-header {
  flex-direction: column;
  border-bottom: none;
}
.modal-dialog.consultation .modal-content .modal-header .modal-title {
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
}
.modal-dialog.consultation .modal-content .modal-header .modal-title span {
  color: #EF5F1D;
}
.modal-dialog.consultation .modal-content .modal-header p {
  text-align: center;
  font-size: 15px;
  line-height: 18px;
  max-width: 400px;
}
.modal-dialog.consultation .modal-content .modal-header button {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal-dialog.consultation .modal-content .modal-body .consultation__form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 20px 0;
}
.modal-dialog.consultation .modal-content .modal-body .consultation__form input {
  outline: 1px solid #dee2e6;
  border-radius: 537px;
  padding: 20px 15px;
  color: #212529;
}
.modal-dialog.consultation .modal-content .modal-body .consultation__form input:focus {
  outline: 1px solid #EF5F1D;
}
.modal-dialog.consultation .modal-content .modal-body .consultation__form input.error {
  outline: 1px solid red;
}
.modal-dialog.consultation .modal-content .modal-body .consultation__form button {
  padding: 20px 15px;
  border-radius: 537px;
  text-transform: uppercase;
  font-size: 20px;
  color: white;
  background-color: #EF5F1D;
  font-weight: 700;
  transition: 0.2s ease-in-out;
}
.modal-dialog.consultation .modal-content .modal-body .consultation__form button:hover {
  background-color: black;
}
@media (max-width: 992px) {
  .modal-dialog.consultation .modal-content {
    padding: 50px;
  }
  .modal-dialog.consultation .modal-content .modal-header .modal-title {
    font-size: 42px;
  }
}
@media (max-width: 720px) {
  .modal-dialog.consultation .modal-content {
    padding: 40px;
  }
  .modal-dialog.consultation .modal-content .modal-header .modal-title {
    font-size: 32px;
  }
  .modal-dialog.consultation .modal-content .modal-body .consultation__form {
    grid-gap: 15px;
  }
  .modal-dialog.consultation .modal-content .modal-body .consultation__form input {
    padding: 15px;
  }
  .modal-dialog.consultation .modal-content .modal-body .consultation__form button {
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .modal-dialog.consultation .modal-content {
    padding: 50px 5px 30px 5px;
  }
  .modal-dialog.consultation .modal-content .modal-header .modal-title {
    font-size: 22px;
	margin-bottom: 10px
  }
  .modal-dialog.consultation .modal-content .modal-body .consultation__form {
    grid-gap: 15px;
  }
  .modal-dialog.consultation .modal-content .modal-body .consultation__form input {
    padding: 10px 15px;
  }
  .modal-dialog.consultation .modal-content .modal-body .consultation__form button {
    padding: 10px 15px;
  }
}

#telephone {
  width: 100%;
  padding-left: 50px;
}

.iti__selected-flag:hover {
  background: none !important;
}

a {
  text-decoration: none !important;
}

.toggle-mnu {
  position: relative;
  top: 20px;
  z-index: 10;
  transform: translate(0, -50%);
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  margin-right: 15%;
}

.toggle-mnu.on {
  top: 22px !important;
}

.toggle-mnu span:after,
.toggle-mnu span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  z-index: 4;
}

.toggle-mnu span:before {
  width: 100%;
}

.toggle-mnu span:after {
  top: 18px;
  width: 100%;
}

.toggle-mnu span {
  position: relative;
  display: block;
  width: 100%;
}

.toggle-mnu span,
.toggle-mnu span:after,
.toggle-mnu span:before {
  height: 2px;
  background-color: #ED611D;
  backface-visibility: hidden;
  border-radius: 2px;
  transition: all 0.3s;
}

.toggle-mnu.on span {
  background-color: transparent;
}

.toggle-mnu.on span:before {
  transform: rotate(45deg) translate(-1px, 0px);
  background-color: #45494D;
}

.toggle-mnu.on span:after {
  transform: rotate(-45deg) translate(6px, -7px);
  background-color: #45494D;
}

@media (min-width: 993px) {
  .hidden-md {
    display: none;
  }
}
.hidden-mnu {
  position: absolute;
  z-index: 2;
  display: none;
  width: 100% !important;
}

.hidden-mnu__box {
  position: inherit;
  display: inline-block;
  max-width: 100%;
  min-height: 100vh;
  width: 100%;
  background-color: white;
  overflow-y: scroll;
  z-index: 1;
}

.hidden-mnu__box::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.9);
  background-color: rgba(153, 153, 153, 0.9);
}

.hidden-mnu__box::-webkit-scrollbar {
  width: 0;
  background-color: rgba(153, 153, 153, 0.9);
}

.hidden-mnu__box *::-webkit-scrollbar-thumb {
  background-color: #001427;
}

.hidden-mnu__box--middle {
  padding-top: 0;
  padding-bottom: 20px;
}

.hidden-mnu__box--middle .nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 50px 0 50px;
  color: #fff;
}

.hidden-mnu__box--middle .nav ul {
  list-style: none;
  padding: 0;
}

.hidden-mnu__box--middle .nav ul li {
  text-align: center;
  padding-bottom: 5px;
}

.hidden-mnu__box--middle .nav ul li a {
  color: #3A3A3A;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

.hidden-mnu__box--middle .nav .call-b {
  color: #3A3A3A;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

.hidden-mnu__box--middle .nav .call-b a {
  color: #3A3A3A;
}

.hidden-mnu .main-mnu {
  width: 100%;
}

.hidden-mnu__contacts {
  width: 49%;
}

.hidden-mnu__contacts .item {
  margin-bottom: 10px;
}

.hidden-mnu__contacts .item span {
  display: inline-block;
  vertical-align: middle;
  opacity: 0.4;
  margin-right: 11px;
  transition: all 150ms ease-in;
}

.hidden-mnu__contacts .item a {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: bold;
  line-height: 19px;
  transition: all 150ms ease-in;
  color: #4F4F4F;
}

@media only screen and (min-width: 1050px) {
  .toggle-mnu {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .hidden-mnu__box--middle .nav ul {
    width: 100%;
  }
  .hidden-mnu__box--middle .nav ul li a {
    display: block;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
  }
  .hidden-mnu__box--middle .nav ul li {
    text-align: start;
    padding: 17px 0 7px 0;
    border-bottom: 1px solid #3A3A3A;
  }
}
@media (min-width: 576px) {
  .cn {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .cn {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .cn {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cn {
    width: 1170px;
    max-width: 1170px;
  }
}
.name_error {
  display: none;
  margin-left: 15px;
  color: red;
  font-size: 11px;
  font-weight: 500;
}

.tel_error {
  display: none;
  margin-left: 15px;
  color: red;
  font-size: 11px;
  font-weight: 500;
}

.iti {
  width: 100%;
}/*# sourceMappingURL=main.css.map */

.modal.show .modal-dialog {
	margin: 7rem auto;
	
}

@media (max-width: 992px) {
  .modal.show .modal-dialog {
	margin: 7rem 15px;
	
}
}

.modernWebsite__content_info-itemAllScreen {
	position: fixed;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
}
.wrapper.open_modal_active { height: 100%; }

