@charset "UTF-8";
:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1670px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --gap: 24px;
  --min-column: 260px;
  --row-h: 8px;
  /* базовая "высота строки" для расчётов */
  --white: #fff;
  --grey: #f5f5f5;
  --devider: #d5d7d9;
  --txt: #8f9193;
  --black: #171717;
  --brown: #dea47c;
}

/* stylelint-disable */
/* stylelint-disable */
/* 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 */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page__body {
  margin: 0;
  min-width: 360px;
  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-color: 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);
}

.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;
}

.lg-backdrop.in {
  opacity: 0.6 !important;
}

.header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
}
.header--active {
  background: var(--black);
  position: fixed;
  z-index: 10;
}
.header__content {
  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;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1440px) {
  .header__nav {
    display: none;
  }
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .header__logo img {
/*     width: 26px;
    height: 28px; */
  }
}
.header__logo-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
.header__logo-text span {
  color: var(--brown);
}
@media (max-width: 768px) {
  .header__logo-text {
    font-size: 16px;
  }
}
.header__list-item:hover .header__sublist {
  visibility: visible;
  opacity: 1;
}
.header__list-item:hover svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  position: relative;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
.header__link svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.header__sublist {
  opacity: 0;
  visibility: hidden;
  top: 55px;
  position: absolute;
  padding: 10px;
  background-color: #FFF;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__sublink {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.header__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--white);
}
@media (max-width: 1024px) {
  .header__mail {
    display: none;
  }
}
.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--white);
}
@media (max-width: 768px) {
  .header__phone {
    display: none;
  }
}
.header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.header__social {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: #FFF;
  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;
}
.header__burger {
  display: none;
  width: 36px;
  height: 36px;
  background-image: url(../img/menu.svg);
}
@media (max-width: 768px) {
  .header__burger {
    display: block;
  }
}

.hero {
  background-image: url(../img/hero-bg.webp);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 284px;
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 126px;
    margin-bottom: 100px;
  }
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 90px;
}
@media (max-width: 1024px) {
  .hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 36px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .hero__content {
    gap: 28px;
  }
}
.hero__box {
  max-width: 1110px;
  width: 100%;
}
.hero__address {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 140px;
  padding: 13px 20px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .hero__address {
    font-size: 16px;
    padding: 6px 10px;
  }
  .hero__address svg {
    width: 18px;
    height: 18px;
  }
}
.hero__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 80px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
.hero__title span {
  color: var(--brown);
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 56px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 32px;
  }
}
.hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 511px;
}
@media (max-width: 768px) {
  .hero__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 900px;
  }
}
.hero__link {
  display: block;
  max-width: 271px;
  width: 100%;
  padding: 21px 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
  text-align: center;
}
@media (max-width: 768px) {
  .hero__link {
    max-width: 900px;
    padding: 18px 0;
    font-size: 16px;
  }
}
.hero__btn {
  display: block;
  max-width: 271px;
  width: 100%;
  padding: 21px 0;
  background: var(--white);
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
  text-align: center;
}
@media (max-width: 768px) {
  .hero__btn {
    max-width: 900px;
    padding: 18px 0;
    font-size: 16px;
  }
}
.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px 20px 0 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
  .hero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hero__item {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  max-width: 400px;
  width: 100%;
  height: 130px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .hero__item {
    max-width: 900px;
    width: 100%;
    height: auto;
  }
}
.hero__item:last-child {
  max-width: 870px;
  gap: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .hero__item:last-child {
    gap: 16px;
    -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;
  }
}
.hero__item:nth-child(2) {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
  .hero__item:nth-child(2) {
    border-left: 0px solid rgba(255, 255, 255, 0.2);
    border-right: 0px solid rgba(255, 255, 255, 0.2);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
}
.hero__item img {
  position: absolute;
  right: 16px;
  top: 16px;
}
.hero__subtitle {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
.hero__text {
  max-width: 480px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 14px;
  }
}

.benefits {
  margin-bottom: 170px;
}
@media (max-width: 768px) {
  .benefits {
    margin-bottom: 80px;
  }
}
.benefits__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1024px) {
  .benefits__content {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .benefits__content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.benefits__title {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 44px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.benefits__title span {
  color: var(--brown);
}
@media (max-width: 768px) {
  .benefits__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.benefits__item {
  padding: 24px;
  border-radius: 20px;
  background: var(--grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 170px;
}
@media (max-width: 768px) {
  .benefits__item {
    padding: 20px;
    height: 107px;
  }
  .benefits__item img {
    width: 28px;
    height: 28px;
  }
}
.benefits__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .benefits__text {
    font-size: 16px;
  }
}

.about-section {
  background: var(--grey);
  padding: 170px 0;
  margin-bottom: 170px;
}
@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}
.about-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .about-section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 36px;
  }
}
.about-section__col {
  max-width: 910px;
}
.about-section__col:nth-child(2) {
  max-width: 690px;
}
.about-section__title {
  margin: 0;
  margin-bottom: 50px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.about-section__title span {
  color: var(--brown);
}
@media (max-width: 768px) {
  .about-section__title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.about-section__descr {
  margin: 0;
  margin-bottom: 36px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #222;
}
@media (max-width: 768px) {
  .about-section__descr {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.about-section__accent {
  margin: 0;
  margin-bottom: 36px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .about-section__accent {
    font-size: 22px;
    margin-bottom: 28px;
  }
}
.about-section__list-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--devider);
}
@media (max-width: 768px) {
  .about-section__list-item {
    padding: 16px 0;
  }
}
.about-section__list-item:first-child {
  border-top: 1px solid var(--devider);
}
.about-section__list-item:last-child {
  padding-bottom: 0;
  border-bottom: 0px solid var(--devider);
}
.about-section__list-title {
  margin: 0;
  margin-bottom: 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #222;
}
@media (max-width: 768px) {
  .about-section__list-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.about-section__list-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #222;
}
@media (max-width: 768px) {
  .about-section__list-text {
    font-size: 14px;
  }
}
.about-section__image {
  border-radius: 20px;
  background-image: url(../img/about-section-bg.webp);
  background-size: cover;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.about-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 20px 20px;
  padding: 28px;
}
@media (max-width: 768px) {
  .about-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
}
.about-section__item-text {
  margin: 0;
  margin-bottom: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .about-section__item-text {
    font-size: 14px;
  }
}
.about-section__item-count {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .about-section__item-count {
    font-size: 24px;
  }
}
.about-section__box {
  border-radius: 20px;
  background: var(--white);
  padding: 36px;
}
@media (max-width: 768px) {
  .about-section__box {
    padding: 20px;
  }
}
.about-section__subtitle {
  margin: 0;
  margin-bottom: 82px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .about-section__subtitle {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.about-section__text {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #222;
}
.about-section__text:last-child {
  margin: 0;
}
@media (max-width: 768px) {
  .about-section__text {
    font-size: 14px;
  }
}
.about-section__swiper .swiper-slide {
  max-width: 270px;
  border-radius: 20px;
}
.about-section__swiper .swiper-slide img {
  height: 180px;
  border-radius: 20px;
}

.stocks {
  margin-bottom: 170px;
  margin-bottom: 80px;
}
.stocks__title {
  margin: 0;
  margin-bottom: 50px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .stocks__title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}
.stocks__swiper {
  position: relative;
}
.stocks__prev {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  position: absolute;
  z-index: 2;
}
@media (max-width: 768px) {
  .stocks__prev {
    display: none;
  }
}
.stocks__next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  position: absolute;
  z-index: 2;
}
@media (max-width: 768px) {
  .stocks__next {
    display: none;
  }
}
.stocks__item {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 48px 20px;
  border-radius: 20px;
}
.stocks__item:not(:first-child) {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .stocks__item {
    padding: 0;
    height: auto;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: var(--grey);
    border-radius: 20px;
  }
}
.stocks__img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .stocks__img {
    position: relative;
    border-radius: 20px;
    height: 200px;
  }
}
.stocks__inner {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .stocks__inner {
    padding: 20px;
    -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;
    position: relative;
    gap: 16px;
  }
}
.stocks__link {
  position: absolute;
  right: 24px;
  top: 24px;
}
.stocks__subtitle {
  max-width: 310px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .stocks__subtitle {
    max-width: 200px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: var(--black);
  }
}
.stocks__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  row-gap: 12px;
}
@media (max-width: 768px) {
  .stocks__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.stocks__list-item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.stocks__list-item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #FFF;
  border-radius: 100%;
}
@media (max-width: 768px) {
  .stocks__list-item::before {
    width: 6px;
    height: 6px;
    background-color: var(--brown);
  }
}
@media (max-width: 768px) {
  .stocks__list-item {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: var(--black);
  }
}

.how {
  margin-bottom: 170px;
}
@media (max-width: 768px) {
  .how {
    margin-bottom: 80px;
  }
}
.how__title {
  margin: 0;
  margin-bottom: 50px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #222;
}
@media (max-width: 768px) {
  .how__title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}
.how__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .how__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.how__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}
@media (max-width: 768px) {
  .how__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.how__item {
  position: relative;
  border: 1px solid var(--devider);
  border-radius: 20px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 170px;
}
@media (max-width: 768px) {
  .how__item:last-child {
    height: 148px;
  }
}
@media (max-width: 768px) {
  .how__item {
    height: 116px;
    padding: 20px;
  }
  .how__item img {
    width: 28px;
    height: 28px;
  }
}
.how__count {
  position: absolute;
  right: 24px;
  top: 33px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: right;
  color: #adafb1;
}
@media (max-width: 768px) {
  .how__count {
    right: 20px;
    top: 26px;
    font-size: 14px;
  }
}
.how__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .how__text {
    font-size: 16px;
  }
}
.how__accent {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 140px;
  padding: 6px 12px;
  background: var(--black);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--white);
}
@media (max-width: 768px) {
  .how__accent {
    font-size: 12px;
    border-radius: 140px;
    padding: 4px 8px;
  }
}

