@charset "UTF-8";
/*
 * Критически важные стили
 * для загрузки в первую очередь
 */
.accent {
  color: #a2c69b;
}

:root {
  --color-primary: #9caa99;
  --color-primary-light: #b7c1b5;
  --color-primary-dark: #81937d;
  --color-secondary: #a2c69b;
  --color-secondar-lighty: #c0d9bb;
  --color-secondary-dark: #84b37b;
}

/*
Какие точки использовать?
Ответ на этот вопрос даёт сам блок. Один. Каждый.
desktop: 1441px <
laptop: 960 - 1220 px;
tablet: 768 - 959 px
mobile: < 768 px
*/
/* кода сброса стилей браузера */
html, body, div, span, 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%;
  vertical-align: baseline;
}

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

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  line-height: 1.2;
}

ol {
  padding-left: 1.4em;
  list-style: decimal;
}

ul {
  padding-left: 1.4em;
  list-style: square;
}

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

img {
  max-width: 100%;
}

/* конец кода сброса стилей браузера */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.section {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section_bottom {
  padding-bottom: 25px;
}
@media (min-width: 992px) {
  .section_bottom {
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .section_bottom {
    padding-bottom: 50px;
  }
}

.section_top {
  padding-top: 25px;
}
@media (min-width: 992px) {
  .section_top {
    padding-top: 30px;
  }
}
@media (min-width: 1200px) {
  .section_top {
    padding-top: 50px;
  }
}

.bg {
  background-color: #F9F9F9;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.container-700 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.grid-2 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.vc_pageable-slide-wrapper,
.grid-3 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .vc_pageable-slide-wrapper,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .vc_pageable-slide-wrapper,
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
  }
}

.grid-4 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
  }
}
.grid-4 .vc_column_container {
  max-width: 300px;
  margin: 0 auto;
}
.grid-4 .wpb_column {
  margin-bottom: 25px;
}

.grid-5 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .grid-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .grid-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 35px;
  }
}

.grid-6 {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .grid-6 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .grid-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .grid-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 35px;
  }
}

@media (min-width: 600px) {
  .advantages__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .advantages__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 600px) {
  .step__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}
@media (min-width: 1000px) {
  .step__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 600px) {
  .why-we__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}
@media (min-width: 1200px) {
  .why-we__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}

.faq__grid {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#services .vc_pageable-slide-wrapper {
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  #services .vc_pageable-slide-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
@media (min-width: 1200px) {
  #services .vc_pageable-slide-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }
}

#services .vc_grid-item {
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}

.no-sidebar .site {
  display: block;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #1d1d1b;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

button {
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: bold;
  clear: both;
}

h1 {
  margin: 0;
  font-weight: 600;
  line-height: 1.23;
  font-size: 28px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

body {
  margin: 0;
  padding: 0;
  background: #fbfffe;
}

.vc_btn3,
.btn,
.button,
.added_to_cart,
.wc-block-product-search__button,
input[type=button],
input[type=reset],
input[type=submit] {
  display: inline-block;
  padding: 0.8em 1.4em;
  min-width: 186px;
  font-size: 0.9em;
  border: 1px solid;
  border-radius: 5px;
  border-color: #a2c69b;
  background: #a2c69b;
  color: rgb(255, 255, 255);
  line-height: 1;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
}
@media (min-width: 992px) {
  .vc_btn3,
  .btn,
  .button,
  .added_to_cart,
  .wc-block-product-search__button,
  input[type=button],
  input[type=reset],
  input[type=submit] {
    font-size: 1em;
    padding: 0.8em 1.6em;
  }
}
.vc_btn3:visited,
.btn:visited,
.button:visited,
.added_to_cart:visited,
.wc-block-product-search__button:visited,
input[type=button]:visited,
input[type=reset]:visited,
input[type=submit]:visited {
  color: rgb(255, 255, 255);
  border-color: #a2c69b;
  background: #a2c69b;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
}
.vc_btn3:focus,
.btn:focus,
.button:focus,
.added_to_cart:focus,
.wc-block-product-search__button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  color: rgb(255, 255, 255);
  border-color: #c0d9bb;
  background: #c0d9bb;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
}
.vc_btn3:active, .vc_btn3:hover,
.btn:active,
.btn:hover,
.button:active,
.button:hover,
.added_to_cart:active,
.added_to_cart:hover,
.wc-block-product-search__button:active,
.wc-block-product-search__button:hover,
input[type=button]:active,
input[type=button]:hover,
input[type=reset]:active,
input[type=reset]:hover,
input[type=submit]:active,
input[type=submit]:hover {
  border-color: #c0d9bb;
  color: #fff;
  background: #c0d9bb;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.01) 100%);
}

.btn_size_sm {
  padding: 0.6em 1.2em;
  min-width: unset;
}

.added_to_cart {
  width: 100%;
  margin-top: 0.5em;
}

.wc-block-product-search__button {
  min-width: unset;
}

.btn_blik {
  position: relative;
  overflow: hidden;
}
.btn_blik:after {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
  height: calc(100% + 16px);
  width: 50px;
  position: absolute;
  z-index: 1;
  top: -8px;
  transform: skewX(-45deg);
  animation: btn-anim 4.5s ease infinite;
}

@keyframes btn-anim {
  0%, 55% {
    left: -100%;
  }
  to {
    left: 130%;
  }
}
.btn_icon-arrow {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 0.65em 1.6em;
}
.btn_icon-arrow::after {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_49_641)'%3E%3Cpath d='M12 19L19 12L12 5M19 12L5 12' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_49_641'%3E%3Crect width='24' height='24' fill='white'%3E%3C/rect%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  width: 24px;
  height: 25px;
}

.servisor__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  background-color: #c0d9bb;
  border-radius: 8px;
  transition: all 0.3s;
}
.servisor__link:hover {
  background-color: #a2c69b;
}
.servisor__link:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
}
.servisor__link:after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.3962 1.4038C11.3962 0.961975 11.038 0.603802 10.5962 0.603803L3.3962 0.603802C2.95437 0.603803 2.5962 0.961975 2.5962 1.4038C2.5962 1.84563 2.95437 2.2038 3.3962 2.2038H9.7962V8.6038C9.7962 9.04563 10.1544 9.4038 10.5962 9.4038C11.038 9.4038 11.3962 9.04563 11.3962 8.6038L11.3962 1.4038ZM1.96949 11.1619L11.1619 1.96949L10.0305 0.838117L0.838123 10.0305L1.96949 11.1619Z' fill='%23a2c69b'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .servisor__link {
    font-size: 16px;
    line-height: 22px;
    gap: 54px;
  }
  .servisor__link:after {
    width: 36px;
    height: 36px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.3962 1.4038C11.3962 0.961975 11.038 0.603802 10.5962 0.603803L3.3962 0.603802C2.95437 0.603803 2.5962 0.961975 2.5962 1.4038C2.5962 1.84563 2.95437 2.2038 3.3962 2.2038H9.7962V8.6038C9.7962 9.04563 10.1544 9.4038 10.5962 9.4038C11.038 9.4038 11.3962 9.04563 11.3962 8.6038L11.3962 1.4038ZM1.96949 11.1619L11.1619 1.96949L10.0305 0.838117L0.838123 10.0305L1.96949 11.1619Z' fill='%23a2c69b'/%3E%3C/svg%3E");
  }
}

.servisor__link {
  gap: 44px;
}

input[type=text],
input[type=tel],
textarea {
  width: 100%;
  color: #666;
  border: 1px solid #ccc;
  padding: 10px;
}
input[type=text]:focus,
input[type=tel]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
  border-radius: 3px;
}

textarea {
  width: 100%;
}

/*
 * Красивый чекбокс
 */
/*
input[type="checkbox"]:checked,
input[type="checkbox"]:not(:checked),
input[type="radio"]:checked,
input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

input[type="checkbox"]:checked + label,
input[type="checkbox"]:not(:checked) + label,
input[type="radio"]:checked + label,
input[type="radio"]:not(:checked) + label {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    line-height: 20px;
    cursor: pointer;
}

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before,
input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 18px;
    height: 18px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before {
    border-radius: 2px;
}

input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before {
    border-radius: 100%;
}

input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after,
input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after {
    content: "";
    position: absolute;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:not(:checked) + label:after {
    left: 4px;
    top: 4px;
    width: 10px;
    height: 8px;
    border-radius: 1px;
    border-left: 4px solid $color__secondary;
    border-bottom: 4px solid $color__secondary;
    transform: rotate(-45deg);
}

input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after {
    left: 4px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: $color__secondary;
}

input[type="checkbox"]:not(:checked) + label:after,
input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
}

input[type="checkbox"]:checked + label:after,
input[type="radio"]:checked + label:after {
    opacity: 1;
}
*/
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

