* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

.block-scroll {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 96px;
}
@media (max-width: 1023px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0;
  }
}

.inner-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.header {
  width: 100%;
  height: 112px;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  background: #ffffff;
}
@media (max-width: 768px) {
  .header {
    height: 73px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
  }
}
.header__logo {
  width: 169px;
}
@media (max-width: 768px) {
  .header__logo {
    width: 104px;
  }
}
.header__button {
  cursor: pointer;
  border-radius: 0;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  font-size: 12px;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s;
  width: 165px;
  margin-left: 36px;
}
.header__button:hover {
  background: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .header__button {
    margin-left: 0;
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-wrapper {
    justify-content: center;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 27px;
  left: 19px;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu__toggle {
  width: 20px;
  height: 20px;
  background-image: url("../svg/burger.svg");
  border: none;
  outline: none;
  background-size: contain;
  background-color: #ffffff;
}
.mobile-menu__toggle.active {
  background-image: url("../svg/close.svg");
}

@media (max-width: 1250px) {
  .header-nav {
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav.mobile-active {
  display: block;
  position: fixed;
  top: 73px;
  z-index: 1000;
  width: 100%;
  height: calc(100% - 73px);
  background: #ffffff;
  margin: 0;
  padding: 23px 19px;
}
.header-nav.mobile-active ul {
  flex-direction: column;
  align-items: flex-start;
}
.header-nav.mobile-active ul li {
  margin-right: 0;
  margin-top: 16px;
}
.header-nav ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-nav ul li {
  margin-right: 88px;
}
@media (max-width: 1250px) {
  .header-nav ul li {
    margin-right: 24px;
  }
}
.header-nav ul li:last-of-type {
  margin-right: 0;
}
.header-nav__link {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.3px;
}
.header-nav__link.active {
  color: #5b24c9;
  text-decoration: underline;
  pointer-events: none;
}
.header-nav__link:hover {
  color: #5b24c9;
  text-decoration: underline;
}

.footer {
  margin-top: 104px;
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 56px;
  }
}
.footer__contact {
  font-size: 40px;
  line-height: 62px;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__contact {
    font-size: 20px;
    line-height: 33px;
  }
}
.footer__email {
  font-size: 32px;
  line-height: 56px;
  text-decoration: none;
  color: #000000;
  display: block;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .footer__email {
    font-size: 16px;
    line-height: 24px;
  }
}
.footer__email:hover {
  color: #5b24c9;
}
.footer__info {
  height: 64px;
  margin-top: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ebebeb;
}
@media (max-width: 768px) {
  .footer__info {
    margin-top: 56px;
    height: 92px;
    flex-direction: column;
    justify-content: center;
  }
}
.footer__company span {
  color: #5b24c9;
}
.footer__copy {
  color: #B4B4B4;
}

.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: rgba(1, 1, 1, 0.1);
  display: none;
}
.modal.active {
  display: block;
}
.modal__container {
  width: 100%;
  opacity: 1;
  max-width: 1040px;
  margin: 136px auto 0;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 96px 16px;
  position: relative;
  background: #ffffff;
}
@media (max-width: 768px) {
  .modal__container {
    margin: 73px auto 0;
    padding: 120px 40px 40px;
    height: calc(100vh - 73px);
    overflow: auto;
    position: relative;
  }
}

.group {
  position: relative;
  margin: 32px 0;
}
.group.error label {
  color: red;
}
.group.error input,
.group.error textarea {
  border-bottom: 1px solid red;
  color: red;
}
.group.error input:focus ~ label, .group.error input:valid ~ label,
.group.error textarea:focus ~ label,
.group.error textarea:valid ~ label {
  color: red;
}
.group.error .bar::before {
  background: red;
}
.group input,
.group textarea {
  background: none;
  color: #000000;
  font-size: 15px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #d9d9d9;
}
.group input:focus,
.group textarea:focus {
  outline: none;
}
.group input:not(:-moz-placeholder-shown) ~ label, .group textarea:not(:-moz-placeholder-shown) ~ label {
  top: -14px;
  font-size: 12px;
  color: #bdbdbd;
}
.group input:not(:-ms-input-placeholder) ~ label, .group textarea:not(:-ms-input-placeholder) ~ label {
  top: -14px;
  font-size: 12px;
  color: #bdbdbd;
}
.group input:focus ~ label, .group input:not(:placeholder-shown) ~ label,
.group textarea:focus ~ label,
.group textarea:not(:placeholder-shown) ~ label {
  top: -14px;
  font-size: 12px;
  color: #bdbdbd;
}
.group input:focus ~ .bar:before,
.group textarea:focus ~ .bar:before {
  width: 100%;
}
.group input::-moz-placeholder, .group textarea::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff;
  opacity: 1; /* Firefox */
}
.group input:-ms-input-placeholder, .group textarea:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff;
  opacity: 1; /* Firefox */
}
.group input::placeholder,
.group textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff;
  opacity: 1; /* Firefox */
}
.group input:-ms-input-placeholder,
.group textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ffffff;
}
.group input::-ms-input-placeholder,
.group textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ffffff;
}
@media (max-width: 768px) {
  .group textarea {
    padding-top: 20px;
  }
}
.group label {
  color: #bdbdbd;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 300ms ease all;
}
.group .bar {
  position: relative;
  display: block;
  width: 100%;
}
.group .bar:before {
  content: "";
  height: 1px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #5b24c9;
  transition: 300ms ease all;
  left: 0%;
}
.group .field-error {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  margin-left: 4px;
}

