@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../webfonts/montserrat.regular.eot");
  src: url("../webfonts/montserrat.regular.woff2") format("woff2"), url("../webfonts/montserrat.regular.woff") format("woff"), url("../webfonts/montserrat.regular.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Montserrat";
  src: url("../webfonts/montserrat.medium.eot");
  src: url("../webfonts/montserrat.medium.woff2") format("woff2"), url("../webfonts/montserrat.medium.woff") format("woff"), url("../webfonts/montserrat.medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Montserrat";
  src: url("../webfonts/montserrat.semibold.eot");
  src: url("../webfonts/montserrat.semibold.woff2") format("woff2"), url("../webfonts/montserrat.semibold.woff") format("woff"), url("../webfonts/montserrat.semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "Montserrat";
  src: url("../webfonts/montserrat.bold.eot");
  src: url("../webfonts/montserrat.bold.woff2") format("woff2"), url("../webfonts/montserrat.bold.woff") format("woff"), url("../webfonts/montserrat.bold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}
:root {
  --white: #ffffff;
  --yellow: #feb33d;
  --yellow-hover: #e0a800;
  --green: #07b257;
  --green-hover: #218838;
  --rhino: #3e4757;
  --haiti: #252328;
  --ghost-white: #f4f6ff;
  --gray: #8d8d8d;
  --gap-huge: 70px;
  --gap-big: 50px;
  --gap-normal: 35px;
  --gap-small: 15px;
}

@media (max-width: 960px) {
  :root {
    --gap-huge: 50px;
    --gap-big: 35px;
    --gap-normal: 25px;
    --gap-small: 15px;
  }
}
@media (max-width: 500px) {
  :root {
    --gap-huge: 35px;
    --gap-big: 25px;
    --gap-normal: 20px;
    --gap-small: 15px;
  }
}
.mt-gap-huge {
  margin-top: var(--gap-huge) !important;
}

.mt-gap-big {
  margin-top: var(--gap-big) !important;
}

.mt-gap-normal {
  margin-top: var(--gap-normal) !important;
}

.mt-gap-small {
  margin-top: var(--gap-small) !important;
}

.swiper {
  --swiper-theme-color: var(--yellow);
  --swiper-navigation-size: 32px;
}

body {
  padding: 0;
  margin: 0;
  font-family: Montserrat, Verdana, Arial, sans-serif;
  font-size: 15px;
  background-color: #f5f5f5;
  font-weight: 100;
  color: var(--haiti);
}

body.disabled {
  height: 100%;
  overflow: hidden;
}

header, main, footer, section, nav {
  display: block;
}

a {
  text-decoration: none;
  transition: color 0.3s linear;
  cursor: pointer;
}

button.btn {
  height: 50px;
  font-size: 15px;
  font-weight: 100;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

button.btn.green {
  color: #ffffff;
  background-color: var(--green);
}

button.btn.green:hover {
  background-color: var(--green-hover);
}

button.btn.yellow {
  color: #000000;
  background-color: var(--yellow);
}

button.btn.yellow:hover {
  background-color: var(--yellow-hover);
}

input[type=text] {
  padding: 12px 36px 12px 12px;
  border-radius: 10px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #ced4da;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: 0;
}

input[type=text].error {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

textarea {
  padding: 12px 36px 12px 12px;
  border-radius: 10px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #ced4da;
  outline: 0;
}

#overlay {
  display: none;
  position: fixed;
  z-index: 20;
  background-color: #000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}

#overlay.active {
  display: block;
  opacity: 0.85;
}

.icon-svg {
  width: 22px;
  height: 22px;
  color: #ff6600;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.block-header {
  font-size: 28px;
  font-weight: 600;
}

h1.block-header {
  margin: 0;
}

.mt15 {
  margin-top: 15px;
}

.view-video {
  cursor: pointer;
}

.video-viewer-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-viewer-modal.is-open {
  display: flex;
}

.video-viewer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.video-viewer-modal__container {
  position: relative;
  width: 90vw;
  max-width: 90vw;
  max-height: 100vh;
  z-index: 1;
}

.video-viewer-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 2;
}

.video-viewer-modal__close:hover {
  background: rgb(0, 0, 0);
}

.video-viewer-modal__close::before,
.video-viewer-modal__close::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 8px;
  width: 20px;
  height: 2px;
  background: #fff;
}

.video-viewer-modal__close:hover::before,
.video-viewer-modal__close:hover::after {
  background: var(--yellow);
}

.video-viewer-modal__close::before {
  transform: rotate(45deg);
}

.video-viewer-modal__close::after {
  transform: rotate(-45deg);
}

.video-viewer-modal__player {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100vh;
  background: #000;
}

.play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.play svg {
  color: var(--yellow);
  width: 64px;
  height: 64px;
}

.play:hover {
  opacity: 1;
}

.breadcrumb {
  margin-bottom: 15px;
  color: var(--gray);
}
.breadcrumb a {
  margin: 0 5px;
  color: var(--green);
}
.breadcrumb a:first-child {
  margin: 0 5px 0 0;
}
.breadcrumb a:hover {
  color: var(--yellow);
}

@media (max-width: 960px) {
  .block-header {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 10px;
  }
  .block-header {
    font-size: 18px;
  }
  .video-viewer-modal__container {
    position: relative;
    width: 100vw;
    max-width: 100vw;
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  height: 50px;
  background-color: var(--rhino);
  font-size: 15px;
}

.header-top .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top .nav {
  flex: 1;
}

.header-top .nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.header-top .nav ul li {
  margin-right: 20px;
}

.header-top .nav ul li a {
  color: #f2f2f2;
}

.header-top .nav ul li a.active {
  color: var(--green);
  font-weight: 500;
}

.header-top .nav ul li a:hover {
  color: var(--yellow);
}

.header-top .phones {
  display: flex;
}

.header-top .phones > div:first-child {
  margin-right: 30px;
}

.header-top .phones .callback a {
  color: var(--yellow);
  border-bottom: 1px var(--yellow) solid;
}

.header-top .phones .callback a:hover {
  color: #f2f2f2;
  border-bottom: 1px var(--rhino) solid;
}

.header-top .phones .phone a {
  font-size: 16px;
  color: #f2f2f2;
  font-weight: 800;
}

.header-top .phones .phone a:hover {
  color: var(--yellow);
}

.header-main {
  background-color: #ffffff;
}

.header-main .container > div {
  width: 100%;
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.header-main .logo {
  margin-right: 40px;
}

.header-main .logo img {
  max-width: 200px;
  height: auto;
  display: block;
}

.header-main .contacts {
  flex: 1;
  font-size: 13px;
}

.header-main .contacts > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header-main .contacts p {
  margin: 0;
  font-weight: 400;
}

.header-main .contacts a {
  color: var(--haiti);
}

.header-main .contacts a:hover {
  color: var(--green);
}

.header-main .contacts .gray {
  margin-bottom: 2px;
  color: var(--gray);
  font-weight: 100;
}

.header-main .contacts .icon-svg {
  color: var(--yellow);
  margin-right: 10px;
}

.header-main .contacts > div:first-child {
  margin-bottom: 8px;
}

.header-main .buttons button {
  width: 210px;
  color: #000000;
}

.header-main .buttons button.zamerchik {
  color: var(--rhino);
  background-color: var(--yellow);
  margin-right: 20px;
}

.header-main .buttons button.calc {
  background-color: var(--green);
  color: #ffffff;
}

.header-main .buttons button.zamerchik:hover {
  background-color: var(--yellow-hover);
}

.header-main .buttons button.calc:hover {
  background-color: var(--green-hover);
}

.header-bottom {
  background-color: #ffffff;
  box-shadow: 0 7px 6px rgba(0, 0, 0, 0.03);
}

.header-bottom .container > div {
  border-top: 1px solid #e2e4e6;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.header-bottom .container > div > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header-bottom a span {
  color: var(--rhino);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.15s ease-in-out;
}

.header-bottom a:hover span, .header-bottom a:hover .icon-svg {
  color: var(--yellow);
}

.header-bottom .icon-svg {
  color: var(--green);
  width: 30px;
  height: 30px;
  margin-right: 10px;
  transition: color 0.15s ease-in-out;
}

@media (max-width: 1200px) {
  .header-top .nav ul li {
    margin-right: 10px;
  }
  .header-top .phones > div:first-child {
    margin-right: 20px;
  }
}
@media (max-width: 960px) {
  header {
    display: none;
  }
}
.footer-nav {
  margin-top: 35px;
  background-color: var(--rhino);
  color: #f2f2f2;
}

.footer-nav .container {
  padding: 35px 15px;
  display: flex;
  justify-content: space-between;
}

.footer-nav .nav {
  display: flex;
  width: 65%;
  max-width: 65%;
  justify-content: space-between;
}

.footer-nav a {
  color: #f2f2f2;
}

.footer-nav a.active {
  color: var(--green);
  font-weight: 500;
}

.footer-nav .nav > div {
  width: calc(33% - 15px);
}

.footer-nav .nav > div a {
  display: block;
  margin-top: 15px;
}

.footer-nav .nav > div a.cat {
  font-weight: 600;
  color: var(--yellow);
}

.footer-nav .nav > div a:first-child {
  margin-top: 0;
}

.footer-nav .nav a:hover {
  color: var(--yellow);
}

.footer-nav .contacts {
  width: 25%;
}

.footer-nav .contacts a {
  color: var(--yellow);
}

.footer-nav .contacts a:hover {
  color: #f2f2f2;
}

.footer-nav .contacts > div {
  margin-top: 15px;
}

.footer-nav .contacts .phone {
  margin-top: 0;
}

.footer-nav .contacts .phone a {
  font-size: 18px;
  font-weight: 800;
}

.footer-nav .contacts span {
  color: #aaaaaa;
}

.footer-bottom .container {
  padding: 15px 0;
  display: flex;
}

.footer-bottom .logo {
  width: 20.8%;
}

.footer-bottom .logo img {
  max-width: 200px;
  height: auto;
  display: block;
}

.footer-bottom .politics {
  width: 100%;
  text-align: center;
}

.footer-bottom .politics > p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: var(--rhino);
}

.footer-bottom .politics > p:first-child {
  margin-top: 0;
  font-weight: 400;
  font-size: 15px;
}

.footer-bottom .politics a {
  color: var(--green);
}

.footer-bottom .politics a:hover {
  color: var(--yellow);
}

@media (max-width: 960px) {
  .footer-nav .container {
    padding: 35px 15px;
    flex-direction: column-reverse;
  }
  .footer-nav .nav {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    border-top: 1px #5a667e solid;
    padding-top: 20px;
  }
  .footer-nav .contacts {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .footer-nav .container {
    padding: 35px 10px;
  }
  .footer-nav .nav > div {
    width: calc(33% - 5px);
  }
  .footer-nav .nav > div a {
    font-size: 13px;
    margin-top: 10px;
  }
  .footer-bottom .politics > p {
    font-size: 13px;
  }
}
nav {
  display: none;
}

nav .buttons {
  background-color: var(--rhino);
  display: flex;
  justify-content: space-evenly;
  padding: 10px 7px;
}

nav .buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

nav .buttons .icon-svg {
  color: var(--yellow);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

nav .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  background-color: #ffffff;
  box-shadow: 0 7px 6px rgba(0, 0, 0, 0.09);
}

nav .main img {
  display: block;
  width: 150px;
}

nav .phone a {
  color: #000;
  font-weight: 600;
  font-size: 16px;
}

nav .burger {
  padding-top: 3px;
}

nav .menu {
  display: none;
  position: fixed;
  background-color: #ffffff;
  border-top: 1px #e1e1e1 solid;
  overflow: auto;
}

nav .menu .menu-main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 15px;
  margin-top: 8px;
}

nav .menu .menu-main > a {
  width: 50%;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px #f1f1f1 solid;
  box-sizing: border-box;
}

nav .menu .menu-main > a:nth-child(even) {
  padding-left: 5px;
}

nav .menu .menu-main > a:last-child {
  border-bottom: 0;
}

nav .menu .menu-main > a .icon-svg {
  color: var(--green);
  margin-right: 8px;
  width: 22px;
  height: 22px;
}

nav .menu .menu-catalog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 10px;
}

nav .menu .menu-catalog a img {
  display: block;
  width: 60px;
}

nav .menu .menu-catalog a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 16px);
  border: 1px #e1e1e1 solid;
  border-radius: 8px;
  margin: 8px;
  box-sizing: border-box;
  padding: 10px;
}

nav .menu .menu-catalog a span {
  font-size: 13px;
  text-align: center;
  margin-top: 5px;
  font-weight: 400;
  color: var(--haiti);
}

nav .menu-sub {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 10px 15px;
}

nav .menu-sub > div {
  width: 50%;
  box-sizing: border-box;
}

nav .menu-sub > div > a {
  display: block;
  color: #000000;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px #f1f1f1 solid;
  font-size: 15px;
  font-weight: 400;
}

nav .menu-sub > div:last-child > a {
  padding-left: 5px;
}

nav .menu-sub > div > a:last-child {
  border-bottom: 0;
}

nav .contacts {
  font-size: 14px;
  background-color: var(--rhino);
  padding: 15px;
}

nav .contacts > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}

