@font-face {
  font-family: "Raleway";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Raleway-Regular.woff2") format("woff2"), url("../fonts/Raleway-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Raleway-Bold.woff2") format("woff2"), url("../fonts/Raleway-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Brygada1918";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Brygada1918-Bold.woff2") format("woff2"), url("../fonts/Brygada1918-Bold.woff") format("woff");
  font-display: swap;
}
*, :before, :after {
  outline: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --app-height: 100vh;
  --section-offset: 120px;
  --dark-color: #471E64;
  --light-color: #F6F8FB;
  --light-color-2: #E9EFFA;
  --main-color: #E34885;
  --main-color-hover: #c7326e;
  scroll-behavior: auto;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-color-2);
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

body, html {
  font-size: 17px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: var(--light-color);
  font-family: "Raleway", sans-serif;
  -webkit-font-feature-settings: "lnum";
          font-feature-settings: "lnum";
  line-height: 1.6;
  color: var(--dark-color);
}

a {
  text-decoration: underline;
  color: var(--main-color);
}
a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

strong, b {
  font-weight: bold;
}

p, blockquote, ul, ol, h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
}

ul, ol {
  padding-left: 1.3em;
}

h1, h2 {
  font: 700 50px/1.08 "Brygada1918", serif;
}

h3 {
  font: 700 40px/1.1 "Brygada1918", serif;
}

h4 {
  font: 700 34px/1.2 "Brygada1918", serif;
}

h5 {
  font: 700 24px/1.3 "Brygada1918", serif;
}

h6 {
  line-height: 1.5;
  font-weight: bold;
  font-size: 19px;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: var(--app-height);
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}

.img-box {
  position: relative;
}
.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

hr {
  display: block;
  margin: 20px 0;
  width: 100%;
  height: 1px;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(rgba(71, 30, 100, 0)), color-stop(rgba(71, 30, 100, 0.2)), to(rgba(71, 30, 100, 0)));
  background: linear-gradient(to right, rgba(71, 30, 100, 0), rgba(71, 30, 100, 0.2), rgba(71, 30, 100, 0));
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

.c-main {
  color: var(--main-color);
}

.m-sect {
  margin: var(--section-offset) 0;
}

.mt-sect {
  margin-top: var(--section-offset);
}

.mb-sect {
  margin-bottom: var(--section-offset);
}

.bg-boxes {
  position: relative;
  z-index: 1;
  margin: 0 20px;
  padding: 120px 45px;
}
.bg-boxes .container {
  max-width: 100%;
}
.bg-boxes__back, .bg-boxes__front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  -webkit-transition: -webkit-transform 1.5s;
  transition: -webkit-transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s;
}
.bg-boxes__back {
  z-index: -2;
  background: #B8CEE6;
}
.bg-boxes__front {
  z-index: -1;
  overflow: hidden;
  background: var(--light-color-2);
}
.bg-boxes__front img {
  position: absolute;
  max-width: 90%;
}
.bg-boxes._show .bg-boxes__back {
  -webkit-transform: rotate(2deg);
      -ms-transform: rotate(2deg);
          transform: rotate(2deg);
}
.bg-boxes._show .bg-boxes__front {
  -webkit-transform: rotate(-2deg);
      -ms-transform: rotate(-2deg);
          transform: rotate(-2deg);
}
.bg-boxes._show._reverse .bg-boxes__back {
  -webkit-transform: rotate(-2deg);
      -ms-transform: rotate(-2deg);
          transform: rotate(-2deg);
}
.bg-boxes._show._reverse .bg-boxes__front {
  -webkit-transform: rotate(2deg);
      -ms-transform: rotate(2deg);
          transform: rotate(2deg);
}

.title {
  margin-bottom: 60px;
  text-align: center;
  font-size: 19px;
}

.list {
  padding: 0;
  list-style: none;
}
.list li {
  position: relative;
  padding-left: 24px;
}
.list li:nth-child(n+2) {
  margin-top: 10px;
}
.list li:before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "\e903";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 14px;
  color: var(--main-color);
}
.list._props li:nth-child(n+2) {
  margin-top: 5px;
}
.list._props span {
  line-height: 1;
  font-size: 27px;
  color: var(--main-color);
}