.contact-us {
  width: 100%;
  max-width: 416px;
  margin: 0 auto;
}
.contact-us__title {
  font-size: 26px;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-us__title {
    font-size: 18px;
  }
}
.contact-us__buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 53px;
}
@media (max-width: 768px) {
  .contact-us__buttons {
    flex-direction: column;
  }
}
.contact-us__close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
.contact-us__file {
  cursor: pointer;
  width: 190px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  font-size: 14px;
  border: 1px solid #f2f2f2;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .contact-us__file {
    width: 100%;
    margin-bottom: 16px;
  }
}
.contact-us__file:hover {
  border: 1px solid #000000;
}
.contact-us__file img {
  margin-right: 11px;
}
.contact-us__file input {
  display: none;
}
.contact-us__send {
  cursor: pointer;
  width: 190px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  font-size: 14px;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .contact-us__send {
    width: 100%;
  }
}
.contact-us__send:hover {
  background: #ffffff;
  color: #000000;
}

.thank-you {
  width: 100%;
  max-width: 505px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 16px;
}
.thank-you__title {
  font-size: 32px;
}
@media (max-width: 768px) {
  .thank-you__title {
    font-size: 26px;
  }
}
.thank-you__text {
  font-size: 14px;
  margin: 24px 0 48px;
}
.thank-you__button {
  cursor: pointer;
  width: 190px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  font-size: 14px;
  border: 1px solid #000000;
  color: #ffffff;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .thank-you__button {
    width: 100%;
  }
}
.thank-you__button:hover {
  background: #ffffff;
  color: #000000;
}
.thank-you__close {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sales {
    padding: 0 19px;
  }
}
.sales__title {
  font-size: 88px;
  line-height: 120px;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  margin-top: 128px;
}
@media (max-width: 768px) {
  .sales__title {
    font-size: 32px;
    line-height: 54px;
  }
}
.sales__title span {
  color: #5b24c9;
}
.sales__text {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .sales__text {
    margin-top: 24px;
  }
}

.efficiency {
  background: #fafafa;
  padding: 72px;
  display: flex;
  margin-top: 104px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .efficiency {
    flex-direction: column;
    padding: 24px 28px;
    margin: 56px 19px 0;
    width: auto;
  }
}
.efficiency__title {
  width: 40%;
  font-size: 40px;
  line-height: 62px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .efficiency__title {
    width: 100%;
    font-size: 20px;
    line-height: 34px;
  }
}
.efficiency__text {
  width: 55%;
}
@media (max-width: 768px) {
  .efficiency__text {
    width: 100%;
    margin-top: 16px;
  }
}
.efficiency__text p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 24px;
}
.efficiency__text p:last-of-type {
  margin-bottom: 0;
}