nav .contacts p {
  margin: 0;
  font-weight: 400;
  color: #ffffff;
}

nav .contacts a {
  color: #ffffff;
}

nav .contacts a:hover {
  color: var(--green);
}

nav .contacts .gray {
  margin-bottom: 2px;
  color: #aaaaaa;
  font-weight: 100;
}

nav .contacts .icon-svg {
  color: var(--yellow);
  margin-right: 10px;
}

nav .contacts > div:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  nav {
    display: block;
    position: sticky;
    top: 0;
    z-index: 100;
  }
}
@media (max-width: 750px) {
  nav .menu .menu-catalog a {
    width: calc(33.33% - 10px);
    margin: 5px;
    padding: 5px;
  }
  nav .menu .menu-catalog a span {
    font-size: 11px;
    font-weight: 400;
  }
  nav .menu .menu-catalog a img {
    width: 50px;
  }
}
@media (max-width: 500px) {
  nav .buttons a {
    font-size: 13px;
  }
  nav .buttons .icon-svg {
    width: 16px;
    height: 16px;
  }
  nav .main {
    padding: 8px 10px;
  }
  nav .main img {
    width: 150px;
  }
  nav .phone a {
    font-size: 15px;
  }
  nav .menu .menu-main {
    padding: 0 10px;
  }
  nav .menu .menu-main > a {
    font-size: 14px;
  }
  nav .menu .menu-main > a .icon-svg {
    width: 16px;
    height: 16px;
  }
  nav .menu-sub {
    padding: 10px;
  }
  nav .menu-sub > div > a {
    font-size: 14px;
  }
  nav .contacts {
    padding: 10px;
  }
}
@media (max-width: 375px) {
  nav .buttons .icon-svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  nav .main {
    padding: 5px 10px;
  }
  nav .main img {
    width: 130px;
  }
  nav .menu .menu-catalog {
    padding: 0 5px;
  }
  nav .menu .menu-catalog a {
    width: calc(33.33% - 8px);
    margin: 4px;
    padding: 5px 2px;
  }
}
@media (max-width: 360px) {
  nav .phone a {
    font-size: 13px;
  }
  nav .menu-sub > div > a {
    font-size: 13px;
  }
  nav .menu .menu-catalog a span {
    font-size: 10px;
    font-weight: 100;
  }
  nav .menu .menu-main > a {
    font-size: 13px;
  }
  nav .contacts {
    font-size: 13px;
  }
}
.actions-gallery {
  padding-top: 35px;
}

