@font-face {
  font-family: "Gilroy";
  font-weight: 800;
  src: url("../fonts/Gilroy-Extrabold.woff2");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  src: url("../fonts/Gilroy-Extrabold.woff2");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 300;
  src: url("../fonts/Gilroy-Light.woff2");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  src: url("../fonts/Gilroy-Light.woff2");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url("../fonts/Montserrat-Regular.woff2");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  src: url("../fonts/Montserrat-Bold.woff2");
}
input, button, textarea, select {
  font-family: "Montserrat", sans-serif;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

html, body {
  padding: 0;
  margin: 0;
  height: 100vh;
  height: var(--doc-height);
}

.pageWrapper {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}
.pageWrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background: #090b2e;
}

.container {
  width: 1140px;
}

.modal {
  height: 100%;
}

.modal-overlay {
  height: 100%;
}

.modal-list {
  height: 100%;
}

.small-container {
  width: 940px;
  max-width: 100%;
}

.img-big {
  width: 2020px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  height: auto;
  display: block;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.header {
  position: absolute;
  z-index: 10;
  width: 100%;
  left: 0;
  top: 0;
}
.header-list {
  padding-left: 10px;
}
.header-logo {
  margin-right: 50px;
  margin-top: 44px;
}
.header-nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 45px 0 0 0;
  margin: 1px 0 0 0;
  border-top: 5px solid #c961fe;
}
.header-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-nav ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}
.header-nav ul li a {
  text-decoration: none;
  outline: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  white-space: nowrap;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.header-nav ul li a:hover {
  text-decoration: none;
  color: #c961fe;
}
.header-nav ul li ul {
  width: 140px;
  background: #101330;
  top: 100%;
  left: calc(50% - 70px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
  padding: 12px;
  display: block;
  position: absolute;
  text-align: center;
}
.header-nav ul li ul li {
  display: block;
  width: 100%;
  margin: 8px 0 0 0;
}
.header-nav ul li ul li:first-child {
  margin-top: 0;
}
.header-nav ul li ul li a {
  font-size: 14px;
  white-space: normal;
  padding: 0;
}
.header-nav ul li.menu-item-has-children::after {
  content: "";
  display: block;
  width: 11px;
  height: 7px;
  background-image: url("../img/nav-arrow.png");
  margin-left: 16px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.header-nav ul li:hover::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header-nav ul li:hover ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  pointer-events: auto;
}

.btn {
  width: 231px;
  height: 50px;
  color: #fff;
  text-decoration: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Gilroy", sans-serif;
  font-weight: bold;
  text-shadow: 0 0 3px #bf00ff;
  position: relative;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  padding-bottom: 2px;
  background-image: url("../img/btn.png");
  background-repeat: no-repeat;
  -webkit-box-shadow: 3px 7px 20px rgba(191, 0, 255, 0.8);
          box-shadow: 3px 7px 20px rgba(191, 0, 255, 0.8);
  border-radius: 30px;
}
.btn:hover {
  color: #fff;
  text-decoration: none;
  text-shadow: none;
}

.main {
  padding: 128px 0 480px;
}
.main-phone {
  font-family: "Gilroy", sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 25px;
}
.main-phone:hover {
  text-decoration: none;
  color: #c961fe;
}
.main-link {
  margin: 10px 0 30px;
  font-weight: bold;
  font-size: 15px;
  color: #4cc85b;
}
.main-link:hover {
  color: #fff;
}
.main-link span {
  margin-left: 10px;
}
.main-box {
  margin-left: 566px;
}
.main-btn {
  padding-right: 29px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.main-btn img {
  left: 23px;
  top: -17px;
}
.main-scroll {
  margin-left: 10px;
}

.buy-top {
  padding-left: 30px;
  border-left: 5px solid #c961fe;
  font-family: "Gilroy", sans-serif;
}
.buy-top__name {
  font-weight: bold;
  font-size: 34px;
}
.buy-top__text {
  font-size: 28px;
  font-weight: normal;
}
.buy-title {
  font-family: "Gilroy", sans-serif;
  font-size: 34px;
  font-weight: bold;
  margin: 120px 0 70px;
}
.buy-title img {
  margin-right: 8px;
}
.buy-item__text {
  width: 220px;
  left: 44px;
  z-index: 2;
  top: 170px;
  font-size: 16px;
  line-height: 22px;
}
.buy-item__text a {
  font-weight: bold;
  color: #c961fe;
  border-bottom: 1px solid #c961fe;
  text-decoration: none;
  outline: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  margin-top: 2px;
}
.buy-item__text a:hover {
  text-decoration: none;
  color: #c961fe;
  border-bottom: 1px solid transparent;
}

.img-mobile, .main-mobile__title, .header-burger {
  display: none;
}

.main-order {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.buy-arrow {
  display: none;
  z-index: 4;
}

.mobileMenu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center bottom;
  overflow-y: auto;
  z-index: 20;
  background-image: url("../img/bg-menu.png");
  text-align: center;
  display: none;
}
.mobileMenu-container {
  padding: 37px 10px 20px;
}
.mobileMenu-logo {
  margin-right: 16px;
  width: 132px;
}
.mobileMenu-close {
  position: absolute;
  right: 10px;
  top: 51px;
}
.mobileMenu::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: calc(100% - 20px);
  height: 5px;
  background: #c961fe;
}
.mobileMenu-line {
  margin: 25px 0 35px;
  height: 1px;
  width: 100%;
  background: #fff;
}
.mobileMenu-nav {
  padding: 0;
  margin: 0;
}
.mobileMenu-nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.mobileMenu-nav ul li {
  display: block;
  width: 100%;
}
.mobileMenu-nav ul li a {
  text-decoration: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 13px;
  height: 46px;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.mobileMenu-nav ul li:nth-child(even) a {
  background: #201f43;
}

.buy-item {
  position: relative;
}

.buy-item__circle {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: -18px;
  bottom: 38px;
}
.buy-item__circle span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.buy-item__circle span b {
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 100%;
}

.footer {
  border-bottom: 5px solid #c961fe;
  padding-top: 700px;
  z-index: 1;
}
.footer-bg {
  bottom: 63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -2;
  width: 2000px;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.footer-text {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
}
.footer-text a {
  color: #fff;
  text-decoration: none;
}
.footer-text a:hover {
  text-decoration: underline;
}
.footer-top {
  height: 122px;
  width: 100%;
}
.footer-scroll {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: -103px;
}
.footer-scroll img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.footer-navWrapper {
  width: 736px;
}
.footer-bottom {
  height: 63px;
}
.footer .header-nav {
  padding: 0;
  margin: 0;
  border: none;
}
.footer .menu-item-has-children ul {
  top: auto;
  bottom: 100%;
}
.footer-logo {
  width: 87px;
  position: absolute;
  right: -112px;
  bottom: 16px;
}
.footer-soc {
  margin-left: auto;
}
.footer-soc__text {
  font-weight: bold;
  font-size: 15px;
  margin-right: 16px;
}
.footer-soc__item {
  margin-left: 5px;
}
.footer-soc__item:hover {
  opacity: 0.7;
}
.footer-phone {
  font-size: 25px;
  color: #fff;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
}
.footer-phone:hover {
  text-decoration: underline;
}
.footer-contact {
  position: absolute;
  top: 24px;
  right: 0;
}
.footer-contact__list {
  margin-top: 10px;
}
.footer-contact__item {
  margin-left: 10px;
}
.footer-contact__item:first-child {
  margin-left: 0;
}
.footer-contact__item:hover {
  opacity: 0.7;
}
.footer-contact__text {
  margin-right: 28px;
  font-size: 15px;
  font-weight: bold;
}

.benefits {
  background-image: url("../img/benefits-bg.png");
  background-size: cover;
  background-position: center;
}
.benefits-bg {
  top: 80px;
  right: -100px;
}
.benefits-wrapper {
  padding: 60px 0 190px;
}
.benefits-photo {
  margin: -20px auto 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 2;
}
.benefits-title {
  font-family: "Gilroy", sans-serif;
  font-size: 33px;
}
.benefits-subtitle {
  font-family: "Gilroy", sans-serif;
  font-size: 21px;
  font-weight: bold;
}
.benefits-item {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: block;
}
.benefits-item:nth-child(1) {
  top: 360px;
  left: 0;
}
.benefits-item:nth-child(2) {
  left: 186px;
  bottom: 80px;
}
.benefits-item:nth-child(3) {
  right: 186px;
  bottom: 80px;
}
.benefits-item:nth-child(4) {
  right: 0;
  top: 370px;
}

.modal-wrapper {
  width: 360px;
  max-width: 100%;
  font-size: 12px;
}
.modal-wrapper a {
  text-decoration: underline;
  color: #fff;
}
.modal-title {
  margin-bottom: 20px;
  font-size: 25px;
  font-family: "Gilroy", sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}
.modal-input {
  margin-bottom: 10px;
}
.modal-input input, .modal-input textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 46px;
  padding-left: 14px;
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #393469;
  border-radius: 8px;
}
.modal-input input::-webkit-input-placeholder, .modal-input textarea::-webkit-input-placeholder {
  color: #fff;
}
.modal-input input::-moz-placeholder, .modal-input textarea::-moz-placeholder {
  color: #fff;
}
.modal-input input:-ms-input-placeholder, .modal-input textarea:-ms-input-placeholder {
  color: #fff;
}
.modal-input input::-ms-input-placeholder, .modal-input textarea::-ms-input-placeholder {
  color: #fff;
}
.modal-input input::placeholder, .modal-input textarea::placeholder {
  color: #fff;
}
.modal-input textarea {
  resize: none;
  display: block;
  padding: 11px 14px;
  height: 89px;
}
.modal-list {
  padding: 10px;
}
.modal-container {
  width: 769px;
  background-image: url("../img/form-bg.jpg");
  background-size: cover;
  background-position: center top;
  padding: 39px 65px 50px;
  border: 5px solid #ceced5;
}
.modal-btn.btn {
  margin: 25px auto 16px;
}
.modal-info {
  margin: 12px 0 20px;
}
.modal-file {
  width: 231px;
  margin: 20px auto 0;
}
.modal-file input {
  display: none;
}

#question .modal-container {
  min-height: 639px;
  padding-top: 120px;
}

.examples-bg {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -140px;
  width: 2000px;
  height: auto;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.examples-title {
  font-family: "Gilroy", sans-serif;
  font-size: 33px;
  font-weight: bold;
  position: relative;
  margin-bottom: 50px;
}
.examples-title::before {
  content: "";
  position: absolute;
  width: 163px;
  height: 94px;
  background-image: url("../img/w-2.png");
  background-repeat: no-repeat;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.examples-info {
  border-left: 4px solid #c961fe;
  padding-left: 26px;
}
.examples-info__name {
  font-family: "Gilroy", sans-serif;
  font-size: 33px;
  margin-right: 32px;
  font-weight: bold;
  line-height: 32px;
}
.examples-info__text {
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 32px;
}
.examples-info__text b {
  font-weight: bold;
  color: #fff8c7;
}
.examples-list {
  width: 361px;
  margin-left: auto;
  max-width: 100%;
  padding-top: 67px;
}
.examples .buy-item {
  margin: -20px auto 0;
}
.examples .buy-item__text {
  top: 182px;
}

.otherExamples {
  position: relative;
}
.otherExamples .buy-item__text {
  top: 192px;
}
.otherExamples .buy-wrapper {
  margin-top: 30px;
}
.otherExamples-bottom {
  margin-top: 45px;
}
.otherExamples-left {
  margin-right: 20px;
}
.otherExamples .main-phone, .otherExamples .main-link {
  margin: 4px 0 0 0;
}
.otherExamples .main-btn {
  margin: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.about {
  font-size: 16px;
  padding: 110px 0 70px;
}
.about-subtitle {
  font-family: "Gilroy", sans-serif;
  font-size: 21px;
  margin-top: 3px;
  font-weight: bold;
}
.about-text {
  margin: 65px 0 26px;
}
.about-top {
  width: 531px;
}
.about-img {
  right: 0;
  top: -96px;
}
.about-btn {
  margin: 0 auto;
}
.about .examples-title {
  margin-bottom: 70px;
}

.faq {
  padding-bottom: 56px;
}
.faq-mobile {
  display: none;
}
.faq-bg {
  left: 50%;
  width: 2000px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.faq .examples-title {
  margin: 0 0 75px;
}
.faq-items {
  width: 707px;
  max-width: 100%;
}
.faq-item {
  position: relative;
}
.faq-item:nth-child(odd) {
  background: rgba(255, 255, 255, 0.05);
}
.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 4px;
  background: #c961fe;
  opacity: 0;
}
.faq-item__title {
  font-weight: bold;
  font-size: 14px;
  padding: 17px 160px 17px 67px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.faq-item__text {
  padding: 10px 33px 28px 65px;
  display: none;
  font-size: 14px;
  font-weight: normal;
}
.faq-item.active::before {
  opacity: 1;
}
.faq-item.active .faq-item__text {
  display: block;
}
.faq .buy-item__circle {
  top: 8px;
  left: 17px;
  bottom: auto;
}
.faq-bottom {
  margin-top: 20px;
  padding-left: 72px;
}
.faq-bottom__text {
  font-size: 16px;
  font-weight: bold;
  color: #c961fe;
  margin-right: 32px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.modal-info {
  display: none;
}

.banners {
  padding: 50px 0 174px;
}
.banners::before {
  content: "";
  position: absolute;
  width: 1817px;
  height: 800px;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -300px;
  left: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("../img/gradient.png");
  z-index: -2;
}
.banners-mobile {
  display: none;
}
.banners-title {
  font-family: "Gilroy", sans-serif;
  font-weight: bold;
  font-size: 33px;
}
.banners-line {
  margin: 12px 0 18px;
  width: 58px;
  background: #fff;
  height: 1px;
}
.banners-text {
  width: 240px;
  max-width: 100%;
  font-size: 16px;
  position: relative;
  z-index: 3;
  font-weight: normal;
}
.banners-big {
  padding: 44px 73px 61px 610px;
  background-image: url("../img/banner-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin-bottom: 23px;
}
.banners-big .banners-text {
  width: 100%;
}
.banners-img {
  bottom: 0;
  left: 0;
}
.banners-item {
  width: calc(50% - 15px);
  border-radius: 20px;
  padding: 42px 60px 69px 242px;
  background: liner;
  background: -webkit-gradient(linear, left top, right top, from(#c363f9), color-stop(66%, #c363f9), to(#9e71de));
  background: -o-linear-gradient(left, #c363f9 0%, #c363f9 66%, #9e71de 100%);
  background: linear-gradient(to right, #c363f9 0%, #c363f9 66%, #9e71de 100%);
}
.banners-item .banners-img {
  left: -25px;
}
.banners-item:last-child {
  padding-left: 248px;
  background: #39349b;
}
.banners-item:last-child .banners-img {
  left: -17px;
}
.banners .main-link {
  margin: 4px 0 0 0;
}
.banners .main-btn {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0;
}
.banners-bottom {
  margin-top: 40px;
}

.main-link {
  margin-bottom: 0;
}

.main-link.telegram {
  color: #25A3E1;
  margin-bottom: 30px;
}

.about-top.mb {
  margin-bottom: 32px;
  width: 100% !important;
}

.main-link.telegram:hover {
  color: #fff;
}

.about .examples-title.mb {
  margin-bottom: 32px !important;
}

.about-text {
  margin-top: 90px;
}

@media (max-width: 1380px) {
  .footer-contact {
    right: 74px;
  }
  .footer-scroll {
    margin: 0;
  }
  .footer-logo {
    position: static;
    margin-left: 24px;
  }
  .footer-navWrapper {
    width: 640px;
  }
}
@media (max-width: 1200px) {
  .container {
    width: 960px;
  }
  .small-container {
    width: 730px;
    margin: 0 auto;
  }
  .header-nav ul li.menu-item-has-children::after {
    margin-left: 6px;
  }
  .header-logo {
    margin-top: 25px;
  }
  .header-nav {
    padding-top: 35px;
  }
  .main-box {
    margin-left: 0;
    width: 100%;
    margin-bottom: 0;
    margin-top: 520px;
    text-align: center;
  }
  .main-scroll {
    display: none;
  }
  .main-order {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .buy-item {
    width: calc(33.3333333333% - 10px);
  }
  .img-big {
    width: 1300px;
  }
  .main-btn {
    margin: 0 auto 24px;
  }
  .main {
    padding-bottom: 50px;
  }
  .buy-title {
    margin: 30px 0 20px;
    padding-left: 32px;
    display: block;
    font-size: 33px;
  }
  .buy-title img {
    display: none;
  }
  .buy-top {
    padding-left: 28px;
    border-width: 4px;
  }
  .buy-top__name {
    font-size: 33px;
  }
  .buy-item__circle {
    bottom: 30px;
  }
  .footer-navWrapper {
    width: 540px;
  }
  .benefits {
    position: relative;
  }
  .benefits::before {
    content: "";
    position: absolute;
    width: 1817px;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    top: -300px;
    left: -750px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-image: url("../img/gradient.png");
    z-index: -1;
  }
  .benefits-wrapper {
    padding: 110px 0;
  }
  .benefits-bg {
    display: none;
  }
  .benefits-photo {
    width: 500px;
  }
  .benefits-title {
    font-size: 28px;
  }
  .benefits-subtitle {
    font-size: 21px;
    margin-top: 12px;
  }
  .benefits-item:nth-child(1) {
    top: 220px;
  }
  .benefits-item:nth-child(2) {
    left: 90px;
    bottom: 0px;
  }
  .benefits-item:nth-child(3) {
    right: 90px;
    bottom: 0px;
  }
  .benefits-item:nth-child(4) {
    top: 220px;
  }
  .examples .buy-item {
    width: 100%;
  }
  .otherExamples .buy-item__text {
    top: 164px;
  }
  .about-top {
    width: 450px;
  }
  .about-img {
    width: 500px;
    top: -87px;
  }
  .banners-big {
    background: #1b51ad;
    padding: 42px 15px 0;
    margin: 0;
  }
  .banners-big .banners-img {
    display: none;
  }
  .banners-img {
    bottom: 0;
    position: static;
    width: 100%;
  }
  .banners-item {
    padding: 32px 16px 82px !important;
    margin: 20px 0 0 0;
    width: 100%;
  }
  .banners-mobile {
    display: block;
    height: auto;
    margin-top: 12px;
    margin-left: -15px;
    margin-right: auto;
    width: 400px;
    max-width: calc(100% + 30px);
  }
  .banners-item .banners-img {
    width: 200px;
    bottom: 0;
    left: auto;
    position: absolute;
    right: 18px;
  }
  .banners-item:last-child .banners-img {
    width: 320px;
    right: 0;
    position: absolute;
    bottom: 0;
    left: auto;
  }
  .banners-text {
    width: 400px;
  }
  .banners {
    padding: 0 0 60px;
  }
  .banners::before {
    display: none;
  }
}
@media (max-width: 992px) {
  .container {
    width: 730px;
  }
  .banners-item .banners-img {
    width: 100px;
    bottom: 0;
    left: auto;
    position: absolute;
    right: 18px;
  }
  .banners-item:last-child .banners-img {
    width: 147px;
    right: 0;
    position: absolute;
    bottom: 0;
    left: auto;
  }
  .banners-title {
    font-size: 20px;
  }
  .banners-text {
    width: 240px;
    font-size: 16px;
  }
  .buy-list {
    display: block;
  }
  .buy-item {
    width: 300px;
    display: none;
    margin: 0 auto;
  }
  .buy-item:first-child {
    display: block;
  }
  .buy-item__text {
    left: 26px;
    top: 135px;
  }
  .buy-item__text a {
    font-size: 14px;
    margin-top: 0;
  }
  .buy-arrow {
    display: block;
    top: 8px;
    right: 0;
  }
  .buy-arrow.buy-prev {
    right: auto;
    left: 0;
  }
  .buy-arrow.buy-prev img {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .footer {
    border-width: 3px;
    padding-top: 373px;
    padding-bottom: 24px;
  }
  .footer-bg {
    width: 1500px;
    bottom: 571px;
  }
  .footer-text {
    font-size: 13px;
    text-align: center;
    margin-bottom: 50px;
  }
  .footer-top {
    display: block;
    text-align: center;
    height: auto;
  }
  .footer-scroll {
    display: none;
  }
  .footer-contact {
    position: static;
  }
  .footer-bottom {
    display: block;
    text-align: center;
    height: auto;
  }
  .footer-logo {
    margin: 30px 0 0 0;
    position: static;
  }
  .footer-phone {
    margin-top: 20px;
    margin-bottom: 12px;
  }
  .footer-contact {
    display: block;
  }
  .footer-contact__list {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-contact__text {
    font-size: 15px;
    margin-right: 28px;
  }
  .footer-contact__item {
    margin-left: 15px;
  }
  .footer-navWrapper {
    width: 100%;
  }
  .footer .header-nav {
    display: block;
    padding: 0;
    margin: 0;
  }
  .footer .header-nav ul {
    padding: 0;
    margin: 0;
    display: block;
  }
  .footer .header-nav ul li {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .footer .header-nav ul li::after, .footer .header-nav ul li::before {
    display: none;
  }
  .footer .header-nav ul li ul {
    display: none;
  }
  .footer .header-nav ul li a {
    text-decoration: none;
    outline: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 13px;
    height: 46px;
    text-transform: uppercase;
    font-family: "Gilroy", sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
  }
  .footer .header-nav ul li:nth-child(even) a {
    background: #201f43;
  }
  .footer-soc {
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-soc__item {
    margin-left: 3px;
  }
  .footer-soc__text {
    font-size: 15px;
    margin-right: 17px;
  }
  .benefits-item {
    position: static;
    margin: -30px auto 0;
  }
  .benefits-photo {
    margin: -30px 0 -100px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .examples-title {
    font-size: 33px;
    margin-bottom: 16px;
  }
  .examples-bg {
    width: 1000px;
    top: 50px;
  }
  .examples-info {
    display: block;
    border: none;
    padding: 0;
    text-align: left;
  }
  .examples-info__name {
    border-left: 4px solid #c961fe;
    padding-left: 24px;
    font-size: 33px;
    line-height: 33px;
    margin-bottom: 23px;
  }
  .examples-info__text {
    font-size: 28px;
  }
  .examples-list {
    width: 100%;
    padding: 0;
  }
  .examples .buy-wrapper {
    margin-top: 480px;
  }
  .examples .buy-item {
    width: 300px;
    margin: 0 auto;
  }
  .buy-arrow {
    top: 45px;
  }
  .examples .buy-item__text {
    top: 144px;
    width: 200px;
  }
  .otherExamples {
    padding-bottom: 120px;
  }
  .otherExamples-bottom {
    display: none;
  }
  .about {
    padding: 40px 0;
  }
  .about .examples-title {
    margin-bottom: 38px;
  }
  .about-subtitle {
    margin: 16px 0 38px;
    font-size: 21px;
  }
  .about-top {
    width: 100%;
  }
  .about-text {
    margin: 40px 0 30px;
  }
  .about-img {
    width: 100%;
    position: static;
    height: auto;
    display: block;
  }
  .about-btn {
    margin: 32px auto 0;
  }
  .faq {
    position: relative;
  }
  .faq::before {
    content: "";
    position: absolute;
    width: 1817px;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -70px;
    left: -350px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    background-image: url("../img/gradient.png");
    z-index: -2;
  }
  .faq-bg {
    bottom: 160px;
    width: 1125px;
    right: -160px;
    left: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .faq-items {
    width: 100%;
  }
  .faq-item {
    width: 100%;
  }
  .faq-item::before {
    height: 4px;
  }
  .faq-item .buy-item__circle {
    display: none;
  }
  .faq-item__title {
    padding: 24px 12px;
    font-size: 14px;
  }
  .faq-item__text {
    padding: 0 12px 24px;
    font-size: 12px;
    line-height: 16px;
  }
  .faq-bottom {
    display: block;
    text-align: center;
    margin-top: 30px;
    padding: 0;
  }
  .faq-bottom__text {
    margin: 26px auto 0;
    font-size: 16px;
  }
  .faq-bottom__btn {
    margin: 0 auto;
  }
  .faq .examples-title {
    margin: 0 0 32px 0;
  }
  .faq-mobile {
    display: block;
    margin-top: 500px;
  }
  .otherExamples-bottom, .banners-bottom {
    display: block;
  }
  .otherExamples-bottom .main-btn, .banners-bottom .main-btn {
    margin: 0 auto;
  }
  .otherExamples-bottom .main-link, .banners-bottom .main-link {
    margin: 3px 0 0 0;
  }
  .otherExamples-left {
    text-align: center;
    width: 100%;
    margin-top: 40px;
  }
  .faq-mobile .otherExamples-left {
    margin-bottom: 40px;
    margin-top: 0;
  }
  .banners-bottom {
    margin-top: 40px;
  }
  .banners-bottom .otherExamples-left {
    margin: 20px 0 0 0;
  }
  .banners-item:last-child .banners-img {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    right: -10px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 540px;
  }
  .img-big {
    display: block;
    width: 960px;
  }
  .main-box {
    margin-top: 340px;
  }
  .header-nav {
    display: none;
  }
  .header-logo {
    width: 133px;
    margin-top: 16px;
  }
  .header {
    text-align: center;
    position: relative;
    padding: 20px 0;
  }
  .header::before {
    content: "";
    position: absolute;
    left: 10px;
    display: block;
    height: 5px;
    top: 0;
    width: calc(100% - 20px);
    z-index: 3;
    background: #c961fe;
  }
  .header-list {
    display: block;
  }
  .header-burger {
    display: block;
    width: 26px;
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-burger span {
    width: 100%;
    height: 3px;
    margin-top: 7px;
    display: block;
    background: #fff;
  }
  .header-burger span:first-child {
    margin-top: 0;
  }
  .header-burger span:last-child {
    width: 14px;
  }
  .header-logo {
    margin: 0;
  }
  .main-btn {
    margin: 30px auto 24px;
  }
  .modal-container {
    width: 400px;
    padding: 40px 16px 24px;
    background-position: left center;
    min-height: auto !important;
  }
  .modal-title {
    font-size: 20px;
  }
  #question .modal-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .banners-title {
    width: 250px;
  }
}
@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }
  .header {
    text-align: center;
    position: relative;
    padding: 37px 0;
  }
  .header-logo {
    margin: 0;
    margin-right: 26px;
  }
  .img-mobile {
    width: 580px;
    right: 0;
    top: 0;
    height: auto;
    z-index: -1;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: block;
  }
  .img-big {
    display: none;
  }
  .main-mobile__title {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
    line-height: normal;
    font-family: "Gilroy", sans-serif;
  }
  .main-mobile__title span {
    font-size: 33px;
    display: block;
  }
  .main-box {
    margin-top: 130px;
  }
  .benefits-items {
    position: relative;
    left: 16px;
  }
  .benefits-item {
    margin-left: 0;
    margin-right: 0;
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
  .benefits-item:first-child {
    left: calc(50% - 12px) !important;
  }
  .benefits-item:nth-child(3), .benefits-item:nth-child(4) {
    left: calc(50% - 12px) !important;
  }
}
@media (max-width: 360px) {
  .banners-item .banners-img {
    right: 0;
    width: 85px;
  }
  .banners-item:last-child .banners-img {
    width: 120px;
  }
}

form.process {
	opacity: 0.5;
}

.g-recaptcha {
	display: none;
}

.actived .g-recaptcha {
	display: block;
}

.actived .g-recaptcha {
	display: block;
	margin: 0 auto;
	display: block;
	text-align: center;
	width: 100%;
	margin-left: 72px;
}