.campaigns {
  margin-top: 104px;
}
@media (max-width: 1200px) {
  .campaigns {
    padding: 0 19px;
  }
}
@media (max-width: 768px) {
  .campaigns {
    margin-top: 56px;
  }
}
.campaigns__title {
  font-size: 38px;
  line-height: 62px;
  font-weight: 400;
  max-width: 715px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .campaigns__title {
    font-size: 20px;
    line-height: 34px;
  }
}

.campaign {
  margin-top: 56px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .campaign {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .campaign--left {
    flex-direction: column;
  }
}
.campaign--left .campaign__text {
  padding-left: 56px;
}
@media (max-width: 1200px) {
  .campaign--left .campaign__text {
    padding-left: 0;
  }
}
.campaign--left .campaign__image {
  margin-left: -48px;
}
@media (max-width: 1200px) {
  .campaign--left .campaign__image {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .campaign--right {
    flex-direction: column-reverse;
  }
}
.campaign--right .campaign__text {
  padding-right: 56px;
}
@media (max-width: 1200px) {
  .campaign--right .campaign__text {
    padding-right: 0;
  }
}
.campaign--right .campaign__image {
  margin-right: -48px;
}
@media (max-width: 1200px) {
  .campaign--right .campaign__image {
    margin-right: 0;
  }
}
.campaign__image {
  width: 50%;
}
@media (max-width: 768px) {
  .campaign__image {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .campaign__text {
    margin-top: 16px;
  }
}
.campaign__text h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .campaign__text h4 {
    font-size: 16px;
  }
}
.campaign__text p {
  font-size: 14px;
  line-height: 24px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .campaign__text p {
    margin-top: 16px;
  }
}

.examples {
  background: linear-gradient(0deg, #000000 0%, #000000 70%, #ffffff 70%, #ffffff 100%);
  margin-top: 104px;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .examples {
    margin-top: 56px;
  }
}

.examples-container {
  display: flex;
  padding-bottom: 48px;
  justify-content: space-around;
  min-width: 800px;
}

.example {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.example__text {
  color: #ffffff;
  font-size: 14px;
  line-height: 32px;
  margin-top: 24px;
}

.statistics {
  margin-top: 104px;
}
@media (max-width: 1200px) {
  .statistics {
    padding: 0 19px;
  }
}
@media (max-width: 768px) {
  .statistics {
    margin-top: 56px;
  }
}
.statistics__title {
  font-size: 38px;
  line-height: 62px;
  font-weight: 400;
  max-width: 575px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .statistics__title {
    font-size: 20px;
    line-height: 34px;
  }
}
.statistics__text {
  font-size: 14px;
  line-height: 24px;
  max-width: 575px;
  margin: 32px auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .statistics__text {
    margin-top: 16px;
  }
}
.statistics__chart {
  margin-top: 56px;
  width: 100%;
}
@media (max-width: 768px) {
  .statistics__chart {
    margin-top: 32px;
  }
}

.advantages {
  margin-top: 104px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .advantages {
    flex-direction: column;
    margin-top: 56px;
    padding: 0 19px;
  }
}

.advantage {
  width: calc(50% - 40px);
  padding: 48px;
  background: #fafafa;
}
@media (max-width: 768px) {
  .advantage {
    width: 100%;
    padding: 24px 28px;
    margin-bottom: 16px;
  }
  .advantage:last-of-type {
    margin-bottom: 0;
  }
}
.advantage__title {
  font-size: 38px;
  line-height: 62px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .advantage__title {
    font-size: 20px;
    line-height: 34px;
    width: 75%;
  }
}
.advantage__text {
  font-size: 14px;
  line-height: 24px;
  margin-top: 32px;
}/*# sourceMappingURL=promote.css.map */