@font-face {
  font-family: T2 Rooftop;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/t2-Rooftop-Regular.woff2) format("woff2");
}

@font-face {
  font-family: T2 Rooftop;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/t2-Rooftop-Medium.woff2) format("woff2");
}

@font-face {
  font-family: T2 Halvar Breit;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/HalvarBreitt2-XBd.woff2) format("woff2");
}

:root {
  --indexSize: 1vh + 1vw;
  --black: #1f2229;
  --accent: #714bf1;
  --zIndexHeader: 1000;
  --zIndexModal: 9999;
}

html {
  font-size: 10px;
  scroll-behavior: auto;
}

body,
html {
  height: 100%;
  min-width: 320px;
  scrollbar-gutter: stable;
}

body {
  color: #000;
  font-size: 15px;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea {
  font-family:
    T2 Rooftop,
    sans-serif;
}

button,
input,
textarea {
  font-size: inherit;
  line-height: inherit;
}

body.lock {
  overflow: hidden;
  padding-right: 17px;
}

.touch body.lock {
  padding-right: 0;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  padding-top: 71px;
}

.wrapper > main,
main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}

::selection {
  background-color: #000;
  color: #fff;
}

input,
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

[data-fullscreen] {
  min-height: 100vh;
}

.touch [data-fullscreen] {
  min-height: calc(var(--vh, 1vh) * 100);
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}

@keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
}