.contacts {
  margin-bottom: 180px;
}
@media (max-width: 768px) {
  .contacts {
    margin-bottom: 80px;
  }
}
.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .contacts__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.contacts__box {
  max-width: 970px;
  width: 100%;
  padding: 50px;
  border-radius: 20px;
  background-image: url(../img/contacts-bg.webp);
  background-size: cover;
}
@media (max-width: 768px) {
  .contacts__box {
    padding: 50px 20px;
  }
}
.contacts__title {
  margin: 0;
  margin-bottom: 40px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .contacts__title {
    font-size: 28px;
    margin-bottom: 28px;
  }
}
.contacts__inner {
  max-width: 520px;
  margin-bottom: 85px;
  border-radius: 20px;
  padding: 24px;
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  background: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 23px;
}
@media (max-width: 768px) {
  .contacts__inner {
    padding: 16px;
    margin-bottom: 60px;
  }
}
.contacts__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .contacts__phone {
    font-size: 18px;
  }
}
.contacts__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .contacts__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.contacts__link {
  max-width: 255px;
  width: 100%;
  padding: 21px 0;
  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;
  gap: 12px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #29a71a;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
.contacts__link:nth-child(2) {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #039be5;
}
@media (max-width: 768px) {
  .contacts__link {
    max-width: 900px;
  }
}
.contacts__form {
  border: 1px solid var(--devider);
  border-radius: 20px;
  padding: 36px;
}
@media (max-width: 768px) {
  .contacts__form {
    padding: 20px;
  }
}
.contacts__subtitle {
  margin: 0;
  margin-bottom: 36px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #222;
}
.contacts__subtitle span {
  color: var(--brown);
}
@media (max-width: 768px) {
  .contacts__subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.contacts__input {
  outline: none;
  display: block;
  width: 100%;
  border-radius: 90px;
  padding: 19px 20px;
  background: var(--grey);
  margin-bottom: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: #adb3b4;
}
.contacts__btn {
  margin-bottom: 36px;
  border-radius: 100px;
  padding: 18px 40px;
  background: var(--brown);
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: var(--black);
  text-align: center;
}
@media (max-width: 768px) {
  .contacts__btn {
    margin-bottom: 20px;
  }
}
.contacts__descr {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .contacts__descr {
    font-size: 14px;
  }
}

.forms {
  margin-bottom: 170px;
}
@media (max-width: 768px) {
  .forms {
    margin-bottom: 80px;
  }
}
.forms__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .forms__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.forms__title {
  max-width: 520px;
  margin: 0;
  margin-bottom: 86px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.forms__title span {
  color: var(--brown);
}
@media (max-width: 768px) {
  .forms__title {
    max-width: 920px;
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.forms__box {
  width: 100%;
}
.forms__text {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .forms__text {
    max-width: 920px;
    font-size: 14px;
    margin-bottom: 18px;
  }
}
.forms__form {
  position: relative;
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--devider);
  border-radius: 20px;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .forms__form {
    max-width: 900px;
  }
}
.forms__form:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  right: 32px;
  top: 31px;
  background-image: url(../img/forms-svg-2.svg);
}
@media (max-width: 768px) {
  .forms__form:nth-child(2)::before {
    right: 20px;
    top: 20px;
  }
}
@media (max-width: 768px) {
  .forms__form:nth-child(2) {
    height: 156px;
    padding: 20px;
  }
}
.forms__form:nth-child(3) {
  background: var(--black);
  border: none;
}
@media (max-width: 768px) {
  .forms__form:nth-child(3) {
    height: auto;
    padding: 20px;
  }
}
.forms__form:nth-child(3)::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  right: 32px;
  top: 31px;
  background-image: url(../img/forms-svg-1.svg);
}
@media (max-width: 768px) {
  .forms__form:nth-child(3)::before {
    right: 20px;
    top: 20px;
  }
}
.forms__form:nth-child(3) .forms__subtitle {
  color: var(--white);
}
@media (max-width: 768px) {
  .forms__form:nth-child(3) .forms__subtitle {
    margin-bottom: 24px;
    padding-right: 20px;
    max-width: 150px;
  }
}
.forms__form:nth-child(3) .forms__btn {
  background: var(--white);
  color: var(--black);
}
.forms__subtitle {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .forms__subtitle {
    font-size: 20px;
  }
}
.forms__btn {
  width: 100%;
  border-radius: 100px;
  padding: 19px 10px;
  background: var(--brown);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.forms__file {
  display: none;
}
.forms__btns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .forms__btns {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.forms__label {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  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;
  gap: 5px;
  border: 1.5px dashed var(--white);
  border-radius: 150px;
  padding: 16px 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--white);
}
@media (max-width: 768px) {
  .forms__label {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
}
.forms__link {
  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;
  gap: 10px;
  padding: 19px 10px;
  background: #29a71a;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hit {
  margin-bottom: 170px;
}
.hit__title {
  margin: 0;
  margin-bottom: 50px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.hit__content {
  position: relative;
}
.hit__img {
  border-radius: 20px;
  height: 450px;
}
.hit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hit__item a {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .hit__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hit__inner {
  width: 100%;
}
@media (max-width: 768px) {
  .hit__inner {
    padding-bottom: 65px;
  }
}
.hit__subtitle {
  display: block;
  margin: 0;
  margin-bottom: 36px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #222;
}
.hit__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .hit__stats {
    margin-bottom: 24px;
  }
}
.hit__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  padding: 8px 24px;
  background: var(--grey);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--black);
}
.hit__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 500px;
  width: 100%;
  gap: 40px;
}
@media (max-width: 768px) {
  .hit__box {
    -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;
    max-width: 900px;
  }
}
.hit__price {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #222;
}
.hit__price span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #222;
}
.hit__price .old-price{
	text-decoration: line-through;
}
.hit__btn {
  max-width: 230px;
  width: 100%;
  border-radius: 100px;
  padding: 21px 10px;
  background: var(--brown);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .hit__btn {
    max-width: 900px;
  }
}
.hit__swiper {
  margin-bottom: 40px;
}
.hit__thumb .swiper-slide {
  max-width: 270px;
}
.hit__slide {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.hit__slide-img {
  max-width: 270px;
  width: 100%;
  height: 180px;
  border-radius: 20px;
}
.hit__slide-inner {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
  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;
  border-radius: 0 0 20px 20px;
  width: 100%;
  padding: 15px 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
}
.hit__name {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--white);
}
.hit__size {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--black);
  border-radius: 100px;
  padding: 4px 7px;
  background: var(--white);
}
.hit__link {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}
.hit__nav {
  position: absolute;
  right: 0;
  bottom: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}
