@charset "UTF-8";
:root {
  --font-family: "SuisseIntl", sans-serif;
  --content-width: 1290px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --bg-color: #010101;
  --text-color: #ffffff;
  --accent-color: #e43c03;
  --hover-color: #e43c03;
}

@font-face {
  font-family: "SuisseIntl";
  src: url("../../land-w320-assets/fonts/SuisseIntl-Book.woff2") format("woff2");
  font-weight: 450;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "SuisseIntl";
  src: url("../../land-w320-assets/fonts/SuisseIntl-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
}

button:hover {
  background: transparent;
}

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

a {
  text-decoration: none;
}

.page {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.header {
  position: fixed;
  padding-top: 37px;
  width: 100%;
  z-index: 50;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
}

@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: #180701;
  padding: 14px 30px 20px 20px;
  border-radius: 60px;
  -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);
}

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

.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: var(--light-color);
  text-transform: uppercase;
}

.siteHeader__burger {
  display: none;
}

.mobileMenu {
  display: none;
}

@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: 40px;
  }
}

@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(--text-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(--bg-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: #180701;
  }
  .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 {
  }
  .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 {
  background: var(--bg-color);
  position: relative;
  color: var(--text-color);
  font-weight: 450;
  font-size: 18px;
}
.siteFooter__wrapper {
  width: 100%;
  padding: 75px 0 80px;
}
.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: 0.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(--text-color);
  opacity: 0.4;
}

.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 {
  font-size: 14px;
  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;
}

@media (max-width: 768px) {
  .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;
  }
}
