@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@600;700&display=swap");
:root {
  --index: calc(1vw + 1vh);
  --font-size: 16px;
  --line-height: 1.4;
  --item-width: 325px;
  --burger-color: #C9C8CD;
  --burger-color-active: #C9C8CD;
  --container-width: 1440px;
  --container-padding: 60px;
  --font-default: "Geologica", sans-serif;
  --transition: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --transition2: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --transition3: cubic-bezier(0.715, -0.235, 0.120, 1.300);
  --bg-body: #252328;
  --color-body: white;
  --color-text: white;
  --grey-4: #9B9AA3;
  --grey-2: #EAEAEA;
  --grey-1: #D9D9D9;
  --grey-3: #C9C8CD;
  --light-5: #F1F8CB;
  --light-4: #E8F4A5;
  --light-3: #DAEA7F;
  --light-1: #D0F500;
  --light-2: #C5E800;
  --black-6: #817D87;
  --black-5: #5F5D64;
  --black-4: #4A494D;
  --black-35: #424045;
  --black-3: #38363C;
  --black-2: #252328;
  --black: #171619;
}
@media screen and (max-width: 480px) {
  :root {
    --item-width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  :root {
    --container-padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-padding: 15px;
  }
}

/* responsive */
@font-face {
  font-family: "Diatype";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Diatype/ABCDiatype-Regular.woff2") format("woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

ul, ol {
  list-style: none;
}

input,
a {
  outline: none !important;
  color: var(--color-text);
}

button,
input,
textarea {
  font-family: var(--font-default);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

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

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

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

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

input:focus {
  outline: none;
}

html {
  font-size: var(--font-size);
}

body {
  background: var(--bg-body);
  font-size: var(--font-size);
  min-width: 320px;
  position: relative;
  line-height: var(--line-height);
  font-family: var(--font-default);
  font-weight: normal;
  font-style: normal;
  color: var(--color-body);
  border-top: 8px solid var(--color-blue-light);
  padding-top: 94px;
}
@media screen and (max-width: 992px) {
  body {
    border-top: 4px solid var(--color-blue-light);
  }
}
body._home {
  padding-top: 0;
}
body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}
@media screen and (max-width: 992px) {
  body.no-scroll {
    padding-right: 0px;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 480px) {
  .-md4-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .-md3-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .-md1-hidden {
    display: none !important;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
}
@media (max-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}

.container-fluid {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}

.burger-content {
  background: rgba(73, 73, 79, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
}
.burger-content__body {
  position: absolute;
  display: flex;
  flex-direction: column;
  right: -1px;
  top: 104px;
  text-align: center;
  background: rgba(31, 31, 32, 0.8);
  box-shadow: 0px 1px 6px 0px rgba(31, 31, 32, 0.8);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  padding: 50px 15px;
  row-gap: 30px;
  max-width: 325px;
  width: 100%;
  border-radius: 20px 0 0 20px;
}
.burger-content__body form div {
  display: flex;
  align-items: center;
  background: rgba(71, 68, 74, 0.2);
  border-radius: 100px;
  height: 44px;
  max-width: 100%;
  transition: 0.3s ease;
}
.burger-content__body form div button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 10px 12px 17px;
  display: flex;
  align-items: center;
}
.burger-content__body form div input {
  background: none;
  border: none;
  outline: none;
  padding: 12px 17px 12px 0;
  width: 100%;
  transition: 0.3s ease;
}
.burger-content__body form div input::-moz-placeholder {
  color: var(--grey-3);
}
.burger-content__body form div input::placeholder {
  color: var(--grey-3);
}
.burger-content__body form div:hover {
  max-width: 250px;
  background: rgba(56, 54, 60, 0.2);
}
.burger-content__body form div:hover input::-moz-placeholder {
  color: var(--white);
}
.burger-content__body form div:hover input::placeholder {
  color: var(--white);
}
.burger-content__body ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
}
.burger-content__body ul li {
  width: 100%;
}
.burger-content__body ul a {
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  padding: 5px 0;
  display: block;
  border-bottom: 1px solid var(--black-2);
}

.burger {
  cursor: pointer;
  display: none !important;
  width: 12px;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 1400px) {
  .burger {
    display: flex !important;
  }
}
.burger i {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 2px;
  background: var(--burger-color);
  transition: all 0.2s ease-out;
}
.burger i::before {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  top: -4px;
}
.burger i::after {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  bottom: -4px;
}
.burger.active i {
  background: transparent;
}
.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
  background: var(--burger-color-active);
}
.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
  background: var(--burger-color-active);
}

.btn {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--black);
  background: var(--light-1);
  border-radius: 5px;
  padding: 12px 35px;
  display: inline-block;
}
.btn:hover {
  background: var(--light-2);
  box-shadow: 0px 0px 6px 0px #C0E200;
}

.btn--grey {
  border-radius: 5px;
  display: inline-block;
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  color: white;
  background: var(--black-6);
  padding: 12px 25px;
}
.btn--grey:hover {
  color: var(--black);
  background: var(--light-2);
  box-shadow: 0px 0px 6px 0px #C0E200;
}

.top {
  padding: 20px 0 50px;
}
.top__offer {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  color: var(--black-4);
  line-height: 110%;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}

.breadcrumbs-item {
  color: var(--black-6);
}
.breadcrumbs-item a {
  color: var(--black-4);
}
.breadcrumbs-item a:hover {
  color: var(--black-5);
}

.breadcrumbs-separator {
  color: var(--black-3);
}

.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1;
  width: 12px;
  height: 12px;
  background: var(--black-3);
}

.swiper-pagination-bullet-active {
  background: var(--grey-3);
}

