@charset "UTF-8";
:root {
  --font-family: "SuisseIntl", sans-serif;
  --content-width: 1320px;
  --container-offset: 10px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --acent-color: #019fff;
}

/* 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 */
@font-face {
  font-family: "SuisseIntl";
  src: url("../../land-u225-assets/fonts/SuisseIntl-Book.woff2") format("woff2");
  font-weight: 450;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "SuisseIntl";
  src: url("../../land-u225-assets/fonts/SuisseIntl-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "SuisseIntl";
  src: url("../../land-u225-assets/fonts/SuisseIntl-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
*,
*::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: 375px;
  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;
}

.buy-btns {
  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) {
  .buy-btns {
    gap: 10px;
  }
}
.buy-btns__market {
  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;
  border-radius: 15px;
  width: 153px;
  height: 60px;
  background: var(--acent-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (max-width: 768px) {
  .buy-btns__market {
    height: 50px;
    font-size: 16px;
    line-height: 100%;
  }
}
.buy-btns__market:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.buy-btns__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;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (max-width: 768px) {
  .buy-btns__link {
    width: 50px;
    height: 50px;
  }
}
.buy-btns__link:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.section-title {
  margin: 0;
  margin-bottom: 45px;
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  background: radial-gradient(52.11% 57.42% at 68.11% 18.87%, rgb(123, 123, 123) 0%, rgb(62, 62, 62) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title span {
  color: var(--acent-color);
  -webkit-text-fill-color: var(--acent-color);
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 112%;
  }
}

.animate__animated {
  opacity: 0;
}

.header {
  position: fixed;
  padding-top: 17px;
  width: 100%;
  z-index: 50;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .header__logo {
    width: 70px;
  }
}

@media (max-width: 1340px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 768px) {
  .header {
    padding-top: 20px;
  }
}
.condensed .header__container {
  background: var(--acent-color);
  padding: 14px 30px 20px 20px;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
}

.condensed .header__logo svg path {
  fill: var(--light-color);
}
.condensed a {
  color: var(--light-color) !important;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (max-width: 768px) {
  .header__container {
    padding: 14px 30px 20px 20px;
    background-color: var(--acent-color);
    border-radius: 15px;
  }
}

@media (max-width: 768px) {
  .header__logo svg path {
    fill: var(--light-color);
  }
}

.menu {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style-type: none;
}

.menu li:not(:last-child) {
  margin-right: 70px;
}
@media (max-width: 1024px) {
  .menu li:not(:last-child) {
    margin-right: 30px;
  }
}

.menu li a {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 137%;
  color: #333;
  text-transform: uppercase;
}

.siteHeader__burger {
  display: none;
}

.mobileMenu {
  display: none;
}

.hero {
  padding-top: 70px;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }
}
.hero__wrapper {
  border-radius: 30px;
  padding-left: 70px;
  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;
  height: 550px;
  background: url("../../land-u225-uploads/hero-bg.png"), linear-gradient(181deg, #484848 0%, #575757 100%);
  background-repeat: no-repeat;
  background-position: left center;
}
@media (max-width: 1024px) {
  .hero__wrapper {
    padding: 0 40px;
    padding-top: 75px;
    -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;
    height: auto;
    gap: 20px;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .hero__wrapper {
    padding: 0 20px;
    padding-top: 75px;
    border-radius: 25px;
    overflow: hidden;
  }
}
.hero__left {
  padding-bottom: 130px;
}
@media (max-width: 1024px) {
  .hero__left {
    padding-bottom: 0;
  }
}
.hero__title {
  margin: 0;
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 65px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--light-color);
}
.hero__title span {
  color: var(--acent-color);
}
@media (max-width: 768px) {
  .hero__title {
    margin-bottom: 25px;
    font-size: 45px;
    line-height: 100%;
  }
}
.hero__img {
  position: relative;
  top: 3px;
}
@media (max-width: 1200px) {
  .hero__img {
    right: -100px;
  }
}
@media (max-width: 768px) {
  .hero__img {
    width: 428px;
    right: -85px;
  }
}

.benefits {
  padding-top: 100px;
}
@media (max-width: 1024px) {
  .benefits {
    padding-top: 50px;
  }
}
.benefits--small {
  padding-top: 20px;
}
.benefits__wrapper {
  border-radius: 30px;
  background-color: var(--acent-color);
  padding: 55px 70px;
}
@media (max-width: 768px) {
  .benefits__wrapper {
    padding: 40px 20px;
    border-radius: 25px;
  }
}
.benefits__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 42px;
}
@media (max-width: 1024px) {
  .benefits__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .benefits__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 23px;
  }
}
.benefits__item {
  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;
  gap: 30px;
}
@media (max-width: 768px) {
  .benefits__item {
    gap: 20px;
  }
}
.benefits__text {
  margin: 0;
  font-weight: 450;
  font-size: 20px;
  line-height: 110%;
  color: var(--light-color);
}
@media (max-width: 768px) {
  .benefits__text {
    font-size: 18px;
    line-height: 110%;
  }
}

.info-section {
  padding-top: 100px;
  --animate-delay: .3s;
}
@media (max-width: 1024px) {
  .info-section {
    padding-top: 50px;
  }
}
.info-section--reverse .info-section__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .info-section--reverse .info-section__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .info-section--top .info-section__wrapper {
    padding-bottom: 50px;
  }
  .info-section--top .info-section__img {
    bottom: 2px;
  }
}
@media (max-width: 1024px) {
  .info-section--bottom .info-section__wrapper {
    padding-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .info-section--bottom .info-section__img {
    top: 2px;
  }
}
@media (max-width: 1024px) {
  .info-section--center .info-section__wrapper {
    padding: 50px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .info-section--center .info-section__left {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1024px) {
  .info-section--custom .info-section__wrapper {
    padding-top: 30px;
    padding-bottom: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .info-section--custom .info-section__left {
    padding: 0 15px;
  }
}
.info-section__wrapper {
  height: 600px;
  border-radius: 30px;
  background: radial-gradient(52.11% 57.42% at 68.11% 18.87%, #7b7b7b 0%, #3e3e3e 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 110px;
  position: relative;
}
@media (max-width: 1200px) {
  .info-section__wrapper {
    height: 450px;
    padding: 0 80px;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .info-section__wrapper {
    padding: 0;
    -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;
    height: auto;
    overflow: hidden;
  }
}
.info-section__wrapper--left {
  padding-left: 60px;
}
@media (max-width: 1200px) {
  .info-section__wrapper--left {
    padding-left: 40px;
  }
}
@media (max-width: 1024px) {
  .info-section__wrapper--left {
    padding-left: 0px;
    padding-right: 0;
  }
}
.info-section__wrapper--no-left {
  padding-left: 0;
}
@media (max-width: 1024px) {
  .info-section__wrapper--no-left {
    padding-left: 0;
    padding-right: 0;
  }
}
.info-section__wrapper--right {
  padding-right: 0;
}
@media (max-width: 1024px) {
  .info-section__wrapper--right {
    padding-left: 0;
    padding-right: 0;
  }
}
.info-section__wrapper--right-small {
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .info-section__wrapper--right-small {
    padding-right: 40px;
  }
}
@media (max-width: 1024px) {
  .info-section__wrapper--right-small {
    padding-left: 0;
    padding-right: 0;
  }
}
.info-section__bg {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .info-section__bg {
    top: -30px;
    left: -30px;
  }
}
.info-section__left {
  margin-top: auto;
}

.info-section__left-center {
    margin: auto 0;
}
@media (max-width: 1200px) {
  .info-section__img {
    max-height: 450px;
  }
}
@media (max-width: 1024px) {
  .info-section__img {
    position: relative;
  }
}
.info-section__right {
  max-width: 530px;
  margin: auto 0;
}
@media (max-width: 1200px) {
  .info-section__right {
    max-width: 412.5px;
  }
}
@media (max-width: 1024px) {
  .info-section__right {
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.info-section__icon {
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .info-section__icon {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .info-section__icon svg {
    width: 70px;
    height: 70px;
  }
}
.info-section__title {
  margin: 0;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--light-color);
}
@media (max-width: 1200px) {
  .info-section__title {
    margin-bottom: 10px;
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .info-section__title {
    font-size: 32px;
    line-height: 112%;
  }
}
.info-section__text {
  margin: 0;
  font-weight: 450;
  font-size: 22px;
  line-height: 118%;
  color: var(--light-color);
}
@media (max-width: 1200px) {
  .info-section__text {
    font-size: 16.5px;
  }
}
@media (max-width: 768px) {
  .info-section__text {
    font-size: 18px;
  }
}

.slider {
  padding-top: 100px;
  --animate-delay: .3s;
}
@media (max-width: 768px) {
  .slider {
    padding-top: 60px;
  }
}
@media (max-width: 1200px) {
  .slider .container {
    padding: 0;
  }
}
.slider__wrapper {
  position: relative;
}
.slider__swiper {
  position: relative;
  padding: 10px;
}
@media (max-width: 1200px) {
  .slider__swiper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .slider__swiper {
    margin-bottom: 20px;
  }
}
.slider__slide {
  height: 300px;
  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;
  border-radius: 30px;
  border: 3px solid #7b7b7b;
  background: #fff;
}
@media (max-width: 1200px) {
  .slider__slide {
    width: 420px !important;
  }
}
@media (max-width: 1024px) {
  .slider__slide {
    width: 300px !important;
  }
}
@media (max-width: 768px) {
  .slider__slide {
    width: 295px;
    height: 220px;
    border-radius: 25px;
  }
}
@media (max-width: 768px) {
  .slider__img {
    height: 181px;
  }
}
.swiper-pagination {
  margin-top: 25px;
  position: relative !important;
  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;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: radial-gradient(52.11% 57.42% at 68.11% 18.87%, rgb(123, 123, 123) 0%, rgb(62, 62, 62) 100%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
  background: var(--acent-color);
  position: relative;
}
.swiper-pagination-bullet-active::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("../../land-u225-uploads/pagination-before.svg");
  background-size: 20px 20px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.video {
  padding-top: 100px;
  --animate-delay: .3s;
}
@media (max-width: 1024px) {
  .video {
    padding-top: 50px;
  }
}
.video__wrapper {
  width: 100%;
  height: 600px;
  border-radius: 30px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
@media (max-width: 1200px) {
  .video__wrapper {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .video__wrapper {
    height: 220px;
  }
}
.video__playBtn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 80px;
  height: 80px;
  background-color: var(--acent-color);
  border-radius: 100%;
}
@media (max-width: 768px) {
  .video__playBtn {
    width: 60px;
    height: 60px;
  }
  .video__playBtn svg {
    width: 18px;
    height: 22px;
  }
}
.video__playBtn:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.equipment {
  padding-top: 100px;
}
.equipment__row {
  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: 1024px) {
  .equipment__row {
    padding: 0 15px;
  }
  .equipment__row .buy-btns {
    display: none;
  }
}
@media (max-width: 1024px) {
  .equipment .container {
    padding: 0;
  }
}
.equipment__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .equipment__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}
.equipment__item {
  padding: 0 30px;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 30px;
  border: 2px solid #7B7B7B;
  height: 170px;
  width: auto !important;
}
@media (max-width: 1024px) {
  .equipment__item {
    width: 310px !important;
  }
}
@media (max-width: 768px) {
  .equipment__item {
    width: 295px !important;
    height: 140px;
    padding: 0 20px;
    border-radius: 25px;
  }
}
.equipment__number {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 56px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--acent-color);
}
@media (max-width: 768px) {
  .equipment__number {
    margin-bottom: 5px;
    font-size: 46px;
    line-height: 100%;
  }
}
.equipment__text {
  margin: 0;
  font-weight: 450;
  font-size: 20px;
  line-height: 100%;
  background: radial-gradient(52.11% 57.42% at 68.11% 18.87%, rgb(123, 123, 123) 0%, rgb(62, 62, 62) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .equipment__text {
    font-size: 16px;
    line-height: 100%;
  }
}
.equipment__btns {
  display: none;
  margin: 0 auto;
  margin-top: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .equipment__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.equipment__pagination {
  display: none;
}
@media (max-width: 1024px) {
  .equipment__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.section-table {
  padding-top: 100px;
  --animate-delay: .3s;
}
@media (max-width: 768px) {
  .section-table .container {
    padding: 0;
  }
}
.section-table__title {
  text-align: left;
}
@media (max-width: 768px) {
  .section-table__title {
    padding-left: 15px;
  }
}

@media (max-width: 768px) {
  .table-container {
    padding-bottom: 10px;
    width: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
    margin-bottom: 20px;
  }
  .table-container::-webkit-scrollbar {
    height: 5px;
  }
  .table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
  }
  .table-container::-webkit-scrollbar-thumb {
    background: var(--light-color);
    border-radius: 50px;
  }
}

.table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  --animate-delay: .3s;
}
@media (max-width: 1024px) {
  .table {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .table {
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 720px;
  }
}
.table__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 340px (1fr)[4];
  grid-template-columns: 340px repeat(4, 1fr);
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  overflow: hidden;
  border-radius: 15px;
  background: #f5f6fa;
  padding: 0 35px;
  --animate-delay: .2s;
}
@media (max-width: 1024px) {
  .table__row {
    padding: 0 15px;
    -ms-grid-columns: 200px (1fr)[4];
    grid-template-columns: 200px repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .table__row {
    padding: 0;
    background: none;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    height: auto;
    border-radius: 0;
    gap: 0;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
  }
}
.table__row .table__item {
  height: 60px;
  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;
}
@media (max-width: 768px) {
  .table__row .table__item:first-of-type {
    padding: 0;
    -ms-grid-column-span: 4;
    grid-column: 4 span;
    background: none;
    height: auto;
  }
  .table__row .table__item:first-of-type p {
    display: inline;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .table__row .table__item {
    padding: 0 15px;
    border-radius: 15px;
    background: #f5f6fa;
    height: 50px;
  }
}
.table__row .table__item p {
  margin: 0;
  width: 100%;
  font-weight: 450;
  text-align: center;
  font-size: 18px;
  line-height: 100%;
  text-align: left;
  background: radial-gradient(52.11% 57.42% at 68.11% 18.87%, rgb(123, 123, 123) 0%, rgb(62, 62, 62) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
  .table__row .table__item p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .table__row .table__item p {
    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;
    text-align: center;
    font-size: 16px;
    line-height: 100%;
  }
}
.table__heading {
  background: var(--acent-color);
}
@media (max-width: 768px) {
  .table__heading {
    background: none;
  }
  .table__heading .table__item {
    background: var(--acent-color);
  }
  .table__heading .table__item:first-of-type {
    display: none;
  }
}
.table__heading .table__item p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--light-color);
  text-align: left;
  -webkit-text-fill-color: var(--light-color);
}
@media (max-width: 768px) {
  .table__heading .table__item p {
    font-size: 14px;
    line-height: 100%;
    text-align: center;
  }
}

.siteTable__table-showMore {
  width: 100%;
  height: 50px;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--acent-color);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: var(--light-color);
  cursor: pointer;
}
@media (max-width: 768px) {
  .siteTable__table-showMore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .table__row-wrapper.mobile-hide {
    display: none;
  }
}

.mailingOffer {
  padding-top: 100px;
  --animate-delay: .3s;
}
@media (max-width: 768px) {
  .mailingOffer {
    margin-top: 0;
    margin-bottom: 0px;
    padding-top: 50px;
  }
}

.mailingOffer__wrapper {
  padding: 70px;
  padding-bottom: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  border-radius: 30px;
  background-color: var(--acent-color);
}

.mailingOffer__wrapper > * {
  width: calc(50% - 10px);
}

.mailingOffer__title {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--light-color);
}
@media (max-width: 1024px) {
  .mailingOffer__title {
    font-size: 30px;
  }
}

.mailingOffer__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
}
@media (max-width: 1024px) {
  .mailingOffer__form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

form {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

form.loading {
  opacity: 0.7;
  pointer-events: none;
}

.mailingOffer__form .form-success-message {
  bottom: -30px;
  right: 0;
  margin: auto;
  width: 100%;
  position: absolute;
}

.form-success-message {
  display: none;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

.js-form-sender.sended .form-success-message {
  display: block;
}

.mailingOffer__form > * {
  width: calc(50% - 10px);
}

.input-style {
  width: 260px;
  padding: 0 20px;
  height: 60px;
  border-radius: 15px;
  background: var(--light-color);
  color: var(--dark-color);
  font-size: 17px;
  font-weight: 450;
  line-height: 156%;
  border: 0;
  outline: none;
}

.input-style::-webkit-input-placeholder {
  background: radial-gradient(50% 50% at 50% 50%, rgb(12, 46, 80) 0%, rgb(13, 17, 29) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input-style::-moz-placeholder {
  background: radial-gradient(50% 50% at 50% 50%, rgb(12, 46, 80) 0%, rgb(13, 17, 29) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input-style:-ms-input-placeholder {
  background: radial-gradient(50% 50% at 50% 50%, rgb(12, 46, 80) 0%, rgb(13, 17, 29) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input-style::-ms-input-placeholder {
  background: radial-gradient(50% 50% at 50% 50%, rgb(12, 46, 80) 0%, rgb(13, 17, 29) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input-style::placeholder {
  background: radial-gradient(50% 50% at 50% 50%, rgb(12, 46, 80) 0%, rgb(13, 17, 29) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-btn {
  width: 260px;
  background: radial-gradient(52.11% 57.42% at 68.11% 18.87%, #7b7b7b 0%, #3e3e3e 100%);
  height: 60px;
  border-radius: 15px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: var(--light-color);
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mailingOffer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .mailingOffer__wrapper {
    border-radius: 25px;
    padding: 0 15px;
    padding-top: 50px;
    padding-bottom: 55px;
  }
}
@media (max-width: 768px) {
  .mailingOffer__wrapper > * {
    width: 100%;
  }
  .mailingOffer__title {
    font-size: 24px;
    line-height: 108%;
  }
  .mailingOffer__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .mailingOffer__form > * {
    width: 100%;
  }
  .form-btn {
    font-size: 14px;
    height: 50px;
  }
  .input-style::-webkit-input-placeholder {
    font-size: 16px;
  }
  .input-style::-moz-placeholder {
    font-size: 16px;
  }
  .input-style:-ms-input-placeholder {
    font-size: 16px;
  }
  .input-style::-ms-input-placeholder {
    font-size: 16px;
  }
  .input-style::placeholder, .input-style {
    font-size: 16px;
  }
  .input-style {
    height: 50px;
  }
}
@media (max-width: 768px) {
  .siteHeader__menu {
    display: none;
  }
  .siteHeader__burger {
    display: block;
  }
  .siteHeader__burger span {
    display: block;
  }
  .siteHeader__burger-active {
    display: none;
  }
  .siteHeader__burger-default span {
    height: 2px;
    background: var(--light-color);
  }
  .siteHeader__burger-default span:first-child {
    width: 35px;
  }
  .siteHeader__burger-default span:last-child {
    width: 20px;
    margin-top: 6px;
  }
  .mobileMenu {
    position: fixed;
    top: 0;
    z-index: 100;
    left: 0;
    height: 100%;
    padding: 10px 10px 10px 25px;
    width: 100%;
    background: var(--light-color);
  }
  .menu li:not(:last-child) {
    margin-right: 0;
  }
  .mobileMenu.active {
    display: block;
    -webkit-animation: 0.3s fadeIn backwards;
    animation: 0.3s fadeIn backwards;
  }
  .mobileMenu__header {
    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;
  }
  .mobileMenu__header-backBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
  }
  .mobileMenu__header-backBtn.active {
    opacity: 1;
    pointer-events: initial;
  }
  .mobileMenu__header-backBtn p {
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
  }
  .mobileMenu__menu ul.menu-list-active > li:not(.active) {
    display: none;
  }
  .mobileMenu__menu li.active > ul.sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobileMenu__menu li.menu-item-has-children.active > a {
    display: none;
  }
  .mobileMenu__header-close {
    width: 40px;
    height: 40px;
    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;
    background: var(--acent-color);
  }
  .mobileMenu__header-close img {
    width: 14px;
  }
  .mobileMenu__menu {
    margin-top: 50px;
    padding-right: 14px;
  }
  .mobileMenu__menu .sub-menu {
    display: none;
  }
  .mobileMenu__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    line-height: 1;
  }
  .mobileMenu__menu > ul > .menu-item > a {
    font-weight: bold;
  }
  .mobileMenu__menu .menu-item-has-children > a {
    position: relative;
    width: 100%;
    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;
  }
  .mobileMenu__menu .menu-item-has-children > a:after {
    content: "";
    display: block;
    width: 10px;
    height: 15px;
    background: url(../../land-water-uploads/menu-arrow.svg);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .equipment__item.mobile-hide {
    display: none;
  }
  .showtab.mobile-hide {
    display: none;
  }
  .siteFooter__menus {
    display: none;
  }
  .siteFooter__wrapper {
    padding: 35px 0 50px;
  }
  .siteFooter__info {
    margin: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
  }
  .siteFooter__info-title {
    margin-top: 10px;
  }
  .siteFooter__logo {
    margin-bottom: 10px;
  }
  .siteFooter__links {
    -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;
    text-align: center;
    gap: 14px;
    font-size: 12px;
    margin-top: 16px;
  }
}

.siteFooter {
    padding-top: 100px;
    background-position: center;
    position: relative;
    color: var(--light-color);
    font-weight: 450;
    font-size: 18px;
	
}
.siteFooter__wrapper {
	width: 100%;
	padding: 75px 73px 85px 80px;
	background: radial-gradient(52.11% 57.42% at 68.11% 18.87%, #7b7b7b 0%, #3e3e3e 100%);
	border-radius: 30px;
}
.siteFooter__top {
	display: flex;
	gap: 150px;
}

@media (max-width: 1200px) {
    .siteFooter__top {
        gap:20px;
        flex-direction: column;
    }
}
.siteFooter__info {
	max-width: 230px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 18px;
}
.siteFooter__info-title {
	margin-top: 16px;
	
	
}
.siteFooter__info-text {
	opacity: .5;
	font-size: 14px;
	margin-top: 3px;
}
.siteFooter__logo {
	margin-bottom: 14px;
}
.siteFooter__menus {
	padding-top: 12px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
}

@media (max-width: 1024px) {
    .siteFooter__menus {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        display: flex;
        flex-wrap: wrap;
    }
}
.siteFooter__menus-title {
    margin: 0;
	font-weight: 700;
    font-size: 16px;
    line-height: 137%;
    text-transform: uppercase;
    color: var(--acent-color);
}



.siteFooter__menu {
	margin-top: 30px;
}
.siteFooter__menu ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}
.siteFooter__menus-item {
	display: flex;
}
.siteFooter__menus-item:nth-child(3n + 1) {
	justify-content: start;
}
.siteFooter__menus-item:nth-child(3n + 2) {
	justify-content: center;
}
.siteFooter__menus-item:nth-child(3n + 3) {
	justify-content: end;
}
.siteFooter__links {
	margin-top: 65px;
	display: flex;
	justify-content: space-between;
}
.siteFooter__links a {
	text-decoration: underline;
	color: var(--text-color);
    opacity: 0.4;
}
.popup {
	display: none;
}
.popupCallback {
	border-radius: var(--border-r-default);
	padding: 70px 70px 80px;
	max-width: 640px;
}
.popupCallback__title {
	text-align: center;
	font-size: 40px;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1;
}
@supports (background-clip: text) {
	.popupCallback__title {
		background: var(--gradient-dark);
		color: transparent;
    	background-clip: text;
	}
}
.popupCallback__form {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.popupCallback__text {
	text-align: center;
	color: #AEAEAE;
}
.popupCallback__text a {
	text-decoration: underline;
}

.siteFooter__menu ul li a {
    text-transform: none;
    font-weight: 400;
    font-size: 18px;
    color: var(--light-color);
}

@media (max-width: 768px) {
    .siteFooter {
        padding-top: 50px;
    }
    .siteFooter__menus {
        display: none;
    }
    .siteFooter__info {
    max-width: unset;
    margin: 0;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
  }
  
  .siteFooter__links {
      margin-top: 15px;
  }
  
  .siteFooter__info-text {
      margin: 0;
  }
  
  .siteFooter__wrapper {
      padding-top: 40px;
      padding-bottom: 55px;
  }
}