:root {
  --regular-font: "IBM Plex Sans", sans-serif;
  --header-font: Oswald, sans-serif;
}
html,
body {
  height: 100%;
  font: 400 20px/1.2 var(--regular-font);
  color: black;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
a {
  text-decoration-thickness: 1px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
sup,
.sup {
  position: relative;
  top: -0.3em;
  font-size: 0.8em;
}
sub,
.sub {
  position: relative;
  top: 0.3em;
  font-size: 0.8em;
}
.nobr {
  white-space: nowrap;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--header-font);
}
.h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.1;
}
.h2 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-size: 1.667rem;
  line-height: 1.1;
}
.h3 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.333rem;
  line-height: 1.1;
}
.h4 {
  font-weight: 400;
  font-size: 1.333rem;
  line-height: 1.1;
}
.row {
  --gap: 15px;
  display: flex;
  flex-wrap: wrap;
  margin: calc(var(--gap) * -1);
}
.row--align--center {
  justify-content: center;
}
.col {
  box-sizing: border-box;
  padding: var(--gap);
}
.col-1 {
  width: 8.333%;
}
.col-2 {
  width: 16.667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333%;
}
.col-5 {
  width: 41.667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333%;
}
.col-8 {
  width: 66.667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.333%;
}
.col-11 {
  width: 91.667%;
}
.col-12 {
  width: 100%;
}
.layout {
  position: relative;
  overflow-x: hidden;
}
.header {
  color: white;
  background: black;
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: block;
  max-height: 40px;
}
.main-menu .menu__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
}
.main-menu .menu__link {
  display: block;
  padding: 0.75em 1.5em;
  text-decoration: none;
  white-space: nowrap;
  color: white;
  transition: background 200ms ease;
}
.main-menu .menu__link:hover {
  background: #428039;
}
.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: white;
  background: black;
}
.link {
  text-decoration-thickness: 1px;
  color: #428039;
}
.btns-group {
  display: flex;
  gap: 0.5rem;
}
.btn {
  display: inline-block;
  margin: 0;
  padding: 0.75em 1.25em;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--header-font);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  color: white;
  border: 1px solid #428039;
  background: #428039;
  cursor: pointer;
  outline: none;
}
.btn--outline {
  color: #428039;
  background: transparent;
}
.breadcrumbs {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: inherit;
  opacity: 0.8;
}
.breadcrumbs__list {
  display: flex;
}
.breadcrumbs__item {
  display: block;
  margin-right: 0.5rem;
}
.breadcrumbs__item::after {
  content: "/";
  margin-left: 0.5rem;
}
.breadcrumbs__link {
  color: inherit;
}
.lead {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.35;
}
.container {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  padding-top: 125px;
}
.section.pb {
  padding-bottom: 125px;
}
.section.grey {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f2f4f6;
}
.section__title {
  margin-bottom: 2rem;
}
.pform__item + .pform__item {
  margin-top: 1rem;
}
.pform__label {
  display: block;
  margin-bottom: 0.1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
.input__ctrl {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0.5em;
  font-family: inherit;
  font-weight: 400;
  font-size: inherit;
  line-height: normal;
  color: black;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
}
textarea.input__ctrl {
  resize: vertical;
}
.pform__note {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}
.checkbox {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
}
.checkbox__ctrl {
  display: block;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  background: white;
  border: 1px solid #666;
  border-radius: 3px;
  transition: 100ms ease;
  overflow: hidden;
}
.checkbox__ctrl::before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  color: white;
  transform: translate(-50%, -50%);
  -webkit-mask: url("../images/check.svg") no-repeat center / contain;
  mask: url("../images/check.svg") no-repeat center / contain;
  opacity: 0;
  transition: 100ms ease;
}
.checkbox:hover .checkbox__ctrl {
  background-color: #f5f5f5;
  border-color: #333;
}
.checkbox__input:checked ~ .checkbox__ctrl {
  background-color: #428039;
  border-color: #428039;
}
.checkbox__input:checked ~ .checkbox__ctrl::before {
  background-color: white;
  opacity: 1;
}
.banner {
  position: relative;
  color: white;
  background: black;
}
.banner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, black, transparent 60%);
  opacity: 0.9;
}
.banner__img,
.banner__video {
  width: 100%;
  min-height: 500px;
  max-height: 95vh;
  background: #111;
  object-fit: cover;
}
.banner__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 10%;
}
.banner__title {
  line-height: 1.2;
}
.banner__text {
  max-width: 600px;
  margin-top: 1.5rem;
  font-size: 1.35rem;
  font-weight: 300;
}
.banner__ctrls {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
}
.quotes {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.quote {
  display: flex;
}
.quote__cover {
  width: 200px;
}
.quote__photo {
  display: block;
  box-sizing: border-box;
  width: 200px;
  height: 200px;
  object-fit: cover;
  background: #f5f5f5;
  border: 1px solid #428039;
  border-radius: 999px;
  overflow: hidden;
}
.quote__main {
  flex: 1;
  padding: 20px 40px;
}
.quote__title {
  font-weight: 700;
}
.quote__subtitle {
  margin-top: 0.25rem;
  font-weight: 500;
}
.quote__text {
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.products-grid {
  max-width: 1000px;
  margin: auto;
}
.products-grid .item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
}
.products-grid .item__cover {
  width: 60%;
  border-radius: 10px;
  overflow: hidden;
}
.products-grid .item__main {
  flex: 1;
  padding: 2rem;
}
.products-grid .item__logo {
  display: block;
  max-width: 100px;
  opacity: 0.5;
}
.products-grid .item__title {
  margin-top: 1.5rem;
  font-weight: 700;
}
.products-grid .item__desc {
  margin-top: 1rem;
}
.products-grid .item__price {
  margin-top: 1rem;
  font-weight: 400;
  font-family: var(--header-font);
  font-size: 1.5rem;
  color: #333;
}
.products-grid .item__ctrls {
  margin-top: 1.5rem;
}
.contacts__item {
  margin-top: 3rem;
  text-align: center;
  font-size: 2rem;
}
.contacts__subtitle {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
}
.contacts__link {
  text-decoration: none;
  color: #428039;
  border-bottom: 1px solid rgba(66, 128, 57, 0.5);
}
#ymap {
  width: 800px;
  height: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  overflow: hidden;
}
.tech {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
.tech__docs {
  max-width: 300px;
}
.chars-table {
  min-width: 700px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.chars-table .bordered {
  border-top: 1px solid #ccc;
}
.chars-table tr:nth-child(odd) {
  background: #f2f4f6;
}
.chars-table th,
.chars-table td {
  padding: 4px 8px;
}
.chars-table th {
  text-align: right;
  color: #666;
}
.chars-table td {
  vertical-align: bottom;
}
.manual-link {
  display: block;
  padding: 40px;
  text-decoration: none;
  text-align: center;
  color: inherit;
  border: 1px solid rgba(255, 0, 0, 0.5);
  border-radius: 4px;
}
.manual-link:hover {
  background: rgba(255, 0, 0, 0.05);
}
.manual-link__icon {
  display: block;
  width: 90px;
  height: 120px;
  margin: auto;
  background: url("../images/icon-pdf.png") no-repeat center;
  background-size: contain;
}
.manual-link__body {
  display: block;
  margin-top: 1rem;
}
.manual-link__title {
  display: block;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.1;
}
.manual-link__desc {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #999;
}
.manual-link__size {
  display: block;
  margin-top: 0.5rem;
  color: #666;
}
.model-grid {
  --gap: 2px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap);
}
.model-grid__img {
  display: block;
  width: 100%;
  height: auto;
  background: #f2f4f6;
}
.model-grid__t0 {
  width: 100%;
  max-width: 800px;
}
.model-grid__t1 {
  width: calc((100% - 2 * var(--gap)) / 3);
}
.photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  grid-auto-flow: row dense;
  gap: 2px;
}
.photos-grid .t0 {
  grid-column: span 1;
  grid-row: span 1;
}
.photos-grid .t1 {
  grid-column: span 2;
  grid-row: span 2;
}
.photos-grid .t2 {
  grid-column: span 3;
  grid-row: span 3;
}
.photos-grid__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f0f0f0;
}
.tent {
  position: relative;
}
.tent__view {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  background: #a0a0a0;
  opacity: 0;
  transition: 200ms ease;
}
.tent__view.active {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.tent__ctrls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}
.options-list .list__item + .list__item {
  margin-top: 0.5rem;
}
.options-list .price {
  margin-top: 0.1rem;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}