.video {
  position: relative;
}
.video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-image: url("../img/play.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 19px 19px;
  border-radius: 100%;
  background-color: rgba(194, 193, 193, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

._home .header {
  background: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  box-shadow: none;
}
._home .header.active {
  background: rgba(31, 31, 32, 0.8);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  box-shadow: 0px 1px 6px 0px rgba(31, 31, 32, 0.8);
}
@media screen and (max-width: 1400px) {
  ._home .header {
    background: rgba(31, 31, 32, 0.8);
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    box-shadow: 0px 1px 6px 0px rgba(31, 31, 32, 0.8);
  }
}

.header {
  padding: 35px 0 15px;
  color: var(--grey-3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s ease;
  background: rgba(31, 31, 32, 0.8);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  box-shadow: 0px 1px 6px 0px rgba(31, 31, 32, 0.8);
}
.header.disabled {
  background: none !important;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  box-shadow: none !important;
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.header__left ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media screen and (max-width: 1400px) {
  .header__left ul {
    display: none;
  }
}
.header__left ul a {
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  color: var(--grey-3);
}
.header__left ul a:hover {
  color: var(--light-4);
}
.header__logo {
  display: inline-block;
  font-family: "Unbounded";
  font-size: 24px;
  line-height: 100%;
  color: var(--grey-3);
}
.header__right {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 992px) {
  .header__right form {
    display: none;
  }
}
.header__right form div {
  display: flex;
  align-items: center;
  background: rgba(56, 54, 60, 0.1);
  border-radius: 100px;
  height: 44px;
  max-width: 124px;
  transition: 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .header__right form div {
    background: rgba(56, 54, 60, 0.5);
  }
}
.header__right form div button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 10px 12px 17px;
  display: flex;
  align-items: center;
}
.header__right form div input {
  background: none;
  border: none;
  outline: none;
  padding: 12px 17px 12px 0;
  width: 100%;
  transition: 0.3s ease;
}
.header__right form div input::-moz-placeholder {
  color: var(--grey-3);
}
.header__right form div input::placeholder {
  color: var(--grey-3);
}
.header__right form div:hover {
  max-width: 250px;
  background: rgba(56, 54, 60, 0.2);
}
.header__right form div:hover input::-moz-placeholder {
  color: var(--white);
}
.header__right form div:hover input::placeholder {
  color: var(--white);
}
.header__btn {
  min-width: 44px;
  height: 44px;
  max-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 54, 60, 0.1);
  border-radius: 100%;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .header__btn {
    background: rgba(56, 54, 60, 0.5);
  }
}
.header__btn--settings {
  display: none;
}
@media screen and (max-width: 992px) {
  .header__btn--settings {
    display: flex;
  }
}
.header__btn--lang {
  background: none;
}
@media screen and (max-width: 1400px) {
  .header__btn--lang {
    background: rgba(56, 54, 60, 0.5);
  }
}
@media screen and (max-width: 992px) {
  .header__btn--lang {
    display: none;
  }
}
.header__status {
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  padding: 12px 25px;
  border-radius: 5px;
  background: var(--black-6);
  transition: 0.3s ease;
}
@media screen and (max-width: 992px) {
  .header__status {
    display: none;
  }
}
.header__status:hover {
  background: var(--light-2);
  color: var(--black);
  box-shadow: 0px 0px 6px 0px #C0E200;
}

.sections {
  display: flex;
  flex-direction: column;
  row-gap: 130px;
  padding-bottom: 130px;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .sections {
    padding-top: 30px;
    padding-bottom: 80px;
    row-gap: 80px;
  }
}

.home {
  display: block;
}
.home__body {
  position: relative;
}
.home__body .swiper-pagination {
  bottom: 100px;
  left: 20px;
  z-index: 500;
  position: absolute;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
  justify-content: flex-end;
  transform: none;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 992px) {
  .home__body .swiper-pagination {
    bottom: 15px;
    left: 15px;
  }
}
.home__slider {
  overflow: hidden;
  height: 780px;
}
@media screen and (max-width: 992px) {
  .home__slider {
    height: 600px;
  }
}
.home__slider .swiper-wrapper {
  height: 100%;
}
.home__slide {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  overflow: hidden;
  height: 100%;
}
.home__slide-img {
  position: absolute;
}
.home__slide-img img {
  max-width: 100%;
}
.home__slide-img:nth-child(1) {
  max-width: 537px;
  top: 105px;
  left: -164px;
}
@media screen and (max-width: 1200px) {
  .home__slide-img:nth-child(1) {
    left: -264px;
  }
}
@media screen and (max-width: 992px) {
  .home__slide-img:nth-child(1) {
    max-width: 247px;
    top: 113px;
    left: -140px;
  }
}
.home__slide-img:nth-child(2) {
  max-width: 268px;
  top: 121px;
  left: 131px;
}
@media screen and (max-width: 1200px) {
  .home__slide-img:nth-child(2) {
    left: 31px;
  }
}
@media screen and (max-width: 992px) {
  .home__slide-img:nth-child(2) {
    max-width: 142px;
    top: 102px;
    left: -8px;
  }
}
.home__slide-img:nth-child(3) {
  max-width: 503px;
  right: -161px;
  transform: rotate(-8deg);
  top: 110px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .home__slide-img:nth-child(3) {
    right: -261px;
  }
}
@media screen and (max-width: 992px) {
  .home__slide-img:nth-child(3) {
    max-width: 288px;
    bottom: -26px;
    top: auto;
    right: -143px;
    transform: rotate(-74deg);
  }
}
.home__slide-img:nth-child(4) {
  max-width: 117px;
  top: 116px;
  right: 138px;
}
@media screen and (max-width: 1200px) {
  .home__slide-img:nth-child(4) {
    right: 38px;
  }
}
@media screen and (max-width: 992px) {
  .home__slide-img:nth-child(4) {
    max-width: 67px;
    top: auto;
    bottom: 202px;
    right: -12px;
  }
}
.home__slide-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 25px;
  max-width: 690px;
  margin: 0 auto;
  margin-top: 277px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 992px) {
  .home__slide-text {
    max-width: 550px;
  }
}
@media screen and (max-width: 768px) {
  .home__slide-text {
    max-width: 275px;
    margin-top: 227px;
  }
}
.home__offer {
  color: var(--black);
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
}
@media screen and (max-width: 992px) {
  .home__offer {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .home__offer {
    font-size: 34px;
  }
}
.home__btn {
  padding: 12px 59px;
}

.give {
  order: 1;
  display: block;
}
.give * {
  transition: 0.5s ease;
}
.give__body {
  min-height: 220px;
  border-radius: 5px;
  background: var(--black-2);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .give__body {
    padding: 27px;
  }
}
@media screen and (max-width: 480px) {
  .give__body {
    padding-right: 0;
  }
}
.give__body:hover {
  background: #2B292E;
}
.give__body:hover .give__img {
  transform: rotate(-5deg);
}
.give__body:hover .give__offer {
  font-size: 80px;
}
@media screen and (max-width: 1200px) {
  .give__body:hover .give__offer {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .give__body:hover .give__offer {
    font-size: 40px;
  }
}
.give__body:hover .give__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: white;
}
@media screen and (max-width: 992px) {
  .give__body:hover .give__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
  }
}
.give__content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .give__content {
    flex-direction: row-reverse;
    align-items: flex-end;
  }
}
@media screen and (max-width: 480px) {
  .give__content {
    justify-content: flex-start;
    margin: 0;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
  }
}
.give__img {
  display: flex;
  align-items: center;
  max-width: 200px;
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  .give__img {
    max-width: 134px;
    min-width: 134px;
    margin-bottom: -22px;
  }
}
@media screen and (max-width: 480px) {
  .give__img {
    position: absolute;
    right: 7px;
    bottom: 0;
  }
}
.give__img img {
  max-width: 100%;
}
.give__offer {
  font-weight: 600;
  font-size: 77.7px;
  line-height: 100%;
  text-transform: uppercase;
  max-width: 843px;
  background-image: url("../img/give-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 7px;
}
@media screen and (max-width: 1200px) {
  .give__offer {
    font-size: 45.5px;
    max-width: 600px;
  }
}
@media screen and (max-width: 768px) {
  .give__offer {
    font-size: 37px;
  }
}
@media screen and (max-width: 480px) {
  .give__offer {
    max-width: 201px;
  }
}
.give__text {
  max-width: 95px;
  color: #2B292E;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  position: absolute;
  bottom: 32px;
  right: 27.5px;
}
@media screen and (max-width: 1200px) {
  .give__text {
    bottom: 80px;
  }
}
@media screen and (max-width: 992px) {
  .give__text {
    bottom: 32px;
    color: var(--black-3);
    top: 0px;
    right: 36px;
    bottom: auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
  }
}
@media screen and (max-width: 480px) {
  .give__text {
    text-align: right;
  }
}

.process {
  order: 3;
}
.process__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .process__top {
    margin-bottom: 20px;
  }
}
.process__offer {
  font-weight: 700;
  font-size: 55px;
  line-height: 110%;
  color: #44424F;
  max-width: 968px;
}
@media screen and (max-width: 768px) {
  .process__offer {
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
  }
}
.process__btn {
  display: flex;
  align-items: center;
  height: 122px;
  min-width: 252px;
  max-width: 252px;
  justify-content: center;
  background: var(--light-1);
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 20px 30px;
  border-radius: 5px;
  color: var(--black);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  grid-column: 4 span;
}
@media screen and (max-width: 1200px) {
  .process__btn {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .process__btn {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .process__btn {
    padding: 20px;
    grid-column: 6 span;
  }
}
.process__btn--mob {
  display: none;
}
@media screen and (max-width: 1200px) {
  .process__btn--mob {
    display: flex;
    max-width: 100%;
    min-width: 0;
  }
}
.process__btn svg {
  min-width: 24px;
  max-width: 24px;
  transition: 0.3s ease;
}
.process__btn:hover {
  background: var(--light-2);
  box-shadow: 0px 0px 6px 0px #C0E200;
  font-size: 18px;
}
.process__btn:hover svg {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
}
.process__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
  grid-template-columns: repeat(10, 1fr);
}
@media screen and (max-width: 1200px) {
  .process__items {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .process__items {
    gap: 9px;
  }
}
.process__item {
  grid-column: 2 span;
  min-height: 120px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  background: var(--black);
  border-radius: 5px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .process__item {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 992px) {
  .process__item {
    min-height: 100px;
  }
}
@media screen and (max-width: 768px) {
  .process__item {
    padding-left: 15px;
    grid-column: 6 span;
  }
}
.process__item:hover .process__item-num {
  font-size: 120px;
  color: var(--light-1);
  text-shadow: 0px 0px 15px rgb(197, 232, 0);
}
.process__item-text {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  color: var(--grey-3);
  min-width: 182px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .process__item-text {
    font-weight: 500;
    font-size: 17px;
    line-height: 100%;
    max-width: 118px;
    min-width: 0;
  }
}
.process__item-num {
  font-weight: 700;
  font-size: 100px;
  line-height: 100%;
  color: var(--black-2);
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
@media screen and (max-width: 992px) {
  .process__item-num {
    font-size: 80px;
    right: -14px;
  }
}

.why {
  order: 4;
}
.why * {
  transition: 0.7s ease;
}
.why__body {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.why__body:hover .why__offer {
  color: var(--light-3);
  text-shadow: 0px 0px 15px #C5E800;
  font-size: 66px;
  max-width: 330px;
  min-width: 330px;
}
@media screen and (max-width: 992px) {
  .why__body:hover .why__offer {
    text-shadow: none;
    color: var(--black-4);
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
  }
}
.why__body:hover .why__el-text {
  color: var(--grey-3);
}
.why__body:hover .why__el-img {
  transform: translateY(-50%) rotate(4deg);
  min-width: 75px;
  max-width: 75px;
  height: 75px;
  right: -2.98px;
}
.why__body:hover .why__item {
  padding-right: 20px;
}
.why__body:hover .why__item-text {
  opacity: 1;
}
.why__content {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 992px) {
  .why__content {
    flex-direction: column;
    row-gap: 20px;
  }
}
.why__offer {
  max-width: 380px;
  min-width: 380px;
  font-weight: 700;
  font-size: 65px;
  line-height: 100%;
  color: var(--black-4);
}
@media screen and (max-width: 1200px) {
  .why__offer {
    max-width: 280px;
    min-width: 280px;
    font-size: 55px;
  }
}
@media screen and (max-width: 992px) {
  .why__offer {
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
  }
}
.why__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 10px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .why__items {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.why__item {
  grid-column: 6 span;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  padding: 20px;
  padding-right: 0;
  color: var(--black);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 992px) {
  .why__item {
    grid-column: 12 span;
    height: 250px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .why__item {
    height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .why__item {
    height: 160px;
    padding: 10px;
    border-radius: 15px;
  }
}
.why__item:nth-child(1) .why__item-text {
  text-align: right;
  max-width: 375px;
  margin-left: auto;
}
.why__item:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why__item:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(188.04deg, rgba(182, 182, 182, 0) 71.16%, #B6B6B6 93.81%), linear-gradient(188.04deg, rgba(182, 182, 182, 0) 71.16%, #B6B6B6 93.81%), linear-gradient(188.04deg, rgba(182, 182, 182, 0) 71.16%, #B6B6B6 93.81%);
}
.why__item:nth-child(2) .why__item-text {
  max-width: 224px;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .why__item:nth-child(2) .why__item-text {
    max-width: 100%;
  }
}
.why__item-text {
  position: relative;
  z-index: 1;
  opacity: 0;
}
@media screen and (max-width: 992px) {
  .why__item-text {
    opacity: 1;
  }
}
@media screen and (max-width: 480px) {
  .why__item-text {
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    line-height: 125%;
  }
}
.why__els {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
}
.why__el {
  grid-column: 2 span;
  background: var(--black-3);
  min-height: 108px;
  border-radius: 15px;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .why__el {
    grid-column: 3 span;
  }
}
@media screen and (max-width: 992px) {
  .why__el {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 768px) {
  .why__el {
    grid-column: 6 span;
    min-height: 90px;
    padding: 0 10px;
  }
}
.why__el-text {
  font-weight: 500;
  font-size: 17px;
  line-height: 110%;
  color: var(--black-6);
  max-width: 102px;
  position: relative;
  z-index: 1;
}
.why__el-img {
  display: flex;
  align-items: center;
  position: absolute;
  max-width: 70px;
  min-width: 70px;
  height: 70px;
  right: 4.5px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .why__el-img {
    max-width: 56px;
    min-width: 56px;
    height: 56px;
    right: 5px;
  }
}
.why__el-img img {
  max-width: 100%;
}

.reviews {
  overflow: hidden;
  order: 5;
}
.reviews__offer {
  font-weight: 700;
  font-size: 55px;
  line-height: 110%;
  color: var(--black-3);
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .reviews__offer {
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    margin-bottom: 20px;
  }
}
.reviews__slider-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.reviews__slider .swiper-slide {
  height: auto;
}
.reviews__slide {
  background: var(--black-4);
  border-radius: 5px;
  padding: 25px;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .reviews__slide {
    padding: 15px;
  }
}
.reviews__slide--main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  row-gap: 15px;
  color: var(--grey-2);
}
.reviews__slide--main::before {
  content: "";
  position: absolute;
  left: 15px;
  top: -20px;
  width: 80px;
  height: 80px;
  background-image: url("../img/review-quotes.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  .reviews__slide--main::before {
    width: 70px;
    height: 70px;
    left: 20px;
    top: -16px;
  }
}
.reviews__slide-sub {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}
.reviews__slide-offer {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
}
@media screen and (max-width: 480px) {
  .reviews__slide-offer {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
  }
}
.reviews__slide-top {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 15px;
}
.reviews__slide-avatar {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--black-6);
}
.reviews__slide-top-text {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  width: 100%;
}
.reviews__slide-top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews__slide-name {
  font-weight: 500;
  font-size: 17px;
  line-height: 110%;
  color: var(--grey-3);
}
.reviews__slide-date {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  color: var(--black-6);
}
@media screen and (max-width: 480px) {
  .reviews__slide-date {
    display: none;
  }
}
.reviews__slide-date--mob {
  display: none;
}
@media screen and (max-width: 480px) {
  .reviews__slide-date--mob {
    display: block;
    margin-top: 5px;
  }
}
.reviews__slide-stars {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.reviews__slide-star {
  display: flex;
  align-items: center;
}
.reviews__slide-star svg {
  fill: var(--black-6);
  stroke: var(--black-6);
  width: 18px;
  height: 18px;
}
.reviews__slide-star.active svg {
  fill: var(--light-2);
  stroke: var(--light-2);
}
.reviews__slide-video {
  display: block;
  height: 131px;
  max-width: 232px;
  position: relative;
  border-radius: 1px;
  overflow: hidden;
}
.reviews__slide-video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.reviews__slide-video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-image: url("../img/play.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 19px 19px;
  border-radius: 100%;
  background-color: rgba(194, 193, 193, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.reviews__slide-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__slide--vertical {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.reviews__slide--vertical .reviews__slide-video {
  max-width: 106px;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .reviews__slide--vertical .reviews__slide-video {
    height: 189px;
  }
}
.reviews__slide--vertical .reviews__slide-top {
  flex-direction: column;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 10px;
  align-items: flex-start;
}
.reviews__slide--vertical .reviews__slide-top-text {
  row-gap: 10px;
}
.reviews__slide--vertical .reviews__slide-top-info {
  flex-direction: column;
  -moz-column-gap: 0;
       column-gap: 0;
  align-items: flex-start;
  row-gap: 3px;
}
.reviews__slide--vertical .reviews__slide-date {
  display: block !important;
}
.reviews__slide--vertical .reviews__slide-star svg {
  width: 24px;
  height: 24px;
}
.reviews__slide-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.banns {
  order: 6;
}
@media screen and (max-width: 768px) {
  .banns {
    order: 7;
  }
}
.banns__body {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 992px) {
  .banns__body {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 10px;
  }
}
.banns__item {
  min-height: 400px;
  background: var(--black);
  width: 40%;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .banns__item {
    width: 35%;
  }
}
@media screen and (max-width: 992px) {
  .banns__item {
    width: 100%;
    min-height: 0;
  }
}
.banns__item::before, .banns__item::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 100%;
}
.banns__item:nth-child(1)::before {
  width: 509px;
  height: 509px;
  top: -444px;
  left: -142px;
  background: radial-gradient(50% 50% at 50% 50%, #DA2099 0%, #171619 100%);
}
.banns__item:nth-child(1)::after {
  width: 779px;
  height: 779px;
  bottom: -654px;
  left: -152px;
  background: radial-gradient(50% 50% at 50% 50%, #DA2099 0%, #171619 100%);
}
@media screen and (max-width: 768px) {
  .banns__item:nth-child(1)::after {
    display: none;
  }
}
.banns__item:nth-child(1) .banns__item-img {
  max-width: 479px;
  transform: rotate(18.04deg);
  left: -170px;
  top: -30px;
}
@media screen and (max-width: 992px) {
  .banns__item:nth-child(1) .banns__item-img {
    max-width: 281px;
    top: -82px;
    left: -103px;
  }
}
@media screen and (max-width: 992px) {
  .banns__item:nth-child(2) {
    min-height: 185px;
  }
}
.banns__item:nth-child(2)::before {
  width: 509px;
  height: 509px;
  top: -379px;
  left: -132px;
  background: radial-gradient(50% 50% at 50% 50%, #1F6AEC 0%, #171619 100%);
}
.banns__item:nth-child(2)::after {
  width: 686px;
  height: 686px;
  bottom: -247px;
  right: -468px;
  background: radial-gradient(50% 50% at 50% 50%, #1F6AEC 0%, #171619 100%);
}
@media screen and (max-width: 768px) {
  .banns__item:nth-child(2)::after {
    display: none;
  }
}
.banns__item:nth-child(2) .banns__item-offer {
  color: var(--grey-3);
}
.banns__item:nth-child(2) .banns__item-img {
  max-width: 479px;
  transform: rotate(-13.59deg);
  left: -165px;
  top: 4px;
}
@media screen and (max-width: 992px) {
  .banns__item:nth-child(2) .banns__item-img {
    max-width: 293px;
    left: -107px;
    top: -15px;
  }
}
.banns__item:nth-child(3) {
  width: 20%;
  padding: 48px 22px;
}
@media screen and (max-width: 1200px) {
  .banns__item:nth-child(3) {
    width: 35%;
  }
}
@media screen and (max-width: 992px) {
  .banns__item:nth-child(3) {
    width: 100%;
    padding: 20px;
  }
}
.banns__item:nth-child(3)::before {
  width: 509px;
  height: 509px;
  top: -441px;
  left: -129px;
  background: radial-gradient(50% 50% at 50% 50%, #8620DA 0%, #171619 100%);
}
.banns__item:nth-child(3)::after {
  width: 686px;
  height: 686px;
  bottom: -417px;
  right: -575px;
  background: radial-gradient(50% 50% at 50% 50%, #8620DA 0%, #171619 100%);
}
@media screen and (max-width: 768px) {
  .banns__item:nth-child(3)::after {
    display: none;
  }
}
.banns__item:nth-child(3) .banns__item-texts {
  justify-content: flex-start;
}
.banns__item:nth-child(3) .banns__item-offer {
  font-size: 30px;
}
@media screen and (max-width: 992px) {
  .banns__item:nth-child(3) .banns__item-offer {
    font-size: 28px;
  }
}
.banns__item:nth-child(3) .banns__item-img {
  max-width: 211px;
  transform: rotate(-18.04deg);
  left: -61px;
  bottom: 4px;
}
@media screen and (max-width: 992px) {
  .banns__item:nth-child(3) .banns__item-img {
    max-width: 221px;
    left: -113px;
    top: -28px;
    transform: rotate(18.04deg);
  }
}
.banns__item-img {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 1;
}
.banns__item-img img {
  max-width: 100%;
}
.banns__item-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  height: 100%;
  max-width: 251px;
  margin-left: auto;
  row-gap: 15px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .banns__item-texts {
    max-width: 253px;
  }
}
.banns__item-offer {
  font-weight: 700;
  font-size: 45px;
  line-height: 100%;
  color: var(--grey-2);
}
@media screen and (max-width: 992px) {
  .banns__item-offer {
    font-size: 34px;
  }
}
.banns__item-desc {
  color: var(--grey-3);
}

.request {
  order: 7;
}
@media screen and (max-width: 768px) {
  .request {
    order: 6;
  }
}
.request__body {
  background: black;
  min-height: 260px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 46px 70px 45px;
}
@media screen and (max-width: 992px) {
  .request__body {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .request__body {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.request__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  color: var(--black-4);
  align-items: flex-start;
  max-width: 520px;
}
@media screen and (max-width: 992px) {
  .request__wrap {
    margin-top: auto;
  }
}
.request__offer {
  font-weight: 700;
  font-size: 55px;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--black-2);
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .request__offer {
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
  }
}
.request__desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .request__desc {
    font-weight: 500;
    font-size: 17px;
    line-height: 100%;
  }
}
.request__img {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  max-width: 942px;
}
@media screen and (max-width: 1400px) {
  .request__img {
    right: -200px;
  }
}
@media screen and (max-width: 1200px) {
  .request__img {
    max-width: 510px;
    right: -150px;
    transform: none;
    top: -100px;
  }
}
@media screen and (max-width: 480px) {
  .request__img {
    top: -139px;
    right: -220px;
  }
}
.request__img img {
  max-width: 100%;
}

.faq {
  order: 7;
}
.faq__offer {
  font-weight: 700;
  font-size: 55px;
  line-height: 110%;
  color: #44424F;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .faq__offer {
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
  }
}
.faq__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
@media screen and (max-width: 768px) {
  .faq__content {
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 10px;
  }
}
.faq__items {
  grid-column: 6 span;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 768px) {
  .faq__items {
    grid-column: 12 span;
    row-gap: 10px;
  }
}
.faq__item {
  background: var(--black-3);
  border-radius: 10px;
  padding: 15px;
}
.faq__item:hover .faq__item-offer {
  color: var(--light-1);
}
.faq__item:hover .faq__item-arrow svg {
  fill: var(--light-1);
}
.faq__item.active .faq__item-offer {
  color: var(--light-1);
}
.faq__item.active .faq__item-arrow svg {
  transform: rotate(180deg);
  fill: var(--light-1);
}
.faq__item.active .faq__item-content {
  height: auto;
  padding-top: 10px;
}
.faq__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.faq__item-offer {
  color: var(--grey-3);
  font-weight: 500;
  font-size: 17px;
  line-height: 110%;
}
.faq__item-arrow {
  display: flex;
  align-items: center;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  border-radius: 100%;
  justify-content: center;
  background: rgba(71, 68, 74, 0.2);
}
.faq__item-arrow svg {
  transition: 0.3s ease;
  fill: var(--black);
}
.faq__item-content {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-3);
  height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: 0.3s ease;
}

.catalog {
  padding-bottom: 130px;
}
.catalog__body {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.catalog__sidebar {
  min-width: 280px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.catalog__sidebar-item {
  background: var(--black-3);
  border-radius: 5px;
  padding: 15px;
}
.catalog__sidebar-item-top {
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
  cursor: pointer;
}
.catalog__sidebar-item-top.active .catalog__sidebar-item-top-btn {
  background-image: url("../img/catalog-minus.svg");
  transform: rotate(0deg);
}
.catalog__sidebar-item-top-btn {
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  background-image: url("../img/catalog-plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
  transform: rotate(180deg);
}
.catalog__sidebar-item-content {
  margin-top: 15px;
  display: none;
}
.catalog__sidebar-item-content input[type=text] {
  padding: 10px 17px;
  border-radius: 5px;
  background: var(--black-4);
  border: none;
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 15px;
}
.catalog__sidebar-item-content input[type=text]::-moz-placeholder {
  color: var(--black-5);
}
.catalog__sidebar-item-content input[type=text]::placeholder {
  color: var(--black-5);
}
.catalog__sidebar-item-els {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.catalog__sidebar-item-els label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.catalog__sidebar-item-els label input {
  display: none;
}
.catalog__sidebar-item-els label div {
  color: var(--grey-4);
  position: relative;
  padding-left: 25px;
}
.catalog__sidebar-item-els label input[type=checkbox] + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: var(--black-4);
  border: 1px solid var(--grey-3);
  border-radius: 2px;
}
.catalog__sidebar-item-els label input[type=checkbox]:checked + div {
  color: var(--grey-3);
}
.catalog__sidebar-item-els label input[type=checkbox]:checked + div::before {
  background-image: url("../img/checkbox.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-color: var(--light-1);
  border-color: var(--light-1);
}
.catalog__sidebar-item-els label input[type=radio] + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: var(--black-4);
  box-shadow: 0 0 0 1px var(--grey-3);
  border: 3px solid var(--black-4);
}
.catalog__sidebar-item-els label input[type=radio]:checked + div {
  color: var(--grey-3);
}
.catalog__sidebar-item-els label input[type=radio]:checked + div::before {
  box-shadow: 0 0 0 1px var(--light-1);
  background-color: var(--light-1);
  border-color: var(--black-3);
}
.catalog__sidebar-item-els label span {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black-4);
}
.catalog__sidebar-item-top--innactive {
  pointer-events: none;
}
.catalog__sidebar-item-top--innactive + .catalog__sidebar-item-content {
  display: block;
}
.catalog__sidebar-states {
  display: flex;
  align-items: center;
  gap: 5px;
}
.catalog__sidebar-states label {
  cursor: pointer;
}
.catalog__sidebar-states label input {
  display: none;
}
.catalog__sidebar-states label span {
  min-width: 28px;
  max-width: 28px;
  height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #424045;
  color: var(--black-6);
}
.catalog__sidebar-states label input:checked + span {
  color: white;
}
.catalog__sidebar-states label:nth-child(1) input:checked + span {
  background: #4682D1;
}
.catalog__sidebar-states label:nth-child(2) input:checked + span {
  background: #3BC83B;
}
.catalog__sidebar-states label:nth-child(3) input:checked + span {
  background: #F4A72C;
}
.catalog__sidebar-states label:nth-child(4) input:checked + span {
  background: #DB4432;
}
.catalog__sidebar-makers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.catalog__sidebar-makers label {
  cursor: pointer;
}
.catalog__sidebar-makers label input {
  display: none;
}
.catalog__sidebar-makers label span {
  display: inline-block;
  padding: 5px 8px;
  background: var(--black-4);
  border-radius: 6px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--grey-3);
}
.catalog__sidebar-makers label input:checked + span {
  background: var(--grey-2);
  color: var(--black);
}
.catalog__sidebar-colors {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.catalog__color {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.catalog__color input {
  display: none;
}
.catalog__color span {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 3px solid #413F45;
  overflow: hidden;
}
.catalog__color input:checked + span {
  border-color: var(--grey-2);
}
.catalog__color--black span {
  background: #171619;
}
.catalog__color--white span {
  background: white;
}
.catalog__color--grey span {
  background: #ADADAD;
}
.catalog__color--cyan span {
  background: #209EEC;
}
.catalog__color--red span {
  background: #D80027;
}
.catalog__color--green span {
  background: #26AE8A;
}
.catalog__color--yellow span {
  background: #FFEE00;
}
.catalog__color--blue span {
  background: #428BC1;
}
.catalog__sidebar-btn {
  text-align: center;
}
.catalog__tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.catalog__tab {
  min-width: 71px;
  padding: 8px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-1);
  background: var(--black-3);
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}
.catalog__tab:hover {
  background: var(--black-4);
}
.catalog__tab.active {
  background: var(--black-5);
  color: var(--light-1);
}
.catalog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.catalog__offer {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  color: var(--black-4);
}
.catalog__top-right {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.catalog__sort {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.catalog__sort label {
  cursor: pointer;
}
.catalog__sort label input {
  display: none;
}
.catalog__sort label span {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  background: rgba(56, 54, 60, 0.2);
  padding: 5px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black-6);
  border-radius: 2px;
}
.catalog__sort label span svg {
  stroke: var(--black-6);
}
.catalog__sort label input:checked + span {
  background: var(--black-4);
  color: white;
}
.catalog__sort label input:checked + span svg {
  stroke: white;
}
.catalog__display {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.catalog__display label {
  cursor: pointer;
}
.catalog__display label input {
  display: none;
}
.catalog__display label span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  max-width: 34px;
  height: 34px;
  background: var(--black-3);
  border-radius: 2px;
}
.catalog__display label span svg {
  fill: var(--black);
}
.catalog__display label input:checked + span svg {
  fill: var(--light-3);
}
.catalog__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 16.67px;
       column-gap: 16.67px;
  row-gap: 15px;
}
.catalog__items--rows {
  -moz-column-gap: 0;
       column-gap: 0;
}
.catalog__items--rows .catalog__item {
  flex-direction: row;
  grid-column: 12 span;
}
.catalog__items--rows .catalog__item-img {
  min-height: 0;
  max-height: 100%;
  min-width: 180px;
  max-width: 180px;
}
.catalog__items--rows .catalog__item-content {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.catalog__items--rows .catalog__item-info {
  width: 75%;
}
.catalog__items--rows .catalog__item-bottom {
  width: 25%;
  justify-content: flex-end;
}
.catalog__items--rows .catalog__item-els {
  display: none;
}
.catalog__items--rows .catalog__item-els--row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 3px;
  width: 100%;
}
.catalog__items--rows .catalog__item-el {
  grid-column: 6 span;
}
.catalog__items--rows .catalog__item-desc {
  display: none;
}
.catalog__items--rows .catalog__item-desc--row {
  display: block;
  width: 100%;
}
.catalog__items--rows .catalog__item-end {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
}
.catalog__items--rows .catalog__item--ended .catalog__item-info {
  width: 50%;
}
.catalog__item {
  grid-column: 3 span;
  border-radius: 5px;
  overflow: hidden;
  background: var(--black-3);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.catalog__item--ended .catalog__item-img::after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
}
.catalog__item--ended .catalog__item-offer a {
  color: var(--black-6);
  pointer-events: none;
}
.catalog__item--ended .catalog__item-crossed {
  color: var(--black-5);
}
.catalog__item--ended .catalog__item-price {
  color: var(--black-6);
}
.catalog__item--ended .catalog__item-btn {
  background: var(--black-4);
  pointer-events: none;
}
.catalog__item-img {
  min-height: 160px;
  max-height: 160px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  background-color: white;
  position: relative;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.catalog__item-img a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.catalog__item-img-el {
  position: relative;
  z-index: 1;
  background: var(--light-4);
  border-radius: 2px;
  padding: 4px 8px;
  font-family: "Unbounded";
  font-weight: 600;
  font-size: 11px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black-2);
  display: inline-block;
}
.catalog__item-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: space-between;
  height: -webkit-fill-available;
}
.catalog__item-info {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.catalog__item-offer a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--grey-1);
}
.catalog__item-els {
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
}
.catalog__item-els--row {
  display: none;
}
.catalog__item-el {
  display: flex;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  color: var(--black-6);
}
.catalog__item-el span {
  color: var(--grey-3);
}
.catalog__item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.catalog__item-prices {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.catalog__item-crossed {
  color: var(--black-6);
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  text-decoration: line-through;
}
.catalog__item-price {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  color: var(--grey-2);
}
.catalog__item-btn {
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-1);
}
.catalog__item-end {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black-2);
  padding: 5px;
  display: block;
  width: 100%;
  background: var(--black-6);
  border-radius: 2px;
  text-align: center;
}
.catalog__item-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--grey-1);
}
.catalog__item-desc--row {
  display: none;
}
.catalog__more {
  margin-top: 50px;
  text-align: center;
}

.product__body {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.product__left {
  width: 40%;
}
.product__sliders {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  margin-bottom: 40px;
}
.product__slider {
  overflow: hidden;
  position: relative;
}
.product__slider .catalog__item-img-el {
  position: absolute;
  z-index: 2;
  left: 5px;
  top: 5px;
}
.product__slide {
  height: 330px;
  overflow: hidden;
  background-color: white;
  border-radius: 5px;
}
.product__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__sliders-bottom {
  display: flex;
  align-items: center;
}
.product__thumbs {
  overflow: hidden;
}
.product__thumbs .swiper-slide {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.product__thumbs .swiper-slide::after {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
}
.product__thumbs .swiper-slide-thumb-active::after {
  background: transparent;
}
.product__thumb {
  height: 60px;
  overflow: hidden;
  background-color: white;
  border-radius: 5px;
}
.product__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__arrows {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin: 0 15px;
}
.product__arrow {
  background: var(--black-3);
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  cursor: pointer;
  stroke: var(--black-6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__video-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.product__video-text {
  font-weight: 500;
  font-size: 17px;
  line-height: 110%;
  color: var(--black-4);
}
.product__video {
  display: block;
  height: 293px;
  border-radius: 10px;
  overflow: hidden;
}
.product__right {
  width: 60%;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.product__info {
  background: var(--black-3);
  border-radius: 5px;
  padding: 30px;
  color: var(--grey-1);
}
.product__offer {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  margin-bottom: 10px;
}
.product__desc {
  margin-bottom: 30px;
}
.product__charats {
  margin-bottom: 30px;
}
.product__charats-offer {
  font-weight: 700;
  font-size: 25px;
  line-height: 110%;
  margin-bottom: 10px;
}
.product__charats-els {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 3px;
}
.product__charats-els .catalog__item-el {
  grid-column: 6 span;
  margin: 0;
  color: var(--black-5);
}
.product__charats-els .catalog__item-el span {
  color: var(--grey-3);
}
.product__info-bottom {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.product__prices {
  display: flex;
  flex-direction: column;
}
.product__price-crossed {
  color: var(--black-6);
  font-weight: 500;
  font-size: 17px;
  line-height: 110%;
}
.product__price {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
}
.product__scale {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.product__scale-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.product__alert-btn {
  display: flex;
  align-items: center;
  fill: var(--black-6);
  cursor: pointer;
}
.product__btn {
  margin-left: auto;
}
.product__dop {
  background: rgba(71, 68, 74, 0.2);
  border-radius: 5px;
  padding: 30px;
  position: relative;
}
.product__dop-checked {
  position: absolute;
  right: 0;
  top: 32px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--black-6);
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--black-2);
  line-height: 100%;
}
.product__dop-offer {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-weight: 700;
  font-size: 25px;
  line-height: 110%;
  margin-bottom: 10px;
}
.product__dop-els {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.charats__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
.charats__item {
  grid-column: 4 span;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.charats__item-title {
  padding: 15px 10px;
  background: var(--black-35);
  text-align: center;
  font-weight: 500;
  font-size: 17px;
  line-height: 110%;
  color: var(--grey-3);
  margin-top: 35px;
}
.charats__item-title:first-child, .charats__item-title:last-child {
  margin: 0;
}
.charats__el {
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid var(--black-3);
}
.charats__el svg {
  fill: var(--grey-3);
}
.charats__el-title {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 3px;
       column-gap: 3px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--black-6);
  width: 60%;
}
.charats__el-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--grey-3);
  width: 40%;
}

.questions__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: var(--black-3);
  padding: 30px;
  border-radius: 5px;
}
.questions__text {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.questions__offer {
  font-weight: 700;
  font-size: 25px;
  line-height: 110%;
  color: var(--grey-3);
}
.questions__desc {
  color: var(--black-6);
}
.recomend__offer {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  color: var(--black-4);
}
.recomend__slider-wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.recomend__slider {
  overflow: hidden;
}
.recomend__slider .swiper-slide {
  height: auto;
}

.footer {
  background: var(--black);
  padding: 40px 0;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 20px 0;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 992px) {
  .footer__content {
    flex-direction: column;
    row-gap: 30px;
  }
}
.footer__wrap {
  background: rgba(56, 54, 60, 0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  max-width: 440px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .footer__wrap {
    max-width: 100%;
  }
}
.footer__logo {
  font-family: "Unbounded";
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
}
.footer__items {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.footer__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.footer__item-img {
  display: flex;
  align-items: center;
}
.footer__item-text {
  color: var(--grey-3);
}
.footer__item-text a {
  color: var(--grey-3);
}
.footer__item-text a:hover {
  color: var(--light-4);
}
.footer__soc {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.footer__soc a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  max-width: 44px;
  background: var(--black-3);
}
.footer__navs {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 70px;
       column-gap: 70px;
}
@media screen and (max-width: 992px) {
  .footer__navs {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .footer__navs {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.footer__navs ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  max-width: 220px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .footer__navs ul {
    max-width: 50%;
  }
}
.footer__navs ul a {
  padding: 5px 0;
  border-bottom: 1px solid var(--black-2);
  display: block;
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
}
@media screen and (max-width: 480px) {
  .footer__navs ul a {
    word-break: break-all;
  }
}
.footer__navs ul a:hover {
  color: var(--light-4);
}
.footer__bottom {
  margin-top: 30px;
  text-align: center;
  color: var(--black-6);
}