@-webkit-keyframes moveUpDownReverse {
  0% {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
}

@keyframes moveUpDownReverse {
  0% {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}

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

.input,
.textarea {
  background: transparent;
  border: 0.6px solid #1f2229;
  border-radius: 4px;
  color: #1f2229;
  font-family:
    T2 Rooftop,
    sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 0 23px;
  text-align: left;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
  color: #616161;
  opacity: 1;
  -moz-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  -ms-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input::placeholder,
.textarea::placeholder {
  color: #616161;
  opacity: 1;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder,
.textarea:focus::placeholder {
  opacity: 0;
}

.textarea {
  padding: 16px 23px;
  resize: none;
}

.h1 {
  font-size: 38px;
  letter-spacing: -0.01em;
  line-height: 0.67761;
}

.h1,
.h2 {
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.h2 {
  font-size: 24px;
  line-height: 1.16667;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

a,
a:hover {
  color: #000;
  text-decoration: none;
}

.container {
  margin: 0 auto;
  max-width: 1216px;
  padding-left: 40px;
  padding-right: 40px;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-shadow: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background: #000;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  justify-content: center;
  letter-spacing: 0;
  padding: 16px 24px;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover {
  background-color: #333;
  color: #f2f2f2;
}

.btn--yellow {
  background: #a7fc00;
  color: #000;
}

.btn--yellow:hover {
  background: #74c800;
  color: #000;
}

svg {
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.svg-hidden {
  display: none;
}

@-webkit-keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDownMini {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -32%, 0);
    transform: translate3d(0, -32%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDownMini {
  -webkit-animation-name: fadeInDownMini;
  animation-name: fadeInDownMini;
}

@-webkit-keyframes fadeInDown20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown20 {
  -webkit-animation-name: fadeInDown20;
  animation-name: fadeInDown20;
}

@-webkit-keyframes fadeInDown10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown10 {
  -webkit-animation-name: fadeInDown10;
  animation-name: fadeInDown10;
}

@-webkit-keyframes fadeInUp20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp20 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp20 {
  -webkit-animation-name: fadeInUp20;
  animation-name: fadeInUp20;
}

@-webkit-keyframes fadeInUp10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp10 {
  -webkit-animation-name: fadeInUp10;
  animation-name: fadeInUp10;
}

@-webkit-keyframes fadeInLeft10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeft10 {
  -webkit-animation-name: fadeInLeft10;
  animation-name: fadeInLeft10;
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.86);
    transform: scale(0.86);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.86);
    transform: scale(0.86);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.scaleUp {
  -webkit-animation-name: scaleUp;
  animation-name: scaleUp;
}

@-webkit-keyframes fadeInRight10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRight10 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRight10 {
  -webkit-animation-name: fadeInRight10;
  animation-name: fadeInRight10;
}

@-webkit-keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clip {
  0% {
    clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

.clip {
  -webkit-animation-name: clip;
  animation-name: clip;
}

@-webkit-keyframes clipInLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInLeft {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@-webkit-keyframes clipInRight {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInRight {
  0% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

.clipInRight {
  -webkit-animation-name: clipInRight;
  animation-name: clipInRight;
}

.clipInLeft {
  -webkit-animation-name: clclipInLeftip;
  animation-name: clipInLeft;
}

@-webkit-keyframes clipInUp {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

@keyframes clipInUp {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0.4;
    will-change: clip-path;
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    will-change: clip-path;
  }
}

.clipInUp {
  -webkit-animation-name: clipInUp;
  animation-name: clipInUp;
}

[class*="-ibg"] {
  position: relative;
}

[class*="-ibg"] img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}

.scroll-area {
  scrollbar-color: #d6d6d7 transparent;
  scrollbar-width: thin;
}

.scroll-area::-webkit-scrollbar {
  width: 7px;
}

.scroll-area::-webkit-scrollbar-track {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.scroll-area::-webkit-scrollbar-thumb {
  background-color: #d6d6d7;
  outline: none;
}

.quantity-inner {
  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;
}

.bt-minus {
  background: url(../img/icons/quantity-minus.svg) 50% / contain no-repeat;
  cursor: pointer;
  height: 32px;
  width: 32px;
}

.bt-minus,
.quantity {
  border: none;
  margin: 0;
  padding: 0;
}

.quantity {
  background: none;
  color: #fff;
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-weight: 500;
  height: 33px;
  max-width: 40px;
  min-width: 40px;
  text-align: center;
}

.bt-plus {
  background: url(../img/icons/quantity-plus.svg) 50% / contain no-repeat;
  border: none;
  cursor: pointer;
  height: 32px;
  margin: 0;
  outline: none;
  padding: 0;
  width: 32px;
}

.header {
  background: #000;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.header__area {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  height: 71px;
  justify-content: space-between;
}

.header__area,
.header__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logos {
  gap: 28px;
}

.header__logo {
  position: relative;
}

.header__logo:after {
  background: url(../img/icons/line.svg) 50% / contain no-repeat;
  border-radius: 50%;
  content: "";
  height: 34px;
  position: absolute;
  right: -14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
}

.header__logo:last-of-type:after {
  display: none;
}

.header__auth {
  background: #fff;
  color: #1f2229;
  font-size: 12px;
  line-height: 16px;
  padding: 8px 12px;
}

.header__auth:hover {
  background-color: #e6e6e6;
  color: #1a1a1a;
}

.footer {
  background: #000;
  color: #808693;
  height: 152px;
  padding: 94px 0 40px;
  position: relative;
}

.footer:after {
  background: #fff;
  border-radius: 24px;
  content: "";
  height: 152px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -88px;
  width: 100%;
}

.footer__area {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 40px;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 46px;
  padding-right: 23px;
}

.footer__area,
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__links {
  gap: 23px;
}

.footer__links a {
  color: #808693;
  font-size: 10px;
  line-height: 2.2;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.footer__links a:hover {
  text-decoration: none;
}

.footer__copy a,
.footer__copy span {
  color: #808693;
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.catalog {
  padding: 32px 0 87px;
  position: relative;
  z-index: 2;
}

.catalog__area {
  background: #f2f3f5;
  border-radius: 32px;
  padding: 20px 24px 24px;
}

.catalog__area .h2 {
  font-size: 29px;
  line-height: 1;
  text-transform: none;
}

.catalog__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 19px;
}

.catalog__item {
  background: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 24px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 555px;
}

.catalog__item-title {
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.29513;
  margin-bottom: 11px;
  margin-right: -20px;
  text-transform: uppercase;
}

.catalog__item-image {
  height: 181px;
  margin-bottom: 11px;
  width: 100%;
}

.catalog__item-image img {
  border-radius: 16px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.catalog__item-description {
  font-size: 15px;
  line-height: 1.46667;
  margin-bottom: 18px;
}

.catalog__item-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  margin-top: auto;
  padding: 16px 11px;
  text-align: center;
}

.hero {
  background: #141416;
  margin-bottom: -14px;
  padding: 32px 0 55px;
  position: relative;
}

.hero:after {
  background: #fff;
  border-radius: 24px;
  content: "";
  height: 186px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 24px);
  width: 100%;
}

.hero__area {
  background: url(../img/hero-bg.jpg) 50% / cover no-repeat;
  border-radius: 32px;
  overflow: hidden;
  padding: 24px;
}

.hero__content {
  background: #fff;
  border-radius: 24px;
  -webkit-box-shadow:
    0 -8px 17px 0 rgba(0, 0, 0, 0.03),
    0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow:
    0 -8px 17px 0 rgba(0, 0, 0, 0.03),
    0 2px 12px 0 rgba(0, 0, 0, 0.06);
  color: #000;
  max-width: 520px;
  padding: 28px 24px 24px;
  width: 100%;
}

.hero__content .h1 {
  margin-bottom: 15px;
}

.hero__content p {
  color: #000;
  font-size: 15px;
  line-height: 1.46667;
}

.hero__content p:last-of-type {
  margin-bottom: 0;
}

.hero__btn {
  margin-top: 145px;
  max-width: 100%;
  width: 100%;
}

.tarifs {
  padding: 23px 0 0;
  position: relative;
  z-index: 2;
}

.tarifs__area {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 16px;
  justify-content: space-between;
}

.tarifs__area,
.tarifs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tarifs__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  border-radius: 32px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 367px;
  padding: 20px 24px;
  position: relative;
  width: 100%;
}

.tarifs__item p {
  font-size: 15px;
  line-height: 1.46667;
  margin-bottom: 0;
  margin-top: 23px;
}

.tarifs__item-abs {
  background: #a7fc00;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.375;
  padding: 8px 12px;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
  top: 24px;
}

.tarifs__item-abs,
.tarifs__item-title {
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-weight: 500;
}

.tarifs__item-title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
}

.tarifs__item-price {
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.29513;
  text-transform: uppercase;
}

.tarifs__item--eco {
  background: #fff;
}

.tarifs__item--tree {
  background: #a7fc00;
}

.tarifs__item--hero {
  background: #000;
  color: #fff;
}

.hectare-hero {
  padding: 32px 0 0;
}

.hectare-hero__area {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 16px;
  justify-content: space-between;
}

.hectare-hero__area,
.hectare-hero__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hectare-hero__text {
  background: #f2f3f5;
  border-radius: 32px;
  max-width: 656px;
  padding: 23px 25px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hectare-hero__text .h2 {
  margin-bottom: 14px;
  max-width: 341px;
}

.hectare-hero__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 11px;
}

.hectare-hero__item .h3 {
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.29513;
  margin-bottom: 0;
  text-transform: uppercase;
}

.hectare-hero__item p {
  font-size: 15px;
  line-height: 1.46667;
  margin-bottom: 0;
  max-width: 473px;
}

.hectare-hero__item-num {
  background: #a7fc00;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  line-height: 1.25;
  max-width: 40px;
  text-transform: uppercase;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.hectare-hero__btn {
  margin-top: 13px;
  max-width: 360px;
}

.hectare-hero__image {
  max-width: 464px;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.hectare-hero__image img {
  border-radius: 32px;
  height: 434px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hectare-hero__image--mobile {
  display: none;
}

.partners {
  padding: 32px 0 0;
}

.partners__area {
  background: #000;
  border-radius: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 16px;
}

.partners__image {
  max-width: 544px;
  width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.partners__image img {
  border-radius: 24px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.partners__text {
  -webkit-box-flex: 1;
  background: #fff;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  -ms-flex-direction: column;
  flex-direction: column;
}

.partners__text .h2 {
  margin-bottom: 15px;
  max-width: 520px;
}

.partners__text p {
  font-size: 15px;
  line-height: 1.46667;
  margin-bottom: 21px;
  max-width: 509px;
}

.partners__text p:last-of-type {
  margin-bottom: 0;
}

.partners__btn {
  margin-top: 30px;
  max-width: 360px;
}

.faq {
  padding: 29px 0 0;
  position: relative;
  z-index: 2;
}

.faq__header {
  max-width: 728px;
}

.faq__header .h2 {
  margin-bottom: 6px;
}

.faq__header p {
  font-size: 15px;
  line-height: 1.46667;
  margin-bottom: 0;
}

.faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.faq__body .accordion-container {
  width: 100%;
}

.faq__body .accordion-container:first-of-type .ac:first-of-type .ac-text,
.faq__body .accordion-container:first-of-type .ac:nth-of-type(3) .ac-text {
  max-width: 412px;
}

.faq__body .accordion-container:first-of-type .ac:nth-of-type(2) .ac-text {
  max-width: 435px;
}

.faq__body .accordion-container:nth-of-type(2) .ac:first-of-type .ac-text,
.faq__body .accordion-container:nth-of-type(2) .ac:nth-of-type(3) .ac-text {
  max-width: 443px;
}

.faq__body .accordion-container:nth-of-type(2) .ac:nth-of-type(2) .ac-text {
  max-width: 464px;
}

.faq__body .accordion-container .ac {
  background: #f2f3f5;
  border: none;
  border-radius: 32px;
  margin-top: 8px;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.faq__body .accordion-container .ac.is-active {
  background: #f8f9fa;
}

.faq__body .accordion-container .ac-trigger {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family:
    T2 Rooftop,
    sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.46667;
  padding-left: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  padding-right: 85px;
}

.faq__body .accordion-container .ac-trigger:focus {
  color: #000;
}

.faq__body .accordion-container .ac-trigger:after {
  background: url(../img/icons/faq-plus.svg) 50% / contain no-repeat;
  content: "";
  height: 32px;
  right: 23px;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 32px;
}

.faq__body .accordion-container .ac.is-active > .ac-header .ac-trigger:after {
  background: url(../img/icons/faq-minus.svg) 50% / contain no-repeat;
  content: "";
}

.faq__body .accordion-container .ac-panel .ac-text {
  font-family:
    T2 Rooftop,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57143;
  margin: 0 0 35px 45px;
  max-width: 500px;
  padding: 0;
}

.tele-modal {
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.tele-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tele__modal-content {
  background: #fff;
  border-radius: 24px;
  border-radius: 32px;
  -webkit-box-shadow: 0 0 61.2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 61.2px 0 rgba(0, 0, 0, 0.2);
  max-width: 1136px;
  padding: 24px;
  position: relative;
  width: 100%;
}

.tele__modal-close {
  cursor: pointer;
  position: absolute;
  right: 23px;
  top: 26px;
  -webkit-transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.45s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.tele__modal-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.modal-title .h2 {
  font-size: 28px;
  margin-bottom: 0;
}

.modal-inputs .input {
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  height: 52px;
  margin: 24px 0;
  max-width: 360px;
  padding: 0 20px;
  width: 100%;
}

.modal-inputs .input::-webkit-input-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.modal-inputs .input::-moz-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.modal-inputs .input:-ms-input-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.modal-inputs .input::-ms-input-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.modal-inputs .input::placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.modal-inputs .btn {
  border: none;
  max-width: 360px;
  outline: none;
  width: 100%;
}

.modal-description {
  margin-top: 24px;
  max-width: 713px;
}

.modal-description p {
  margin-bottom: 0;
}

.connect-form {
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.connect-form.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.connect-form__area {
  background: #fff;
  border-radius: 32px;
  max-width: 1136px;
  padding: 24px;
  width: 100%;
}

.connect-form__area .h2 {
  font-size: 28px;
  margin-bottom: 0;
}

.connect-form__area .input {
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  height: 52px;
  margin: 24px 0;
  max-width: 360px;
  padding: 0 20px;
  width: 100%;
}

.connect-form__area .input::-webkit-input-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.connect-form__area .input::-moz-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.connect-form__area .input:-ms-input-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.connect-form__area .input::-ms-input-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.connect-form__area .input::placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  opacity: 1;
}

.connect-form__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.connect-form__button-wrap span {
  color: #fff;
}

.connect-form__footer {
  margin-top: 24px;
  max-width: 713px;
}

.connect-form__footer p {
  color: #000;
  font-size: 15px;
}

.connect-form__footer p:last-of-type {
  margin-bottom: 0;
}

.connect-form__btn {
  border: none;
  max-width: 360px;
  outline: none;
  width: 100%;
}

.select-tarif {
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  padding: 32px 0 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.select-tarif.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select-tarif__area {
  background: #fff;
  border-radius: 32px;
  gap: 16px;
  max-width: 1136px;
}

.select-tarif__area,
.select-tarif__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  width: 100%;
}

.select-tarif__item {
  border-radius: 24px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  max-width: 536px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.select-tarif__item p {
  font-size: 15px;
  line-height: 1.46667;
  margin-bottom: 22px;
  margin-right: -1px;
}

.select-tarif__item p:last-of-type {
  margin-bottom: 19px;
}

.select-tarif__item-abs {
  background: #a7fc00;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.375;
  padding: 8px 12px;
  position: absolute;
  right: 24px;
  top: 24px;
}

.select-tarif__item-abs,
.select-tarif__item-title {
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.select-tarif__item-title {
  font-size: 24px;
  line-height: 1.16667;
  margin-bottom: 20px;
}

.select-tarif__item-btn {
  margin-top: auto;
  max-width: 360px;
}

.select-tarif--eco {
  background: #fff;
}

.select-tarif--tree {
  background: #a7fc00;
}

.select-tarif--tree .select-tarif__item-btn {
  background: #fff;
  color: #000;
}

.select-tarif--tree .select-tarif__item-btn:hover {
  background-color: #e6e6e6;
  color: #1a1a1a;
}

.catalog-modal {
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.catalog-modal.is-active,
.catalog-modal__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog-modal__area {
  background: #fff;
  border-radius: 32px;
  gap: 16px;
  max-width: 1136px;
  padding: 24px;
  width: 100%;
}

.catalog-modal__image {
  max-width: 536px;
  width: 100%;
}

.catalog-modal__image img {
  border-radius: 24px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.catalog-modal__form {
  background: #000;
  border-radius: 24px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  color: #fff;
  max-width: 536px;
  padding: 24px 16px 24px 24px;
  width: 100%;
}

.catalog-modal__form-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog-modal__title {
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.16667;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.catalog-modal__description {
  font-size: 15px;
  line-height: 1.46667;
  margin-bottom: 0;
}

.catalog-modal__qnty {
  margin: 15px 0 24px;
  max-width: 113px;
}

.catalog-modal__price {
  color: #fff;
  font-family:
    T2 Halvar Breit,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.catalog-modal__price-value {
  color: #a7fc00;
  display: block;
}

.catalog-modal__btn {
  margin-top: 32px;
  max-width: 360px;
}

.payment-form .connect-form__area {
  max-width: 555px;
  padding: 62px;
}

.payment-form .connect-form__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

.payment-form .connect-form__footer {
  line-height: 1.46667;
  margin-top: 12px;
}

.payment-form__area {
  text-align: center;
}

.payment-form__area,
.payment-form__inputs {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.payment-form__inputs {
  margin-top: 42px;
  width: 100%;
}

.payment-form__inputs .input {
  margin: 0 0 9px;
}

.payment-form__inputs .input:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 767px) {
  .payment-form .connect-form__footer a {
    display: block;
  }
}

@media (max-width: 1230px) {
  .catalog {
    padding: 12px 0;
  }

  .catalog__area {
    border-radius: 16px;
    padding: 12px;
  }

  .catalog__area .h2 {
    font-size: 22px;
  }

  .catalog__grid {
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog__item {
    border-radius: 16px;
    min-height: auto;
    padding: 12px;
  }

  .catalog__item-title {
    margin-bottom: 6px;
    margin-right: 0;
  }

  .catalog__item-image {
    height: auto;
    margin-bottom: 6px;
  }

  .catalog__item-description {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .catalog__item-btn {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .tarifs__item p br {
    display: none;
  }

  .partners__text p:last-of-type {
    margin-bottom: 10px;
  }
}

@media (max-width: 1100px) {
  body.lock {
    padding-right: 0;
  }

  .tarifs {
    padding: 12px 0;
  }

  .tarifs__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }

  .tarifs__item {
    border-radius: 16px;
    max-width: 100%;
    padding: 8px 12px;
  }

  .tarifs__item p {
    font-size: 12px;
    line-height: 1.33333;
  }

  .tarifs__item-abs {
    font-size: 12px;
    line-height: 1.73333;
    right: 12px;
    top: 12px;
  }

  .tarifs__item-title {
    font-size: 22px;
    margin-bottom: 3px;
  }

  .tarifs__item-price {
    font-size: 12px;
  }

  .hectare-hero {
    padding: 2px 0 3px;
  }

  .hectare-hero__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }

  .hectare-hero__text {
    border-radius: 16px;
    max-width: 100%;
    padding: 14px 11px;
  }

  .hectare-hero__text .h2 {
    margin-bottom: 12px;
  }

  .hectare-hero__item .h3 {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .hectare-hero__item p {
    font-size: 12px;
    line-height: 1.33333;
  }

  .hectare-hero__item-num {
    font-size: 12px;
    height: 30px;
    line-height: 1.66667;
    margin-top: 3px;
    width: 30px;
  }

  .hectare-hero__btn {
    margin-top: 0;
    max-width: 100%;
  }

  .hectare-hero__image {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .hectare-hero__image img {
    border-radius: 16px;
    height: auto;
  }

  .hectare-hero__image {
    display: none;
  }

  .hectare-hero__image--mobile {
    display: block;
    max-width: 100%;
  }

  .partners {
    padding: 12px 0;
  }

  .partners__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background: none;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }

  .partners__image {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .partners__image img {
    border-radius: 16px;
    height: auto;
  }

  .partners__text {
    background: #000;
    border-radius: 16px;
    color: #fff;
    padding: 5px 6px 12px;
  }

  .partners__text .h2 {
    line-height: 1.27273;
    margin-bottom: 7px;
    max-width: 520px;
  }

  .partners__text .h2,
  .partners__text p {
    margin-left: 8px;
    margin-right: -8px;
  }

  .partners__text p {
    font-size: 12px;
    line-height: 1.33333;
    margin-bottom: 15px;
    max-width: 90%;
  }

  .partners__text p br {
    display: none;
  }
}

@media (max-width: 960px) {
  .partners__btn {
    margin: 0 8px;
  }

  .select-tarif__item-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

@media (max-width: 940px) {
  .wrapper > main {
    padding-top: 64px;
  }

  .header__area {
    height: 64px;
  }

  .header__logos {
    gap: 23px;
  }

  .header__logo:after {
    height: 26px;
  }

  .header__logo:first-of-type {
    max-width: 32px;
  }

  .header__logo:nth-of-type(2) {
    max-width: 82px;
  }

  .header__logo:nth-of-type(3) {
    max-width: 73px;
  }

  .footer {
    height: auto;
    padding-bottom: 16px;
    padding-top: 36px;
  }

  .footer:after {
    top: -125px;
  }

  .footer__area {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }

  .footer__area,
  .footer__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer__links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 10px;
    padding: 0 40px;
  }

  .footer__links a {
    line-height: 1.8;
  }

  .faq {
    padding: 0;
  }

  .faq__header {
    padding: 0 5px;
  }

  .faq__header .h2 {
    margin-bottom: 4px;
  }

  .faq__header p {
    font-size: 12px;
    line-height: 1.33333;
  }

  .faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-top: 3px;
  }

  .faq__body .accordion-container .ac {
    border-radius: 16px;
  }

  .faq__body .accordion-container .ac-trigger {
    font-size: 12px;
    font-weight: 400;
    height: 76px;
    line-height: 1.33333;
    padding-left: 12px;
    padding-right: 105px;
  }

  .faq__body .accordion-container .ac-trigger:after {
    right: 13px;
  }

  .faq__body .accordion-container .ac-panel .ac-text {
    font-size: 12px;
    line-height: 1.33333;
    margin: 0 12px 12px;
    max-width: 300px !important;
  }

  .tele__modal-content {
    border-radius: 16px;
    padding: 24px;
  }

  .tele__modal-close {
    right: 24px;
    top: 24px;
  }

  .modal-title .h2 {
    font-size: 22px;
  }

  .modal-inputs .input {
    margin: 6px 0;
  }

  .modal-description {
    font-size: 12px;
    margin-top: 12px;
  }

  .connect-form {
    padding: 12px 0 0;
  }

  .connect-form__area {
    border-radius: 16px;
    padding: 24px;
  }

  .connect-form__area .h2 {
    font-size: 22px;
  }

  .connect-form__area .input {
    margin: 6px 0;
  }

  .connect-form__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .connect-form__footer {
    margin-top: 12px;
    max-width: 100%;
  }

  .connect-form__footer p {
    font-size: 12px;
  }

  .select-tarif {
    padding: 48px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: auto;
  }

  .select-tarif__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-radius: 16px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .select-tarif__item {
    border-radius: 16px;
    max-width: 100%;
    padding: 8px 12px;
  }

  .select-tarif__item p {
    font-size: 12px;
    line-height: 1.33333;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .select-tarif__item p br {
    display: none;
  }

  .select-tarif__item p:last-of-type {
    margin-bottom: 10px;
  }

  .select-tarif__item-abs {
    font-size: 12px;
    line-height: 1.73333;
    right: 12px;
    top: 12px;
  }

  .catalog-modal {
    padding: 48px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: auto;
  }

  .catalog-modal__area {
    border-radius: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .catalog-modal__image {
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .catalog-modal__image img {
    border-radius: 16px;
    height: auto;
  }

  .catalog-modal__form {
    border-radius: 16px;
    max-width: 100%;
    padding: 8px 12px;
  }

  .catalog-modal__title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .catalog-modal__description {
    font-size: 12px;
    line-height: 1.33333;
  }

  .catalog-modal__qnty {
    margin: 10px 0;
  }

  .catalog-modal__btn {
    margin-top: 24px;
    max-width: 100%;
  }

  .payment-form .connect-form__area {
    max-width: 100%;
    padding: 24px;
  }

  .payment-form .connect-form__button-wrap {
    margin-top: 12px;
  }

  .payment-form__inputs {
    gap: 6px;
    margin-top: 12px;
  }

  .payment-form__inputs .input {
    margin: 0;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
  }

  .touch [data-fullscreen] {
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
  }

  .input,
  .textarea {
    font-size: 15px;
    padding: 0 13px;
    text-align: left;
  }

  .textarea {
    padding: 13px;
  }

  .h1 {
    line-height: 1.17042;
  }

  .h1,
  .h2 {
    font-size: 22px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .btn {
    border-radius: 10px;
  }

  .hectare-hero__image img {
    height: 290px;
  }

  .connect-form__btn {
    max-width: 100%;
  }
}

@media (max-width: 757px) {
  .partners__image img {
    height: 293px;
  }
}

@media (max-width: 560px) {
  .catalog__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 550px) {
  .hero {
    margin-bottom: -43px;
    padding: 12px 0 36px;
  }

  .hero__area {
    border-radius: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 361px;
    padding: 8px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background: url(../img/hero-bg-mobile.jpg) 50% / cover no-repeat;
  }

  .hero__content {
    border-radius: 16px;
    max-width: 100%;
    padding: 12px;
  }

  .hero__content .h1 {
    margin-bottom: 7px;
    padding-left: 3px;
  }

  .hero__content p {
    font-size: 12px;
    line-height: 1.16667;
    max-width: 80%;
    padding-left: 3px;
  }

  .hero__btn {
    margin-top: 16px;
  }
}

@media (max-width: 500px) {
  .hero__content p {
    max-width: 220px;
  }

  .partners__text .h2 {
    max-width: 320px;
  }
}

@media (max-width: 400px) {
  .partners__text p {
    max-width: 320px;
  }

  .catalog-modal,
  .select-tarif {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .h2 {
    font-size: 20px;
  }

  .btn {
    font-size: 14px;
  }

  .header__logos {
    gap: 10px;
  }

  .faq__body .accordion-container .ac-trigger {
    padding-right: 90px;
  }

  .catalog-modal__title,
  .connect-form__area .h2,
  .modal-title .h2,
  .select-tarif__item-title {
    font-size: 20px;
  }
}

@media (max-width: 340px) {
  .btn {
    font-size: 13px;
  }

  .catalog__item-btn,
  .partners__btn {
    font-size: 12px;
  }
}