a {
  color: #1d1d1b;
  text-decoration: none;
}

.link {
  color: #1d1d1b;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(132, 179, 123, 0.2);
}
.link:visited, .link:hover, .link:focus, .link:active {
  color: #1d1d1b;
  border-bottom: 1px solid rgba(132, 179, 123, 0.5);
  outline: 0;
}

a.post-thumbnail {
  border-bottom: none;
}

figure a {
  border-bottom: unset !important;
}

.site-footer a {
  color: #fff;
  border-bottom: 1px solid rgba(29, 29, 27, 0.2);
  transition: all 0.3s;
}
.site-footer a:hover, .site-footer a:focus, .site-footer a:active {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

ul,
ol {
  margin: 0 0 1.5em 0;
}

@media (min-width: 1200px) {
  ul,
  ol {
    margin: 0 0 1.5em 0.5em;
    padding-left: 1.5em;
  }
}
ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

.wpb_text_column p,
.wpb_text_column ul {
  margin-top: 1em;
  margin-bottom: 1em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

.f-list {
  list-style: none;
  margin: 0;
  padding-left: 25px;
}
.f-list li {
  position: relative;
  padding-left: 1.5em;
  font-size: 20px;
  margin-bottom: 0.7em;
}
.f-list li:before {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-size: 0.9em;
  color: #aeaabb;
  top: 2px;
  left: 0px;
  content: "\f005";
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

.vc_single_image-wrapper .vc_single_image-img {
  border-radius: 5px;
}

figure {
  margin: 1em 0;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: bold;
  clear: both;
}

h1 {
  margin: 0;
  font-weight: 600;
  line-height: 1.23;
  font-size: 28px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}
@media (min-width: 992px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.site-main .pagination {
  margin: 0 0 1.5em;
}
.pagination .nav-links {
  display: flex;
}
.pagination .nav-previous {
  flex: 1 0 50%;
}
.pagination .nav-next {
  text-align: end;
  flex: 1 0 50%;
}
.pagination .page-numbers {
  padding: 0.2em 0.7em;
  margin: 0.2em;
  border: 1px solid rgba(232, 232, 232, 0.5);
}
.pagination .page-numbers:hover {
  background: #fff6f6;
}
.pagination .current {
  background: #fff6f6;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post {
  margin: 0 0 2.5em;
}

.entry-header {
  margin-top: 25px;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.edit-link .post-edit-link {
  margin-left: 1em;
}

#vc_load-inline-editor {
  margin-left: 1em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget-area .widget {
  margin: 0 0 1.5em;
  border: 1px solid rgba(156, 170, 153, 0.2);
  border: 1px solid #110000;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 1.5em;
}
.widget-area .widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-area .widget .chosen a {
  color: red;
  position: relative;
}
.widget-area .widget .chosen a:before {
  position: absolute;
  left: -11px;
  top: 1px;
  content: "\f00d";
  font-size: 0.8em;
  font-family: "Font Awesome 6 Pro";
}
.widget-area .widget select {
  max-width: 100%;
}

.wp-block-pages-list__item {
  margin-bottom: 0.5em;
}

.widgettitle,
.widget-title,
.sidebar-block__title {
  position: relative;
  top: -10px;
  background-color: #ffffff;
  max-width: 105px;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 16px;
  color: #000000;
  text-align: center;
  font-weight: 700;
  font-style: normal;
}

/*
 * Sidebar menu
 */
.widget-area #menu-two {
  list-style: none;
  padding: 0;
}
.widget-area #menu-two li {
  padding-left: 1.875em;
  padding-bottom: 0.5em;
  margin-top: 0.7em;
  border-bottom: 1px solid #e8e8e8;
  background-image: url(images/icon_list.png);
  background-repeat: no-repeat;
  background-position: 0 1px;
}
.widget-area #menu-two li:last-of-type {
  border-bottom: none;
}
.widget-area #menu-two a {
  display: inline-block;
  padding-left: 0.3em;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 300;
  border-bottom: none;
}

/*
 * Виджет с категориями товаров
 */
.widget-area .wc-block-product-categories-list a {
  font-size: 15px;
}
.widget-area .wc-block-product-categories-list .wc-block-product-categories-list--depth-1 {
  padding-left: 10px;
  font-size: 0.9em;
}

.filters__btn-wrap {
  margin-bottom: 2em;
}
@media (min-width: 1100px) {
  .filters__btn-wrap {
    display: none;
  }
}

.wc-block-product-search__field {
  font-size: 13px;
}

/*
 * Home Menu
 */
.home-menu .menu {
  max-width: 300px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-menu .menu li a:link {
  color: #fff;
  text-decoration: none;
}
.home-menu .menu li a:visited {
  color: #fff;
  text-decoration: none;
}
.home-menu .menu li a:hover {
  color: #fff;
  text-decoration: none;
}
.home-menu .menu li a:active {
  color: #fff;
  text-decoration: none;
}
.home-menu .menu a {
  background: #9caa99;
  color: #fff;
  padding: 10px 10px;
  display: block;
  border-bottom: 1px solid #b7c1b5;
  transition: 0.5s all;
}
.home-menu .menu a:hover {
  background: #b7c1b5;
  padding: 10px 0 10px 15px;
}

/*
 * Виджет widget_nav_menu
 */
.widget_nav_menu .menu-item {
  margin-bottom: 0.5em;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Alignments
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* Обязательные блоки
--------------------------------------------- */
.logo__link {
  display: flex;
  align-items: center;
  line-height: 1;
  border: none;
}

.logo__img-wrap {
  line-height: 0;
}

.logo__img-wrap img {
  max-height: 75px;
  width: auto;
}

.logo__separator {
  display: inline-flex;
  width: 1px;
  height: 39px;
  margin-left: 5px;
  margin-right: 5px;
  background-color: transparent;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo__title {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  border: none;
}
@media (min-width: 600px) {
  .logo__title {
    font-size: 20px;
  }
}

.logo__desc {
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
}
@media (min-width: 600px) {
  .logo__desc {
    font-size: 12px;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  background-color: #b7c1b5;
  border: none;
  border-radius: 5px;
  padding: 0.4em 1.2em;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle:before {
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23ffffff'%3E%3Cpath d='M8 104H440C444.406 104 448 100.406 448 96S444.406 88 440 88H8C3.594 88 0 91.594 0 96S3.594 104 8 104ZM440 248H8C3.594 248 0 251.594 0 256S3.594 264 8 264H440C444.406 264 448 260.406 448 256S444.406 248 440 248ZM440 408H8C3.594 408 0 411.594 0 416S3.594 424 8 424H440C444.406 424 448 420.406 448 416S444.406 408 440 408Z'/%3E%3C/svg%3E");
  display: block;
  width: 25px;
  height: 25px;
  color: #fff;
}

.menu-toggle.active:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 320 512'%3E%3Cpath d='M317.656 402.344C320.781 405.469 320.781 410.531 317.656 413.656C314.529 416.783 309.471 416.783 306.344 413.656L160 267.312L13.656 413.656C10.529 416.783 5.471 416.783 2.344 413.656C-0.781 410.531 -0.781 405.469 2.344 402.344L148.687 256L2.344 109.656C-0.781 106.531 -0.781 101.469 2.344 98.344S10.531 95.219 13.656 98.344L160 244.688L306.344 98.344C309.469 95.219 314.531 95.219 317.656 98.344S320.781 106.531 317.656 109.656L171.312 256L317.656 402.344Z'/%3E%3C/svg%3E");
}

.menu-toggle__text {
  display: inline-block;
  margin-left: 10px;
  line-height: 1;
}

.ip-buttons {
  display: none;
}
@media (min-width: 768px) {
  .ip-buttons {
    display: block;
  }
}

.phone-button {
  position: fixed;
  right: 20px;
  bottom: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 9999;
  background-color: #a2c69b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.phone-button:before,
.phone-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #a2c69b;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: border-animate 1.5s linear infinite;
  opacity: 0;
}

.viber-button:after {
  animation-delay: 0.5s;
}

.telegram-button {
  position: fixed;
  right: 20px;
  bottom: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 9999;
  background-color: #2CA5E0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23FFF' d='M23.91 3.79L20.3 20.84c-.25 1.21-.98 1.5-2 .94l-5.5-4.07-2.66 2.57c-.3.3-.55.56-1.1.56-.72 0-.6-.27-.84-.95L6.3 13.7l-5.45-1.7c-1.18-.35-1.19-1.16.26-1.75l21.26-8.2c.97-.43 1.9.24 1.53 1.73z'/%3e%3c/svg%3e");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.telegram-button:before,
.telegram-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #2CA5E0;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: border-animate 1.5s linear infinite;
  opacity: 0;
}

.telegram-button:after {
  animation-delay: 0.5s;
}

.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 9999;
  background-color: #25D366;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23FFF' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3e%3c/svg%3e");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.whatsapp-button:before,
.whatsapp-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #25D366;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: border-animate 1.5s linear infinite;
  opacity: 0;
}

.whatsapp-button:after {
  animation-delay: 0.5s;
}

@keyframes border-animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/* Magnific Popup */
.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 400px;
  margin: 20px auto;
}
.white-popup .form {
  max-width: 400px;
}

/* Popup Form */
.form {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.8);
}
.form .glyphicon {
  font-size: 24px;
}

.form__title {
  margin: 0;
  font-size: 1.7rem;
  text-align: center;
}

.form__item {
  margin-top: 1rem;
}
.form__item input[type=text],
.form__item input[type=tel],
.form__item textarea,
.form__item button {
  width: 100%;
  padding: 8px 0 8px 15px;
}

.message {
  margin-top: 1rem;
  text-align: center;
}

input.error {
  border: 1px solid red;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.menu-g__wrap {
  background: #9caa99;
}

.menu-g__nav {
  display: block;
  width: 100%;
  /*
  .menu-item-39 {
    background: $color__secondary;
    &:hover > a,
    &.focus > a {
      background-color: $color__secondary_light;
    }
  }
  */
}
.menu-g__nav .menu-g {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
  background: #9caa99;
  /* Mega menu
  @media(min-width: 1200px) {
    .menu-item-27 {
      .sub-menu {
        padding-top: 0.5em;
        width: 450px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        a {
          width: 210px;
        }
      }
    }
  }
   */
}
.menu-g__nav .menu-g .sub-menu {
  position: absolute;
  top: 100%;
  left: -999em;
  margin: 0;
  padding: 0;
  flex-direction: column;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  list-style: none;
  background-color: #9caa99;
  z-index: 99999;
}
.menu-g__nav .menu-g .sub-menu .sub-menu {
  left: -999em;
  top: 0;
}
.menu-g__nav .menu-g .sub-menu .menu-item:hover > .sub-menu, .menu-g__nav .menu-g .sub-menu .menu-item.focus > .sub-menu {
  display: block;
  left: 100px;
}
@media (min-width: 1200px) {
  .menu-g__nav .menu-g .sub-menu .menu-item:hover > .sub-menu, .menu-g__nav .menu-g .sub-menu .menu-item.focus > .sub-menu {
    left: 300px;
  }
}
.menu-g__nav .menu-g .sub-menu .menu-item a {
  padding-left: 1em;
}
.menu-g__nav .menu-g .sub-menu a {
  width: 300px;
  font-size: 0.9em;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-g__nav .menu-g .sub-menu li:hover > a .sub-menu,
.menu-g__nav .menu-g .sub-menu li.focus > a .sub-menu {
  left: auto;
}
.menu-g__nav .menu-g .menu-item:hover > .sub-menu,
.menu-g__nav .menu-g .menu-item.focus > .sub-menu {
  left: auto;
}
.menu-g__nav .menu-item {
  position: relative;
  flex: auto;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.menu-g__nav .menu-item:hover > a, .menu-g__nav .menu-item.focus > a {
  background-color: #b7c1b5;
}
.menu-g__nav a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 0.7em 1em;
  transition: background-color 0.3s;
}
.menu-g__nav.toggled ul {
  display: block;
}

@media screen and (min-width: 992px) {
  .menu-g__nav .menu-g {
    display: flex;
    justify-content: space-between;
  }
  .menu-g__nav .menu-g li {
    border-bottom: none;
  }
}
.menu-g .menu-item-has-children {
  position: relative;
}

.menu-g .menu-item-has-children:after {
  position: absolute;
  display: inline-block;
  content: "";
  font-size: 13px;
  right: 25px;
  top: 46%;
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  opacity: 0.8;
  transition: all 0.3s;
}

.menu-g .menu-item-has-children:hover:after {
  transform: rotate(180deg);
}

.menu-m__container {
  position: fixed;
  top: 0;
  height: 100%;
  min-height: 100%;
  width: 100%;
  max-width: 500px;
  padding: 30px 30px 0;
  background-color: #9caa99;
  transition: transform 0.5s ease;
  transform: translate3d(-100%, 0, 0);
  z-index: 99;
}
.menu-m__container.active {
  transform: translate3d(0, 0, 0);
}

.admin-bar .menu-m__container {
  top: 47px;
}

.menu-m {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-m li {
  padding: 10px 5px;
}
.menu-m .menu-item-has-children {
  position: relative;
  overflow: hidden;
}
.menu-m .sub-menu {
  transform: translateY(-150%);
  margin-top: 15px;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  display: none;
  animation: menum 0.5s forwards;
}
.menu-m .sub-menu.active {
  display: block;
  animation: menum 0.5s forwards;
}

@keyframes menum {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0);
  }
}
.sub-menu__button {
  position: absolute;
  right: 0;
  top: 6px;
  width: 30px;
  height: 30px;
  color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M267.3 395.3c-6.2 6.2-16.4 6.2-22.6 0l-192-192c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L256 361.4 436.7 180.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-192 192z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.sub-menu__button.active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath d='M380.2 58.3c5.7-6.7 4.9-16.8-1.9-22.5s-16.8-4.9-22.6 1.9L192 231.2 28.2 37.7c-5.7-6.7-15.8-7.6-22.5-1.9s-7.6 15.8-1.9 22.5L171 256 3.8 453.7c-5.7 6.7-4.9 16.8 1.9 22.6s16.8 4.9 22.5-1.9L192 280.8 355.8 474.3c5.7 6.7 15.8 7.6 22.6 1.9s7.6-15.8 1.9-22.6L213 256 380.2 58.3z'/%3E%3C/svg%3E");
  background-size: 8px;
}

.menu-m__close {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0;
  margin: 0;
  border: none;
  line-height: 1;
  cursor: pointer;
  background-color: transparent;
}
.menu-m__close svg {
  height: 30px;
  width: 30px;
}

.menu-m {
  text-align: center;
}

.menu-m__button {
  margin-top: 35px;
  text-align: center;
}

.menu-m__messangers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}

.menu-m__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__whatsapp-link svg {
  height: 30px;
  width: 30px;
  fill: #25D366;
}

.menu-m__telegram {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__telegram-link svg {
  height: 30px;
  width: 30px;
  fill: #1990CB;
}

.menu-m__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__linkedin-link svg {
  height: 30px;
  width: 30px;
  fill: #0A66C2;
}

.menu-m__twitter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__twitter-link svg {
  height: 30px;
  width: 30px;
  fill: #1D9BF0;
}

.menu-m__facebook {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__facebook-link svg {
  height: 30px;
  width: 30px;
  fill: #3b5998;
}

.menu-m__vk {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-m__vk-link svg {
  height: 35px;
  width: 35px;
  fill: #0077FF;
}

.menu-m__email {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 15px;
  gap: 7px;
}
.menu-m__email svg {
  height: 20px;
  max-width: 30px;
}

.menu-m__phone {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.menu-m__phone svg {
  height: 20px;
  max-width: 30px;
}

.menu-m__work-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 15px;
}
.menu-m__work-time svg {
  height: 20px;
  max-width: 30px;
}

.menu-m__gtranslate {
  margin-top: 35px;
  text-align: center;
}

.menu-m__gtranslate .gtranslate_wrapper a {
  display: inline-block;
}

.menu-m__gtranslate .gtranslate_wrapper a + a {
  margin-left: 14px;
}

/* Blocks
--------------------------------------------- */
.begin {
  position: relative;
  background-color: #9caa99;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 600px) {
  .begin__bg-sm {
    background-image: none !important;
  }
}

@media (max-width: 599px) {
  .begin__bg-lg {
    background-image: none !important;
  }
}

@media (max-width: 992px) {
  .begin .form {
    margin-top: 2em;
  }
}

.begin__row {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}

.begin__content {
  max-width: 600px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.begin__title {
  font-family: "RUSBoycott", "Roboto", sans-serif;
  font-size: 30px;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: normal;
}

/*
@media(min-width: $query__xs) {
  .begin__title {
    font-size: 38px;
  }
}
@media(min-width: $query__sm) {
  .begin__title {
    font-size: 44px;
  }
}
@media(min-width: $query__lg) {
  .begin__title {
    font-size: 48px;
  }
}
*/
.begin__title-a {
  display: inline-block;
  padding: 0 15px;
  background-color: rgb(255, 255, 255);
}

.begin__title-b {
  display: inline-block;
  padding: 0 15px;
  margin-top: 7px;
  background-color: rgb(255, 255, 255);
}

.begin__title-c {
  display: inline-block;
  padding: 0 15px;
  margin-top: 7px;
  color: #a2c69b;
  background-color: rgb(255, 255, 255);
}

.begin__title-d {
  display: inline-block;
  padding: 0 15px;
  margin-top: 7px;
  color: #a2c69b;
  background-color: rgb(255, 255, 255);
}

.begin__subtitle {
  display: inline-block;
  margin-top: 15px;
  padding: 0px 15px;
  color: #fff;
  background-color: #a2c69b;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
}

@media (min-width: 600px) {
  .begin__subtitle {
    font-size: 16px;
  }
}
.begin__list {
  margin-top: 15px;
}

.b-item {
  max-width: 600px;
  margin-bottom: 8px;
  padding: 0.3em 0;
  display: grid;
  grid-template-columns: 70px auto;
  align-items: center;
  background: rgb(255, 255, 255);
}
.b-item:last-of-type {
  margin-bottom: 0;
}

.b-item__icon {
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.b-item__icon svg {
  height: 28px;
  width: 28px;
  fill: #a2c69b;
}

.b-item__text {
  font-size: 16px;
}

@media (min-width: 600px) {
  .b-item__text {
    font-size: 18px;
  }
}
.begin__form {
  padding: 45px;
}
@media (min-width: 1200px) {
  .begin__form {
    margin-top: 50px;
  }
}

.begin__video-wrap {
  margin-top: 84px;
}

.slidus {
  text-align: center;
}

.slidus__slide {
  position: relative;
  min-height: 600px;
}

.slidus__box {
  position: absolute;
  width: 100%;
  top: 25px;
  text-align: center;
}

.slidus__logo {
  opacity: 1;
  max-height: 150px;
}
@media (min-width: 1200px) {
  .slidus__logo {
    max-height: 350px;
  }
}

.slidus__desc {
  margin-top: 15px;
  display: inline-block;
  padding: 3px 5px;
  color: #fff;
  font-family: "RUSBoycott", "Roboto", sans-serif;
  font-size: 24px;
}
@media (min-width: 768px) {
  .slidus__desc {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .slidus__desc {
    font-size: 58px;
  }
}

.slidus__btn {
  margin-top: 15px;
}

.slidus .splide__pagination {
  bottom: 1.5em;
}

.steptur__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}
@media (min-width: 480px) {
  .steptur__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .steptur__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.steptur {
  width: 100%;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  background-color: #F9F9F9;
}
@media (min-width: 1200px) {
  .steptur {
    padding: 20px;
  }
}

.steptur__number {
  display: inline-block;
  padding: 3px 10px;
  color: #a2c69b;
  border-radius: 9px;
  font-size: 12px;
  border: 1px solid #a2c69b;
}
@media (min-width: 1200px) {
  .steptur__number {
    border-radius: 16px;
    font-size: 14px;
  }
}

.steptur__title {
  margin-top: 10px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .steptur__title {
    font-size: 16px;
    margin-top: 15px;
  }
}

.steptur__content {
  margin-top: 15px;
  font-size: 14px;
}

.steptur__content p {
  margin-bottom: 5px;
}

/* Базовые */
@media (min-width: 992px) {
  .about__section {
    background: #fff url(blocks/about/images/about_bg.webp) center bottom no-repeat;
  }
}

.about {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .about__grid {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}

.about__col {
  line-height: 0;
}

.about__col_b {
  padding: 20px;
  background-color: #9caa99;
}
@media (min-width: 992px) {
  .about__col_b {
    padding: 30px 40px;
  }
}

.about__img {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 480px) {
  .about__img_xs {
    display: none;
  }
}

.about__img_md {
  display: none;
}
@media (min-width: 480px) and (max-width: 1200px) {
  .about__img_md {
    display: block;
  }
}

.about__img_lg {
  display: none;
}
@media (min-width: 1200px) {
  .about__img_lg {
    display: block;
  }
}

.about__title {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .about__title {
    font-size: 28px;
  }
}

.about__content {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  text-align: justify;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about__content {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .about__content {
    font-size: 18px;
    line-height: 1.4;
  }
}

.about__advantages {
  margin-top: 15px;
  padding-left: 15px;
  border-left: 2px solid #a2c69b;
}

.advantages.gorizontal,
.advantages {
  display: grid;
  grid-template-columns: 70px auto;
  grid-gap: 16px;
  min-height: 153px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(38, 50, 109, 0.1);
}

.advantages__icon {
  display: flex;
  width: 70px;
  height: 70px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 35px;
  background: #9caa99;
}

.advantages__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.advantages__title {
  color: #9caa99;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .advantages__title {
    font-size: 16px;
  }
}
.advantages__description {
  margin-top: 10px;
  color: #303C42;
  font-size: 14px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .advantages__description {
    font-size: 16px;
  }
}
.advantages.vertical {
  display: block;
  min-height: unset;
}

.advantages.vertical .advantages__icon {
  margin: auto;
}

.advantages.vertical .advantages__title {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.advantages.vertical .advantages__description {
  text-align: center;
}

.advantagos {
  margin-top: 20px;
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 992px) {
  .advantagos {
    margin-top: 0;
    grid-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .page-id-459 .advantagos {
    margin-top: 40px;
  }
}

.advantagos__icon {
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 992px) {
  .advantagos__icon svg {
    width: 40px;
    height: 40px;
  }
}

.advantagos__item {
  padding: 8px;
  background-color: #fff;
  border-radius: 8px;
}
@media (min-width: 1200px) {
  .advantagos__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 184px;
    padding: 14px;
  }
}

@media (max-width: 1200px) {
  .advantagos__title-group {
    margin-top: 29px;
  }
}

.advantagos__item-title {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 992px) {
  .advantagos__item-title {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
  }
}

.advantagos__item-desc {
  margin-top: auto;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  opacity: 0.8;
}
@media (min-width: 992px) {
  .advantagos__item-desc {
    font-size: 14px;
    line-height: 21px;
    opacity: 1;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: center;
}
@media (min-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.services__item {
  display: inline-block;
  align-items: center;
  padding: 8px;
  max-width: 300px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .services__item {
    padding: 12px;
    min-height: 76px;
  }
}
.services__item:hover {
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}
.services__item:before {
  position: relative;
  bottom: -3px;
  display: inline-block;
  margin-right: 7px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath d='M64 496H311.2c5.8 5.5 12 10.6 18.5 15.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H204.1c12.7 0 24.9 5.1 33.9 14.1L369.9 145.9c9 9 14.1 21.2 14.1 33.9v18.7c-5.4 1.5-10.8 3.3-16 5.4V179.9c0-1.3-.1-2.6-.2-3.9H248c-22.1 0-40-17.9-40-40V16.2c-1.3-.2-2.6-.2-3.9-.2H64C37.5 16 16 37.5 16 64V448c0 26.5 21.5 48 48 48zM361.1 160c-.8-1-1.6-1.9-2.4-2.7L226.7 25.4c-.9-.9-1.8-1.7-2.7-2.4V136c0 13.3 10.7 24 24 24H361.1zM560 368a128 128 0 1 0 -256 0 128 128 0 1 0 256 0zm-272 0a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-48a16 16 0 1 1 0-32 16 16 0 1 1 0 32zM408 440c0-4.4 3.6-8 8-8h8V360h-8c-4.4 0-8-3.6-8-8s3.6-8 8-8h16c4.4 0 8 3.6 8 8v80h8c4.4 0 8 3.6 8 8s-3.6 8-8 8H432 416c-4.4 0-8-3.6-8-8z'/%3E%3C/svg%3E");
  flex-shrink: 0;
  width: 24px;
  height: auto;
}
@media (max-width: 480px) {
  .services__item:before {
    display: none;
  }
}

.services__item.hide {
  display: none;
}

.services__link {
  font-size: 14px;
}

.show-more__btn-wrap {
  margin-top: 15px;
  text-align: center;
}
@media (min-width: 1200px) {
  .show-more__btn-wrap {
    margin-top: 25px;
  }
}

@media (min-width: 1200px) {
  .contacts__grid {
    display: grid;
    grid-template-columns: auto 615px;
    grid-gap: 30px;
  }
}
.contacts__title {
  margin-bottom: 28px;
  color: #303C42;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 110%;
}

@media (min-width: 768px) {
  .contacts__title {
    margin-bottom: 32px;
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .contacts__title {
    margin-bottom: 64px;
  }
}
.contacts__item {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .contacts__item {
    margin-bottom: 28px;
  }
}
.contacts__item p {
  margin-bottom: 0;
}

.contacts__name {
  font-weight: 700;
  color: #303C42;
}

.contacts__value {
  font-weight: 300;
  color: #303C42;
}

.contacts__value a {
  text-decoration: none;
  color: #303C42;
}

.contacts__value a:hover {
  color: #303C42;
}

.contacts__map {
  width: 100%;
  height: 300px;
}

@media (min-width: 1200px) {
  .contacts__map {
    height: 282px;
  }
}
.content {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .content {
    margin-top: 35px;
  }
}

@media (min-width: 992px) {
  .content__grid {
    display: grid;
    grid-template-columns: auto 427px;
    grid-gap: 25px;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .content__grid.revers {
    display: grid;
    grid-template-columns: 427px auto;
    grid-gap: 25px;
    align-items: center;
  }
}

.content__grid.revers .content__img-wrap {
  order: 0;
}

.content__img-wrap {
  order: 1;
}

.content__img {
  border-radius: 8px;
}
@media (max-width: 992px) {
  .content__img {
    height: 206px;
    width: 100%;
    object-fit: cover;
  }
}

.content__title-group {
  margin-top: 10px;
  margin-bottom: 25px;
}

.content__title {
  font-size: 18px;
}
@media (min-width: 992px) {
  .content__title {
    font-size: 24px;
  }
}

.content__title-under {
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #a2c69b;
}

@media (max-width: 992px) {
  .content__text {
    margin-top: 20px;
  }
}

.content__text p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 992px) {
  .content__text p {
    font-size: 16px;
    line-height: 24px;
  }
}
.content__text p:last-of-type {
  margin-bottom: 0;
}

.content__text strong {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #a2c69b;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 992px) {
  .content__text strong {
    font-size: 18px;
    line-height: 24px;
  }
}

.faq .vc_toggle {
  margin-bottom: 0;
}
.faq .vc_toggle_title {
  position: relative;
  padding: 0.625em 2.5em 0.625em 0.625em;
  border-radius: 0;
}
.faq .vc_toggle_title h4 {
  font-size: 1em;
  color: #fff;
}
.faq .vc_toggle_icon {
  position: absolute;
  top: 38%;
  right: 10px;
  border-color: #1d1d1b !important;
}
.faq .vc_toggle_icon:before, .faq .vc_toggle_icon:after {
  background-color: #1d1d1b !important;
}
.faq .vc_toggle_content {
  font-size: 14px;
}
.faq .vc_toggle_content p {
  margin: 0;
}
.faq .vc_toggle:last-of-type {
  margin-bottom: 0;
}

.site-footer {
  background-color: #292929;
  background-size: cover;
  background-position: top center;
  color: #fff;
  text-align: center;
}

.footer-top {
  padding: 10px 0;
  border-bottom: 1px solid rgba(118, 118, 118, 0.25);
}

.menu-a {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-a .menu-item {
  display: inline-block;
  padding: 0.7em 1em;
}
.menu-a .menu-item a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s;
}

.menu-b {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.menu-b .menu-item {
  display: block;
  margin-bottom: 0.4em;
}
.menu-b .menu-item a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s;
}

.menu-c {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.menu-c .menu-item {
  display: block;
  margin-bottom: 0.4em;
}
.menu-c .menu-item a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s;
}

@media (min-width: 992px) {
  .footer-middle__grid {
    display: grid;
    grid-template-columns: 40% 60%;
  }
}

.f-logo {
  text-align: left;
  color: #fff;
}
.f-logo img {
  display: block;
  margin-right: auto;
  height: 50px;
  width: auto;
}
.f-logo a {
  border-bottom: none;
}
.f-logo a:hover, .f-logo a:focus, .f-logo a:active {
  border-bottom: none;
}
.f-logo .logo__text {
  margin-top: 6px;
}

.f-contact {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 3px;
}
.f-contact svg {
  width: 24px;
  height: 16px;
  fill: #fff;
}

.f-inner {
  padding: 2em 0;
}

.site-info {
  font-size: 0.9em;
  color: #fff;
  line-height: 1.7;
}

.footer-middle {
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1E1E1E;
  text-align: center;
  color: #4a4a4a;
  font-size: 12px;
}

@media (min-width: 768px) {
  .bc-menu__grid {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}

.footer__title {
  margin-top: 15px;
  margin-bottom: 15px;
  color: #3a3a3a;
  text-align: left;
}

.f-contact {
  margin-bottom: 10px;
}

.f-contact_1 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.f-contact_2 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.f-phone__link {
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  border: none;
}
.f-phone__link:active, .f-phone__link:focus {
  border: none;
}
.f-phone__link:hover {
  color: #9caa99;
  border-bottom-style: dashed;
}

.f-ok,
.f-vk,
.f-address,
.f-time,
.f-email,
.f-instagram,
.f-youtube,
.f-whatsapp,
.f-telegram,
.f-viber {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid rgba(129, 147, 125, 0.2);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
}
.f-ok:before,
.f-vk:before,
.f-address:before,
.f-time:before,
.f-email:before,
.f-instagram:before,
.f-youtube:before,
.f-whatsapp:before,
.f-telegram:before,
.f-viber:before {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  top: 0;
  left: -20px;
}
.f-ok:hover,
.f-vk:hover,
.f-address:hover,
.f-time:hover,
.f-email:hover,
.f-instagram:hover,
.f-youtube:hover,
.f-whatsapp:hover,
.f-telegram:hover,
.f-viber:hover {
  color: #9caa99;
  border-bottom: 1px solid rgba(156, 170, 153, 0.5);
  text-decoration: none;
}

.h-form__section {
  background-image: url(blocks/form-gorizontal/bg.webp);
}

.h-form {
  max-width: 900px;
  margin: 25px auto;
  padding: 25px 50px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .h-form {
    padding: 20px 100px 35px 100px;
  }
}

.h-form__title {
  margin: 10px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .h-form__title {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .h-form__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
  }
}

@media (max-width: 992px) {
  .h-form__item {
    max-width: 270px;
    margin: 0 auto 1em auto;
  }
}
.h-form__item .btn {
  width: 100%;
}

.h-form__input {
  width: 100%;
}

.h-form__privacy {
  display: inline-block;
  margin-top: 5px;
  position: relative;
  bottom: -5px;
}

.gallery__title {
  font-weight: 600;
  line-height: 1.23;
  font-size: 30px;
}
@media (min-width: 768px) {
  .gallery__title {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .gallery__title {
    font-size: 40px;
  }
}

.gallery__desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .gallery__desc {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .gallery__desc {
    font-size: 24px;
  }
}

.gallery {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 400px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 800px) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.gallery__link {
  border: none;
  line-height: 0;
  cursor: zoom-in;
}
.gallery__link:hover {
  border: none;
}
.gallery__link:hover .gallery__img {
  transform: scale(1.04);
  box-shadow: 0 2px 20px 2px rgba(0, 0, 0, 0.45);
}

.gallery__img {
  transition: transform 0.15s linear;
  max-height: 357px;
}

.site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 7px 17px 0 rgba(172, 172, 172, 0.2);
  z-index: 99;
}
@media (max-width: 992px) {
  .site-header.fixed .h-item_2,
  .site-header.fixed .logo__separator,
  .site-header.fixed .logo__text,
  .site-header.fixed .h-item_4 {
    display: none;
  }
  .site-header.fixed .header__grid {
    display: grid;
    grid-template-columns: 65px auto;
    grid-gap: 15px;
    justify-content: flex-start;
    max-width: 365px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .site-header.fixed .h-search__wrap,
  .site-header.fixed .h-button__wrap_a {
    display: none;
  }
}
.site-header.fixed .menu-toggle {
  position: absolute;
  top: 25px;
  right: 15px;
  background: none;
}
@media (max-width: 380px) {
  .site-header.fixed .menu-toggle {
    right: 5px;
    padding: 0.4em 0.5em;
  }
}
.site-header.fixed .menu-toggle:before {
  color: #1d1d1b;
}
.site-header.fixed .menu-toggle__text {
  display: none;
}

@media (min-width: 600px) {
  .admin-bar .site-header.fixed {
    top: 32px;
  }
}
.header__grid {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 0.5em 0;
  align-items: center;
}
@media (min-width: 992px) {
  .header__grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.h-item {
  margin-bottom: 0.5em;
}
@media (min-width: 992px) {
  .h-item {
    margin-bottom: 0;
  }
}

.h-item_2 {
  display: none;
}
@media (min-width: 992px) {
  .h-item_2 {
    display: block;
  }
}

.h-item_4 {
  display: none;
}
@media (min-width: 992px) {
  .h-item_4 {
    display: block;
  }
}

.h-phone__link {
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  border: none;
  transition: color 0.3s;
}
.h-phone__link:active, .h-phone__link:focus {
  border: none;
}
.h-phone__link:hover {
  color: #9caa99;
}

.h-button__wrap {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.h-soc {
  max-width: 250px;
}

.h-soc__row {
  display: none;
}
@media (min-width: 992px) {
  .h-soc__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
}

.h-soc__item {
  display: flex;
  align-items: center;
  gap: 3px;
}
.h-soc__item svg {
  width: 24px;
  height: 16px;
  fill: #1d1d1b;
}

.h-ok__link,
.h-vk__link,
.h-address__link,
.h-time__link,
.h-email__link,
.h-instagram__link,
.h-youtube__link,
.h-whatsapp__link,
.h-telegram__link,
.h-ozon__link,
.h-viber__link {
  display: inline-block;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(129, 147, 125, 0.2);
  text-decoration: none;
  transition: all 0.3s;
}
.h-ok__link:hover,
.h-vk__link:hover,
.h-address__link:hover,
.h-time__link:hover,
.h-email__link:hover,
.h-instagram__link:hover,
.h-youtube__link:hover,
.h-whatsapp__link:hover,
.h-telegram__link:hover,
.h-ozon__link:hover,
.h-viber__link:hover {
  color: #9caa99;
  border-bottom: 1px solid rgba(156, 170, 153, 0.5);
  text-decoration: none;
}

.h-email__wrap {
  margin-bottom: 0.2em;
  margin-bottom: 3px;
}

.h-address__wrap {
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .h-email__wrap,
  .h-time__wrap,
  .h-address__wrap,
  .h-search__wrap {
    margin-top: 0.5em;
  }
}

.h-search__wrap i {
  cursor: pointer;
}
.h-search__wrap i:hover {
  color: #a2c69b;
}
.h-search__wrap .wc-block-product-search__fields {
  display: flex;
  align-items: center;
}
.h-search__wrap .wc-block-product-search__field {
  padding-left: 0;
  padding-bottom: 3px;
  margin-left: 4px;
  font-size: 14px;
  color: #5E5971;
  border: unset;
  border-radius: 0;
  border-bottom: 1px solid rgba(31, 37, 42, 0.2);
  outline: none !important;
}
.h-search__wrap .wc-block-product-search__field:focus, .h-search__wrap .wc-block-product-search__field:active {
  border-bottom: 1px solid rgba(31, 37, 42, 0.5);
}
.h-search__wrap .wc-block-product-search__field::-webkit-input-placeholder {
  color: #5E5971;
  opacity: 1;
}
.h-search__wrap .wc-block-product-search__field::-moz-placeholder {
  color: #5E5971;
  opacity: 1;
}
.h-search__wrap .wc-block-product-search__field:-moz-placeholder {
  color: #5E5971;
  opacity: 1;
}
.h-search__wrap .wc-block-product-search__field:-ms-input-placeholder {
  color: #5E5971;
  opacity: 1;
}
.h-search__wrap .wc-block-product-search__field:focus::-webkit-input-placeholder {
  opacity: 0;
}
.h-search__wrap .wc-block-product-search__field:focus::-moz-placeholder {
  opacity: 0;
}
.h-search__wrap .wc-block-product-search__field:focus:-moz-placeholder {
  opacity: 0;
}
.h-search__wrap .wc-block-product-search__field:focus:-ms-input-placeholder {
  opacity: 0;
}
.h-search__wrap .wc-block-product-search__button {
  display: none;
  padding: 5px 5px;
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}

.how-we-work__item_even {
  margin-top: 80px;
}

.icon {
  margin-top: 2em;
}

.icon:hover .icon__fa {
  transition: all, 0.3s;
  background-color: rgba(192, 217, 187, 0.1);
}

.icon__fa {
  border-radius: 100%;
  width: 137px;
  height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
  background-color: #F0F3EF;
}
.icon__fa i {
  font-size: 2em;
  color: #fff;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}

.icon__inner {
  width: 97px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
  background-color: #9caa99;
  font-size: 2em;
  font-weight: 100;
  color: #fff;
}
.icon__inner svg {
  max-height: 32px;
  fill: #fff;
}

.icon__title {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.4;
}

.icon__subtitle {
  text-align: center;
}

/*--------------------------------------------------------------
# Order
--------------------------------------------------------------*/
.ip-order {
  background-color: #9caa99;
}

@media (min-width: 600px) {
  .ip-order {
    background: transparent url(blocks/order/order.webp) top center no-repeat;
    background-size: cover;
  }
}
.ip-order__grid {
  padding: 25px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 600px) {
  .ip-order__grid {
    background-color: rgba(156, 170, 153, 0.9);
  }
}
@media (min-width: 1200px) {
  .ip-order__grid {
    padding: 50px;
  }
}
.ip-order__title {
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}
.ip-order__title span {
  color: red;
}

@media (min-width: 768px) {
  .ip-order__title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .ip-order__title {
    font-size: 28px;
  }
}
.ip-order__subtitle {
  text-align: center;
}

.ip-order_theme_dark .ip-order__title {
  color: #fff;
}
.ip-order_theme_dark .ip-order__subtitle {
  color: #fff;
}

.ip-order__description {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.ip-order-form textarea {
  max-height: 122px;
}
.ip-order-form input:not([type=submit]), .ip-order-form textarea {
  width: 100%;
  padding-left: 7px;
  color: #1d1d1b;
  border: 1px solid #3F3F40;
  background-color: transparent;
}
.ip-order-form input:not([type=submit])::-webkit-input-placeholder, .ip-order-form textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order-form input:not([type=submit])::-moz-placeholder, .ip-order-form textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order-form input:not([type=submit]):-moz-placeholder, .ip-order-form textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order-form input:not([type=submit]):-ms-input-placeholder, .ip-order-form textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order-form input:not([type=submit]):focus::-webkit-input-placeholder, .ip-order-form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.ip-order-form input:not([type=submit]):focus::-moz-placeholder, .ip-order-form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.ip-order-form input:not([type=submit]):focus:-moz-placeholder, .ip-order-form textarea:focus:-moz-placeholder {
  opacity: 0;
}
.ip-order-form input:not([type=submit]):focus:-ms-input-placeholder, .ip-order-form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.ip-order-form .message {
  text-align: center;
}

.ip-order-form__item {
  margin-top: 1.2em;
}

.ip-order-form__submit {
  display: block;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.ip-order_theme_dark input:not([type=submit]), .ip-order_theme_dark textarea {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}
.ip-order_theme_dark input:not([type=submit])::-webkit-input-placeholder, .ip-order_theme_dark textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order_theme_dark input:not([type=submit])::-moz-placeholder, .ip-order_theme_dark textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order_theme_dark input:not([type=submit]):-moz-placeholder, .ip-order_theme_dark textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.ip-order_theme_dark input:not([type=submit]):-ms-input-placeholder, .ip-order_theme_dark textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

.userfile {
  display: none;
}

.userfile__label {
  display: block;
  padding: 6px 12px;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
}

.person__img {
  margin-top: 1em;
  text-align: center;
}

.person__name {
  font-size: 18px;
  color: #9caa99;
  text-align: center;
  font-weight: 700;
  font-style: normal;
}

.person__line {
  width: 50px;
  height: 3px;
  background-color: #9caa99;
  margin: 20px auto;
}

.person__text {
  font-size: 0.9em;
  font-weight: 300;
  text-align: center;
}

.person__link-wrap {
  margin-top: 1em;
  text-align: center;
}

.person__link {
  font-size: 0.9em;
  font-weight: 300;
  display: inline-block;
  padding-bottom: 0.1em;
  color: #9caa99;
  border-bottom: 1px solid rgba(156, 170, 153, 0.2);
  transition: all 0.3s;
}
.person__link:hover {
  border-bottom: 1px solid rgba(156, 170, 153, 0.5);
}

@media (min-width: 1200px) {
  .rev__grid > .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.pr-testimonial {
  width: 100%;
  margin: 1em auto;
}
.pr-testimonial blockquote {
  margin: 0;
  padding: 0;
}
.pr-testimonial .pr-testimonial__content {
  background: #f5f7f8;
  margin: 0;
  padding: 25px 25px 25px 65px;
  position: relative;
  font-size: 14px;
  line-height: 22px;
}
@media screen and (min-width: 520px) {
  .pr-testimonial .pr-testimonial__content {
    padding: 35px 35px 35px 85px;
  }
  .pr-testimonial .pr-testimonial__content::before {
    top: 53px;
    left: 31px;
  }
}
.pr-testimonial .pr-testimonial__content::before {
  content: "“";
  color: #9caa99;
  position: absolute;
  top: 43px;
  left: 21px;
  font-weight: bold;
  font-size: 60px;
  font-family: georgia;
}
.pr-testimonial .pr-testimonial__content::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f5f7f8;
  position: absolute;
  bottom: -10px;
  left: 30px;
}
.pr-testimonial .pr-testimonial__content p:last-of-type {
  margin-bottom: 0;
}

.pr-testimonial__name {
  display: inline-block;
  font-style: normal;
  line-height: 1;
  font-weight: bold;
  padding: 13px 0 0 15px;
  margin: 0 0 5px;
}

.pr-testimonial__phone {
  color: #a2c69b;
}

/*
 * СЕО Теги
 */
.ip-seo-tags {
  padding: 30px 0;
}

.ip-seo-tag {
  display: inline-block;
  margin: 3px;
}

.ip-seo-tag span {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  color: #9caa99;
  border: 1px solid #9caa99;
  cursor: pointer;
}

.ip-seo-tag_hide {
  display: none;
}

.wpb_text_column h2 {
  margin-bottom: 15px;
}

.wpb_text_column h3 {
  margin-bottom: 15px;
}

.wpb_text_column h4 {
  margin-bottom: 15px;
}

.wpb_text_column ul {
  text-align: justify;
  list-style: none;
  margin: 15px 0 15px 15px;
  padding: 0;
}

.wpb_text_column li:before {
  display: inline-block;
  margin-right: 10px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23008C95' viewBox='0 0 448 512'%3E%3Cpath d='M443.3 100.7c6.2 6.2 6.2 16.4 0 22.6l-272 272c-6.2 6.2-16.4 6.2-22.6 0l-144-144c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L160 361.4 420.7 100.7c6.2-6.2 16.4-6.2 22.6 0z'/%3E%3C/svg%3E");
  width: 10px;
  height: auto;
}

.wpb_text_column p a {
  color: #1d1d1b;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(132, 179, 123, 0.2);
}
.wpb_text_column p a:visited, .wpb_text_column p a:hover, .wpb_text_column p a:focus, .wpb_text_column p a:active {
  color: #1d1d1b;
  border-bottom: 1px solid rgba(132, 179, 123, 0.5);
  outline: 0;
}

.wpb_text_column p + p {
  margin-bottom: 10px;
}

.servisor__grid > .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .servisor__grid > .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .servisor__grid > .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 16px;
  }
}
.servisor__grid > .vc_column-inner > .wpb_wrapper .vc_column_container {
  max-width: 429px;
  margin: 0 auto;
}
.servisor__grid > .vc_column-inner > .wpb_wrapper .wpb_column {
  margin-bottom: 16px;
}

.servisor__grid-without-tabs {
  margin-top: 14px;
}
@media (min-width: 1200px) {
  .servisor__grid-without-tabs {
    margin-top: 32px;
  }
}

.servisor__grid-2 > .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .servisor__grid-2 > .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
  }
}

.servisor__tabs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  .servisor__tabs {
    overflow: auto;
  }
}
@media (min-width: 1200px) {
  .servisor__tabs {
    gap: 8px;
    padding-top: 36px;
    padding-bottom: 22px;
  }
}

.servisor__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 9px 11px;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  border-radius: 4px;
  background: #EBEFF5;
  cursor: pointer;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .servisor__tab {
    min-width: 255px;
    gap: 8px;
    font-size: 16px;
    line-height: 18px;
    padding: 13px 52px;
  }
}
.servisor__tab:hover, .servisor__tab.active {
  background: #00B1BB;
  color: #fff;
}
.servisor__tab:hover path, .servisor__tab.active path {
  fill: #fff;
  transition: all 0.3s;
}

.servisor {
  width: 100%;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 1200px) {
  .servisor {
    max-width: 429px;
    margin-left: auto;
    margin-right: auto;
  }
}

.servisor__btn-wrap {
  margin-top: 9px;
}
@media (min-width: 1200px) {
  .servisor__btn-wrap {
    margin-top: 10px;
  }
}

.servisor__img {
  padding: 7px 6px;
  min-height: 142px;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (min-width: 1200px) {
  .servisor__img {
    padding: 11px 9px;
    min-height: 182px;
  }
}

.servisor__labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
@media (min-width: 1200px) {
  .servisor__labels {
    gap: 8px;
  }
}

.servisor__employees {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
}
.servisor__employees svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
@media (min-width: 1200px) {
  .servisor__employees svg {
    width: 20px;
    height: 20px;
  }
}
.servisor__employees b {
  display: inline-block;
  margin-left: 3px;
}

.servisor__time {
  display: inline-flex;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 1200px) {
  .servisor__time {
    padding: 8px 14px;
  }
}
.servisor__time svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  fill: #a2c69b;
}
@media (min-width: 1200px) {
  .servisor__time svg {
    width: 20px;
    height: 20px;
  }
}
.servisor__time b {
  display: inline-block;
  margin-left: 3px;
}

.servisor__group {
  padding: 10px 12px;
}
@media (min-width: 1200px) {
  .servisor__group {
    display: flex;
    flex-direction: column;
    padding: 13px 12px 12px 12px;
  }
}

.servisor__price {
  margin-top: 17px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 21px;
  opacity: 0.8;
}
@media (min-width: 1200px) {
  .servisor__price {
    margin-top: auto;
  }
}

@media (min-width: 1200px) {
  .servisor__price-desc {
    position: relative;
    top: 4px;
  }
}

.servisor__price-val {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #a2c69b;
}
@media (min-width: 1200px) {
  .servisor__price-val {
    font-size: 20px;
    line-height: 24px;
  }
}

.servisor__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}
@media (min-width: 1200px) {
  .servisor__title {
    font-size: 22px;
    line-height: 24px;
  }
}

.servisor__desc {
  margin-top: 8px;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  opacity: 0.8;
}
@media (min-width: 1200px) {
  .servisor__desc {
    margin-top: 9px;
    font-size: 14px;
    line-height: 21px;
  }
}

.tableprice__wrap {
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .tableprice__wrap {
    margin-top: 47px;
  }
}

.tableprice {
  width: 100%;
  border-collapse: collapse;
}
.tableprice .tableprice__head,
.tableprice thead {
  background: #FFFFFF;
  border-bottom: none;
}
@media (max-width: 1200px) {
  .tableprice .tableprice__head,
  .tableprice thead {
    display: none;
  }
}
.tableprice .tableprice__head td,
.tableprice thead td {
  text-align: left;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
}
@media (min-width: 1200px) {
  .tableprice .tableprice__head td,
  .tableprice thead td {
    padding: 20px 20px 20px 0;
    font-size: 20px;
    line-height: 22px;
  }
}
.tableprice .tableprice__head td:first-of-type,
.tableprice thead td:first-of-type {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 20px;
}
.tableprice .tableprice__head td:last-of-type,
.tableprice thead td:last-of-type {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.tableprice tbody::before {
  content: "";
  display: block;
}
@media (min-width: 1200px) {
  .tableprice tbody::before {
    height: 10px;
  }
}
@media (min-width: 1200px) {
  .tableprice tbody td:first-of-type {
    padding-left: 20px;
  }
}
.tableprice tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tableprice tr:first-of-type {
  border-bottom: none;
}
.tableprice td {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 1200px) {
  .tableprice td {
    min-width: 210px;
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 1200px) {
  .tableprice-col-4 tr td:first-of-type {
    width: 45%;
  }
}

.tableprice_v:before {
  display: inline-block;
  margin-right: 10px;
  width: 16px;
  height: auto;
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2300B1BB'/%3E%3Cpath d='M5.12012 7.99977L7.36012 10.2398L10.8801 5.75977' stroke='white'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1200px) {
  .tableprice_v:before {
    width: 24px;
    content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2300B1BB'/%3E%3Cpath d='M7.68018 11.9999L11.0402 15.3599L16.3202 8.63989' stroke='white'/%3E%3C/svg%3E%0A");
  }
}

.tableprice_x:before {
  display: inline-block;
  margin-right: 10px;
  width: 16px;
  height: auto;
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23DDDDDD'/%3E%3Cpath d='M5.96289 5.96338L10.0358 10.0363' stroke='%23013042'/%3E%3Cpath d='M5.96289 10.0366L10.0358 5.96369' stroke='%23013042'/%3E%3C/svg%3E%0A");
}
@media (min-width: 1200px) {
  .tableprice_x:before {
    width: 24px;
    content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23DDDDDD'/%3E%3Cpath d='M8.94531 8.94531L15.0547 15.0547' stroke='%23013042'/%3E%3Cpath d='M8.94531 15.0547L15.0547 8.94528' stroke='%23013042'/%3E%3C/svg%3E%0A");
  }
}

.tableprice_hidden {
  display: none;
}
.tableprice_hidden.active {
  display: table-row;
}

.tableprice__button-wrap {
  margin-top: 20px;
  text-align: center;
}

.tableprice__nav {
  display: flex;
  gap: 5px;
  overflow: auto;
  padding-bottom: 10px;
}
@media (min-width: 480px) {
  .tableprice__nav {
    display: none;
  }
}

.tableprice__nav-link {
  flex-shrink: 0;
  padding: 10px;
}

@media (max-width: 480px) {
  .tableprice tr td:first-of-type {
    width: 85%;
    padding-right: 15px;
  }
}
.tableprice.a tr td:nth-of-type(3),
.tableprice.a tr td:nth-of-type(4) {
  display: none;
}

.tableprice.b tr td:nth-of-type(2),
.tableprice.b tr td:nth-of-type(4) {
  display: none;
}

.tableprice.c tr td:nth-of-type(2),
.tableprice.c tr td:nth-of-type(3) {
  display: none;
}

.testimonial-b {
  padding: 22px;
  background-color: #fff;
  border-radius: 8px;
}

.testimonial-b__header {
  display: flex;
}

.testimonial-b__img {
  margin-top: 8px;
  margin-right: 14px;
}
.testimonial-b__img img {
  max-width: 44px;
  max-height: 44px;
  border-radius: 50%;
}
@media (min-width: 480px) {
  .testimonial-b__img img {
    max-width: 58px;
    max-height: 58px;
  }
}

.testimonial-b__name {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 480px) {
  .testimonial-b__name {
    font-size: 18px;
  }
}

.testimonial-b__rating {
  margin-top: 0px;
}
@media (min-width: 480px) {
  .testimonial-b__rating {
    margin-top: 7px;
  }
}
@media (max-width: 480px) {
  .testimonial-b__rating svg {
    max-width: 16px;
  }
}

.testimonial-b__date {
  font-size: 12px;
  opacity: 0.7;
}
@media (min-width: 480px) {
  .testimonial-b__date {
    font-size: 14px;
  }
}

.testimonial-b__source {
  margin-left: auto;
}
.testimonial-b__source img {
  max-width: 100px;
}
@media (min-width: 480px) {
  .testimonial-b__source img {
    max-width: 120px;
  }
}

.testimonial-b__content {
  margin-top: 10px;
}

.testimonial__slider .splide__arrow {
  display: none;
  top: -32px;
  background: #fff;
}
@media (min-width: 1200px) {
  .testimonial__slider .splide__arrow {
    top: -45px;
  }
}

.testimonial__slider .splide__arrows {
  position: absolute;
  width: 110px;
  right: 0;
}

.testimonial-b__rating-meta {
  display: none;
}

.title {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 0;
  margin-bottom: 1em;
  border-bottom: 2px solid #E5EDEA;
  color: #1d1d1b;
  font-family: "RUSBoycott", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 768px) {
  .title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .title {
    font-size: 28px;
  }
}
.title__line {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  content: "";
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 30%;
  background: #a2c69b;
}

.title_inverse {
  border-bottom: 2px solid #ccc;
}
.title_inverse .title__line {
  background: #fff;
}

/*--------------------------------------------------------------
# To top
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

.anchor {
  display: block;
  position: relative;
  top: -50px;
  visibility: hidden;
}

.to-top__link {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px 10px;
  z-index: 2;
  outline: none;
  border: none;
}
.to-top__link:hover, .to-top__link:active, .to-top__link:focus {
  border: none;
}

.to-top__link svg {
  width: 30px;
  height: 30px;
  fill: #c0d9bb;
}

@media (min-width: 1200px) {
  .to-top__link svg {
    width: 50px;
    height: 50px;
  }
}
.top {
  background-image: url(blocks/top/images/header.webp);
}

.home .top {
  background-image: url(blocks/top/images/header-home.webp);
}

@media (max-width: 1200px) {
  .top {
    display: none;
  }
}
.top__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.top__email {
  display: flex;
  align-items: center;
}

.top__email-link {
  display: inline-block;
  margin-left: 8px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.top__email-link:hover {
  color: #fff;
}

.top__phone {
  display: flex;
  align-items: center;
}

.top__phone-link {
  display: inline-block;
  margin-left: 8px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.top__phone-link:hover {
  color: #fff;
}

.top__work-time {
  display: flex;
  align-items: center;
}

.top__work-time-link {
  display: inline-block;
  margin-left: 8px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.top__work-time-link:hover {
  color: #fff;
}

.top__button {
  margin-left: 30px;
  margin-right: 30px;
}

.top__button-link {
  padding: 14px 30px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  line-height: 104%;
  letter-spacing: -0.16px;
  transition: background-color 0.3s;
}

.top__button-link:hover {
  color: inherit;
  background-color: #fff;
}

.top__gtranslate .gtranslate_wrapper > a:first-of-type {
  display: inline-block;
  margin-right: 14px;
}

.top__gtranslate .gtranslate_wrapper > a:nth-of-type(2) {
  display: inline-block;
  margin-right: 14px;
}

.news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .news__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .news__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
/*# sourceMappingURL=../ip/sass/maps/critical.css.map */