@media (max-width: 768px) {
  .hit__nav {
    bottom: 0px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}
.hit__prev {
  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;
  width: 40px;
  height: 40px;
  background-color: var(--grey);
  border-radius: 100%;
}
.hit__next {
  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;
  width: 40px;
  height: 40px;
  background-color: var(--grey);
  border-radius: 100%;
}
.hit__pag {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
.hit__pag .swiper-pagination-bullet {
  margin: 0 !important;
  width: 8px !important;
  background-color: var(--grey) !important;
}
.hit__pag .swiper-pagination-bullet-active {
  background-color: var(--brown) !important;
}
.hit .tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--devider);
}
.hit .tabs__nav-btn {
  padding-bottom: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--black);
}
.hit .tabs__nav-btn--active {
  color: var(--brown);
  border-bottom: 1px solid var(--brown);
}
.hit .tabs__panel {
  display: none;
}
.hit .tabs__panel--active {
  display: block;
}

.footer {
  background: var(--black);
  padding: 70px 0;
}
.footer__gotop {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 150px;
  bottom: 220px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  z-index: 5;
}
@media (max-width: 768px) {
  .footer__gotop {
    width: 40px;
    height: 40px;
    right: 30px;
    bottom: 30px;
    z-index: 5;
  }
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 300px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #494949;
  }
}
.footer__logo {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
.footer__logo span {
  color: var(--brown);
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 150px;
}
@media (max-width: 1024px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    -webkit-column-gap: 35px;
    -moz-column-gap: 35px;
    column-gap: 35px;
    row-gap: 24px;
  }
}
.footer__name {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-height: 100px;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
}
@media (max-width: 768px) {
  .footer__list {
    max-height: inherit;
  }
}
.footer__list-item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #a3a3a3;
}
.footer__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #a3a3a3;
}
.footer__bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__bot {
    -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;
    gap: 28px;
  }
}
.footer__descr {
  margin: 0;
  margin-bottom: 30px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #a3a3a3;
}
.footer__phone {
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .footer__phone {
    font-size: 20px;
  }
}
.footer__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .footer__mail {
    font-size: 20px;
  }
}
.footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .footer__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}
.footer__btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  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;
  gap: 10px;
  border-radius: 100px;
  padding: 17px 50px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .footer__btn {
    max-width: 900px;
    width: 100%;
  }
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  visibility: hidden;
  width: 260px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  overflow-y: scroll;
  background: #FFF;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.menu--active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.menu__content {
  padding: 30px 15px 10px 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #FFF;
  max-width: 260px;
  height: 100vh;
  width: 100%;
  padding-bottom: 60px;
}
.menu__logo {
  display: block;
  margin-bottom: 20px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  background: radial-gradient(2419.5% 69.22% at 50% 52.13%, rgb(50, 148, 76) 0%, rgb(60, 179, 87) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu__logo span {
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu__list {
  margin-bottom: 20px;
}
.menu__item:not(:last-child) {
  margin-bottom: 13px;
}
.menu__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.menu__phone {
  display: block;
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 125%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu__btn {
  max-width: 300px;
  width: 100%;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 40px;
  border-radius: 90px;
  background: radial-gradient(105.81% 105.81% at 49.33% 40.7%, #d67255 0%, #86221e 100%);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: var(--white);
}
.menu__btn:hover {
  background: radial-gradient(105.81% 105.81% at 49.33% 40.7%, #d79a7d 0%, #ae4a46 100%);
}
.menu__btn:active {
  background: radial-gradient(105.81% 105.81% at 49.33% 40.7%, #9b5e41 0%, #720e0a 100%);
}
.menu__sublink {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.menu__close {
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background-image: url(../img/close.svg);
}

.catalog {
  margin-bottom: 140px;
}
.catalog__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  margin-bottom: 50px;
  gap: 10px;
}
@media (max-width: 1024px) {
  .catalog__filter {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .catalog__filter {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.catalog__reset {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 21px 40px;
  border-radius: 90px;
  background: var(--brown);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.catalog__reset-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .catalog__reset-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.catalog__box {
  padding: 20px;
  border-radius: 20px;
  padding: 20px 24px 24px;
  background: var(--grey);
}
@media (max-width: 768px) {
  .catalog__box {
    padding: 10px;
  }
}
.catalog__box:nth-child(1) .catalog__inner {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.catalog__box:nth-child(1) .catalog__inner::before {
  content: "x";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #262626;
}
@media (max-width: 576px) {
  .catalog__box:nth-child(1) {
    border-bottom: 1px solid var(--devider);
  }
}
.catalog__box:nth-child(2) {
  max-width: 410px;
  width: 100%;
}
.catalog__box:nth-child(2) .catalog__inner {
  gap: 16px;
  margin-top: 23px;
}
@media (max-width: 576px) {
  .catalog__box:nth-child(2) .catalog__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .catalog__box:nth-child(2) {
    border: none;
  }
}
.catalog__box:nth-child(3) {
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .catalog__box:nth-child(3) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    max-width: 1000px;
    border-top: 1px solid var(--devider);
  }
}
@media (max-width: 576px) {
  .catalog__box:nth-child(3) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
}
.catalog__subtitle {
  margin: 0;
  margin-bottom: 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #222;
}
.catalog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
}
.catalog__input {
  -webkit-appearance: none !important;
  margin: 0;
  outline: none;
  display: block;
  max-width: 120px;
  width: 100%;
  border: 1px solid var(--devider);
  background: inherit;
  border-radius: 160px;
  padding: 17px 16px;
  background-image: url(../img/m.svg);
  background-repeat: no-repeat;
  background-position: right 16px top 23px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--txt);
}
.catalog__radio-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.catalog__radio-box label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #222;
}
.catalog__radio {
  border: 1px solid var(--devider);
  border-radius: 5px;
  min-width: 28px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
}
.catalog__radio:checked {
  background-color: var(--brown);
  background-image: url(../img/check.svg);
}
.catalog__slider-nav {
  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;
  padding: 16px 24px;
  border: 1px solid var(--devider);
  border-radius: 160px;
  position: relative;
  width: 100%;
}
.catalog__slider {
  position: absolute;
}
.catalog__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .catalog__content {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .catalog__content {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 80px;
  }
}
@media (max-width: 400px) {
  .catalog__content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.catalog__item {
  position: relative;
  max-width: 410px;
  width: 100%;
  height: 270px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .catalog__item {
    max-width: 600px;
  }
}
.catalog__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 20px;
}
.catalog__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  bottom: 0px;
  left: 0px;
  padding: 20px 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 20px 20px;
}
@media (max-width: 576px) {
  .catalog__info {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
.catalog__name {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 576px) {
  .catalog__name {
    font-size: 14px;
  }
}
.catalog__price {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--white);
}
@media (max-width: 576px) {
  .catalog__price {
    font-size: 16px;
  }
}
.catalog__link {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 3;
  width: 28px;
  height: 28px;
}
.catalog__wrap {
  position: absolute;
  left: 10px;
  top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.catalog__wrap img {
  width: 18px;
  height: 18px;
  position: inherit;
  z-index: 1;
}
.catalog__size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--black);
}
@media (max-width: 576px) {
  .catalog__size {
    font-size: 14px;
  }
}
.catalog__floor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 15px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  text-align: right;
  color: rgb(134, 34, 30);
}
@media (max-width: 576px) {
  .catalog__floor {
    font-size: 14px;
  }
}
.catalog__link {
  position: absolute;
  right: 10px;
  top: 10px;
}
.catalog__slider {
  position: absolute !important;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 95%;
}
@media (max-width: 1024px) {
  .catalog__slider {
    max-width: 1000px;
    width: 95%;
  }
}
.catalog__count {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: var(--txt);
}
@media (max-width: 768px) {
  .catalog__count {
    font-size: 14px;
  }
}
.catalog__count span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .catalog__count span {
    font-size: 16px;
  }
}
.catalog__block {
  padding: 30px;
  border-radius: 30px;
  background: var(--grey);
}
@media (max-width: 576px) {
  .catalog__block {
    padding: 20px;
    border-radius: 20px;
  }
}
.catalog__block-subtitle {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 576px) {
  .catalog__block-subtitle {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .catalog__block-subtitle {
    font-size: 20px;
  }
}
.catalog__block-text {
  margin: 0;
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 400px) {
  .catalog__block-text {
    font-size: 14px;
  }
}
.catalog__block-accent {
  margin: 32px 0 12px 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 576px) {
  .catalog__block-accent {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .catalog__block-accent {
    font-size: 16px;
  }
}
.catalog__block-link {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  background: radial-gradient(2419.5% 69.22% at 50% 52.13%, rgb(50, 148, 76) 0%, rgb(60, 179, 87) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 400px) {
  .catalog__block-link {
    font-size: 14px;
  }
}
.catalog .noUi-target {
  border-radius: 53px !important;
  background: #dddad8 !important;
  border: none !important;
}
.catalog .noUi-handle-upper {
  margin-right: 10px !important;
}
.catalog .noUi-handle:after,
.catalog .noUi-handle:before {
  display: none !important;
}
.catalog .noUi-horizontal {
  height: 6px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
}
.catalog .noUi-horizontal .noUi-handle {
  width: 20px !important;
  height: 20px !important;
  border-radius: 100% !important;
  background-color: inherit;
  border: none;
  top: -9px !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.catalog .noUi-connect {
  background-color: var(--brown) !important;
  height: 3px !important;
}
.catalog .noUi-tooltip {
  display: none !important;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: var(--brown);
  border: none !important;
  background-color: inherit;
}
.catalog .noUi-base {
  height: 3px !important;
}
.catalog .noUi-touch-area {
  background: var(--brown);
  border-radius: 50%;
}
.catalog .noUi-target {
  position: relative;
  border-radius: 53px !important;
  height: 3px !important;
  background: var(--brown) !important;
  border: none !important;
}

.breadcrumbs {
  padding: 105px 0 70px 0;
  background-image: url(../img/breadcrumbs-bg.webp);
  background-size: cover;
  background-position: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 40px;
  }
}
.breadcrumbs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 180px;
}
@media (max-width: 768px) {
  .breadcrumbs__content {
    gap: 130px;
  }
}
.breadcrumbs__list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 7px 16px;
  background: var(--white);
}
.breadcrumbs__item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: var(--black);
}
.breadcrumbs__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: var(--black);
}
.breadcrumbs__title {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--white);
}
.breadcrumbs__title--about {
  max-width: 1525px;
}
@media (max-width: 768px) {
  .breadcrumbs__title {
    font-size: 24px;
  }
}
.breadcrumbs__wrapper {
  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;
}
@media (max-width: 768px) {
  .breadcrumbs__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.breadcrumbs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .breadcrumbs__nav {
    width: 100%;
  }
}
.breadcrumbs__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;
  gap: 10px;
  border: 1px solid var(--white);
  border-radius: 100px;
  padding: 21px 50px;
  background-color: var(--white);
  border: 1px solid var(--white);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--black);
}
@media (max-width: 768px) {
  .breadcrumbs__btn {
    font-size: 0px;
    width: 100%;
  }
}
.breadcrumbs .disabled {
  background-color: inherit;
  color: var(--white);
}
.breadcrumbs .disabled svg path {
  stroke: #FFF;
}

.quest {
  margin-bottom: 140px;
}
@media (max-width: 576px) {
  .quest {
    margin-bottom: 70px;
  }
}
.quest__item {
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--grey);
  margin-bottom: 10px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .quest__item {
    padding: 24px 24px 20px 24px;
  }
}
@media (max-width: 400px) {
  .quest__item {
    padding: 20px 20px 20px 20px;
  }
}
.quest__inner {
  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;
}
.quest__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #222;
}
@media (max-width: 576px) {
  .quest__subtitle {
    font-size: 16px;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 400px) {
  .quest__subtitle {
    gap: 10px;
  }
}
.quest__count {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #adafb1;
}
.quest__text {
  margin: 0;
  max-height: 0;
  opacity: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.quest__text--active {
  margin-top: 20px;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 576px) {
  .quest__text {
    font-size: 14px;
  }
}
.quest__btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #FFF;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  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;
}
.quest__btn svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.quest__btn--active {
  background-color: var(--black);
}
.quest__btn--active svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.quest__btn--active svg path {
  stroke: #FFF;
}

.project-info {
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .project-info {
    margin-bottom: 70px;
  }
}
@media (max-width: 576px) {
  .project-info .container {
    padding: 0;
  }
}
.project-info__title {
  margin: 0;
  margin-bottom: 50px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #020202;
}
.project-info__title--accent {
  margin-bottom: 36px;
}
@media (max-width: 1024px) {
  .project-info__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .project-info__title {
    padding: 0 15px;
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .project-info__wrapper {
    margin-bottom: 30px;
    padding: 0 15px;
  }
}
.project-info__content {
  border: 1px solid var(--devider);
  border-radius: 20px;
  margin-bottom: 80px;
}
@media (max-width: 576px) {
  .project-info__content {
    margin: 0;
  }
}
.project-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.project-info__row:not(:last-child) {
  border-bottom: 1px solid var(--devider);
}
.project-info__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
  height: 96px;
  padding: 0 36px;
  max-width: 410px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #020202;
}
@media (max-width: 768px) {
  .project-info__name {
    font-size: 18px;
    height: auto;
    max-width: 230px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .project-info__name {
    font-size: 16px;
    width: 100%;
    max-width: 170px;
    padding: 0 10px;
  }
}
@media (max-width: 400px) {
  .project-info__name {
    font-size: 12px;
    max-width: 150px;
  }
}
.project-info__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  height: 96px;
  padding: 0 36px;
  border-left: 1px solid var(--devider);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #5c5c5c;
}
@media (max-width: 768px) {
  .project-info__text {
    height: auto;
    font-size: 18px;
    padding: 20px 20px;
  }
}
@media (max-width: 576px) {
  .project-info__text {
    font-size: 16px;
    padding: 20px 10px;
  }
}
@media (max-width: 400px) {
  .project-info__text {
    font-size: 11px;
    padding: 15px 10px;
  }
}
.project-info .tabs__panel {
  display: none;
  position: relative;
}
.project-info .tabs__panel--active {
  display: block;
}
@media (max-width: 576px) {
  .project-info .tabs .project-info__grant {
    margin: 0 15px;
  }
}
@media (max-width: 576px) {
  .project-info .tabs .project-info__tech {
    margin: 0 15px;
  }
}
@media (max-width: 576px) {
  .project-info .tabs__wrapper {
    padding: 0 15px 12px 15px;
    margin-bottom: 28px;
  }
}
.project-info .tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .project-info .tabs__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .project-info .tabs__nav-item {
    width: 100%;
  }
}
.project-info .tabs__nav-btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--black);
  border: 1.5px solid var(--devider);
  border-radius: 100px;
  padding: 11px 24px;
}
@media (max-width: 768px) {
  .project-info .tabs__nav-btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .project-info .tabs__nav-btn {
    font-size: 14px;
  }
}
.project-info .tabs__nav-btn--active {
  background-color: var(--grey);
}
.project-info__grant {
  border: 1px solid var(--devider);
  border-radius: 30px;
}
.project-info__subtitle {
  padding: 36px 36px 0 36px;
  margin: 0;
  margin-bottom: 24px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 28px;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 576px) {
  .project-info__subtitle {
    font-size: 24px;
    padding: 24px 24px 0 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 400px) {
  .project-info__subtitle {
    font-size: 20px;
    padding: 20px 20px 0px 20px;
    margin-bottom: 12px;
  }
}
.project-info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  padding: 0px 36px 36px 36px;
  border-bottom: 1px solid var(--devider);
}
@media (max-width: 768px) {
  .project-info__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0px 24px 24px 24px;
  }
}
@media (max-width: 400px) {
  .project-info__wrap {
    padding: 0px 20px 20px 20px;
  }
}
.project-info__box {
  border-radius: 20px;
  padding: 20px;
  background: var(--grey);
  max-width: 515px;
}
.project-info__strong {
  margin: 0;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.project-info__descr {
  margin: 0;
  margin-top: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.project-info__over {
  padding: 36px;
}
@media (max-width: 576px) {
  .project-info__over {
    padding: 24px;
  }
}
@media (max-width: 400px) {
  .project-info__over {
    padding: 20px;
  }
}
.project-info__accent {
  border-radius: 20px;
  padding: 20px;
  background-color: var(--brown);
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--white);
}
@media (max-width: 576px) {
  .project-info__accent {
    font-size: 14px;
  }
}
.project-info__tech {
  border: 1px solid var(--devider);
  border-radius: 30px;
  padding: 36px;
}
@media (max-width: 768px) {
  .project-info__tech {
    padding: 15px;
  }
}
.project-info__tech-subtitle {
  margin: 0;
  margin-bottom: 16px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.project-info__tech-text {
  max-width: 1044px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-inner {
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .project-inner {
    margin-bottom: 70px;
  }
}
.project-inner__content {
  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;
  gap: 10px;
}
@media (max-width: 1024px) {
  .project-inner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.project-inner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 10px;
  max-width: 970px;
  width: 100%;
}
@media (max-width: 1024px) {
  .project-inner__wrapper {
    max-width: 1100px;
    max-height: inherit;
  }
}
@media (max-width: 576px) {
  .project-inner__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.project-inner__swiper {
  max-width: 970px;
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .project-inner__swiper {
    max-width: 1000px;
  }
}
.project-inner__swiper .swiper-slide:nth-child(3) img {
  -o-object-fit: contain;
  object-fit: contain;
}
.project-inner__swiper .swiper-slide:nth-child(4) img {
  -o-object-fit: contain;
  object-fit: contain;
}
.project-inner__swiper .swiper-slide:nth-child(5) img {
  -o-object-fit: contain;
  object-fit: contain;
}
.project-inner__swiper .swiper-slide:nth-child(6) img {
  -o-object-fit: contain;
  object-fit: contain;
}
.project-inner__swiper .swiper-slide:nth-child(7) img {
  -o-object-fit: contain;
  object-fit: contain;
}
.project-inner__swiper .swiper-slide img {
  height: 570px;
  border-radius: 20px;
  width: 100%;
}
.project-inner__swiper .swiper-slide:last-child img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .project-inner__swiper .swiper-slide {
    max-width: 1000px;
    width: 100%;
  }
  .project-inner__swiper .swiper-slide img {
    height: auto;
    width: 100%;
  }
}
.project-inner__thumbs {
  width: 100%;
}
.project-inner__thumbs .swiper-slide {
  height: 130px;
  width: 186px;
}
.project-inner__thumbs .swiper-slide img {
  height: 130px;
  border-radius: 20px;
}
.project-inner__count {
  position: absolute;
  z-index: 2;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  left: 28px !important;
  bottom: 28px !important;
  border-radius: 100px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.4);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--white) !important;
}
@media (max-width: 768px) {
  .project-inner__count {
    left: 15px !important;
    bottom: 15px !important;
    font-size: 14px;
  }
}
.project-inner__prev {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  left: 28px;
}
.project-inner__next {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  right: 28px;
}
.project-inner__box {
  border: 1px solid var(--devider);
  border-radius: 20px;
  max-width: 690px;
  width: 100%;
  background: var(--grey);
  padding: 32px;
}
@media (max-width: 1024px) {
  .project-inner__box {
    max-width: 1000px;
    padding: 20px;
  }
}
.project-inner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 53px;
}
@media (max-width: 768px) {
  .project-inner__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    gap: 20px;
    margin-bottom: 28px;
  }
}
.project-inner__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .project-inner__list-item {
    gap: 12px;
  }
  .project-inner__list-item img {
    width: 36px;
    height: 36px;
  }
}
.project-inner__number {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: #222;
}
@media (max-width: 768px) {
  .project-inner__number {
    font-size: 20px;
  }
}
.project-inner__descr {
  margin: 0;
  margin-bottom: 5px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #222;
}
@media (max-width: 768px) {
  .project-inner__descr {
    font-size: 14px;
  }
}
.project-inner__phone {
  display: block;
  margin-bottom: 50px;
  padding: 19px 10px;
  width: 100%;
  border: 1px solid var(--black);
  border-radius: 10px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--black);
}
@media (max-width: 768px) {
  .project-inner__phone {
    font-size: 20px;
    padding: 16px 10px;
    margin-bottom: 28px;
  }
}
.project-inner__item {
  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;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--devider);
}
@media (max-width: 768px) {
  .project-inner__item {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.project-inner__item:nth-child(3) {
  border: none;
  margin-bottom: 26px;
  padding-bottom: 26px;
}
@media (max-width: 768px) {
  .project-inner__item:nth-child(3) {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
}
.project-inner__span {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #222;
}
@media (max-width: 768px) {
  .project-inner__span {
    font-size: 14px;
  }
}
.project-inner__price {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--black);
}
.project-inner__price .old-price {
    text-decoration: line-through;
    font-size: 24px;
    display: inline-block;
    margin-right: 10px;
}

@media (max-width: 768px) {
  .project-inner__price {
    font-size: 20px;
  }
	.project-inner__price .old-price{
		font-size: 16px;
	}	
}
@media (max-width: 479px){
	.project-inner__price {
		display: flex;
		flex-direction: column;
	}
}

.project-inner__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .project-inner__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.project-inner__btn {
  width: 100%;
  border-radius: 100px;
  background: var(--brown);
  padding: 21px 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .project-inner__btn {
    font-size: 16px;
  }
}
.project-inner__link {
  width: 100%;
  border: 1px solid rgb(57, 57, 57);
  border-radius: 70px;
  padding: 20px 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  background: radial-gradient(0% 128.93% at 89.73% 92.58%, rgb(0, 0, 0) 0%, rgb(57, 57, 57) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .project-inner__link {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .project-inner__link {
    max-width: 500px;
  }
}

.gallery {
  margin-bottom: 140px;
}
.gallery__subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--devider);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 576px) {
  .gallery__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .gallery__subtitle {
    font-size: 16px;
  }
}
.gallery__box {
  margin-bottom: 82px;
}
.gallery__wrapper {
  position: relative;
}
.gallery__prev {
  position: absolute;
  left: -52px;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gallery__next {
  position: absolute;
  right: -52px;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gallery__pag {
  margin: 0 auto;
  margin-top: 30px;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
.gallery__pag .swiper-pagination-bullet {
  margin: 0 !important;
  width: 8px !important;
  background-color: var(--grey) !important;
}
.gallery__pag .swiper-pagination-bullet-active {
  background-color: var(--brown) !important;
}
.gallery .swiper-button-disabled svg path {
  stroke: #D5D7D9;
}
.gallery__swiper .swiper-slide {
  max-width: 410px;
}
.gallery__swiper .swiper-slide img {
  height: 220px;
  border-radius: 20px;
}

.posts {
  margin-bottom: 180px;
}
.posts__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  row-gap: 50px;
}

.posts__item {
  position: relative;
  max-width: 410px;
  width: 100%;
  border-radius: 20px;
  padding: 28px;
  background: var(--grey);
}

@media (max-width: 1199px){
	.posts__content{
		-ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
	}
	.posts__item{
		max-width: 100%;
	}
}
@media (max-width: 599px){
	.posts__content{
		display: block;}
	.posts__item{
		display: block;
		margin-bottom: 20px;
	}
}
.posts__item::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 32px;
  height: 32px;
  background-image: url(../img/hero-arrow.svg);
}
.posts__name {
  margin: 20px 0 16px 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.posts__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}

.about {
  margin-bottom: 180px;
}
@media (max-width: 768px) {
  .about {
    margin-bottom: 80px;
  }
}
.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about__content {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .about__content {
    margin-bottom: 80px;
  }
}
.about__name {
  margin: 0;
  margin-bottom: 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .about__name {
    font-size: 20px;
  }
}
.about__text {
  margin: 0;
  margin-bottom: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.about__text:last-child {
  margin: 0;
}
@media (max-width: 768px) {
  .about__text {
    font-size: 14px;
  }
}
.about__inner {
  max-width: 930px;
}
.about__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .about__imgs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about__title {
  margin: 0;
  margin-bottom: 50px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .about__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.about__item {
  border-radius: 20px;
  padding: 36px;
  background: var(--grey);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .about__item {
    padding: 20px;
  }
}
.about__subtitle {
  margin: 0;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .about__subtitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.about__descr {
  margin: 0;
  margin-bottom: 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.about__descr:last-child {
  margin: 0;
}
@media (max-width: 768px) {
  .about__descr {
    font-size: 14px;
  }
}
.about__accent {
  margin: 0;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.about__accent::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--brown);
}
@media (max-width: 768px) {
  .about__accent {
    font-size: 16px;
  }
}
.about__list-item {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--devider);
}
@media (max-width: 768px) {
  .about__list-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.about__list-item:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0px solid var(--devider);
}
.about__list-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .about__list-text {
    font-size: 14px;
  }
}
.about__block {
  position: relative;
  height: 850px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .about__block {
    gap: 10px;
    height: auto;
  }
}
.about__block img {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .about__block img {
    position: relative;
  }
}
.about__block-inner {
  width: 100%;
  border-radius: 10px;
  padding: 36px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .about__block-inner {
    padding: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: var(--grey);
  }
}
.about__block-title {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .about__block-title {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--black);
  }
}
.about__block-text {
  margin: 0;
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 768px) {
  .about__block-text {
    font-size: 14px;
    color: var(--black);
  }
}
.about__block-text:last-child {
  margin: 0;
}

.contacts-page {
  margin-bottom: 200px;
}
.contacts-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .contacts-page__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}
.contacts-page__inner {
  max-width: 970px;
  width: 100%;
}
.contacts-page__item {
  border-radius: 20px;
  padding: 28px;
  background: var(--grey);
  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;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .contacts-page__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 24px;
  }
}
.contacts-page__subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--txt);
}
@media (max-width: 768px) {
  .contacts-page__subtitle {
    font-size: 14px;
  }
}
.contacts-page__link {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--black);
}
@media (max-width: 768px) {
  .contacts-page__link {
    font-size: 20px;
  }
}
.contacts-page__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .contacts-page__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.contacts-page__btn {
  width: 100%;
  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;
  gap: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 21px 50px;
  background-color: #29a71a;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--white);
}
.contacts-page__btn:nth-child(2) {
  background-color: #039be5;
}