.actions-gallery .swiper {
  border-radius: 16px;
}

.actions-gallery .swiper img {
  max-width: 100%;
  display: block;
}

@media (max-width: 960px) {
  .actions-gallery {
    padding-top: 15px;
  }
}
.comp-values {
  margin-top: 35px;
}

main.production .comp-values {
  margin-top: 55px;
}

.comp-values .values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.comp-values .values > div {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  width: calc(25% - 10px);
  box-sizing: border-box;
}

.comp-values .values > div .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comp-values .values > div .icon-svg {
  width: 36px;
  height: 36px;
  color: var(--green);
  margin-left: 10px;
}

.comp-values .values > div .icon-svg.small {
  width: 30px;
  height: 30px;
}

.comp-values .values > div span {
  font-size: 18px;
  font-weight: 400;
  color: var(--green);
}

.comp-values .values > div .desc {
  font-weight: 100;
  margin-top: 10px;
}

@media (max-width: 960px) {
  .comp-values .values {
    flex-wrap: wrap;
  }
  .comp-values .values > div {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  main.production .comp-values {
    margin-top: 35px;
  }
  .comp-values .values {
    flex-wrap: wrap;
  }
  .comp-values .values > div {
    padding: 10px 12px;
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .comp-values .values > div .header {
    align-items: center;
  }
  .comp-values .values > div .icon-svg {
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    margin-left: unset;
  }
  .comp-values .values > div span {
    font-size: 16px;
  }
  .comp-values .values > div .desc {
    font-size: 13px;
  }
  .comp-values .values > div .desc {
    margin-top: 5px;
  }
}
@media (max-width: 375px) {
  .comp-values .values > div .desc {
    font-size: 13px;
  }
}
main .production .block-header {
  margin-top: 35px;
}

main.production .production .block-header {
  display: none;
}

.production .swiper {
  margin-top: 15px;
}

.production .swiper-slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 28%;
}

.production .swiper-slide .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(255, 255, 255, 0) 80%);
}

.production .swiper-slide .prod-price {
  position: absolute;
  z-index: 3;
  top: 15px;
  background-color: var(--yellow);
  padding: 5px 12px 5px 15px;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
  color: #000000;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.production .swiper-slide .prod-price span {
  font-weight: 600;
}

.production .swiper-slide .prod-name {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  width: calc(100% - 30px);
}

.production .prod-img img {
  max-width: 100%;
  display: block;
}

@media (max-width: 960px) {
  .production .container {
    padding: 0 0 0 10px;
  }
  .production .swiper {
    padding-right: 10px;
  }
  .production .swiper-slide {
    width: 38%;
  }
}
@media (max-width: 500px) {
  .production .swiper-slide {
    width: 78%;
  }
  .production .swiper-slide .prod-name {
    font-size: 18px;
  }
}
.numbers {
  background-image: url("/webp/img/paralax.bg1.jpg");
  background-position: center;
  background-size: cover;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}

.numbers .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.numbers .container > div {
  display: flex;
  align-items: center;
  color: #ffffff;
  margin: 0 35px;
}

.numbers .icon-svg {
  color: var(--yellow);
  width: 64px;
  height: 64px;
  margin-right: 15px;
}