.head-decor {
  position: relative;
  padding-bottom: 30px;
}
.head-decor:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 101px;
  height: 12px;
  background: url("../img/head.svg") no-repeat center;
}
.head-decor._center {
  text-align: center;
}
.head-decor._center:after {
  left: 50%;
  margin-left: -50px;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  min-width: 300px;
  min-height: 70px;
  border: 1px solid var(--main-color);
  border-radius: 14px;
  background: var(--main-color);
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  font-size: 18px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn > span {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  padding: 10px 25px;
}
.btn > .ic {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  width: 74px;
  text-align: center;
  font-size: 20px;
}
.btn > .ic:before {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.btn > .ic:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  width: 1px;
  height: 30px;
  background: currentColor;
  opacity: 0.4;
}
.btn:hover {
  background-color: transparent;
  color: var(--main-color);
}
.btn._glare:after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  background: #fff;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  opacity: 0.5;
  -webkit-animation: btn-glare 4s infinite;
          animation: btn-glare 4s infinite;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.btn._glare:hover:after {
  opacity: 0;
}
.btn._medium {
  min-width: auto;
  min-height: 60px;
  font-size: 16px;
}
.btn._medium > span {
  padding: 10px 20px;
}
.btn._medium > .ic {
  width: 64px;
}
.btn._full {
  width: 100%;
}

@-webkit-keyframes btn-glare {
  0% {
    right: 100%;
    -webkit-transform: skewX(-28deg);
            transform: skewX(-28deg);
  }
  40%, 100% {
    right: -150%;
    -webkit-transform: skewX(-28deg);
            transform: skewX(-28deg);
  }
}

@keyframes btn-glare {
  0% {
    right: 100%;
    -webkit-transform: skewX(-28deg);
            transform: skewX(-28deg);
  }
  40%, 100% {
    right: -150%;
    -webkit-transform: skewX(-28deg);
            transform: skewX(-28deg);
  }
}
.form-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 17px 19px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  line-height: 1.2;
  font-weight: normal;
  font-size: 16px;
  color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.form-field:focus {
  border-color: var(--main-color);
}

textarea.form-field {
  resize: none;
}
textarea.form-field:not([rows]) {
  height: 100px;
}

.mob-menu {
  display: none;
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px 0 40px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--light-color);
}
.mob-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: 16px;
}
.mob-menu__list > li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mob-menu__list > li:last-child {
  margin-bottom: 0;
}
.mob-menu__list a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mob-menu__list a:hover {
  color: #6b3f8b;
}
.mob-menu__list a.mPS2id-highlight {
  color: var(--main-color);
}
.mob-menu__row {
  margin-top: 30px;
}

