html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

:focus {
  outline: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.wrapper .content {
  flex-grow: 1;
}
.wrapper .box, .wrapper > header, .wrapper > footer, .wrapper > section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal > div {
  background-color: #FFF;
  padding: 20px 40px;
  width: 90%;
  max-width: 480px;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
  border-radius: 4px;
}
.modal__cross {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 28px;
  line-height: 28px;
  width: 32px;
  height: 32px;
  text-align: center;
  padding: 4px;
  opacity: 0.5;
  cursor: pointer;
  transition: all 500ms ease;
}
.modal__cross:hover {
  opacity: 1;
}
.modal__content {
  text-align: center;
}
.modal__title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #000;
}
.modal form {
  margin-top: 8px;
}
.modal form input, .modal form textarea {
  width: 100%;
  border: 1px solid lightgray;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-top: 12px;
}
.modal .btn {
  margin-top: 20px;
}

@media (max-width: 480px) {
  .box,
  .wrapper > header,
  .wrapper > footer,
  .wrapper > section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 300ms ease;
  background: #439b35;
  padding: 18px 24px 14px;
  color: #FFFFFF;
  border-radius: 4px;
}
.btn:hover {
  opacity: 0.9;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

.hidden {
  display: none !important;
}

h2 {
  font-size: 32px;
  color: #000;
  padding: 24px 0;
  text-align: left;
}

@media (max-width: 900px) {
  .wrapper h2 {
    font-size: 24px;
  }
}
header .logo {
  width: 160px;
  height: 60px;
  background: url("/data/assets/logo.png") center no-repeat;
}
header .burger {
  display: none;
}

@media (max-width: 1000px) {
  .wrapper header .burger {
    width: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 12px;
  }
  .wrapper header .burger i {
    display: block;
    height: 2px;
    background: #636363;
  }
  .wrapper header nav > .menu {
    display: none;
    position: absolute;
    right: 0;
    top: 90px;
    background: #f2f2f2;
  }
  .wrapper header nav > .menu.show {
    display: block;
  }
  .wrapper header nav > .menu ul > li {
    display: block;
    width: 240px;
  }
  .wrapper header nav > .menu ul > li a {
    padding: 12px 16px;
  }
}
@media (max-width: 560px) {
  .wrapper header .logo {
    background-position: left;
    width: 64px;
  }
}
@media (max-width: 400px) {
  .wrapper > header .contacts {
    gap: 6px !important;
  }
  .wrapper > header .lang {
    margin-right: 6px !important;
  }
}
/* COMMON */
body {
  color: #606060;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

a {
  color: #00A629;
  text-decoration: none;
  transition: all 300ms ease;
}
a:hover {
  opacity: 0.7;
}

/* COMMON END*/
/* HEADER */
.wrapper > header > .box {
  display: flex;
  height: 90px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 12px;
}
.wrapper > header > .box a {
  color: #262626;
}
.wrapper > header nav {
  flex-grow: 1;
  text-align: center;
}
.wrapper > header nav ul {
  list-style: none;
}
.wrapper > header nav ul li {
  display: inline-block;
}
.wrapper > header nav ul li a {
  padding: 8px 16px;
  display: block;
  border-radius: 4px;
}
.wrapper > header .lang {
  border: 1px solid #e9e9e9;
  font-size: 14px;
  margin-right: 32px;
  border-radius: 4px;
}
.wrapper > header .lang > a {
  display: inline-block;
  padding: 4px 6px;
}
.wrapper > header .lang > a.active {
  background: #e9e9e9;
}
.wrapper > header .contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wrapper > header .contacts .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.wrapper > header .contacts .icon_telegram {
  background: url("/data/assets/icon_telegram.svg") center no-repeat;
}
.wrapper > header .contacts .icon_whatsapp {
  background: url("/data/assets/icon_whatsapp.svg") center no-repeat;
}
.wrapper > header .contacts .icon_phone {
  background: url("/data/assets/icon_phone.svg") center no-repeat;
  display: none;
}
.wrapper > header .contacts .btn_callback {
  background: #f1eded;
  padding: 12px 16px;
  font-size: 14px;
  color: #262626;
}
.wrapper > header .contacts .btn_callback:hover {
  background: transparent;
}

@media (max-width: 1100px) {
  .wrapper > header .contacts {
    gap: 12px;
  }
  .wrapper > header .phone span {
    display: none;
  }
  .wrapper > header .phone .icon_phone {
    display: inline-block;
  }
  .wrapper > header .btn_callback {
    display: none;
  }
}
/* HEADER END */
/* ARTICLE */
article {
  padding-bottom: 40px;
}
article h1, article h2, article h3 {
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 8px;
}
article h1 {
  font-size: 36px;
}
article h2 {
  font-size: 28px;
}
article h3 {
  font-size: 20px;
}
article p {
  font-size: 18px;
  line-height: 1.4;
  padding-bottom: 12px;
}

@media (max-width: 720px) {
  article h1 {
    font-size: 28px;
  }
  article h2 {
    font-size: 20px;
  }
  article h3 {
    font-size: 16px;
  }
  article p {
    font-size: 16px;
  }
}
/* ARTICLE END*/
/* FOOTER */
.wrapper > footer {
  max-width: none;
  background: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer_column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.footer_column b {
  font-weight: bold;
  display: block;
  padding-bottom: 12px;
  padding-top: 16px;
}
.footer_column ul {
  list-style: none;
}
.footer_column p {
  padding-bottom: 6px;
}
.footer_copyright {
  padding-top: 40px;
  color: #757575;
  font-size: 14px;
}
.footer_desc h2 {
  font-size: 18px;
  padding: 12px 0;
}
.footer_desc p {
  font-size: 14px;
  padding-bottom: 12px;
}

@media (max-width: 720px) {
  .footer_column {
    display: block;
    text-align: center;
  }
}
/* FOOTER END */
.cover {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 480px;
}
.cover .cover__content h1 {
  font-size: 36px;
  line-height: 1.2;
  max-width: 480px;
  font-weight: bold;
  color: black;
}
.cover .cover__content ul {
  padding-left: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.cover .cover__content ul li {
  font-size: 18px;
  line-height: 1.2;
}
.cover .cover__image div {
  width: 640px;
  height: 400px;
  background: url("/data/assets/cover_img.jpg") center no-repeat;
  background-size: contain;
}

@media (max-width: 1100px) {
  .cover .cover__image div {
    width: 420px;
  }
}
@media (max-width: 900px) {
  .wrapper .cover__image div {
    width: 240px;
  }
  .wrapper .cover__content h1 {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .wrapper .cover {
    flex-direction: column-reverse;
    text-align: center;
  }
  .wrapper .cover__content ul {
    list-style: none;
  }
  .wrapper .cover__image div {
    height: 240px;
  }
}
.wrapper .box_trigger {
  padding-top: 40px;
  padding-bottom: 60px;
}
.wrapper .trigger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 20px;
}
.wrapper .trigger__item {
  background: #16792a;
  padding: 20px;
  border-radius: 4px;
  color: #FFF;
  text-wrap: balance;
}
.wrapper .trigger__item strong {
  font-weight: 600;
  font-size: 20px;
  display: block;
  line-height: 36px;
}
.wrapper .trigger__item strong i {
  background: white;
  color: #16792a;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 12px;
  line-height: 36px;
  text-align: center;
  border-radius: 36px;
}
.wrapper .trigger__item p {
  margin-left: 48px;
}

@media (max-width: 900px) {
  .wrapper .trigger__item strong {
    line-height: 24px;
    padding-bottom: 12px;
  }
  .wrapper .trigger__item strong i {
    display: none;
  }
  .wrapper .trigger__item p {
    margin-left: 0;
  }
}
@media (max-width: 680px) {
  .wrapper .trigger {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wrapper .wrap_videoblock {
  background: #ecf4ee;
}
.wrapper .videoblock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 4px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.wrapper .videoblock_yt iframe {
  width: 420px;
  height: 240px;
  border-radius: 4px;
}
.wrapper .videoblock_content h2 {
  font-size: 24px;
  padding-bottom: 16px;
  padding-top: 0;
}
.wrapper .videoblock_content p {
  font-size: 16px;
  line-height: 1.3;
  padding-bottom: 12px;
}

@media (max-width: 900px) {
  .wrapper .videoblock {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .wrapper .videoblock_yt {
    width: 100%;
  }
  .wrapper .videoblock_yt iframe {
    width: 100%;
  }
}
.box_cases {
  padding-top: 40px;
  padding-bottom: 80px;
}

.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cases img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .wrapper .cases {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .wrapper .cases {
    grid-template-columns: repeat(1, 1fr);
  }
  .wrapper .cases img {
    max-width: 400px;
    margin: 0 auto;
  }
}
.wrapper .wrap_cards {
  padding-top: 40px;
  padding-bottom: 80px;
  background: #ecf4ee;
}
.wrapper .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-left: 0;
  padding-right: 0;
}
.wrapper .cards .card {
  max-width: 400px;
  border: 1px solid #e9e9e9;
  padding: 20px;
  background: #FFF;
}
.wrapper .cards .card img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
}
.wrapper .cards .card__title {
  font-weight: 600;
  font-size: 18px;
  padding: 16px 0 12px;
  display: inline-block;
  color: #333;
  text-wrap: balance;
}
.wrapper .cards .card__desc {
  font-size: 14px;
  color: #757575;
  height: 85px;
  position: relative;
  overflow: hidden;
}
.wrapper .cards .card__desc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, transparent, #FFF 50%);
}
.wrapper .cards .card__price {
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
}
.wrapper .cards .card .btn {
  padding: 12px 24px 12px;
}
.wrapper .cards .card__title, .wrapper .cards .card__spec, .wrapper .cards .card__price, .wrapper .cards .card .btn {
  margin-left: 16px;
  margin-right: 16px;
}

@media (max-width: 800px) {
  .wrapper .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .wrapper .cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .wrapper .cards .card {
    margin: 0 auto;
  }
}
.wrapper .wrap_container {
  padding-top: 40px;
  padding-bottom: 60px;
}
.wrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding-top: 20px;
}
.wrapper .container__img {
  background: url("/data/images/container.png") center no-repeat;
  background-size: contain;
  width: 400px;
  min-height: 300px;
  flex-shrink: 0;
}
.wrapper .container__content {
  text-wrap: balance;
}
.wrapper .container__content p {
  font-size: 16px;
  line-height: 1.3;
  padding-bottom: 12px;
}
.wrapper .container__content ul {
  padding-left: 30px;
  padding-bottom: 20px;
}

@media (max-width: 900px) {
  .wrapper .container {
    flex-direction: column;
  }
  .wrapper .container__img {
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
    min-height: 200px;
  }
}
.section_faq {
  background: #ecf4ee;
  padding-top: 40px;
  padding-bottom: 40px;
}

.faq h3 {
  cursor: pointer;
  font-size: 24px;
  position: relative;
  padding-right: 20px;
}
.faq h3 span {
  position: absolute;
  right: 0;
  top: 0;
}
.faq__block {
  background: white;
  padding: 20px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.faq__answer {
  transition: all 300ms ease;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  font-size: 16px;
}
.faq .ico_plus {
  display: inline-block;
  float: right;
  transition: transform 0.5s;
}
.faq .show .faq__answer {
  visibility: visible;
  opacity: 1;
  max-height: 500px;
  padding-top: 12px;
}
.faq .show .ico_plus {
  transform: rotate(135deg);
}

@media (max-width: 900px) {
  .wrapper .faq h3 {
    font-size: 18px;
  }
}
.contacts {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 60px;
}
.contacts strong {
  font-weight: bold;
}
.contacts p {
  padding-bottom: 24px;
}
.contacts div > img {
  border-radius: 4px;
  border: 1px solid #f2f2f2;
}

@media (max-width: 1000px) {
  .wrapper .contacts div > img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
@media (max-width: 680px) {
  .wrapper .box_contacts .contacts {
    flex-direction: column;
    text-align: center;
  }
  .wrapper .box_contacts .contacts h2 {
    text-align: center;
  }
}