.numbers .container > div span {
  display: block;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 960px) {
  .numbers .container > div {
    display: flex;
    align-items: center;
    margin: 0 10px;
    flex-direction: column;
    text-align: center;
  }
  .numbers .icon-svg {
    width: 52px;
    height: 52px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .numbers .container > div span {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .numbers {
    padding: 25px 0;
  }
  .numbers .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .numbers .container > div {
    align-items: flex-start;
    margin: 20px 0 0 0;
    flex-direction: row;
    text-align: unset;
  }
  .numbers .container > div:first-child {
    margin: 0;
  }
  .numbers .icon-svg {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.calculator {
  margin-top: 35px;
}

.calculator .container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 35px 45px;
}

.calculator .block-header {
  margin-bottom: 15px;
}

.jscalc {
  display: flex;
}

.jscalc .pic {
  position: relative;
  flex: 1;
  margin-right: 30px;
  padding-bottom: 65px;
}

.jscalc .pic img {
  max-width: 100%;
  border-radius: 20px;
  display: block;
}

.jscalc .pic .detalis {
  position: absolute;
  margin-top: -100px;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 150px;
}

.jscalc .pic .detalis > div {
  width: 182px;
  height: 182px;
  z-index: 2;
  border-radius: 50%;
  background-color: #fff;
  padding: 6px;
  box-sizing: border-box;
  margin: 0 15px;
}

.jscalc .pic .detalis > div.texture {
  display: none;
}

.jscalc .pic .detalis div > div {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.jscalc .pic .detalis div > div span {
  display: block;
  position: absolute;
  bottom: 18px;
  color: #000;
  background-color: var(--yellow);
  font-size: 13px;
  padding: 2px 8px 3px 8px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.jscalc .fields {
  max-width: 300px;
}

.jscalc .fields > div {
  margin-top: 12px;
}

.jscalc .fields > div:first-child {
  margin-top: 0;
}

.jscalc .fields .checkbox label {
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-left: 5px;
}
.jscalc .fields .checkbox label input {
  margin-right: 5px;
}

.jscalc .fields .select label {
  display: block;
  margin-bottom: 3px;
  color: var(--gray);
}

.jscalc .fields .select select {
  width: 300px;
  background-color: #f1f1f1;
  border: 0;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 10px;
}

.jscalc .fields .color .color-group {
  display: flex;
  flex-wrap: wrap;
}

.jscalc .fields .color label {
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
  margin-top: 10px;
}

.jscalc .fields .color .radio-option {
  width: 40px;
  height: 40px;
  border: 1px #e1e1e1 solid;
  padding: 2px;
  box-sizing: border-box;
  border-radius: 50%;
  margin: 2px 2px 0 0;
  cursor: pointer;
}

.jscalc .fields .color .radio-option.selected {
  border: 1px var(--yellow) solid;
}

.jscalc .fields .color .radio-option > div {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}

.jscalc .fields .price {
  border-top: 1px #e1e1e1 solid;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.jscalc .fields .price label {
  font-weight: 400;
  margin-bottom: 5px;
  display: block;
  margin-top: 10px;
  color: var(--gray);
}

.jscalc .fields .price > div {
  font-size: 15px;
  font-weight: 400;
}

.jscalc .fields .price > div .price-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
}

.jscalc .fields .price > div .currency {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: inherit;
}

.jscalc .fields .price button {
  background-color: var(--green);
  color: #fff;
  padding: 0 30px;
}

.jscalc .fields .price button:hover {
  background-color: var(--green-hover);
}

.jscalc.clone {
  position: fixed;
  top: 0;
  z-index: 10;
}

.jscalc.clone.hidden {
  display: none;
}

.jscalc.clone .pic {
  /*background-color: #fff;
  box-shadow: 0 7px 6px rgba(0, 0, 0, 0.13);*/
}

@media (max-width: 960px) {
  .jscalc .pic .detalis {
    margin-top: -80px;
  }
  .jscalc .pic .detalis > div {
    width: 162px;
    height: 162px;
  }
  .jscalc .pic .detalis div > div {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 500px) {
  .calculator .container {
    border-radius: 0;
    padding: 25px 0;
  }
  .calculator .block-header {
    text-align: center;
  }
  .jscalc {
    flex-direction: column;
  }
  .jscalc .pic {
    margin-right: 0;
    padding-bottom: 55px;
  }
  .jscalc .pic img {
    border-radius: 0;
  }
  .jscalc .pic .detalis {
    margin-top: -95px;
    height: 110px;
  }
  .jscalc .pic .detalis > div {
    width: 152px;
    height: 152px;
  }
  .jscalc .pic .detalis div > div {
    width: 140px;
    height: 140px;
  }
  .jscalc .pic .detalis div > div span {
    font-size: 12px;
    font-weight: 400;
  }
  .jscalc .fields {
    max-width: unset;
    padding: 0 10px;
  }
  .jscalc .fields > div:first-child {
    margin-top: 15px;
  }
  .jscalc .fields .select label, .jscalc .fields .color label, .jscalc .fields .price label, .jscalc .fields .price > div {
    text-align: center;
  }
  .jscalc .fields .select select {
    width: 100%;
  }
  .jscalc .fields .color .color-group {
    justify-content: center;
  }
  .jscalc .fields .price {
    align-items: center;
    flex-direction: column;
  }
  .jscalc .fields .price button {
    padding: 0 50px;
    margin-top: 20px;
  }
}
@media (max-width: 400px) {
  .jscalc .pic .detalis {
    margin-top: -85px;
    height: 110px;
  }
  .jscalc .pic .detalis > div {
    width: 132px;
    height: 132px;
  }
  .jscalc .pic .detalis div > div {
    width: 120px;
    height: 120px;
  }
}
.plain-text {
  font-size: 16px;
  line-height: 1.3;
  margin-top: var(--gap-big);
}
.plain-text .container {
  padding: 0 70px;
}
.plain-text .block-header {
  font-weight: 800;
}
.plain-text ul {
  list-style: none;
  padding-left: 2px;
  margin: 0;
}
.plain-text ul li {
  position: relative;
  padding-left: 22px;
  margin: 2px 0;
}
.plain-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 18px;
}
.plain-text img {
  max-width: 100%;
}
.plain-text a {
  color: var(--green);
}
.plain-text a:hover {
  color: var(--yellow);
}
.plain-text .rows2 {
  display: flex;
  justify-content: space-between;
}
.plain-text .rows2 > div {
  width: calc(50% - 10px);
}
@media (max-width: 600px) {
  .plain-text .rows2 {
    flex-direction: column;
  }
  .plain-text .rows2 > div {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .plain-text {
    font-size: 15px;
  }
  .plain-text .container {
    padding: 0 20px;
  }
}
@media (max-width: 360px) {
  .plain-text {
    font-size: 14px;
  }
}

.zamer {
  margin-top: 50px;
}

.zamer .box {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--yellow);
  z-index: -1;
  border-radius: 20px;
  left: 12px;
  top: 10px;
}

.zamer .container {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 45px;
  background-image: url("/webp/img/bg3.jpg");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}

.zamer .text {
  margin: 15px 0;
}

.zamer button {
  background-color: var(--green);
  color: #fff;
  padding: 0 30px;
}

.zamer button:hover {
  background-color: var(--green-hover);
}

.zamer .form {
  display: flex;
}

.zamer .form > div {
  margin-left: 20px;
}

.zamer .form > div:first-child {
  margin-left: 0;
}

.zamer input[type=text] {
  width: 200px;
}

.zamer .captcha {
  margin-top: 15px;
  border: 1px #e1e1e1 solid;
  border-radius: 10px;
  padding: 10px;
  display: inline-block;
}

.zamer .agree {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.zamer .agree a {
  color: var(--green);
}

.zamer .agree input[type=checkbox] {
  margin-right: 10px;
}

.zamer .mobile-pic {
  display: none;
}

@media (max-width: 960px) {
  .zamer .container {
    border-radius: 0;
    background-image: unset;
  }
  .zamer .box {
    display: none;
  }
  .zamer .form {
    flex-direction: column;
  }
  .zamer .form > div {
    margin-left: 0;
    margin-top: 15px;
  }
  .zamer .form > div:first-child {
    margin-top: 0;
  }
  .zamer input[type=text] {
    width: 300px;
  }
}
@media (max-width: 500px) {
  .zamer {
    margin-top: 25px;
  }
  .zamer .container {
    padding: 25px 20px 0 20px;
    margin: 0 15px;
    border-radius: 20px;
  }
  .zamer .block-header, .zamer .text {
    text-align: center;
  }
  .zamer .form > div, .zamer .captcha, .zamer .agree {
    display: none;
  }
  .zamer .form > div.button {
    display: flex;
    justify-content: center;
  }
  .zamer .button {
    padding: 0;
  }
  .zamer .mobile-pic {
    display: block;
  }
  .zamer .mobile-pic img {
    margin-top: 10px;
    max-width: 100%;
    display: block;
  }
}
.video-block {
  margin-top: 75px;
}

.video-block .block-header {
  font-weight: 600;
  margin-bottom: 15px;
}

.video-block .block-header.mobile {
  display: none;
}

.video-block .rows {
  display: flex;
}

.video-block .rows > div:first-child {
  width: 60%;
  min-width: 60%;
  margin-right: 20px;
  position: relative;
}

.video-block.video-block-50 .rows > div:first-child {
  width: 50%;
  min-width: 50%;
}

.video-block img {
  max-width: 100%;
  display: block;
  border-radius: 20px;
}

.video-block .text > p:first-child {
  margin-top: 0;
}

.video-block ul {
  padding: 0 0 0 17px;
}

.video-block ul li {
  margin: 3px 0;
}

.video-block ul li::marker {
  font-size: 18px;
  color: var(--green);
}

.video-block .button {
  display: none;
}

@media (max-width: 960px) {
  .video-block .rows {
    flex-direction: column;
  }
  .video-block .rows > div:first-child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .video-block.video-block-50 .rows > div:first-child {
    width: 100%;
  }
  .video-block .button {
    display: flex;
    justify-content: flex-start;
  }
  .video-block button {
    background-color: var(--green);
    color: #fff;
    padding: 0 30px;
  }
}
@media (max-width: 500px) {
  .video-block {
    margin-top: 25px;
  }
  .video-block .container {
    padding: 0;
  }
  .video-block .block-header {
    display: none;
  }
  .video-block .block-header.mobile {
    display: block;
    margin-bottom: 10px;
    padding: 0 20px;
  }
  .video-block img {
    border-radius: 0;
  }
  .video-block .text {
    padding: 0 20px;
  }
  .video-block .button {
    justify-content: flex-start;
    padding: 0 20px;
  }
}
.steps {
  margin-top: 35px;
}

.steps .steps-grid {
  display: flex;
  flex-wrap: wrap;
}

.steps .steps-grid > div {
  width: calc(33% - 10px);
}

.steps .steps-grid .num {
  font-size: 60px;
  font-weight: 800;
}

.problems {
  margin-top: 75px;
}

.problems .boxes {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.problems .boxes .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}

.problems .problem {
  position: relative;
  width: calc(50% - 40px);
  z-index: 1;
  color: var(--rhino);
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 40px;
  box-sizing: border-box;
  box-shadow: 0 0 79px 0 rgba(7, 15, 14, 0.1);
}

.problems .solution {
  position: absolute;
  z-index: 2;
  width: calc(50% + 80px);
  right: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 400;
}

.problems .solution .pic-svg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  overflow: hidden;
}

.problems .solution .pic-svg svg {
  color: #06a246;
  width: 120%;
  height: 120%;
}

.problems .solution > div {
  background-color: var(--green);
  border-radius: 20px;
  padding: 50px;
  box-sizing: border-box;
  position: relative;
}

.problems .problem .item {
  width: calc(100% - 40px);
}

.problems .solution .item {
  width: calc(100% - 120px);
  position: relative;
  z-index: 2;
}

.problems .solution .item.first {
  margin-top: 0;
}

.problems .icon-svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-right: 15px;
}

.problems .problem .icon-svg {
  color: #818181;
}

.problems .solution .icon-svg {
  color: #ffffff;
}

@media (max-width: 960px) {
  .problems {
    background-color: #fff;
    padding: 20px 0;
  }
  .problems .boxes {
    align-items: flex-end;
    justify-content: space-between;
  }
  .problems .icon-svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
  }
  .problems .problem {
    width: calc(50% - 10px);
    background-color: unset;
    border-radius: unset;
    padding: 0;
    box-shadow: unset;
  }
  .problems .problem .item {
    width: 100%;
  }
  .problems .boxes .item {
    margin-top: 15px;
    font-size: 13px;
  }
  .problems .icon-svg {
    margin-right: 10px;
  }
  .problems .solution {
    position: relative;
    width: 50%;
    justify-content: center;
    align-items: center;
  }
  .problems .solution > div {
    padding: 15px;
  }
  .problems .solution .item {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .problems {
    margin-top: 25px;
  }
  .problems .container {
    padding: 0 15px;
  }
  .problems .boxes {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .problems .problem {
    width: 100%;
  }
  .problems .solution {
    margin-top: 20px;
    max-width: 320px;
    width: 100%;
  }
}
.mini-actions {
  margin-top: 35px;
}

.mini-actions .swiper-slide img {
  display: block;
  max-width: 100%;
  border-radius: 10px;
}

.video-reviews {
  margin-top: 35px;
}

.video-reviews .swiper {
  margin-top: 15px;
}

.video-reviews .swiper-slide img {
  display: block;
  max-width: 100%;
  width: 100%;
  border-radius: 18px;
}

.yandex-reviews {
  margin-top: 35px;
}

.yandex-reviews .block-header {
  margin-bottom: 15px;
}

.yandex-reviews .iframe {
  width: 100%;
  height: 720px;
  overflow: hidden;
}

.yandex-reviews iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-sizing: border-box;
}

.our-works {
  margin-top: 35px;
}

.our-works .swiper {
  margin-top: 15px;
}

.our-works .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
}

.our-works .swiper-slide img {
  display: block;
  max-width: 100%;
}

.our-works .swiper-slide img:not(.active) {
  display: none;
}

.our-works .swiper-slide .controls {
  display: flex;
  justify-content: space-between;
}

.our-works .swiper-slide .controls > div {
  width: 50%;
  padding: 10px 0;
  box-sizing: border-box;
  text-align: center;
  font-weight: 400;
  color: var(--gray);
  border-bottom: 4px #e1e1e1 solid;
}

.our-works .swiper-slide .controls > div:first-child {
  border-right: 1px #e1e1e1 solid;
}

.our-works .swiper-slide .controls > div.active {
  border-bottom: 4px var(--green) solid;
  color: var(--green);
}

.our-works .swiper-slide .desc {
  padding: 12px 16px;
  font-weight: 400;
}

.our-works .swiper-slide .button {
  border-radius: 0.5rem;
  background-color: var(--green);
  display: inline-block;
  color: #ffffff;
  padding: 10px 18px;
  margin: 0 0 16px 16px;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out;
}

.our-works .swiper-slide .button:hover {
  background-color: var(--green-hover);
}

.faq {
  margin-top: 35px;
}

.faq .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq .block-header {
  margin: 0;
}
.faq .faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
}
.faq .quest {
  position: relative;
  font-weight: 600;
  padding: 0 42px 0 0;
  cursor: pointer;
}
.faq .quest::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #00b67a;
}
.faq .answer {
  display: none;
}
.faq .faq-item.is-open .quest::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq .faq-item.is-open .answer {
  display: block;
}