.graph-modal__container {
  width: 1200px !important;
  padding: 50px 50px !important;
}
@media (max-width: 768px) {
  .graph-modal__container {
    padding: 70px 20px !important;
  }
}
.graph-modal__grid {
  margin-bottom: 50px;
  border-bottom: 1px solid var(--devider);
}
.graph-modal__title {
  margin: 0;
  margin-bottom: 24px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #222;
}
@media (max-width: 768px) {
  .graph-modal__title {
    font-size: 28px;
  }
}
.graph-modal__descr {
  margin: 0;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--devider);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #222;
}
@media (max-width: 768px) {
  .graph-modal__descr {
    font-size: 16px;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
.graph-modal__item {
  margin-bottom: 36px;
}
.graph-modal__inner .wpcf7-radio {
  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;
  gap: 30px;
}
@media (max-width: 768px) {
  .graph-modal__inner .wpcf7-radio {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.graph-modal__inner .wpcf7-list-item {
  margin: 0;
}
.graph-modal__inner .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .graph-modal__inner .wpcf7-list-item label {
    gap: 6px;
  }
}
.graph-modal__inner .wpcf7-list-item input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  border: 1px solid var(--devider);
}
@media (max-width: 768px) {
  .graph-modal__inner .wpcf7-list-item input {
    width: 20px;
    height: 20px;
  }
}
.graph-modal__inner .wpcf7-list-item input:checked {
  background-color: var(--brown);
}
.graph-modal__inner .wpcf7-list-item-label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #222;
}
@media (max-width: 768px) {
  .graph-modal__inner .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.graph-modal__subtitle {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #222;
}
@media (max-width: 768px) {
  .graph-modal__subtitle {
    font-size: 20px;
  }
}
.graph-modal__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  row-gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .graph-modal__wrapper {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.graph-modal__input {
  outline: none;
  width: 100%;
  border-radius: 90px;
  padding: 21px 20px;
  background: var(--grey);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: #adb3b4;
}
.graph-modal__box:nth-child(2) {
  -ms-grid-row-span: 5;
  grid-row: 5 span;
}
@media (max-width: 768px) {
  .graph-modal__box:nth-child(2) {
    -ms-grid-row-span: 1;
    grid-row: 1 span;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.graph-modal__box:nth-child(2) textarea {
  resize: none;
  padding: 18px 20px;
  border-radius: 10px;
  height: 100%;
}
.graph-modal__nav {
  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;
}
@media (max-width: 768px) {
  .graph-modal__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.graph-modal__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .graph-modal__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}
.graph-modal__file {
  display: none;
}
.graph-modal__file-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #222;
}
.graph-modal__file-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;
  gap: 5px;
  border: 2px dashed #020202;
  border-radius: 80px;
  padding: 16px 30px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #020202;
}
@media (max-width: 768px) {
  .graph-modal__file-btn {
    width: 100%;
  }
}
.graph-modal__btn {
  max-width: 552px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: var(--black);
  border-radius: 100px;
  background: var(--brown);
  padding: 18px 40px;
}
.graph-modal__btn-text {
  margin: 0;
  margin-top: 36px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--black);
}
.graph-modal__btn-text span {
  color: var(--brown);
}
.graph-modal__close {
  right: 20px !important;
  top: 20px !important;
  width: 36px !important;
  height: 36px !important;
  background-image: url(../img/close.svg) !important;
}
.graph-modal__wrap {
  margin-bottom: 50px;
}
.graph-modal__wrap-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .graph-modal__wrap-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.graph-modal__wrap-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  padding: 24px;
  background: var(--grey);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .graph-modal__wrap-item {
    padding: 14px;
    font-size: 16px;
    gap: 6px;
  }
}
.graph-modal__wrap-item::before {
  content: "";
  display: block;
  min-width: 8px;
  height: 8px;
  background-color: var(--brown);
  border-radius: 100%;
}
.graph-modal__wrap-subtitle {
  margin: 0;
  margin-bottom: 32px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #222;
}
@media (max-width: 768px) {
  .graph-modal__wrap-subtitle {
    font-size: 22px;
  }
}
.graph-modal__modal {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  row-gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .graph-modal__modal {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 10px;
  }
}
.graph-modal__message {
  outline: none;
  width: 100%;
  border-radius: 10px;
  padding: 20px 18px;
  background: var(--grey);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: #adb3b4;
}
.graph-modal__wrap-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.graph-modal__wrap-nav .graph-modal__btn {
  width: 100%;
  max-width: inherit;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  display: none;
}

.reviews {
  margin-bottom: 180px;
}
.reviews__content {
  display: block;
}
.reviews__item {
  width: calc((100% - 48px) / 3);
  position: relative;
  border-radius: 20px;
  padding: 28px;
  background: var(--grey);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .reviews__item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .reviews__item {
    padding: 20px;
  }
}
.reviews__name {
  padding-right: 50px;
  margin: 0;
  margin-bottom: 62px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .reviews__name {
    font-size: 20px;
    margin-bottom: 20px;
    padding-right: 80px;
  }
}
.reviews__text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .reviews__text {
    font-size: 16px;
  }
}
.reviews__date {
  position: absolute;
  right: 28px;
  top: 42px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--txt);
}