.header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: background-color 0.2s, backdrop-filter 0.2s;
  transition: background-color 0.2s, backdrop-filter 0.2s;
}
.header._fixed {
  position: fixed;
}
.header._fixed .header__menu > li > a {
  min-height: 85px;
}
.header._fixed, .header._menu {
  background-color: rgba(246, 248, 251, 0.7);
  backdrop-filter: blur(15px);
}
.header__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
  border-bottom: 1px solid rgba(71, 30, 100, 0.1);
}
.header__logo {
  display: inline-block;
  max-width: 220px;
}
.header__logo img {
  display: block;
  max-height: 50px;
}
.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  font-size: 16px;
}
.header__menu a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__menu a:hover, .header__menu a.mPS2id-highlight {
  color: var(--main-color);
}
.header__menu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100px;
  margin-bottom: -1px;
  border-bottom: 1px solid transparent;
}
.header__menu > li > a.mPS2id-highlight {
  border-bottom-color: var(--main-color);
}
.header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.4;
  font-weight: 500;
  font-size: 16px;
}
.header__lang li {
  position: relative;
}
.header__lang li:nth-child(n+2) {
  margin-left: 10px;
  padding-left: 24px;
}
.header__lang li:nth-child(n+2):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  border-bottom: 1px solid rgba(71, 30, 100, 0.4);
}
.header__lang span {
  cursor: default;
  color: var(--main-color);
}
.header__lang a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__lang a:hover {
  color: var(--main-color);
}
.header__sandwich {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: none;
  overflow: hidden;
  position: relative;
  padding: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 5px;
  background: var(--main-color);
}
.header__sandwich span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin: -1px 0 0 -11px;
  background: #fff;
  -webkit-transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, transform 0.4s;
  transition: width 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.header__sandwich span:nth-child(1) {
  -webkit-transform: translateY(-7px);
      -ms-transform: translateY(-7px);
          transform: translateY(-7px);
}
.header__sandwich span:nth-child(3) {
  -webkit-transform: translateY(7px);
      -ms-transform: translateY(7px);
          transform: translateY(7px);
}
.header__sandwich.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__sandwich.active span:nth-child(2) {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}
.header__sandwich.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@-webkit-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  60% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
}

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  60% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
}
.advant-icon {
  position: relative;
  width: 80px;
  padding-left: 20px;
}
.advant-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.advant-icon .img-box {
  position: relative;
  z-index: 1;
  height: 80px;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.advant-icon._blue:before {
  background-image: -webkit-gradient(linear, left top, right top, from(#B8CEE6), to(rgba(184, 206, 230, 0)));
  background-image: linear-gradient(to right, #B8CEE6, rgba(184, 206, 230, 0));
}
.advant-icon._big {
  padding-left: 10px;
}
.advant-icon._big .img-box {
  margin-right: -10px;
}

.bann__advant:hover .advant-icon .img-box,
.problem-item:hover .advant-icon .img-box,
.usage-item__advant:hover .advant-icon .img-box {
  -webkit-animation-name: bounce;
          animation-name: bounce;
}

.bann {
  position: relative;
  padding: 180px 0 260px;
}
.bann__bg {
  overflow: hidden;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-color-2);
}
.bann__bg-wave {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 385px;
}
.bann__bg-img {
  position: absolute;
  top: 15%;
  left: 50%;
  margin-left: -1140px;
  max-width: none;
}
.bann__bg-person {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  max-width: none;
  max-height: calc(100% - 80px);
}
.bann__wrap {
  max-width: 640px;
}
.bann__descr {
  font-size: 19px;
}
.bann__advants {
  max-width: 540px;
}
.bann__advant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.bann__advant:last-child {
  margin-bottom: 0;
}
.bann__advant .advant-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
}
.bann__advant-descr {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.bann__action {
  margin-top: 20px;
}

.advant-sect__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.advant-sect__ellipse {
  position: absolute;
  z-index: -1;
  top: -120px;
  left: 0;
  width: 980px;
  max-width: none;
}
.advant-sect__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  position: relative;
  z-index: 2;
  margin: 40px -30px 0 48px;
}
.advant-sect__box {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 540px;
  padding: 60px;
  border-radius: 14px;
  background: #fff;
}
.advant-sect__box > :last-child {
  margin-bottom: 0;
}

.problems .bg-boxes__front img {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.problems .bg-boxes__front img:nth-child(1) {
  left: 0;
}
.problems .bg-boxes__front img:nth-child(2) {
  right: 0;
}
.problems__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.problems__box {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 40%;
  padding: 39px;
  border: 1px solid rgba(71, 30, 100, 0.1);
  border-radius: 14px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.16)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  backdrop-filter: blur(5px);
}

.problem-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.problem-item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(71, 30, 100, 0)), color-stop(rgba(71, 30, 100, 0.2)), to(rgba(71, 30, 100, 0)));
  background: linear-gradient(to right, rgba(71, 30, 100, 0), rgba(71, 30, 100, 0.2), rgba(71, 30, 100, 0));
}
.problem-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.problem-item:last-child:after {
  display: none;
}
.problem-item .advant-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.problem-item__descr {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.components {
  position: relative;
  margin-top: 220px;
}
.components__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.components__ellipse {
  position: absolute;
  z-index: -2;
  top: -120px;
  right: 0;
  width: 980px;
  max-width: none;
}
.components__person {
  position: absolute;
  z-index: -1;
  left: 50%;
  margin-left: -80px;
  bottom: -140px;
  max-width: none;
}
.components__box {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 540px;
  margin-bottom: 45px;
  padding: 60px;
  border-radius: 14px;
  background: #fff;
}
.components__box h6 {
  margin-bottom: 10px;
}
.components__box > :last-child {
  margin-bottom: 0;
}
.components__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: -30px;
  max-width: 360px;
}

