:root {
  --font-family: "Ubuntu", sans-serif;
  --content-width: 1442px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --primary-color: #383838;
  --title-color: #243469;
}

/* stylelint-disable */
/* stylelint-disable */
button.burger.burger--active {
  right: 40px;
  position: absolute;
}

/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/../fonts/UbuntuRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/../fonts/UbuntuMedium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/../fonts/UbuntuBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Acrom";
  src: url("../fonts/../fonts/AcromRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
@media (max-width: 1600px) {
  .container {
    max-width: 1210px;
  }
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.visible-block {
  display: block;
}

.burger {
  --burger-width: 35px;
  --burger-height: 21px;
  --burger-line-height: 5px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 1260px) {
  .burger {
    display: block;
    margin: auto 0;
    margin-left: 7%;
    z-index: 100;
  }
}
@media (max-width: 640px) {
  .burger {
    right: 10px;
  }
  .burger .burger--active {
    right: 40px;
  }
}

@media (max-width: 1260px) {
  .nav {
    position: fixed;
    right: 0;
    top: 0;
    overflow-y: auto;
    padding: 80px 45px 45px;
    height: 100vh;
    background-color: var(--title-color);
    -webkit-box-shadow: 2px 0px 8px #494949;
    box-shadow: 2px 0px 8px #494949;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform-origin 0.3s ease-in-out;
    transition: -webkit-transform-origin 0.3s ease-in-out;
    -o-transition: transform-origin 0.3s ease-in-out;
    transition: transform-origin 0.3s ease-in-out;
    transition: transform-origin 0.3s ease-in-out, -webkit-transform-origin 0.3s ease-in-out, -ms-transform-origin 0.3s ease-in-out;
    z-index: 100;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media (max-width: 640px) {
  .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .nav {
    padding: 80px 25px 28px;
  }
}

.menu--active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  right: 16px;
  left: 16px;
  top: 20px;
  bottom: 20px;
}

.header__contacts--nav {
  display: none !important;
}
@media (max-width: 640px) {
  .header__contacts--nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}


@media (max-width: 640px) {
  .header__contacts--nav .header__mail {
    margin-bottom: 17px;
  }
}
@media (max-width: 640px) {
  .header__contacts--nav .header__tel {
    margin-bottom: 17px;
  }
}
.header__contacts__col{
	display: flex;
	flex-direction: column;
}

.graph-modal {
  background-color: rgba(0, 0, 0, 0.4);
}

.catalog-step {
  margin: 0;
  margin-right: 5px;
  max-width: 460px;
  padding: 50px 32px 54px;
  background: #FFFFFF;
  border: 2px solid #243469;
  -webkit-box-shadow: 4px 4px 40px rgba(36, 52, 105, 0.05);
  box-shadow: 4px 4px 40px rgba(36, 52, 105, 0.05);
  border-radius: 20px 0px 0px 20px;
}
@media (max-width: 1024px) {
  .catalog-step {
    padding: 43px 15px 57px;
  }
}
@media (max-width: 640px) {
  .catalog-step {
    padding: 85px 15px 57px;
  }
}

.catalog-modal {
  margin: 0;
  margin-right: 5px;
  max-width: 855px;
  padding: 44px 38px 57px;
  background: #FFFFFF;
  border: 2px solid #243469;
  -webkit-box-shadow: 4px 4px 40px rgba(36, 52, 105, 0.05);
  box-shadow: 4px 4px 40px rgba(36, 52, 105, 0.05);
  border-radius: 20px 0px 0px 20px;
}
@media (max-width: 1024px) {
  .catalog-modal {
    max-width: 730px;
    padding: 43px 15px 57px;
  }
}
@media (max-width: 640px) {
  .catalog-modal {
    padding: 85px 15px 57px;
  }
}
.catalog-modal__close {
  background-image: url(../img/close.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  width: 41px;
  height: 41px;
  top: 34px;
  right: 24px;
}
.catalog-modal__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 640px) {
  .catalog-modal__count {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.catalog-modal__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: var(--title-color);
  margin: 0;
  margin-bottom: 23px;
}
@media (max-width: 1024px) {
  .catalog-modal__title {
    font-size: 20px;
  }
}
.catalog-modal__title-form {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: var(--primary-color);
  margin: 0;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .catalog-modal__title-form {
    font-size: 20px;
  }
}

.catalog-modal__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 58px;
}
@media (max-width: 1024px) {
  .catalog-modal__descr {
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .catalog-modal__descr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .catalog-modal__spec {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
@media (max-width: 640px) {
  .catalog-modal__spec {
    width: 100%;
  }
}
.catalog-modal__spec-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary-color);
  margin: 0;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .catalog-modal__spec-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.catalog-modal__list {
  max-width: 390px;
  width: 100%;
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .catalog-modal__list {
    margin-bottom: 20px;
	max-width: unset;
  }
}
.catalog-modal__item {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.catalog-modal__item:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .catalog-modal__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 640px) {
  .catalog-modal__item{
    display: flex;
	flex-direction: column;
  }
}
.catalog-modal__item--size {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: right;
  color: var(--primary-color);
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.catalog-modal__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 640px) {
  .catalog-modal__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.catalog-modal__summ {
  font-weight: 500;
  font-size: 32px;
  line-height: 37px;
  margin-right: 10px;
  color: var(--primary-color);
}
@media (max-width: 640px) {
  .catalog-modal__summ {
    margin-bottom: 20px;
  }
}

.catalog-modal__image{
  margin-right: 16px;
}

@media (max-width: 640px) {
  .catalog-modal__image {
    margin-right: 0;
  }
}

.catalog-modal__price-btn {
  position: relative;
  background-image: -o-linear-gradient(331.08deg, #F03A2B -8.89%, #FCC009 189.86%);
  background-image: linear-gradient(118.92deg, #F03A2B -8.89%, #FCC009 189.86%);
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 20px 74px 20px 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
@media (max-width: 640px) {
  .catalog-modal__price-btn {
    width: 100%;
  }
}
.catalog-modal__price-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url(../img/plus.svg);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.catalog-modal__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary-color);
}
@media (max-width: 1024px) {
  .catalog-modal__text {
    font-size: 16px;
  }
}
.catalog-modal__designed {
  margin-bottom: 77px;
}
.catalog-modal__designed-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.catalog-modal__designed-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 640px) {
  .catalog-modal__designed-item {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}
.catalog-modal__designed-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--primary-color);
  margin-left: 46px;
}
@media (max-width: 1024px) {
  .catalog-modal__designed-text {
    font-size: 16px;
  }
}
.catalog-modal__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px;
  position: relative;
  background: #fff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 4px solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(white)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(-8.89%, #F03A2B), color-stop(189.86%, #FCC009)) border-box;
  background: -o-linear-gradient(white, white) padding-box, -o-linear-gradient(top, #F03A2B -8.89%, #FCC009 189.86%) border-box;
  background: linear-gradient(white, white) padding-box, linear-gradient(180deg, #F03A2B -8.89%, #FCC009 189.86%) border-box;
}
.catalog-modal__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-45%);
  -ms-transform: translateY(-45%);
  transform: translateY(-45%);
  width: 61px;
  height: 70px;
  background-image: url(../img/download-btn.svg);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .catalog-modal__btn::after {
    right: 75px;
  }
}
@media (max-width: 576px) {
  .catalog-modal__btn::after {
    right: 0;
  }
}
.catalog-modal__btn-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  background: -o-linear-gradient(331.08deg, #F03A2B -8.89%, #FCC009 189.86%);
  background: linear-gradient(118.92deg, #F03A2B -8.89%, #FCC009 189.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 4px 4px 20px rgba(36, 52, 105, 0.03);
}
@media (max-width: 576px) {
  .catalog-modal__btn-text {
    display: inline-block;
    width: 175px;
    font-size: 16px;
  }
}
.catalog-modal__form-text {
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  color: #C4C4C4;
  margin: 0;
  margin-bottom: 20px;
}
.catalog-modal__form-input {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 2px solid #243469;
  padding: 10px 25px;
  width: 100%;
  margin-bottom: 20px;
}
.catalog-modal__form-input::-webkit-input-placeholder {
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  color: #C4C4C4;
  opacity: 0.4;
}
.catalog-modal__form-input::-moz-placeholder {
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  color: #C4C4C4;
  opacity: 0.4;
}
.catalog-modal__form-input:-ms-input-placeholder {
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  color: #C4C4C4;
  opacity: 0.4;
}
.catalog-modal__form-input::-ms-input-placeholder {
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  color: #C4C4C4;
  opacity: 0.4;
}
.catalog-modal__form-input::placeholder {
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  color: #C4C4C4;
  opacity: 0.4;
}
.catalog-modal__form-input--textarea {
  resize: vertical;
  min-height: 50px;
}

.graph-modal {
  text-align: right;
}

.stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  margin-left: 16px;
}
@media (max-width: 640px) {
  .stepper {
    width: 100%;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
	margin-left: 0;
  }
}
.stepper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 185px;
  height: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.stepper__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid var(--title-color);
  width: 100%;
  height: 100%;
}
.stepper__btn--down {
  border-top-left-radius: 20px;
}
.stepper__btn--up {
  border-bottom-right-radius: 20px;
}
.stepper__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  color: var(--primary-color);
}
.stepper__field {
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid var(--title-color);
  border-right: 1px solid var(--title-color);
  border-top: 2px solid var(--title-color);
  border-bottom: 2px solid var(--title-color);
  width: 100%;
  height: 100%;
  padding-left: 20px;
}
.stepper__input {
  border: none;
  height: 100%;
  outline: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
}
.stepper__btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.header {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  z-index: 2;
}

@media (max-width: 640px) {
  .header {
    top: 30px;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
}
@media (max-width: 1260px) {
  .header__container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 2;
  -ms-flex: 2 1 auto;
  flex: 2 1 auto;
}
@media (max-width: 1260px) {
  .header__contacts {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 640px) {
  .header__contacts {
    display: none;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.header__mail {
  font-weight: 400;
  font-size: 15px;
  line-height: 17px;
  color: var(--light-color);
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  position: relative;
}
.header__mail::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -20px;
  width: 15px;
  height: 12px;
  background-image: url(../img/header-mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
}
.header__mail:hover {
  opacity: 0.7;
}
@media (max-width: 1260px) {
  .header__mail {
    margin-right: 50px;
  }
}
@media (max-width: 1024px) {
  .header__mail {
    margin-right: 32px;
  }
}
@media (max-width: 640px) {
  .header__mail {
    margin-left: 20px;
  }
}
.header__tel {
  font-weight: 700;
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
  color: var(--light-color);
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  position: relative;
}
.header__tel::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -20px;
  width: 12px;
  height: 13px;
  background-image: url(../img/header-tel.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
}
.header__tel:hover {
  opacity: 0.7;
}
@media (max-width: 1260px) {
  .header__tel {
    margin-right: 50px;
  }
}
@media (max-width: 1024px) {
  .header__tel {
    margin-right: 32px;
  }
}
@media (max-width: 640px) {
  .header__tel {
    margin-left: 20px;
  }
}
.header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* @media (max-width: 640px) { */
  /* .header__social { */
    /* margin-left: -20px; */
  /* } */
/* } */

.header__social-item {
  width: 19px;
  height: 19px;
  background-color: var(--light-color);
  border-radius: 50%;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.header__social-item:hover {
  opacity: 0.7;
}
.header__social-item:not(:last-child) {
  margin-right: 7px;
}
.header__social-link {
  display: block;
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
}
.header__social-link--tg {
  width: 100%;
  height: 100%;
  -webkit-transform: translate(19%, -4%);
  -ms-transform: translate(19%, -4%);
  transform: translate(19%, -4%);
}
.header__social-link--wa {
  width: 100%;
  height: 100%;
  -webkit-transform: translate(25%, -4%);
  -ms-transform: translate(25%, -4%);
  transform: translate(25%, -4%);
}
.header__social-link--vb {
  width: 100%;
  height: 100%;
  -webkit-transform: translate(24%, 0%);
  -ms-transform: translate(24%, 0%);
  transform: translate(24%, 0%);
}

.logo__image {
    width: 250px;
}
@media (max-width: 1024px) {
  .logo__image {
    width: 180px;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 2;
  -ms-flex: 2 1 auto;
  flex: 2 1 auto;
  margin-left: 30px;
}
@media (max-width: 640px) {
  .nav {
	align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .nav {
    margin-left: 0;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 640px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 35px;
	align-items: flex-start;
  }
}
.nav__item {
  max-width: 200px;
}
@media (max-width: 1600px) {
  .nav__item {
    max-width: 180px;
  }
}
.nav__item:not(:last-child) {
  margin-right: 48px;
}
@media (max-width: 1600px) {
  .nav__item:not(:last-child) {
    margin-right: 40px;
  }
}
@media (max-width: 640px) {
  .nav__item:not(:last-child) {
    margin-right: 0;
  }
  .nav__item:not(:last-child):not(:last-child) {
    margin-bottom: 25px;
  }
}
.nav__link {
  font-weight: 700;
  font-size: 15px;
  line-height: 17px;
  color: var(--light-color);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 640px) {
  .nav__link {
    font-weight: 700;
    font-size: 15px;
    line-height: 26px;
  }
}
.nav__link:hover {
  opacity: 0.7;
}

.hero {
  padding-top: 52px;
  padding-bottom: 105px;
}
@media (max-width: 1600px) {
  .hero {
    padding-top: 45px;
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
.hero__container {
  background-image: url(../img/hero-bg-new2.jpg);
  background-size: cover;
  background-position:  70% 50%;
  background-repeat: no-repeat;
  position: relative;
  height: 560px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 1600px) {
  .hero__container {
    height: 581px;
  }
}
@media (max-width: 1260px) {
  .hero__container {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media (max-width: 1024px) {
  .hero__container {
    max-height: 351px;
  }
}
@media (max-width: 576px) {
  .hero__container {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.hero__container::after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 50px;
  max-width: 190px;
  max-height: 190px;
  width: 100%;
  height: 100%;
  background-color: #F03A2B;
  -webkit-filter: blur(100px);
  filter: blur(100px);
}
@media (max-width: 640px) {
  .hero__container::after {
    z-index: -1;
	display: none;
  }
}
.hero__wrapper {
  height: 100%;
  position: relative;
  background-clip: padding-box;
  border: solid 5px transparent;
  border-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.hero__wrapper::before {
  content: "";
  position: absolute;
  top: -22px;
  right: 0;
  bottom: 23px;
  left: -38px;
  z-index: -3;
  margin: -5px;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#FCC009), to(#F03A2B));
  background: -o-linear-gradient(left, #FCC009, #F03A2B);
  background: linear-gradient(to right, #FCC009, #F03A2B);
  z-index: -10;
}
@media (max-width: 640px) {
  .hero__wrapper::before {
    display: none;
  }
}
.hero__wrapper::after {
  content: "";
  position: absolute;
  top: -23px;
  right: 0;
  bottom: 22px;
  left: -39px;
  z-index: 2;
  border-radius: inherit;
  background: #fff;
  z-index: -10;
}
@media (max-width: 640px) {
  .hero__wrapper::after {
    display: none;
  }
}
.hero__wrapper-second {
  height: 100%;
  position: relative;
  background-clip: padding-box;
  border: solid 5px transparent;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.hero__wrapper-second::before {
  content: "";
  position: absolute;
  top: 17px;
  right: -44px;
  bottom: -28px;
  left: 0;
  z-index: 0;
  margin: -5px;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#2D3A94), to(#51ABE3));
  background: -o-linear-gradient(left, #2D3A94, #51ABE3);
  background: linear-gradient(to right, #2D3A94, #51ABE3);
  z-index: -10;
}
@media (max-width: 1366px) {
  .hero__wrapper-second::before {
    left: 40px;
    top: 34px;
  }
}
@media (max-width: 768px) {
  .hero__wrapper-second::before {
    left: -10px;
    top: 15px;
  }
}
@media (max-width: 640px) {
  .hero__wrapper-second::before {
    display: none;
  }
}
.hero__wrapper-second::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -45px;
  bottom: -29px;
  left: 0;
  z-index: 0;
  border-radius: inherit;
  background: #fff;
  z-index: -10;
}
@media (max-width: 1366px) {
  .hero__wrapper-second::after {
    left: 40px;
    top: 34px;
  }
}
@media (max-width: 768px) {
  .hero__wrapper-second::after {
    left: -10px;
    top: 15px;
  }
}
@media (max-width: 640px) {
  .hero__wrapper-second::after {
    display: none;
  }
}
.hero__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 70px;
  text-transform: uppercase;
  color: var(--light-color);
  position: relative;
  top: 36%;
  max-width: 900px;
  left: 100px;
  z-index: 0;
  margin: 0;
}
@media (max-width: 1600px) {
  .hero__title {
    top: 33%;
  }
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 34px;
    line-height: 50px;
    left: 60px;
    max-width: 590px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .hero__title {
    font-size: 26px;
    line-height: 36px;
    left: 19px;
    top: 122px;
    margin-left: -27px;
  }
}
.hero__btn {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: var(--light-color);
  text-transform: lowercase;
  position: absolute;
  right: 16%;
  bottom: 87px;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.hero__btn:hover {
  opacity: 0.7;
}
@media (max-width: 1600px) {
  .hero__btn {
    right: 19%;
  }
}
@media (max-width: 1024px) {
  .hero__btn {
    font-size: 22px;
    bottom: 34px;
    right: 155px;
  }
}

.hero__btn::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -54%;
  width: 87px;
  height: 60px;
  background-image: -o-linear-gradient(331.08deg, #F03A2B -8.89%, #FCC009 189.86%);
  background-image: linear-gradient(118.92deg, #F03A2B -8.89%, #FCC009 189.86%);
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 1024px) {
  .hero__btn::before {
    width: 65px;
    height: 45px;
  }
}
.hero__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: -43%;
  width: 30px;
  height: 30px;
  background-image: url(../img/save.svg);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .hero__btn::after {
    width: 22px;
    height: 22px;
    top: -3px;
    right: -45%;
  }
}
@media (max-width: 576px) {
  .hero__btn::after {
    right: 20px;
  }
}

@media (max-width: 576px) {
  .hero__btn {
    font-size: 16px;
    bottom: 24px;
    right: 7%;
	width: 100%;
	padding-left: calc(7% + 15px);
  }
  .hero__btn:before {
	right: -7%;
	top: -9px;
	width: 100%;
	z-index: -1;

  }
  .hero__btn::after{
	right: 0px;
	top: 4px;
  }
}
.compare {
  padding-bottom: 174px;
}
@media (max-width: 1024px) {
  .compare {
    padding-bottom: 157px;
  }
}
@media (max-width: 576px) {
  .compare {
    padding-bottom: 33px;
  }
}
.compare__container {
  background-image: url(../img/ogn.png);
  background-size: 597px 698px;
  background-position: center 95px;
  background-repeat: no-repeat;
}
@media (max-width: 1600px) {
  .compare__container {
    background-size: 460px 539px;
    background-position: center 130px;
  }
}
@media (max-width: 1024px) {
  .compare__container {
    background-size: 272px 320px;
    background-position: center 155px;
  }
}
@media (max-width: 640px) {
  .compare__container {
    position: relative;
    z-index: 0;
  }
  .compare__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.8;
  }
}
.compare__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding-bottom: 35px;
}
@media (max-width: 640px) {
  .compare__wrapper {
    z-index: 1;
  }
}
.compare__title {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 37px;
  text-align: center;
  color: var(--primary-color);
  margin: 0;
  margin-bottom: 39px;
}
@media (max-width: 1600px) {
  .compare__title {
    margin-bottom: 54px;
  }
}
@media (max-width: 1024px) {
  .compare__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 28px;
  }
}
@media (max-width: 640px) {
  .compare__title {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 640px) {
  .compare__left {
    width: 100%;
    position: relative;
  }
}
.compare__left .compare__item::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 150%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#2D3A94), to(#51ABE3));
  background: -o-linear-gradient(left, #2D3A94, #51ABE3);
  background: linear-gradient(90deg, #2D3A94, #51ABE3);
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .compare__left .compare__item::before {
    width: 106%;
    bottom: -8px;
  }
}
@media (max-width: 640px) {
  .compare__left .compare__item::before {
    width: 320%;
  }
}
.compare__left .compare__item::after {
  content: "";
}
@media (max-width: 640px) {
  .compare__left .compare__item::after {
    display: none;
  }
}
@media (max-width: 1600px) {
  .compare__left .compare__item:nth-child(n+5)::after {
    content: "";
    position: absolute;
    bottom: 43px;
    right: -101%;
    width: 60%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#51ABE3), to(#2D3A94));
    background: -o-linear-gradient(left, #51ABE3, #2D3A94);
    background: linear-gradient(90deg, #51ABE3, #2D3A94);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .compare__left .compare__item:nth-child(8)::before {
    content: "";
    width: 99%;
  }
  .compare__left .compare__item:nth-child(8)::after {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -68%;
    width: 70%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#51ABE3), to(#2D3A94));
    background: -o-linear-gradient(left, #51ABE3, #2D3A94);
    background: linear-gradient(90deg, #51ABE3, #2D3A94);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-10.5deg);
    -ms-transform: rotate(-10.5deg);
    transform: rotate(-10.5deg);
  }
  .compare__left .compare__item:nth-child(9)::before {
    content: "";
    width: 99%;
  }
  .compare__left .compare__item:nth-child(9)::after {
    content: "";
    position: absolute;
    bottom: 21px;
    right: -66%;
    width: 70%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#51ABE3), to(#2D3A94));
    background: -o-linear-gradient(left, #51ABE3, #2D3A94);
    background: linear-gradient(90deg, #51ABE3, #2D3A94);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-23.5deg);
    -ms-transform: rotate(-23.5deg);
    transform: rotate(-23.5deg);
  }
}
@media (max-width: 1024px) {
  .compare__left .compare__item:nth-child(n+3):nth-child(-n+5)::before {
    width: 260%;
  }
  .compare__left .compare__item:nth-child(2)::after {
    content: "";
    position: absolute;
    bottom: -34px;
    right: -104%;
    width: 100%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#51ABE3), to(#2D3A94));
    background: -o-linear-gradient(left, #51ABE3, #2D3A94);
    background: linear-gradient(90deg, #51ABE3, #2D3A94);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(16deg);
    -ms-transform: rotate(16deg);
    transform: rotate(16deg);
  }
  .compare__left .compare__item:nth-child(5)::after {
    content: "";
    display: none;
  }
  .compare__left .compare__item:nth-child(6)::after {
    content: "";
    position: absolute;
    bottom: 23px;
    right: -123%;
    width: 120%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#51ABE3), to(#2D3A94));
    background: -o-linear-gradient(left, #51ABE3, #2D3A94);
    background: linear-gradient(90deg, #51ABE3, #2D3A94);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-16deg);
    -ms-transform: rotate(-16deg);
    transform: rotate(-16deg);
  }
  .compare__left .compare__item:nth-child(7)::after {
    content: "";
    position: absolute;
    bottom: 39px;
    right: -120%;
    width: 120%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#51ABE3), to(#2D3A94));
    background: -o-linear-gradient(left, #51ABE3, #2D3A94);
    background: linear-gradient(90deg, #51ABE3, #2D3A94);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  .compare__left .compare__item:nth-child(8)::before {
    content: "";
    width: 106%;
  }
  .compare__left .compare__item:nth-child(8)::after {
    content: "";
    position: absolute;
    bottom: 62px;
    right: -121%;
    width: 127%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#51ABE3), to(#2D3A94));
    background: -o-linear-gradient(left, #51ABE3, #2D3A94);
    background: linear-gradient(90deg, #51ABE3, #2D3A94);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-36deg);
    -ms-transform: rotate(-36deg);
    transform: rotate(-36deg);
  }
  .compare__left .compare__item:nth-child(9)::before {
    content: "";
    width: 106%;
  }
  .compare__left .compare__item:nth-child(9)::after {
    content: "";
    position: absolute;
    bottom: 86px;
    right: -133%;
    width: 147%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#51ABE3), to(#2D3A94));
    background: -o-linear-gradient(left, #51ABE3, #2D3A94);
    background: linear-gradient(90deg, #51ABE3, #2D3A94);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-43deg);
    -ms-transform: rotate(-43deg);
    transform: rotate(-43deg);
  }
}
@media (max-width: 640px) {
  .compare__left .compare__item {
    padding-top: 20px;
  }
  .compare__left .compare__item:nth-child(n+3):nth-child(-n+5)::before {
    width: 320%;
  }
  .compare__left .compare__item:nth-child(8)::before {
    width: 320%;
  }
  .compare__left .compare__item:nth-child(9)::before {
    width: 320%;
  }
}
.compare__list-title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--title-color);
  margin: 0;
  margin-bottom: 42px;
}
@media (max-width: 1024px) {
  .compare__list-title {
    margin-bottom: 5px;
  }
}
.compare__item {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: var(--primary-color);
  position: relative;
}
@media (max-width: 1600px) {
  .compare__item {
    font-size: 16px;
    line-height: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .compare__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.compare__item:not(:last-child) {
  margin-bottom: 52px;
}
@media (max-width: 1600px) {
  .compare__item:not(:last-child) {
    margin-bottom: 37px;
  }
}
@media (max-width: 1024px) {
  .compare__item:not(:last-child) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
  }
}
.compare__item--bold {
  font-weight: 700;
  font-size: 24px;
  padding-left: 20px;
}
@media (max-width: 1600px) {
  .compare__item--bold {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .compare__item--bold {
    padding-left: 0;
    font-size: 20px;
  }
}
@media (max-width: 1600px) {
  .compare__item-name {
    max-width: 160px;
  }
}
@media (max-width: 1024px) {
  .compare__item-name {
    max-width: 100%;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 21px;
  }
}
@media (max-width: 640px) {
  .compare__item-name {
    position: absolute;
    left: 70px;
    top: 0;
    text-align: center;
    width: 100%;
  }
}
.compare__right {
  text-align: right;
}
@media (max-width: 1600px) {
  .compare__right .compare__item {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 1024px) {
  .compare__right .compare__item {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .compare__right .compare__item:nth-child(n+3):nth-child(-n+5)::before {
    width: 260%;
  }
}
@media (max-width: 640px) {
  .compare__right .compare__item {
    padding-top: 20px;
  }
}
@media (max-width: 640px) {
  .compare__right .compare__item .compare__item-name {
    font-size: 0;
    line-height: 16;
  }
}
.compare__right .compare__item::before {
  content: "";
  position: absolute;
  bottom: -22px;
  right: 0;
  width: 150%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#FCC009), to(#F14624));
  background: -o-linear-gradient(left, #FCC009, #F14624);
  background: linear-gradient(90deg, #FCC009, #F14624);
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .compare__right .compare__item::before {
    width: 106%;
    bottom: -8px;
  }
}
@media (max-width: 640px) {
  .compare__right .compare__item::before {
    display: none;
  }
}
.compare__right .compare__item::after {
  content: "";
}
@media (max-width: 640px) {
  .compare__right .compare__item::after {
    display: none;
  }
}
@media (max-width: 1600px) {
  .compare__right .compare__item:nth-child(n+5)::after {
    content: "";
    position: absolute;
    bottom: 91px;
    left: -434px;
    width: 99%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#F14624), to(#FCC009));
    background: -o-linear-gradient(left, #F14624, #FCC009);
    background: linear-gradient(90deg, #F14624, #FCC009);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .compare__right .compare__item:nth-child(8)::before {
    content: "";
    width: 99%;
  }
  .compare__right .compare__item:nth-child(8)::after {
    content: "";
    position: absolute;
    bottom: 16.5px;
    left: -310px;
    width: 99%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#F14624), to(#FCC009));
    background: -o-linear-gradient(left, #F14624, #FCC009);
    background: linear-gradient(90deg, #F14624, #FCC009);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(14deg);
    -ms-transform: rotate(14deg);
    transform: rotate(14deg);
  }
  .compare__right .compare__item:nth-child(9)::before {
    content: "";
    width: 99%;
  }
  .compare__right .compare__item:nth-child(9)::after {
    content: "";
    position: absolute;
    bottom: 53px;
    left: -296px;
    width: 99%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#F14624), to(#FCC009));
    background: -o-linear-gradient(left, #F14624, #FCC009);
    background: linear-gradient(90deg, #F14624, #FCC009);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(28deg);
    -ms-transform: rotate(28deg);
    transform: rotate(28deg);
  }
}
@media (max-width: 1024px) {
  .compare__right .compare__item:nth-child(2)::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: -101%;
    width: 100%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#FCC009), to(#F14624));
    background: -o-linear-gradient(left, #FCC009, #F14624);
    background: linear-gradient(90deg, #FCC009, #F14624);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(163deg);
    -ms-transform: rotate(163deg);
    transform: rotate(163deg);
  }
  .compare__right .compare__item:nth-child(5)::after {
    content: "";
    display: none;
  }
  .compare__right .compare__item:nth-child(6)::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: -104%;
    width: 100%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#FCC009), to(#F14624));
    background: -o-linear-gradient(left, #FCC009, #F14624);
    background: linear-gradient(90deg, #FCC009, #F14624);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-171deg);
    -ms-transform: rotate(-171deg);
    transform: rotate(-171deg);
  }
  .compare__right .compare__item:nth-child(7)::after {
    content: "";
    position: absolute;
    bottom: 33px;
    left: -108%;
    width: 108%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#FCC009), to(#F14624));
    background: -o-linear-gradient(left, #FCC009, #F14624);
    background: linear-gradient(90deg, #FCC009, #F14624);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-156deg);
    -ms-transform: rotate(-156deg);
    transform: rotate(-156deg);
  }
  .compare__right .compare__item:nth-child(8)::before {
    content: "";
    width: 105%;
  }
  .compare__right .compare__item:nth-child(8)::after {
    content: "";
    position: absolute;
    bottom: 59px;
    left: -121%;
    width: 128%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#FCC009), to(#F14624));
    background: -o-linear-gradient(left, #FCC009, #F14624);
    background: linear-gradient(90deg, #FCC009, #F14624);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-146deg);
    -ms-transform: rotate(-146deg);
    transform: rotate(-146deg);
  }
  .compare__right .compare__item:nth-child(9)::before {
    content: "";
    width: 105%;
  }
  .compare__right .compare__item:nth-child(9)::after {
    content: "";
    position: absolute;
    bottom: 83px;
    left: -128%;
    width: 142%;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#FCC009), to(#F14624));
    background: -o-linear-gradient(left, #FCC009, #F14624);
    background: linear-gradient(90deg, #FCC009, #F14624);
    z-index: -1;
    opacity: 0.5;
    -webkit-transform: rotate(-137deg);
    -ms-transform: rotate(-137deg);
    transform: rotate(-137deg);
  }
}

.decore {
  height: 100%;
  position: relative;
  border-top-left-radius: 20px;
}
.decore::before {
  content: "";
  position: absolute;
  top: -22px;
  right: 0;
  bottom: 150px;
  left: -38px;
  z-index: -3;
  border: solid 5px;
  border-right-width: 0;
  margin: -5px;
  -o-border-image: -o-linear-gradient(left, #FCC009, #F03A2B) 10;
  border-image: -webkit-gradient(linear, left top, right top, from(#FCC009), to(#F03A2B)) 10;
  border-image: linear-gradient(to right, #FCC009, #F03A2B) 10;
  z-index: -1;
  max-width: calc((100% - 1878px) / 2 + 1700px);
  margin-left: auto;
}
@media (max-width: 1600px) {
  .decore::before {
    left: 59px;
  }
}
@media (max-width: 640px) {
  .decore::before {
    display: none;
  }
}
.decore::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 0;
  bottom: 94px;
  left: 0;
  z-index: 0;
  border: solid 5px;
  border-left-width: 0;
  margin: -5px;
  -o-border-image: -o-linear-gradient(left, #2D3A94, #51ABE3) 10;
  border-image: -webkit-gradient(linear, left top, right top, from(#2D3A94), to(#51ABE3)) 10;
  border-image: linear-gradient(to right, #2D3A94, #51ABE3) 10;
  z-index: -1;
  max-width: calc((100% - 1890px) / 2 + 1700px);
  margin-right: auto;
}
@media (max-width: 1600px) {
  .decore::after {
    right: 57px;
  }
}
@media (max-width: 1366px) {
  .decore::after {
    bottom: 73px;
  }
}
@media (max-width: 640px) {
  .decore::after {
    display: none;
  }
}

.decore--position {
  position: relative;
}
.decore--position::before {
  content: "";
  top: 76px;
  bottom: 73px;
}
.decore--position::after {
  content: "";
  top: 132px;
  bottom: 46px;
}

.benefit {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 1600px) {
  .benefit {
    padding-bottom: 110px;
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .benefit {
    padding-bottom: 66px;
  }
}
.benefit__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 36px;
}
@media (max-width: 1024px) {
  .benefit__list {
    gap: 30px 23px;
  }
}
@media (max-width: 576px) {
  .benefit__list {
    gap: 25px 23px;
  }
}
.benefit__item {
  background-color: var(--title-color);
  padding: 55px 45px 35px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  min-height: 365px;
  position: relative;
}
@media (max-width: 1600px) {
  .benefit__item {
    padding: 50px 27px 35px;
  }
}
@media (max-width: 1024px) {
  .benefit__item {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
@media (max-width: 640px) {
  .benefit__item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    padding: 50px 15px 35px;
  }
}
@media (max-width: 576px) {
  .benefit__item:nth-child(n+5) .benefit__image {
    left: 8px;
  }
}
.benefit__image {
  position: absolute;
  top: 35px;
  left: 45px;
}
@media (max-width: 1600px) {
  .benefit__image {
    left: 23px;
  }
}
@media (max-width: 1024px) {
  .benefit__image {
    width: 60px;
    height: 60px;
  }
}
.benefit__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--light-color);
  margin: 0;
  margin-bottom: 35px;
  text-align: center;
  margin-left: 55px;
}
@media (max-width: 1600px) {
  .benefit__item-title {
    font-size: 22px;
    line-height: 25px;
  }
}
@media (max-width: 1024px) {
  .benefit__item-title {
    font-size: 20px;
    line-height: 23px;
  }
}
.benefit__item-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
  margin: 0;
}
@media (max-width: 1024px) {
  .benefit__item-text {
    font-size: 16px;
    line-height: 28px;
  }
}

.catalog {
  padding-bottom: 90px;
}
@media (max-width: 576px) {
  .catalog {
    padding-bottom: 60px;
  }
}
.catalog__container {
  position: relative;
}
/* .catalog__container::before { */
  /* content: ""; */
  /* position: absolute; */
  /* bottom: -2%; */
  /* right: -15%; */
  /* max-width: 482px; */
  /* max-height: 482px; */
  /* width: 100%; */
  /* height: 100%; */
  /* background-color: var(--title-color); */
  /* -webkit-filter: blur(1000px); */
  /* filter: blur(1000px); */
/* } */
/* @media (max-width: 576px) { */
  /* .catalog__container::before { */
    /* display: none; */
  /* } */
/* } */
.catalog__container::after {
  content: "";
  position: absolute;
  top: -2%;
  left: -15%;
  max-width: 482px;
  max-height: 482px;
  width: 100%;
  height: 100%;
  background-color: var(--title-color);
  -webkit-filter: blur(1000px);
  filter: blur(1000px);
}
@media (max-width: 576px) {
  .catalog__container::after {
    display: none;
  }
}
.catalog__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  text-align: center;
  color: var(--primary-color);
  text-align: center;
  margin: 0;
  margin-bottom: 34px;
}
@media (max-width: 1024px) {
  .catalog__title {
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 27px;
  }
}

.catalog-card__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: var(--title-color);
  margin: 0;
  margin-bottom: 51px;
  position: relative;
}
@media (max-width: 1024px) {
  .catalog-card__title {
    font-size: 22px;
    line-height: 25px;
  }
}
@media (max-width: 576px) {
  .catalog-card__title {
    margin-bottom: 35px;
  }
}
.catalog-card__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#2D3A94), to(#51ABE3));
  background-image: -o-linear-gradient(left, #2D3A94, #51ABE3);
  background-image: linear-gradient(90deg, #2D3A94, #51ABE3);
  z-index: -1;
}
@media (max-width: 576px) {
  .catalog-card__title::before {
    display: none;
  }
}
.catalog-card__title-decore {
  background-color: #fff;
  padding: 0 58px;
}
@media (max-width: 576px) {
  .catalog-card__title-decore {
    padding: 0;
  }
}
.catalog-card__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 25px 36px;
}
@media (max-width: 1260px) {
  .catalog-card__list {
    gap: 25px 20px;
  }
}
.catalog-card__item {
  display: flex;
  flex-direction: column;

  -ms-grid-column-span: 4;
  grid-column: 4 span;
  background: var(--light-color);
  border: 2px solid #243469;
  -webkit-box-shadow: 4px 4px 40px rgba(36, 52, 105, 0.05);
  box-shadow: 4px 4px 40px rgba(36, 52, 105, 0.05);
  border-radius: 20px;
  padding: 40px 45px 65px;
}
@media (max-width: 1600px) {
  .catalog-card__item {
    padding: 40px 28px 40px;
  }
}
@media (max-width: 1260px) {
  .catalog-card__item {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
    padding: 27px 23px 23px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .catalog-card__item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    padding: 27px 10px 23px;
  }
}
@media (max-width: 576px) {
  .catalog-card__item {
    text-align: start;
  }
}
.catalog-card__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: var(--title-color);
  margin: 0;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .catalog-card__item-title {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  .catalog-card__item-title {
    margin-bottom: 18px;
  }
}
.catalog-card__item-image {
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .catalog-card__item-image {
    margin-bottom: 10px;
  }
}
.catalog-card__item-descr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
}
@media (max-width: 1600px) {
  .catalog-card__item-descr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .catalog-card__item-descr {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.catalog-card__item-sum {
  font-weight: 500;
  font-size: 32px;
  line-height: 37px;
  color: var(--primary-color);
}
@media (max-width: 1600px) {
  .catalog-card__item-btns {
    margin-top: 25px;
  }
}
@media (max-width: 576px) {
  .catalog-card__item-btns {
    margin-top: 28px;
  }
}
.catalog-card__item-info {
  width: 87px;
  height: 60px;
  position: relative;
  background: #fff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 4px solid transparent;
  background: -o-linear-gradient(white, white) padding-box, -o-linear-gradient(331.08deg, #F03A2B -8.89%, #FCC009 189.86%) border-box;
  background: linear-gradient(white, white) padding-box, linear-gradient(118.92deg, #F03A2B -8.89%, #FCC009 189.86%) border-box;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.catalog-card__item-info:hover {
  opacity: 0.7;
}
@media (max-width: 1600px) {
  .catalog-card__item-info {
    width: 145px;
  }
}
@media (max-width: 1024px) {
  .catalog-card__item-info {
    width: 140px;
  }
}
@media (max-width: 768px) {
  .catalog-card__item-info {
    width: 115px;
  }
}
@media (max-width: 576px) {
  .catalog-card__item-info {
    width: 125px;
  }
}
.catalog-card__item-info::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 38px;
  background-image: url(../img/info.svg);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.catalog-card__item-plus {
  width: 87px;
  height: 60px;
  position: relative;
  background-image: -o-linear-gradient(331.08deg, #F03A2B -8.89%, #FCC009 189.86%);
  background-image: linear-gradient(118.92deg, #F03A2B -8.89%, #FCC009 189.86%);
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-left: 10px;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.catalog-card__item-plus:hover {
  opacity: 0.7;
}
@media (max-width: 1600px) {
  .catalog-card__item-plus {
    width: 145px;
  }
}
@media (max-width: 768px) {
  .catalog-card__item-plus {
    width: 115px;
  }
}
@media (max-width: 576px) {
  .catalog-card__item-plus {
    width: 125px;
  }
}
.catalog-card__item-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-image: url(../img/plus.svg);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.catalog-card__btns {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  margin-bottom: 55px;
  text-align: center;
}
@media (max-width: 1024px) {
  .catalog-card__btns {
    margin-bottom: 42px;
  }
}
.catalog-card__btn {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--title-color);
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.catalog-card__btn:hover {
  opacity: 0.7;
}
@media (max-width: 576px) {
  .catalog-card__btn {
    font-size: 18px;
    line-height: 28px;
  }
}
.catalog-card__save {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  color: var(--light-color);
  display: block;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: var(--title-color);
  padding: 20px 0;
  position: relative;
}
@media (max-width: 1024px) {
  .catalog-card__save {
    font-size: 22px;
    line-height: 25px;
  }
}
.catalog-card__save::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #F03A2B;
  -webkit-filter: blur(300px);
  filter: blur(300px);
}

.icon_more {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.icon_more,
.image-down {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.image-up {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.innovate {
  position: relative;
  padding-bottom: 94px;
}
@media (max-width: 576px) {
  .innovate {
    padding-bottom: 0;
  }
}
.innovate__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 37px;
  text-align: center;
  color: var(--primary-color);
  margin: 0;
  margin-bottom: 55px;
}
@media (max-width: 1024px) {
  .innovate__title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .innovate__title {
    margin-bottom: 30px;
  }
}
.innovate__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 55px 36px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .innovate__list {
    gap: 37px 20px;
  }
}
.innovate__item {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}
@media (max-width: 1024px) {
  .innovate__item {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
}
@media (max-width: 576px) {
  .innovate__item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}
.innovate__item-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: var(--primary-color);
  text-align: center;
  margin: 0;
}
@media (max-width: 1024px) {
  .innovate__item-title {
    font-size: 22px;
    line-height: 25px;
  }
}
.innovate__btns {
  text-align: center;
}
.innovate__btn {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: var(--title-color);
}
@media (max-width: 576px) {
  .innovate__btn {
    font-size: 18px;
    line-height: 28px;
  }
}

.video {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: rgba(42, 41, 40, 0.4);
}
@media (max-width: 1600px) {
  .video {
    height: 245px;
  }
}
@media (max-width: 576px) {
  .video {
    height: 300px;
  }
}
.video--visible {
  position: relative;
}
.video--visible::before {
  /*content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 41, 40, 0.4);
  z-index: 1;*/
}
.video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 125px;
  height: 90px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--color-light);
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  z-index: 2;
}
@media (max-width: 1024px) {
  .video__play {
    width: 65px;
    height: 45px;
  }
}
.video__play:hover {
  opacity: 0.7;
}
.video__play--hidden {
  display: none;
}

.about {
  padding-top: 50px;
}
@media (max-width: 1600px) {
  .about {
    padding-top: 78px;
  }
}
@media (max-width: 1024px) {
  .about {
    padding-top: 45px;
  }
}
@media (max-width: 576px) {
  .about {
    padding-top: 27px;
  }
}
.about__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 37px;
  text-align: center;
  color: var(--primary-color);
  margin: 0;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .about__title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .about__title {
    margin-bottom: 20px;
  }
}
.about__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary-color);
  margin: 0;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .about__text {
    font-size: 16px;
    line-height: 30px;
  }
}
.about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 90px;
}
@media (max-width: 1600px) {
  .about__list {
    margin-top: 65px;
  }
}
@media (max-width: 1024px) {
  .about__list {
    margin-top: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .about__list {
    margin-top: 55px;
  }
}
.about__item {
  max-width: 335px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__item {
    width: 100%;
  }
  .about__item:not(:last-child) {
    margin-bottom: 50px;
  }
}
.about__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--primary-color);
  padding-left: 40px;
  margin: 0;
}
@media (max-width: 1024px) {
  .about__name {
    font-size: 22px;
    line-height: 30px;
  }
}

.cert {
  padding-bottom: 143px;
}
@media (max-width: 1024px) {
  .cert {
    padding-bottom: 108px;
  }
}
@media (max-width: 640px) {
  .cert {
    margin-bottom: 135px;
  }
}
.cert__container {
  position: relative;
  max-width: 1555px;
}
@media (max-width: 1600px) {
  .cert__container {
    max-width: 1300px;
  }
}
.cert__container::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -35%;
  max-width: 482px;
  max-height: 482px;
  width: 100%;
  height: 100%;
  background-color: var(--title-color);
  -webkit-filter: blur(400px);
  filter: blur(400px);
}
.cert__slider {
  padding-top: 60px;
  padding-right: 50px;
  margin-left: 23px;
}
@media (max-width: 1600px) {
  .cert__slider {
    margin-left: 57px;
    padding-right: 25px;
  }
}
@media (max-width: 1024px) {
  .cert__slider {
    margin-left: -4px;
  }
}
@media (max-width: 640px) {
  .cert__slider {
    padding-right: 20px;
  }
}
.cert__slider-btn {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 87px;
  height: 60px;
  position: absolute;
  top: 53.5%;
  z-index: 10;
}
@media (max-width: 576px) {
  .cert__slider-btn {
    top: 104%;
  }
}
.cert__slider-btn--prev {
  background-image: url(../img/arr-left.png);
  left: -10px;
}
@media (max-width: 1600px) {
  .cert__slider-btn--prev {
    left: 0;
  }
}
@media (max-width: 576px) {
  .cert__slider-btn--prev {
    left: 32px;
  }
}
.cert__slider-btn--next {
  background-image: url(../img/arr-right.png);
  right: -23px;
}
@media (max-width: 1600px) {
  .cert__slider-btn--next {
    right: 0;
  }
}
@media (max-width: 576px) {
  .cert__slider-btn--next {
    right: 32px;
  }
}
.cert__slide {
  position: relative;
  padding-top: 70px;
}
.cert__slide::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 39px;
  max-width: 333px;
  max-height: 452px;
  width: 104%;
  height: 100%;
  background-image: url(../img/line-top-small.svg);
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 1024px) {
  .cert__slide::before {
    left: 32px;
  }
}
@media (max-width: 640px) {
  .cert__slide::before {
    left: 15px;
    width: 102%;
    height: 85%;
  }
}

@media (max-width: 1600px) {
  .cert-image {
    width: 330px;
  }
}
@media (max-width: 1024px) {
  .cert-image {
    width: 315px;
  }
}

.contacts__container {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: var(--title-color);
  padding: 40px 60px 53px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1600px) {
  .contacts__container {
    padding: 34px 48px 53px;
  }
}
@media (max-width: 1024px) {
  .contacts__container {
    padding: 34px 48px 25px;
  }
}
@media (max-width: 640px) {
  .contacts__container {
    padding: 24px 20px 20px;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.contacts__container::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -24px;
  width: 410px;
  height: 450px;
  background-image: url(../img/cont-logo.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (max-width: 1600px) {
  .contacts__container::before {
    top: -74px;
    width: 358px;
    height: 395px;
  }
}
@media (max-width: 1024px) {
  .contacts__container::before {
    width: 318px;
    height: 351px;
    top: -35px;
    right: 26px;
  }
}
@media (max-width: 576px) {
  .contacts__container::before {
    width: 250px;
    height: 275px;
    top: 155px;
    right: -85px;
  }
}
.contacts__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 37px;
  text-align: center;
  color: var(--light-color);
  margin: 0;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .contacts__title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 640px) {
  .contacts__title {
    margin-bottom: 15px;
  }
}
.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 640px) {
  .contacts__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.contacts__col {
  max-width: 260px;
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .contacts__col {
    max-width: 190px;
  }
}
@media (max-width: 640px) {
  .contacts__col {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.contacts__col-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 190px;
  max-width: 625px;
  width: 100%;
}
@media (max-width: 1600px) {
  .contacts__col-wrapper {
    margin-left: 60px;
    max-width: 505px;
  }
}
@media (max-width: 1024px) {
  .contacts__col-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 45px;
  }
}
@media (max-width: 640px) {
  .contacts__col-wrapper {
    margin-left: 0;
  }
}
.contacts__col-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: var(--light-color);
  margin: 0;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .contacts__col-title {
    font-size: 16px;
    line-height: 28px;
  }
}
.contacts__col-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: var(--light-color);
  font-style: normal;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.contacts__col-text:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .contacts__col-text {
    font-size: 16px;
    line-height: 28px;
  }
}
.contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 12px;
}
.contacts__social-item {
  width: 30px;
  height: 30px;
  background-image: -o-linear-gradient(331.08deg, #F03A2B -8.89%, #FCC009 189.86%);
  background-image: linear-gradient(118.92deg, #F03A2B -8.89%, #FCC009 189.86%);
  border-radius: 50%;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.contacts__social-item:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .contacts__social-item {
    width: 20px;
    height: 20px;
  }
}
.contacts__social-item:not(:last-child) {
  margin-right: 12px;
}
.contacts__social-link {
  display: block;
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
@media (max-width: 1024px) {
  .contacts__social-link {
    -webkit-transform: translate(42%, 15%);
    -ms-transform: translate(42%, 15%);
    transform: translate(42%, 15%);
  }
}
.contacts__social-link--tg {
  width: 15px;
  height: 13px;
}
@media (max-width: 1024px) {
  .contacts__social-link--tg {
    width: 10px;
    height: 9px;
  }
}
.contacts__social-link--wa {
  width: 16px;
  height: 16px;
}
@media (max-width: 1024px) {
  .contacts__social-link--wa {
    width: 10.5px;
    height: 10.5px;
  }
}
.contacts__social-link--vb {
  width: 16px;
  height: 17px;
}
@media (max-width: 1024px) {
  .contacts__social-link--vb {
    width: 10.5px;
    height: 11.5px;
  }
}

.map {
  margin-top: -165px;
}
@media (max-width: 1600px) {
  .map {
    margin-top: -127px;
  }
}

.footer {
  background-color: var(--title-color);
  padding: 10px 0;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__link {
  font-family: "Acrom";
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: var(--light-color);
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.footer__link:hover {
  opacity: 0.7;
}
.footer__link-text {
  vertical-align: super;
}
.footer__artix {
  fill: #FAFEFD;
  width: 20px;
  height: 21px;
  margin-left: 13px;
}