.tech {
  margin-bottom: 180px;
}
@media (max-width: 768px) {
  .tech {
    margin-bottom: 80px;
  }
}
.tech__accent {
  margin: 0;
  margin-bottom: 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.tech__descr {
  max-width: 930px;
  margin: 0;
  margin-bottom: 120px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__descr {
    font-size: 14px;
    margin-bottom: 80px;
  }
}
.tech__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .tech__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 30px;
  }
}
.tech__wrap-inner {
  max-width: 970px;
}
.tech__subtitle {
  max-width: 830px;
  margin: 0;
  margin-bottom: 50px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__subtitle {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.tech__subtitle span {
  color: var(--brown);
}
.tech__strong {
  margin: 0;
  margin-bottom: 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__strong {
    font-size: 16px;
  }
}
.tech__wrap-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__wrap-text {
    font-size: 14px;
  }
}
.tech__title {
  margin: 0;
  margin-bottom: 28px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.tech__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--devider);
  border-radius: 20px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .tech__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 80px;
  }
}
.tech__item {
  padding: 36px;
}
@media (max-width: 768px) {
  .tech__item {
    padding: 20px;
  }
}
.tech__item:nth-child(1) {
  border-bottom: 1px solid var(--devider);
  border-right: 1px solid var(--devider);
}
@media (max-width: 768px) {
  .tech__item:nth-child(1) {
    border-right: 0px solid var(--devider);
  }
}
.tech__item:nth-child(2) {
  border-bottom: 1px solid var(--devider);
}
.tech__item:nth-child(3) {
  border-right: 1px solid var(--devider);
}
@media (max-width: 768px) {
  .tech__item:nth-child(3) {
    border-right: 0px solid var(--devider);
  }
}
.tech__item:nth-child(5) {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  border-top: 1px solid var(--devider);
}
@media (max-width: 768px) {
  .tech__item:nth-child(5) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
}
@media (max-width: 768px) {
  .tech__item:not(:last-child) {
    border-bottom: 1px solid var(--devider);
  }
}
.tech__item-title {
  margin: 0;
  margin-bottom: 16px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__item-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.tech__item-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__item-text {
    font-size: 14px;
  }
}
.tech__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .tech__content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 30px;
  }
}
.tech__box {
  border-radius: 20px;
  padding: 36px;
  background: var(--grey);
}
@media (max-width: 768px) {
  .tech__box {
    padding: 20px;
  }
}
.tech__box-title {
  margin: 0;
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__box-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.tech__box-text {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__box-text {
    font-size: 14px;
  }
}
.tech__content-text {
  max-width: 1120px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.03em;
  color: var(--black);
}
@media (max-width: 768px) {
  .tech__content-text {
    font-size: 14px;
  }
}

.popular {
  margin-bottom: 180px;
}
.popular__title {
  margin: 0;
  margin-bottom: 50px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 90%;
  letter-spacing: -0.03em;
  color: var(--black);
}
.popular__wrapper {
  position: relative;
}
.popular__prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -52px;
}
.popular__next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -52px;
}
.popular__item {
  position: relative;
  max-width: 410px;
  width: 100%;
  height: 270px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .popular__item {
    max-width: 600px;
  }
}
.popular__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 20px;
}
.popular__info {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  bottom: 0px;
  left: 0px;
  padding: 20px 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 20px 20px;
}
@media (max-width: 576px) {
  .popular__info {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
.popular__name {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--white);
}
@media (max-width: 576px) {
  .popular__name {
    font-size: 14px;
  }
}
.popular__price {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--white);
}
.popular__price.popular__price-old{
	text-decoration: line-through;
	font-size: 16px;
	margin-right: 10px;
}
.popular__price-wrap{
	display: flex;
	flex-direction: column;
}

@media (max-width: 576px) {
  .popular__price {
    font-size: 16px;
  }
}
.popular__link {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 3;
  width: 28px;
  height: 28px;
}
.popular__wrap {
  position: absolute;
  left: 10px;
  top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.popular__wrap img {
  width: 18px;
  height: 18px;
  position: inherit;
  z-index: 1;
}
.popular__size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: right;
  color: var(--black);
}
@media (max-width: 576px) {
  .popular__size {
    font-size: 14px;
  }
}
.popular__floor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 15px;
  background: var(--white);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  text-align: right;
  color: rgb(134, 34, 30);
}
@media (max-width: 576px) {
  .popular__floor {
    font-size: 14px;
  }
}
.popular__link {
  position: absolute;
  right: 10px;
  top: 10px;
}

.text_edit{
	font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: var(--black);
}

/*# sourceMappingURL=main.css.map */