.usage-sect .bg-boxes__front img:nth-child(1) {
  top: 30px;
  left: 0;
}
.usage-sect .bg-boxes__front img:nth-child(2) {
  top: 0;
  right: 0;
}
.usage-sect__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.usage-sect__grid .usage-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 40%;
}
.usage-sect__action {
  margin-top: 60px;
  text-align: center;
}

.usage-item {
  padding: 40px 40px 30px;
  border-radius: 14px;
  background: #fff;
}
.usage-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}
.usage-item__head {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0 20px 0 0;
  font-weight: bold;
}
.usage-item__count {
  margin: 0;
  line-height: 1;
  font-weight: bold;
  font-size: 54px;
  color: var(--main-color);
}
.usage-item__advant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.usage-item__advant .advant-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 20px;
}

.iusti-sect__grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 890px;
  margin: 0 auto;
  padding: 0 0 var(--section-offset);
}
.iusti-sect__grid:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(227, 72, 133, 0)), color-stop(#E34885), to(rgba(227, 72, 133, 0)));
  background: linear-gradient(to right, rgba(227, 72, 133, 0), #E34885, rgba(227, 72, 133, 0));
}
.iusti-sect__logo {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 60px;
  max-width: 380px;
}
.iusti-sect__descr {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  line-height: 1.3;
  font-size: 34px;
}

.brands .title {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.brands__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.brand-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: block;
  padding: 20px;
  min-width: 30%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
}
.brand-item .img-box {
  width: 100%;
  max-width: 250px;
}

.footer {
  position: relative;
  padding: 230px 0 40px;
  font-size: 15px;
}
.footer__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer__bg-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 396px;
}
.footer__bg:after {
  content: "";
  position: absolute;
  top: 395px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e9effa;
}
.footer__bg-img {
  position: absolute;
  z-index: 1;
  max-width: none;
}
.footer__bg-img._left {
  top: 300px;
  right: 50%;
  margin-right: 650px;
}
.footer__bg-img._right {
  top: -20px;
  right: -105px;
}
.footer__logo {
  margin-bottom: 45px;
}
.footer__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.95fr 1fr 1.05fr;
  grid-template-columns: 0.95fr 1fr 1.05fr;
  gap: 40px;
}
.footer__content-col > * {
  margin-bottom: 12px;
}
.footer__content-col > *:last-child {
  margin-bottom: 0;
}
.footer__bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(71, 30, 100, 0.1);
}
.footer__bot-copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0;
}
.footer__bot-dev {
  margin: 0 0 0 30px;
}

/* Popups */
.popup {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 450px;
  background: #fff;
  margin: 30px auto;
  padding: 30px;
}

/* Customize plugins */
.mfp-bg {
  background: #000;
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.75;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-container.mfp-inline-holder {
  padding: 0 15px;
}

.mfp-figure:after {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
}

.mfp-title {
  color: #fff;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mfp-image-holder .close-btn,
.mfp-iframe-holder .close-btn {
  right: 0;
  height: 40px;
  border-radius: 0;
  background: none;
  text-align: right;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
}
.mfp-image-holder .close-btn:hover,
.mfp-iframe-holder .close-btn:hover {
  opacity: 0.7;
}

.mfp-image-holder .close-btn {
  top: 0;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  width: 100%;
}

.mfp-iframe-holder .close-btn {
  width: auto;
  top: -40px;
}