.prod-banners {
  margin-top: 35px;
}
.prod-banners .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 75%);
  border-radius: 20px 0 0 20px;
  z-index: 2;
}
.prod-banners .swiper-slide > div {
  position: absolute;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  z-index: 3;
  padding-left: 30px;
  box-sizing: border-box;
}
.prod-banners .swiper-slide .title {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}
.prod-banners .swiper-slide .items {
  display: flex;
  color: #fff;
  justify-content: flex-start;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 15px 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.prod-banners .swiper-slide .items > div {
  border-left: 1px #fff solid;
  margin-left: 15px;
  padding-left: 15px;
}
.prod-banners .swiper-slide .items > div:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}
.prod-banners .swiper-slide .items > div > div:first-child {
  font-weight: 600;
  margin-bottom: 3px;
}
.prod-banners .swiper-slide .button button {
  background-color: var(--green);
  color: #ffffff;
  padding: 0 30px;
}
.prod-banners .swiper-slide .button button:hover {
  background-color: var(--green-hover);
}
.prod-banners .swiper-slide picture img {
  border-radius: 20px;
  display: block;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 960px) {
  .prod-banners .swiper-slide > div {
    width: 100%;
    gap: 0;
  }
  .prod-banners .swiper-slide .items {
    padding: 10px 20px;
    border-radius: 10px;
    margin: 15px 0;
  }
  .prod-banners .swiper-slide .title {
    font-size: 22px;
  }
  .prod-banners .swiper-slide .button {
    display: none;
  }
}
@media (max-width: 600px) {
  .prod-banners .swiper-slide::before {
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 75%);
  }
  .prod-banners .swiper-slide > div {
    width: 100%;
    gap: 15px;
    padding: 30px;
    justify-content: flex-end;
  }
  .prod-banners .swiper-slide .items {
    padding: 10px 20px;
    border-radius: 10px;
    margin: 15px 0;
  }
  .prod-banners .swiper-slide .title {
    font-size: 22px;
  }
  .prod-banners .swiper-slide .button {
    display: block;
  }
}
@media (max-width: 500px) {
  .prod-banners .swiper-slide::before {
    border-radius: 0;
  }
  .prod-banners .swiper-slide picture img {
    border-radius: 0;
  }
  .prod-banners .swiper-slide > div {
    padding: 20px 10px;
    gap: 0;
  }
  .prod-banners .swiper-slide .items {
    font-size: 13px;
    background-color: unset;
    padding: unset;
    flex-wrap: wrap;
  }
  .prod-banners .swiper-slide .items > div {
    background-color: rgba(255, 255, 255, 0.25);
    padding: 5px 10px !important;
    border-radius: 6px;
    border-left: 0;
    margin: 0 10px 10px 0;
  }
  .prod-banners .swiper-slide .title {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .prod-banners .container {
    padding: 0;
  }
}

.raschet {
  background-color: #fff;
  margin-top: 50px;
}
.raschet .container {
  min-height: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0;
}
.raschet .container > div {
  width: 70%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1100px) {
  .raschet .container > div {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .raschet .container > div {
    width: 100%;
    padding-left: 20px;
  }
}
.raschet .container .block-header {
  width: calc(100% - 300px);
}
.raschet .container .button {
  margin-top: 20px;
}
.raschet .container .button button {
  background-color: var(--green);
  color: #fff;
  padding: 0 30px;
}
.raschet .container .button button:hover {
  background-color: var(--green-hover);
}
.raschet .container .pic {
  position: absolute;
  right: 0;
  bottom: 0;
}
.raschet .container .pic img {
  display: block;
  height: 320px;
}
@media (max-width: 960px) {
  .raschet .container > div {
    width: 90%;
  }
  .raschet .container .block-header {
    width: calc(100% - 260px);
  }
}
@media (max-width: 500px) {
  .raschet {
    margin-top: 35px;
    background-color: var(--rhino);
    background-image: url("/img/grad1.png");
    background-size: cover;
    background-position-y: bottom;
  }
  .raschet .container > div {
    width: 100%;
    padding: 0 20px;
  }
  .raschet .container .block-header {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    color: #fff;
  }
  .raschet .container .button {
    text-align: center;
  }
  .raschet .container .pic {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
  .raschet .container .pic img {
    height: unset;
    width: 60%;
  }
}

.facility {
  margin-top: 45px;
}

.facility .swiper {
  margin-top: 15px;
}

.facility .swiper-slide img {
  display: block;
  max-width: 100%;
  border-radius: 18px;
}

@media (max-width: 500px) {
  .partners {
    margin-top: 25px;
  }
  .facility {
    margin-top: 25px;
    margin-bottom: 45px;
  }
  .facility .container {
    padding: 0 20px;
  }
}
.partners {
  margin-top: 60px;
  padding: 0 15px;
}

.partners .container {
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
}

.partners .box {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.partners .box div {
  width: 20%;
  max-width: 20%;
}

.partners .box img {
  display: block;
  max-width: 100%;
}

@media (max-width: 960px) {
  .partners {
    padding: 0 15px;
  }
}
@media (max-width: 750px) {
  .partners .box div {
    width: unset;
    max-width: unset;
  }
  .partners .box img {
    min-width: 110px;
    max-width: 130px;
  }
}
@media (max-width: 500px) {
  .partners {
    margin-top: 25px;
  }
}
.seo-text {
  margin: 35px 0;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 500px) {
  .seo-text {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .seo-text {
    font-size: 14px;
  }
}
.seo-text .container {
  border-radius: 20px;
  background-color: #fff;
  padding: 30px 40px;
}
@media (max-width: 960px) {
  .seo-text .container {
    border-radius: 0;
  }
}
@media (max-width: 500px) {
  .seo-text .container {
    padding: 20px 20px;
  }
}
.seo-text .block-header {
  margin: 15px 0;
}
.seo-text .block-header:first-child {
  margin: 0 0 15px 0;
}
.seo-text p {
  margin: 5px 0;
}
.seo-text p.mt15 {
  margin-top: 15px;
}
.seo-text .button {
  margin-top: 15px;
}
.seo-text .button button {
  background-color: var(--green);
  color: #ffffff;
  padding: 0 30px;
}
.seo-text ul {
  list-style: none;
  padding-left: 2px;
}
.seo-text ul li {
  position: relative;
  padding-left: 22px;
  margin: 2px 0;
}
.seo-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 18px;
}

.seo-text.not-ready .container {
  border: 4px red solid;
}

.row-text-list .box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.row-text-list .box .list {
  width: 320px;
  min-width: 320px;
  position: relative;
  background-color: var(--green);
  border-radius: 20px;
  padding: 25px 30px;
  box-sizing: border-box;
  overflow: hidden;
}
.row-text-list .box .list .pic-svg {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.row-text-list .box .list .pic-svg svg {
  color: #06a246;
  width: 100%;
  height: 100%;
}
.row-text-list .box .list .items {
  position: relative;
  z-index: 2;
}
.row-text-list .box .list .items .item {
  display: flex;
  align-items: center;
  color: #ffffff;
  margin-top: 15px;
  font-weight: 500;
}
.row-text-list .box .list .items .item .icon-svg {
  color: #ffffff;
  margin-right: 15px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
.row-text-list .box .list .items .item:first-child {
  margin-top: 0;
}

@media (max-width: 960px) {
  .row-text-list .container {
    padding: 0 15px;
  }
  .row-text-list .box {
    padding: 0;
  }
  .row-text-list .box .list {
    width: 220px;
    min-width: 220px;
    padding: 15px 15px;
  }
  .row-text-list .box .list .items {
    font-size: 14px;
  }
  .row-text-list .box .list .item .icon-svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
  }
}
@media (max-width: 600px) {
  .row-text-list .box {
    flex-direction: column;
    gap: 15px;
  }
  .row-text-list .box .list {
    width: 100%;
    min-width: 100%;
  }
  .row-text-list .box .list .pic-svg {
    right: 0;
    width: 200px;
    height: 200px;
  }
}
.table table {
  background-color: #e2e4e6;
  border-spacing: 1px;
  width: 100%;
}
.table table tr {
  background-color: #ffffff;
}
.table table td {
  padding: 7px 10px;
}
.table table thead td {
  font-weight: 500;
}
.table table thead td.center {
  text-align: center;
}

@media (max-width: 600px) {
  .table .container {
    overflow-x: scroll;
  }
  .table table {
    min-width: 600px;
  }
}
.gallery-link {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.gallery-link > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  background-color: var(--rhino);
  padding: 16px 28px;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.23);
}
.gallery-link > a svg {
  color: rgba(242, 242, 242, 0.9490196078);
  width: 40px;
  height: 40px;
  transition: color 0.3s linear;
}
.gallery-link > a .text {
  font-size: 22px;
  font-weight: 600;
  color: #f2f2f2;
  transition: color 0.3s linear;
}
.gallery-link > a:hover svg, .gallery-link > a:hover .text {
  color: var(--yellow);
}
@media (max-width: 500px) {
  .gallery-link > a {
    padding: 12px 22px;
    border-radius: 10px;
  }
  .gallery-link > a svg {
    width: 30px;
    height: 30px;
  }
  .gallery-link > a .text {
    font-size: 18px;
  }
}

main.component-list .offer-item {
  margin-top: var(--gap-huge);
}
main.component-list .offer-item > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
main.component-list .offer-item .text {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 60px 128px 60px 60px;
  box-shadow: 0 0 2rem 0 rgba(47, 47, 47, 0.22);
  box-sizing: border-box;
  border-radius: 20px;
  font-size: 16px;
}
main.component-list .offer-item .text .block-header {
  margin: 0;
  margin-bottom: 16px;
}
main.component-list .offer-item .text p {
  line-height: 1.3;
}
main.component-list .offer-item .text .button {
  margin-top: 16px;
}
main.component-list .offer-item .text .button button {
  background-color: var(--green);
  color: #ffffff;
  padding: 0 30px;
}
main.component-list .offer-item .text .button button:hover {
  background-color: var(--green-hover);
}
@media (max-width: 500px) {
  main.component-list .offer-item .text {
    font-size: 15px;
  }
}
main.component-list .offer-item .pic {
  z-index: 2;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
main.component-list .offer-item .pic > div {
  margin-left: -64px;
}
main.component-list .offer-item .pic img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
@media (max-width: 960px) {
  main.component-list .offer-item > div {
    flex-direction: column-reverse;
  }
  main.component-list .offer-item .text {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 60px;
    border-radius: 0 0 20px 20px;
  }
  main.component-list .offer-item .pic {
    z-index: 2;
    flex: 0 0 100%;
    max-width: 100%;
  }
  main.component-list .offer-item .pic > div {
    margin-left: 0;
  }
  main.component-list .offer-item .pic img {
    border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 500px) {
  main.component-list .offer-item .text {
    padding: 20px;
  }
}
@media (max-width: 360px) {
  main.component-list .offer-item .text {
    padding: 15px;
  }
}
main.component-list .article {
  margin-top: var(--gap-big);
}
main.component-list .article .container {
  background-color: #fff;
  border-radius: 20px;
  padding: var(--gap-big);
  box-sizing: border-box;
}
@media (max-width: 500px) {
  main.component-list .article .container {
    border-radius: 0;
    padding: var(--gap-small);
  }
}
main.component-list .article .article-pic {
  max-width: 450px;
  float: right;
  border-radius: 10px;
  margin: 0 0 20px 20px;
}
@media (max-width: 960px) {
  main.component-list .article .article-pic {
    max-width: 100%;
    float: unset;
    margin: 15px 0;
  }
}
main.component-list .article h1 {
  margin: 0;
  font-weight: 600;
}
main.component-list .article h2, main.component-list .article h3, main.component-list .article h4 {
  font-weight: 600;
}
main.component-list .article .date {
  margin-top: 10px;
  color: var(--gray);
}
main.component-list .article .text {
  line-height: 1.4;
  font-size: 16px;
}
main.component-list .article .text table {
  background-color: #e2e4e6;
  border-spacing: 1px;
  width: 100%;
}
main.component-list .article .text table tr {
  background-color: #ffffff;
}
main.component-list .article .text table td {
  padding: 7px 10px;
}
main.component-list .article .text table thead td, main.component-list .article .text table th td {
  font-weight: 500;
}
main.component-list .article .text table thead td.center {
  text-align: center;
}
@media (max-width: 500px) {
  main.component-list .article .text {
    font-size: 15px;
  }
}

.pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--gap-normal);
}

.nav_item {
  border-radius: 6px;
  background-color: #ffffff;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.nav_item a {
  text-decoration: none;
  color: inherit;
  padding: 10px;
}

.nav_item.active {
  background: var(--green);
  color: #ffffff;
}

.nav_item.disabled {
  opacity: 0.4;
  pointer-events: none;
  display: none;
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--yellow);
}

.hamburger-box {
  width: 26px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 2px;
  background-color: var(--yellow);
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.steps > div {
  width: calc(50% - 20px);
}
.steps > div:nth-child(1), .steps > div:nth-child(2) {
  margin-bottom: 40px;
}
.steps .pic img {
  max-width: 100%;
  max-height: 250px;
}
.steps .step .num {
  font-size: 38px;
  display: flex;
  background-color: var(--rhino);
  color: #fff;
  font-weight: 700;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.steps .step .name {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
}

.steps.x3 > div {
  width: calc(33% - 20px);
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .steps > div, .steps.x3 > div {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .steps > div {
    margin-bottom: 10px !important;
  }
  .steps > div:first-child {
    margin-bottom: 30px !important;
  }
  .steps .step .num {
    font-size: 32px;
    width: 40px;
    height: 40px;
  }
}
.big-video {
  position: relative;
}
.big-video .preview {
  border-radius: 20px;
  padding-bottom: 40%;
  background-position: center;
  background-size: cover;
}

@media (max-width: 960px) {
  .big-video .preview {
    padding-bottom: 50%;
  }
}
@media (max-width: 500px) {
  .big-video .preview {
    padding-bottom: 60%;
  }
}
.block-2rows .container {
  padding: 0 15px;
}
.block-2rows .rows {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1140px) {
  .block-2rows .rows {
    align-items: flex-start;
  }
}
@media (max-width: 960px) {
  .block-2rows .rows {
    flex-direction: column;
  }
  .block-2rows .rows > div:first-child {
    margin-bottom: 35px;
  }
}
.block-2rows .rows > div {
  width: calc(50% - 40px);
}
@media (max-width: 960px) {
  .block-2rows .rows > div {
    width: 100%;
  }
}

main.galleries .container {
  margin-top: var(--gap-small);
}
main.galleries .gallery-section-back {
  margin-bottom: var(--gap-small);
}
main.galleries .gallery-section-back a {
  color: var(--green);
  text-decoration: none;
  font-size: 16px;
}
main.galleries .gallery-section-back a:hover {
  text-decoration: underline;
}
main.galleries.galleries--section .block-header {
  margin-bottom: var(--gap-small);
}
main.galleries .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: var(--gap-small);
}
@media (max-width: 500px) {
  main.galleries .gallery-grid {
    gap: 0;
  }
}
main.galleries .gallery-grid__item {
  margin: 0;
  width: calc((100% - 32px) / 3);
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
main.galleries .gallery-grid__item img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 960px) {
  main.galleries .gallery-grid__item {
    width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 500px) {
  main.galleries .gallery-grid__item {
    width: 33%;
    border-radius: 0;
  }
  main.galleries .gallery-grid__item img {
    aspect-ratio: 1;
    height: unset;
  }
}
main.galleries .gallery-grid__empty {
  margin-top: var(--gap-small);
}
main.galleries .gallery-pagination {
  margin-top: var(--gap-small);
  margin-bottom: var(--gap-big);
}
main.galleries .cats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: var(--gap-small);
}
main.galleries .cats > a {
  width: calc((100% - 40px) / 3);
  box-sizing: border-box;
  background-color: #ffffff;
  color: var(--green);
  border-radius: 10px;
  overflow: hidden;
}
main.galleries .cats > a div {
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 960px) {
  main.galleries .cats > a {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 500px) {
  main.galleries .cats > a {
    width: 100%;
  }
}
main.galleries .cats img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}/*# sourceMappingURL=css.css.map */