.base-item,
.extra-item {
  display: block;
  position: relative;
}
.base-item .label,
.extra-item .label {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.base-item .label::before,
.extra-item .label::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom: 1px dotted #ccc;
}
.base-item .name span,
.extra-item .name span,
.base-item .price span,
.extra-item .price span {
  position: relative;
  z-index: 1;
  background: white;
}
.base-item .price,
.extra-item .price {
  margin-left: 25px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.9rem;
  color: #333;
}
.base-item .comment,
.extra-item .comment {
  margin-top: 0.1rem;
  font-size: 0.9rem;
  color: #333;
}
.extra-item {
  padding-left: 40px;
}
.extra-item .checkbox__ctrl {
  position: absolute;
  left: 0;
  top: 0;
}
.calc__output {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: #f2f4f6;
}
.calc__item {
  padding-left: 50px;
  padding-right: 50px;
}
.calc__sign {
  font-weight: 700;
  font-size: 1.5rem;
  color: #428039;
}
.calc__name {
  font-size: 0.75rem;
  line-height: 1;
}
.calc__sum {
  line-height: 1;
}
.calc__base .calc__name,
.calc__extra .calc__name {
  margin-bottom: 0.1rem;
}
.calc__base .calc__sum,
.calc__extra .calc__sum {
  font-size: 1.5rem;
}
.calc__total .calc__name {
  font-weight: 600;
}
.calc__total .calc__sum {
  font-weight: 500;
  font-size: 2rem;
}
.order-form .pform__ctrls {
  text-align: center;
}
.order-form .pform__agreement {
  text-align: center;
}
#feedback .feedback-form .pform__ctrls {
  text-align: center;
}
#feedback .feedback-form .pform__agreement {
  text-align: center;
}
