* {
  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;
}

.brands {
  background: #fafafa;
  padding: 128px 0;
  width: 100%;
}
@media (max-width: 768px) {
  .brands {
    padding: 56px 19px;
    margin-top: 73px;
  }
}
.brands__title {
  font-size: 88px;
  line-height: 120px;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  .brands__title {
    font-size: 32px;
    line-height: 54px;
  }
}
.brands__title span {
  color: #5b24c9;
}

.stats {
  max-width: 830px;
  margin: 104px auto 0;
}
@media (max-width: 768px) {
  .stats {
    margin-top: 56px;
    padding: 0 19px;
  }
}
.stats__title {
  font-size: 40px;
  line-height: 62px;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  .stats__title {
    font-size: 20px;
    line-height: 34px;
  }
}

.stats-top {
  margin-top: 48px;
  width: 100%;
  display: flex;
}
@media (max-width: 768px) {
  .stats-top {
    flex-direction: column;
  }
}
.stats-top__percent {
  min-width: 311px;
  background: #5b24c9;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 120px;
}
@media (max-width: 768px) {
  .stats-top__percent {
    font-size: 60px;
    line-height: 100px;
    min-width: auto;
    width: 100%;
    height: 128px;
  }
}
.stats-top__text {
  padding: 68px;
  background: #fafafa;
  font-size: 14px;
  line-height: 32px;
}
@media (max-width: 768px) {
  .stats-top__text {
    padding: 16px 50px;
    text-align: center;
  }
}

.stats-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .stats-bottom {
    margin-top: 16px;
    flex-direction: column;
  }
}

.stats-bottom-item {
  width: calc(50% - 20px);
  border: 1px solid #ebebeb;
  padding: 64px 30px;
}
@media (max-width: 768px) {
  .stats-bottom-item {
    width: 100%;
    padding: 24px 34px;
    margin-bottom: 16px;
  }
  .stats-bottom-item:last-of-type {
    margin-bottom: 0;
  }
}
.stats-bottom-item__percent {
  font-size: 90px;
  line-height: 128px;
  color: #5b24c9;
}
@media (max-width: 768px) {
  .stats-bottom-item__percent {
    font-size: 60px;
    line-height: 100px;
    text-align: center;
    width: 100%;
    display: inline-block;
  }
}
.stats-bottom-item__text {
  font-size: 14px;
  line-height: 24px;
  margin-top: 16px;
  text-align: center;
  padding: 0 34px;
}/*# sourceMappingURL=success.css.map */