@import 'fonts.css';
@import 'grid.css';
@import 'reset.css';
@import 'typography.css';

:root {
  --background-color: #fff;
  --default-dark: #333;
}

*, :before, :after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100vh;
}

body {
  color: #333;
  font-size: 20px;
  font-family: "Mukta", sans-serif;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font: inherit;
  display: inline;
}

ol, ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

li {
  display: block;
  list-style-image: none;
}

a {
  color: #333;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}

input, textarea, button {
  outline: none;
  appearance: none;
}

var {
  font-style: normal;
}

strong {
  font-weight: 700;
}

i {
  font-style: normal;
}

u {
  text-decoration: none;
}

picture {
  display: block;
}

img {
  display: block;
  max-width: 100% !important;
  max-height: 100% !important;
  pointer-events: none;
}

svg {
  display: block;
}

img, svg, path, circle, rect, line {
  transition: 0.3s;
}

.wrap {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.case {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  max-width: 1325px;
}
.case .case {
  padding-left: 0;
  padding-right: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.button {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  font-family: "Gilroy", sans-sans;
  border: none;
  background-color: transparent;
  transition: 0.3s;
  outline: none;
  border-bottom: none;
}
.button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.button:before {
  z-index: -1;
  border-radius: 50px;
}
.button.--bg-white {
  border-radius: 50px;
}
.button.--bg-white:before {
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 white;
  background: #fff;
}
.button.--bg-violet {
  color: #fff;
  border-radius: 50px;
}
.button.--bg-violet:before {
  transition: 0.3s;
  background-size: 400% 400%;
  animation: gradient 3s ease-in-out infinite;
  background-image: linear-gradient(120deg, #8E3AD6, #A189FF, #8E3AD6);
}
.button.--sm {
  height: 48px;
  font-size: 18px;
  font-weight: 800;
}
.button.--sm:hover {
  transform: scale(0.9);
}
.button.--md {
  height: 60px;
  font-size: 18px;
  font-weight: 800;
}
.button.--md:hover {
  transform: scale(0.9);
}
.button:hover {
  transition-delay: 0s !important;
}

@keyframes gradient {
  0% {
    background-position: 14% 0%;
  }
  50% {
    background-position: 87% 100%;
  }
  100% {
    background-position: 14% 0%;
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}
.field {
  transition: 0.3s;
  border-bottom: 2px solid #E2E4E9;
}
.field__wrap {
  position: relative;
  cursor: text;
}

@media screen and (max-width: 992px) {
  .field__area {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .select__area {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .modal-view__button {
    margin-top: 16px !important;
  }
}

.field__area {
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-family: "Mukta", sans-serif;
  width: 100%;
  overflow: hidden;
  resize: none;
  transition: 0.3s;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.field__area::placeholder {
  opacity: 1;
  color: #AEAFBF;
}
.field.--filled, .field.--focus {
  border-color: #8E3AD6;
}

.check {
  cursor: pointer;
}
.check__input {
  display: none;
}

.checkbox__wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.checkbox__box {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  width: 24px;
  height: 24px;
  background: #F2F3F5;
  border: 1px solid #E2E4E9;
  border-radius: 6px;
}
.checkbox__box svg {
  opacity: 0;
  transform: scale(0);
  transition: 0.3s;
}
.checkbox__text {
  max-width: calc(100% - 24px);
  padding-left: 16px;
}
.checkbox.--checked .checkbox__box {
  border-color: #8E3AD6;
  background: #8E3AD6;
}
.checkbox.--checked .checkbox__box svg {
  opacity: 1;
  transform: scale(1);
}

.select {
  position: relative;
  cursor: pointer;
}
.select__wrap {
  position: relative;
}
.select__area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-left: 14px;
  transition: 0.3s;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E2E4E9;
}
.select__title {
  font-size: 20px;
  line-height: 28px;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 5px;
  color: #AEAFBF;
  margin-left: auto;
  margin-right: auto;
}
.select__icon {
  width: 14px;
  height: 14px;
}
.select__icon svg {
  transition: 0.3s;
}
.select__drop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  border-top: none;
  transform: translateY(10px);
  overflow-y: auto;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0 16px;
  background: #fff;
}
.select__item {
  transition: 0.3s;
  text-align: center;
  padding: 12px;
  font-size: 20px;
  line-height: 28px;
  border-bottom: 1px solid #E2E4E9;
}
.select__item:last-of-type {
  border-bottom: none;
}
.select__item.--hidden {
  display: none;
}
.select__parse {
  display: none;
}
.select.--open {
  z-index: 5;
}
.select.--open .select__area {
  border-radius: 12px 12px 0 0;
  border-color: #8E3AD6;
}
.select.--open .select__icon svg {
  transform: rotate(180deg);
}
.select.--open .select__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

body.popup-show {
  overflow: hidden;
  height: 100%;
  margin-right: 12px;
}

.popup {
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.popup__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  overflow-y: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
}
.popup__item {
  display: block !important;
}
.popup__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.popup.--show {
  opacity: 1;
  visibility: visible;
}

.fade-in {
  opacity: 0;
  transition: 0.8s;
}
.fade-in.--loaded {
  opacity: 1;
  transform: translateY(0);
}
.fade-in__left, .fade-in__right, .fade-in__top, .fade-in__bottom {
  opacity: 0;
  transition: 0.8s;
}
.fade-in__left.--loaded, .fade-in__right.--loaded, .fade-in__top.--loaded, .fade-in__bottom.--loaded {
  opacity: 1;
  transform: translateY(0);
}
.fade-in__left {
  transform: translateX(-100px);
}
.fade-in__right {
  transform: translateX(100px);
}
.fade-in__top {
  transform: translateY(100px);
}

.bounce {
  opacity: 0;
  transition: 0.8s;
}
.bounce.--loaded {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.header {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 48px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, #F2F3F5, rgba(0, 0, 0, 0));
}
.header__inner {
  display: none;
}
.header__wrap {
  opacity: 0;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-20px);
  transition: 0.8s;
}
.header__wrap.--loaded {
  opacity: 1;
  transform: translateY(0px);
}
.header__nav li {
  line-height: 28px;
  margin-right: 55px;
}
.header__nav li:last-of-type {
  margin-right: 0;
}
.header__nav a {
  display: block;
  position: relative;
  padding-top: 4px;
}
.header__nav a:hover:after {
  opacity: 1;
  margin-top: 2px;
  visibility: visible;
}
.header__nav a:after {
  content: "";
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 100%;
  margin-top: 8px;
  background: #8E3AD6;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: 0.3s;
}
.header__button {
  margin-right: 20px;
}
.header__button.--bg-white:before {
  background: #E2E4E9;
}
.header__button:nth-of-type(1) {
  padding-left: 48px;
  padding-right: 48px;
}
.header__button:nth-of-type(2) {
  padding-left: 28px;
  padding-right: 28px;
}
.header__button:last-of-type {
  margin-right: 0;
}
.header__ham {
  display: none;
}

u {
  color: #8E3AD6;
}

.h1 {
  font-size: 168px;
  line-height: 150px;
  letter-spacing: 2px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
}

.h2 {
  font-size: 54px;
  line-height: 56px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
}

.h3 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  z-index: -100;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F2F3F5;
}

.bg-black {
  position: relative;
}
.bg-black:before {
  z-index: -100;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(133.19deg, #434343 -1.49%, #1F1F1F 99.44%);
}

.bg-dynamic {
  position: relative;
}
.bg-dynamic:before {
  z-index: -100;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F2F3F5;
}

.intro {
  z-index: 1;
  position: relative;
  overflow: hidden;
  padding-top: 156px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.intro__title {
  margin-bottom: 60px;
}
.intro__subtitle {
  font-size: 44px;
  line-height: 38px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
  margin-bottom: 8px;
}
.intro__text {
  line-height: 24px;
}
.intro__button {
  padding-left: 72px;
  padding-right: 72px;
  margin-top: 92px;
  margin-left: auto;
  margin-right: auto;
}
.intro__award {
  position: absolute;
  top: 167px;
  right: 50%;
  margin-right: -655px;
}
.intro__figure:nth-of-type(1) {
  z-index: 1;
  left: 0;
  bottom: -115px;
  width: 630px;
}
.intro__figure:nth-of-type(2) {
  left: 40px;
  bottom: -180px;
  width: 466px;
}
.intro__figure:nth-of-type(3) {
  opacity: 0.3;
  bottom: 0;
  right: 0;
}
.intro__figure:nth-of-type(4) {
  bottom: 0;
  right: 0;
}
.intro__figure:nth-of-type(5) {
  opacity: 0;
}

.figure {
  z-index: -1;
  position: absolute;
}

.award {
  width: 268px;
  height: 300px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  transform: scale(0.76);
}
.award.--loaded {
  transform: translateY(0) scale(0.76);
}
.award__value {
  font-size: 100px;
  line-height: 100px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
  background: linear-gradient(160.67deg, #8E3AD6 9.89%, #A189FF 84.06%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 10px;
}
.award__text {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
}
.award__bg {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.offers {
  z-index: 2;
  position: relative;
  padding-top: 75px;
  padding-bottom: 85px;
}
.offers__title {
  text-align: center;
  margin-bottom: 55px;
}
.offers__list {
  margin: 0 -12px -24px;
}
.offers__item {
  width: calc(50% - 24px);
  margin: 0 12px 24px;
  border-radius: 16px;
}
.offers__figure:nth-of-type(1) {
  bottom: 0;
  left: 0;
}
.offers__figure:nth-of-type(2) {
  top: 38px;
  right: 0;
}

.offer {
  position: relative;
  background: #fff;
  border: 2px solid #E2E4E9;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.offer__wrap {
  padding: 24px 24px 24px;
}
.offer__head {
  display: flex;
  align-items: center;
}
.offer__icon {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 75px;
}
.offer__icon svg {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.offer__title {
  width: calc(100% - 66px);
  padding-left: 16px;
}
.offer__body {
  padding-left: 82px;
}
.offer__list {
  margin-top: -12px;
}
.offer__item {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E2E4E9;
}
.offer__item:last-of-type {
  border-bottom: none;
}
.offer__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.offer__item-text {
  width: calc(100% - 24px);
  padding-left: 16px;
  padding-top: 3px;
  line-height: 28px;
}
.offer__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.offer:hover .offer__inner {
  opacity: 1;
  visibility: visible;
}
.offer.--no-hover {
  pointer-events: none;
}

.offerin {
  z-index: 10;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.offerin__inner {
  width: 100%;
  padding: 24px;
}
.offerin__item {
  width: 33.3333333333%;
  padding-left: 9px;
  padding-right: 9px;
  text-align: center;
}
.offerin__img {
  width: 124px;
  height: 124px;
  border-radius: 16px;
  border: 1px solid #F2F3F5;
  background: #F2F3F5;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-bottom: 8px;
}
.offerin__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.offerin__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #F2F3F5;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}
.offerin__name {
  font-size: 18px;
  line-height: 20px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
  color: #8E3AD6;
  margin-bottom: 8px;
}
.offerin__desc {
  font-size: 16px;
  line-height: 20px;
}
.offerin__desc p {
  margin-bottom: 8px;
}
.offerin__desc p:last-of-type {
  margin-bottom: 0;
}
.offerin__links {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -24px;
}
.offerin__link {
  width: 50%;
  padding: 0 12px;
  margin-bottom: 24px;
}
.offerin__link-img {
  width: 100%;
  height: 98px;
  border-radius: 16px;
  margin-bottom: 8px;
  overflow: hidden;
}
.offerin__link-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.offerin__link-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
  color: #8E3AD6;
  text-align: center;
}

.alert {
  z-index: 2;
  position: relative;
  background: #8E3AD6;
}
.alert__wrap {
  min-height: 144px;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  padding-bottom: 22px;
}
.alert__title {
  color: #fff;
}
.alert__title.tac {
  text-align: center;
}
.alert__title + .alert__button {
  margin-left: 80px;
}
.alert__button {
  padding-left: 48px;
  padding-right: 48px;
}

.platform {
  padding-top: 120px;
  overflow: hidden;
}
.platform__item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.platform__item:before {
  z-index: -1;
  opacity: 0.3;
  content: "";
  position: absolute;
  width: 900px;
  height: 875px;
  background: url('/skin/images/poligon-gray-lg.png') no-repeat center;
  background-size: 100%;
}
.platform__item:nth-of-type(1) {
  z-index: 10;
}
.platform__item:nth-of-type(1):before {
  left: -340px;
  top: -370px;
}
.platform__item:nth-of-type(2) {
  z-index: 9;
}
.platform__item:nth-of-type(2):before {
  right: -430px;
  top: -320px;
}
.platform__item:nth-of-type(3) {
  z-index: 8;
}
.platform__item:nth-of-type(3):before {
  left: -320px;
  top: 30px;
  transform: rotate(-30deg);
}
.platform__item:nth-of-type(odd) .platform__content {
  margin-left: auto;
  margin-right: 40px;
}
.platform__item:nth-of-type(even) .platform__elems {
  order: 1;
}
.platform__item:nth-of-type(even) .platform__text {
  order: 2;
}
.platform__item:nth-of-type(even) .platform__content {
  margin-left: 110px;
}
.platform__item:last-of-type {
  margin-bottom: 0;
}
.platform__text {
  width: 50%;
}
.platform__content {
  width: 375px;
}
.platform__desc {
  font-size: 22px;
  line-height: 28px;
  margin-top: 40px;
}
.platform__elems {
  z-index: 1;
  width: 50%;
  height: 524px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform__elems:before {
  z-index: -1;
  content: "";
  width: 534px;
  height: 593px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('/skin/images/polugon-violet.png') no-repeat center;
  background-size: 100%;
}
.platform__elems-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -30px -36px;
}
.platform__elem {
  display: flex;
  align-items: center;
  padding: 24px 32px 24px 24px;
  border: 2px solid #F2F3F5;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 20px;
  margin: 0 12px 36px;
}
.platform__elem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
}
.platform__elem-text {
  font-size: 22px;
  line-height: 24px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
  margin-left: 12px;
}

.pget {
  margin-top: 115px;
  position: relative;
}
.pget__wrap {
  z-index: 3;
  width: calc(50% + 215px);
  padding: 120px 215px 90px 0;
  position: relative;
}
.pget__wrap:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1000%;
  background: #fff;
  border-radius: 0 180px 0 0;
}
.pget__content {
  width: 450px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
.pget__title {
  margin-bottom: 32px;
}
.pget__text ul {
  flex-direction: column;
}
.pget__text li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 22px;
  min-height: 31px;
}
.pget__text li:last-of-type {
  margin-bottom: 0;
}
.pget__text li:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 31px;
  height: 31px;
  background: url('/skin/images/check-violet.svg') no-repeat center;
}
.pget__button {
  margin-top: 48px;
  margin-right: auto;
  min-width: 310px;
}
.pget__figures {
  width: calc(50% - 215px);
}
.pget__figure {
  z-index: 1;
  position: absolute;
  right: 0;
}
.pget__figure:nth-of-type(1) {
  z-index: 2;
  top: 0;
  width: 554px;
}
.pget__figure:nth-of-type(2) {
  opacity: 0.3;
  bottom: 0;
  right: 140px;
  width: 510px;
}

.partners {
  z-index: 2;
  position: relative;
  padding-top: 100px;
  padding-bottom: 135px;
  overflow: hidden;
}

.partners__title {
  color: #fff;
  text-align: center;
  margin-bottom: 90px;
}
.partners__wrap {
  max-width: 920px;
  margin: 0 auto;
}
.partners__list {
  justify-content: center;
  margin: 0 -16px -32px;
}
.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  max-width: 215px;
  height: 80px;
  margin: 0 16px 32px;
  background: #F2F3F5;
  border: 2px solid #E2E4E9;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15), inset 1px 0px 8px #E7E8EC;
  border-radius: 16px;
}
.partners__figure {
  top: 50%;
  left: 50%;
  width: 720px;
  transform: translate(-50%, -50%);
}

.contacts {
  position: relative;
  padding-top: 65px;
  padding-bottom: 85px;
  width: calc(50% - 100px);
}
.contacts:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1000%;
  background: #E2E4E9;
}
.contacts__title {
  margin-bottom: 32px;
}
.contacts__item {
  display: flex;
  align-items: center;
  margin-bottom: 19px;
}
.contacts__item:last-of-type {
  margin-bottom: 0;
}
.contacts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 59px;
  position: relative;
}
.contacts__icon i {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contacts__text {
  margin-left: 24px;
}
.contacts__name {
  line-height: 28px;
  color: #787987;
  margin-bottom: 4px;
}
.contacts__value {
  font-weight: 700;
  line-height: 28px;
}
.contacts__value a:hover {
  border-color: #333;
}

.team {
  width: calc(50% + 100px);
  padding-left: 110px;
  padding-top: 65px;
  padding-bottom: 20px;
}
.team__title {
  margin-bottom: 50px;
}
.team__list {
  margin-bottom: -22px;
}
.team__item {
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.team__img {
  width: 110px;
  min-width: 110px;
}
.team__data {
  width: calc(100% - 110px);
  padding-left: 24px;
}
.team__name {
  font-size: 22px;
  line-height: 24px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
  margin-bottom: 6px;
}
.team__desc {
  line-height: 28px;
  font-weight: 700;
  color: #787987;
  margin-bottom: 6px;
}
.team__contact {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
}
.team__contact p {
  margin-bottom: 6px;
}
.team__contact p:last-of-type {
  margin-bottom: 0;
}
.first {
  z-index: 1;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.first__wrap {
  align-items: center;
}
.first__img {
  width: 728px;
  margin-left: -60px;
}
.first__content {
  display: flex;
  flex-direction: column;
}
.first__title {
  margin-bottom: 32px;
}
.first__subtitle {
  font-size: 34px;
  line-height: 38px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
  color: #8E3AD6;
  margin-bottom: 16px;
}
.first__desc {
  font-size: 22px;
  line-height: 24px;
  font-family: "Gilroy", sans-sans;
  font-weight: 800;
}
.first__button {
  margin-top: 52px;
  margin-right: auto;
  min-width: 240px;
}
.first__figure:nth-of-type(1) {
  opacity: 0.3;
  left: 0;
  bottom: 0;
}
.first__figure:nth-of-type(2) {
  left: 0;
  bottom: 0;
}
.first__figure:nth-of-type(3) {
  opacity: 0.3;
  left: 50%;
  top: 50%;
  bottom: 0;
  width: 829px;
  height: 885px;
  margin-left: 280px;
  transform: translate(-50%, -50%);
}
.first__figure:nth-of-type(4) {
  right: 0;
  top: 0;
}

.goto {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 106px;
  height: 46px;
  padding-top: 4px;
  transform: translate(-50%, 100%);
  transition: 0.3s;
  cursor: pointer;
}
.goto.--hide {
  opacity: 0 !important;
  transition-delay: 0s !important;
}
.goto__icon {
  z-index: 1;
  position: relative;
}
.goto__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

body.--loaded .goto {
  transition-delay: 1s;
  transform: translate(-50%, 0);
}

.about {
  padding-top: 95px;
  padding-bottom: 135px;
}
.about__title {
  text-align: center;
  margin-bottom: 80px;
}
.about__list {
  max-width: 1020px;
  margin: 0 auto;
}
.about__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}
.about__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 134px;
  height: 150px;
  z-index: 1;
  position: relative;
  margin-bottom: 24px;
}
.about__icon svg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.about__text {
  line-height: 28px;
  font-weight: 700;
}

.provide {
  padding-top: 120px;
  padding-bottom: 100px;
}
.provide__title {
  text-align: center;
  margin-bottom: 110px;
}
.provide__wrap {
  position: relative;
}
.provide__figure {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -30px;
  transform: translate(-50%, -50%);
}
.provide__item {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 464px;
  height: 522px;
  position: relative;
  margin-top: -130px;
}
.provide__item:first-of-type {
  margin-top: 0;
}
.provide__item:nth-of-type(odd) {
  margin-left: 85px;
}
.provide__item:nth-of-type(even) {
  margin-right: 85px;
  margin-left: auto;
}
.provide__bg {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.provide__bg path:nth-of-type(1) {
  fill: none;
}
.provide__elems-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -90px -36px;
}
.provide__elems-list.--margin-more {
  margin-left: -160px;
  margin-right: -160px;
}
.provide__elem {
  display: flex;
  align-items: center;
  padding: 24px 32px 24px 24px;
  border: 2px solid #F2F3F5;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 20px;
  margin: 0 12px 36px;
}
.provide__elem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
}
.provide__elem-text {
  font-size: 22px;
  line-height: 24px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
  margin-left: 12px;
}

.counts {
  padding-top: 120px;
  padding-bottom: 120px;
}
.counts__wrap {
  max-width: 685px;
  padding: 60px 50px 65px;
  background: #FFFFFF;
  border: 2px solid #E2E4E9;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 48px;
  margin-left: auto;
  margin-right: auto;
}
.counts__title {
  text-align: center;
  margin-bottom: 42px;
}
.counts__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
.counts__item {
  width: 100%;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E4E9;
}
.counts__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.counts__value {
  font-size: 54px;
  line-height: 56px;
  font-weight: 800;
  color: #8E3AD6;
  font-family: "Gilroy", sans-sans;
  margin-bottom: 4px;
}
.counts__desc {
  line-height: 28px;
  font-weight: 700;
}
.counts__figure:nth-of-type(1) {
  top: 6px;
  left: 0;
}
.counts__figure:nth-of-type(2) {
  z-index: -2;
  bottom: 0;
  left: 70px;
}
.counts__figure:nth-of-type(3) {
  opacity: 0.3;
  bottom: 0;
  right: 0;
}
.counts__figure:nth-of-type(4) {
  bottom: 0;
  right: 0;
}

.inventory {
  padding-top: 80px;
  padding-bottom: 80px;
}
.inventory__title {
  text-align: center;
  margin-bottom: 24px;
}
.inventory__subtitle {
  text-align: center;
  margin-bottom: 70px;
}
.inventory__list {
  margin-bottom: -40px;
  padding-left: 70px;
  padding-right: 70px;
}
.inventory__item {
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  margin-bottom: 40px;
}
.inventory__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 134px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
.inventory__icon i {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.inventory__text {
  line-height: 28px;
  font-weight: 700;
}

.text {
  padding-top: 190px;
  padding-bottom: 100px;
  min-height: 1000px;
}
.text__title {
  text-align: center;
  margin-bottom: 35px;
}
.text__inner {
  margin-left: auto;
  margin-right: auto;
}
.text__inner p {
  margin-bottom: 10px;
}
.text__inner a {
  display: inline;
}
.text__inner a:hover {
  border-color: rgba(51, 51, 51, 0.8);
}
.text__inner table {
  margin-top: 20px;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.text__inner table tr:first-of-type td {
  border-top: 1px solid #eee;
}
.text__inner table td {
  padding: 10px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.text__inner table td:first-of-type {
  border-left: 1px solid #eee;
}
.text__inner ul {
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
}
.text__inner ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.text__inner ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333;
  position: absolute;
  top: 11px;
  left: 10px;
}

.footer {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer__wrap {
  align-items: center;
  width: 100%;
  max-width: 1076px;
  margin: 0 auto;
}
.footer__logo {
  width: 64px;
}
.footer__copy {
  width: 150px;
  font-size: 16px;
  line-height: 20px;
  margin-left: 16px;
}
.footer__links {
  margin-left: auto;
  margin-right: auto;
}
.footer__links li {
  margin-right: 40px;
}
.footer__links li:last-of-type {
  margin-right: 0;
}
.footer__links a {
  font-size: 16px;
  line-height: 20px;
  color: #AEAFBF;
  border-color: rgba(174, 175, 191, 0.5);
}
.footer__links a:hover {
  border-color: transparent;
}

.socials__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 59px;
  position: relative;
  margin-right: 16px;
}
.socials__item:last-of-type {
  margin-right: 0;
}
.socials__item i {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.socials__item:hover {
  transform: scale(0.8);
}

/* Modal View Dialogs */

.modal-view:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-view {
  visibility: hidden;
  display: block;
  position: fixed;
  width: 100%;


  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;

  background: rgba(0, 0, 0, 0.8);

  pointer-events: none;
  transition: all 0.3s;
}

.modal-view > a {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: default;
}

.modal-view__wrapper {
  position: absolute;
  padding: 24px;
  border-radius: 32px;
  background: #fff;
  max-width: 464px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #E2E4E9;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  min-width: 300px;
}

.modal-view__title {
  font-size: 34px;
  line-height: 38px;
  font-weight: 800;
  font-family: "Gilroy", sans-sans;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .modal-view__field, .modal-view__checkbox, .modal-view__select {
    margin-left: 24px;
    margin-right: 24px;
  }
}

.modal-view__field, .modal-view__select {
  margin-bottom: 24px;
}
.modal-view__checkbox {
  margin-top: 36px;
  margin-bottom: 20px;
}
.modal-view__button {
  margin-top: 20px;
  width: 100%;
}
.modal-view__link {
  margin-top: 16px;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}
.modal-view__link a {
  color: #AEAFBF;
  border-color: rgba(174, 175, 191, 0.8);
}
.modal-view__link a:hover {
  border-color: transparent;
}

@media (prefers-color-scheme: dark) {
  .header {
    background: linear-gradient(180deg, #272727, rgba(0, 0, 0, 0));
  }
  .header__wrap.--show {
    background: #333 !important;
  }
  .header__nav a {
    color: #fff;
  }
  .header__button.--bg-white:before {
    background: #fff;
  }
  .header__ham span {
    background: #fff !important;
  }

  .header.--light {
    background: linear-gradient(180deg, #F2F3F5 0%, rgba(242, 243, 245, 0) 100%);
  }
  .header.--light .header__wrap.--show {
    background: #fff !important;
  }
  .header.--light .header__nav a {
    color: #333;
  }
  .header.--light .header__button.--bg-white:before {
    background: #E2E4E9;
  }
  .header.--light .header__ham span {
    background: #333 !important;
  }

  .intro {
    color: #fff;
    background: linear-gradient(133.19deg, #434343 -1.49%, #1F1F1F 99.44%);
  }
  .intro__figure:nth-of-type(2), .intro__figure:nth-of-type(3) {
    opacity: 0.3;
  }

  .award__bg g {
    filter: none;
  }
  .award__bg g:nth-of-type(1) path:nth-of-type(1) {
    fill: none;
  }

  .bg-dynamic:before {
    background: #333;
  }

  .platform .case {
    z-index: 2;
  }
  .platform__title, .platform__desc {
    color: #fff;
  }
  .platform__item:before {
    opacity: 0.2;
  }
  .platform__elems:before {
    width: 714px;
    height: 772px;
    background-image: url('/skin/images/polugon-violet-bg.png');
  }

  .pget__figure:nth-of-type(2) {
    opacity: 1;
  }

  .intro__subtitle,
  .intro__text,
  .first__title,
  .first__desc,
  .award__text {
    color: white;
  }

  .first {
    color: #fff;
    background: linear-gradient(133.19deg, #434343 -1.49%, #1F1F1F 99.44%);
  }
  .first__figure:nth-of-type(1), .first__figure:nth-of-type(3) {
    opacity: 1;
  }

  .provide__title {
    color: #fff;
  }
  .provide__bg path:nth-of-type(1) {
    fill: url(#paint0_radial_708_1296);
  }

  .counts__figure:nth-of-type(2) {
    opacity: 0.3;
  }
  .counts__figure:nth-of-type(3) {
    opacity: 0.3;
  }
}

@media screen and (max-width: 1620px) {
  .intro__figure:nth-of-type(1) {
    margin-left: -200px;
  }
}
@media screen and (max-width: 1400px) {
  .intro__figure:nth-of-type(2) {
    margin-left: -200px;
  }
  .intro__figure:nth-of-type(3), .intro__figure:nth-of-type(4) {
    margin-right: -200px;
  }
}
@media screen and (max-height: 690px) {
  .intro__button {
    margin-top: 35px;
  }
}
@media screen and (max-height: 630px) {
  .intro__title {
    font-size: 140px;
    line-height: 110px;
    margin-bottom: 35px;
  }
}
@media screen and (max-height: 570px) {
  .first {
    padding-top: 120px;
    padding-bottom: 70px;
    height: auto;
  }
}
@media screen and (max-height: 530px) {
  .intro {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1500px) {
  .first__figure:nth-of-type(1), .first__figure:nth-of-type(2) {
    left: -100px;
    bottom: -100px;
  }
  .first__figure:nth-of-type(3) {
    transform: translate(-50%, -50%) scale(0.8);
  }
  .first__figure:nth-of-type(4) {
    right: -100px;
    top: -100px;
  }
}
@media screen and (max-width: 1400px) {
  .intro__figure:nth-of-type(1), .intro__figure:nth-of-type(2) {
    margin-left: -300px;
  }
  .intro__figure:nth-of-type(3), .intro__figure:nth-of-type(4) {
    margin-right: -300px;
  }
}
@media screen and (max-width: 1330px) {
  .case {
    max-width: 1100px;
  }

  .header__nav li {
    margin-right: 25px;
  }

  .h1 {
    font-size: 132px;
    line-height: 90px;
  }

  .intro__award {
    margin-right: -545px;
  }

  .first__img {
    width: 600px;
  }

  .team {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1330px) and (max-height: 700px) {
  .intro__subtitle {
    margin-bottom: 15px;
  }
  .intro__subtitle, .intro__text {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1130px) {
  .case {
    max-width: 960px;
  }

  .h1 {
    font-size: 100px;
    line-height: 90px;
  }

  .header__nav li {
    margin-right: 25px;
  }

  .intro__award {
    margin-right: -475px;
  }

  .award {
    width: 198px;
    height: 224px;
  }
  .award__bg svg {
    width: 198px;
    height: 224px;
  }
  .award__value {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 0;
  }
  .award__text {
    font-size: 16px;
    line-height: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .platform__elem {
    width: 100%;
  }

  .first__img {
    width: 500px;
  }
  .first__content {
    width: calc(100% - 500px);
  }
  .first__subtitle {
    font-size: 28px;
    line-height: 32px;
  }
  .first__button {
    margin-top: 25px;
  }
  .first__figure {
    display: none;
  }
  .first__figure:nth-of-type(4) {
    display: block;
  }

  .provide__item {
    margin-top: -60px;
  }
  .provide__item:nth-of-type(odd) {
    margin-left: 115px;
  }
  .provide__item:nth-of-type(even) {
    margin-right: 115px;
  }

  .counts__figures {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  body {
    min-width: auto;
  }

  .overflow-disabled {
    overflow-y: hidden;
  }

  .case {
    max-width: 750px;
  }

  .h2 {
    font-size: 44px;
    line-height: 48px;
  }

  .header {
    position: fixed;
    z-index: 101;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .header__inner {
    position: relative;
    z-index: 102;
    display: flex;
    align-items: center;
  }
  .header__wrap {
    z-index: 101;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
    transform: translateY(100%) !important;
    background: #fff;
  }
  .header__wrap .header__logo {
    display: none;
  }
  .header__wrap.--show {
    opacity: 1 !important;
    transform: translateY(0%) !important;
  }
  .header__logo {
    width: 64px;
  }
  .header__nav ul {
    flex-direction: column;
  }
  .header__nav li {
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .header__nav li:last-of-type {
    margin-bottom: 0;
  }
  .header__nav a {
    font-size: 32px;
  }
  .header__buttons {
    margin-top: 30px;
  }
  .header__ham {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    margin-left: auto;
    cursor: pointer;
  }
  .header__ham span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 20px;
    margin-bottom: 6px;
    position: relative;
    transition: 0.3s;
  }
  .header__ham span:nth-of-type(1) {
    width: 28px;
  }
  .header__ham span:nth-of-type(2) {
    width: 22px;
  }
  .header__ham span:nth-of-type(3) {
    width: 14px;
    margin-bottom: 0;
  }
  .header__ham.--close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 9px;
  }
  .header__ham.--close span:nth-of-type(2) {
    opacity: 0;
  }
  .header__ham.--close span:nth-of-type(3) {
    width: 28px;
    top: -9px;
    transform: rotate(-45deg);
  }

  .h1 {
    font-size: 80px;
    line-height: 70px;
  }

  .intro {
    padding-top: 94px;
  }
  .intro__award {
    top: 106px;
    margin-right: -375px;
  }
  .intro__subtitle {
    font-size: 34px;
    line-height: 32px;
  }

  .offers__list {
    margin-bottom: 0;
  }
  .offers__item {
    width: 100%;
  }
  .offers__item:last-of-type {
    margin-bottom: 0;
  }

  .alert__wrap {
    flex-direction: column;
  }
  .alert__title br {
    display: none;
  }
  .alert__title + .alert__button {
    margin-top: 24px;
    margin-left: 0;
  }

  .platform {
    padding-top: 80px;
  }
  .platform__item {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .platform__item:before {
    display: none;
  }
  .platform__item:last-of-type {
    margin-bottom: 0;
  }
  .platform__item:nth-of-type(even) .platform__elems {
    order: 2;
  }
  .platform__item:nth-of-type(even) .platform__elems:before {
    left: auto;
    right: -115px;
  }
  .platform__text {
    order: 1;
    width: 100%;
    margin-bottom: 32px;
  }
  .platform__content {
    width: 100%;
    margin-left: 0 !important;
  }
  .platform__title br {
    display: none;
  }
  .platform__desc {
    margin-top: 20px;
  }
  .platform__elems {
    order: 2;
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }
  .platform__elems:before {
    transform: none;
    top: -115px;
    left: -115px;
  }
  .platform__elems-list {
    width: 100%;
    margin: 0;
    flex-direction: column;
    justify-content: flex-start;
  }
  .platform__elem {
    margin: 0 0 16px 0;
  }
  .platform__elem:last-of-type {
    margin-bottom: 0;
  }

  .pget {
    margin-top: 60px;
  }

  .first {
    padding-top: 130px;
    padding-bottom: 90px;
  }
  .first__wrap {
    flex-direction: column;
  }
  .first__img {
    margin-left: 0;
  }
  .first__content {
    width: 100%;
    text-align: center;
  }
  .first__button {
    margin-left: auto;
    margin-right: auto;
  }

  .about {
    padding-bottom: 80px;
  }
  .about__list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .about__item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .provide {
    padding-top: 35px;
    padding-bottom: 1px;
  }
  .provide__title {
    margin-bottom: 35px;
  }
  .provide__figure {
    display: none;
  }
  .provide__elems-list {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0;
  }
  .provide__list {
    margin-bottom: -145px;
  }
  .provide__item {
    width: 100%;
    margin-top: -140px;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: flex-start;
  }
  .provide__item:nth-of-type(odd) .provide__bg {
    left: 0;
    margin-left: 50px;
  }
  .provide__item:nth-of-type(even) .provide__bg {
    transform: translate(50%, -50%);
    left: auto;
    right: 0;
    margin-right: 50px;
  }
  .provide__elem {
    padding: 16px;
    margin: 0;
    width: 100%;
    margin-bottom: 16px;
  }
  .provide__elem:last-of-type {
    margin-bottom: 0;
  }
  .provide__elem-icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }
  .provide__elem-text {
    width: calc(100% - 32px);
    font-size: 18px;
    line-height: 20px;
  }
  .provide__bg {
    margin-top: -80px;
  }
  .provide__bg svg {
    width: 600px;
    height: auto;
  }

  .inventory__list {
    padding-left: 0;
    padding-right: 0;
    margin-left: -10px;
    margin-right: -10px;
  }

  .footer {
    padding-top: 32px;
    padding-bottom: 80px;
  }
  .footer__links {
    margin-right: 0;
  }
  .footer__socials {
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
  }

  .contacts {
    width: 100%;
    padding: 32px 0;
  }
  .contacts:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .team {
    width: 100%;
    padding: 32px 0;
  }

  .text {
    padding-top: 130px;
    padding-bottom: 50px;
  }
  .team__title {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .h2 {
    font-size: 34px;
    line-height: 38px;
  }

  .h3 {
    font-size: 22px;
    line-height: 24px;
  }

  .offers {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .offers__title {
    text-align: left;
    margin-bottom: 30px;
  }
  .offers__item {
    margin: 0 12px 12px;
  }
  .offers__figures {
    display: none;
  }

  .offer {
    pointer-events: none;
  }
  .offer__wrap {
    padding: 34px 24px 10px 32px;
  }
  .offer__head {
    margin-bottom: 20px;
  }
  .offer__icon {
    width: 24px;
    height: 24px;
  }
  .offer__icon svg {
    width: 44px;
    height: 50px;
  }
  .offer__title {
    width: calc(100% - 44px);
    padding-left: 26px;
  }
  .offer__body {
    padding-left: 52px;
  }
  .offer__item {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .offer__item-text {
    font-size: 16px;
    line-height: 20px;
    padding-left: 6px;
  }

  .alert__wrap {
    min-height: 116px;
    padding: 32px 0;
    flex-direction: column;
  }
  .alert__title {
    text-align: center;
  }
  .alert__title + .alert__button {
    margin-left: 0;
    margin-top: 24px;
  }
  .alert__title u {
    display: block;
  }
  .alert__button.--md {
    height: 52px;
  }

  .platform {
    padding-top: 40px;
  }
  .platform__desc {
    font-size: 20px;
    margin-top: 16px;
  }
  .platform__item:nth-of-type(even) .platform__elems:before {
    right: -165px;
    top: -210px;
  }
  .platform__item:nth-of-type(3n) .platform__elems:before {
    top: -200px;
  }
  .platform__text {
    margin-bottom: 29px;
  }
  .platform__elems {
    z-index: -1;
  }
  .platform__elems:before {
    top: -145px;
    left: -165px;
    width: 455px;
    height: 545px;
  }
  .platform__elem {
    padding: 16px 24px 13px 16px;
  }
  .platform__elem-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .platform__elem-text {
    font-size: 18px;
    line-height: 20px;
  }
  .platform__elem-text br {
    display: none;
  }

  .pget__wrap {
    width: 100%;
    padding: 45px 0 45px 18px;
  }
  .pget__wrap:before {
    right: -15px;
    border-radius: 0px 60px 0px 0px;
  }
  .pget__title {
    margin-bottom: 45px;
  }
  .pget__text li {
    padding-left: 50px;
  }
  .pget__button {
    margin-top: 30px;
  }
  .pget__figures {
    display: none;
  }

  .partners {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .partners__title {
    margin-bottom: 45px;
  }
  .partners__list {
    margin: 0 -12px -12px;
  }
  .partners__item {
    height: 56px;
    padding: 12px;
    margin: 0 6px 12px;
    border-radius: 12px;
  }

  .about {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .about__title {
    margin-bottom: 35px;
  }
  .about__list {
    margin-bottom: -32px;
  }
  .about__item {
    width: 50%;
    margin-bottom: 32px;
  }
  .about__icon {
    width: 90px;
    height: 100px;
    margin-bottom: 8px;
    padding: 24px;
  }
  .about__icon svg {
    width: 90px;
    height: 100px;
  }
  .about__text {
    max-width: 165px;
    margin-left: auto;
    margin-right: auto;
  }

  .inventory {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .inventory__subtitle {
    margin-bottom: 32px;
  }
  .inventory__item {
    width: 50%;
  }

  .footer__wrap {
    justify-content: center;
  }
  .footer__links {
    width: 100%;
    margin-top: 28px;
  }
  .footer__links ul {
    justify-content: center;
  }
  .footer__links li {
    margin-right: 16px;
  }
  .footer__links a {
    font-size: 14px;
    line-height: 20px;
  }
  .footer__socials {
    margin-top: 28px;
  }

  .team__item {
    width: 100%;
  }

  .partners__figure {
    width: 330px;
  }
}
@media screen and (max-width: 374px) {
  .offer__body {
    padding-left: 32px;
  }
}
@media screen and (max-width: 767px) {
  .h1 {
    font-size: 72px;
    line-height: 63px;
  }

  .intro {
    padding-top: 380px;
    padding-bottom: 100px;
  }
  .intro__figure {
    display: none;
  }
  .intro__figure:nth-of-type(5) {
    opacity: 1;
    display: block;
    top: -15px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
  .intro__figure:nth-of-type(5) img {
    width: 100%;
    height: 375px;
  }
  .intro__award {
    right: 50%;
    margin-right: 0;
    transform: translateX(50%) !important;
  }
  .intro__title {
    margin-bottom: 24px;
  }
  .intro__subtitle {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .intro__subtitle, .intro__text {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro__button {
    margin-top: 36px;
  }

  .first__title {
    margin-bottom: 24px;
  }
  .first__subtitle {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .first__desc {
    font-size: 18px;
    line-height: 20px;
  }
  .first__button {
    margin-top: 40px;
  }

  .counts {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .counts__wrap {
    padding: 35px 10px;
  }
  .counts__title {
    margin-bottom: 10px;
  }
  .counts__list {
    max-width: 200px;
  }
  .counts__value {
    font-size: 34px;
    line-height: 38px;
  }
}
@media screen and (max-width: 510px) {
  .first__img {
    width: auto;
    max-width: 500px;
  }
  .first__figure:nth-of-type(4) {
    right: 0;
    width: 400px;
  }
}
