@charset "UTF-8";
/*
***************************
* STEBNEV-STUDIO          *
* v: 1.023                *
* mail@stebnev-studio.ru  *
* www.stebnev-studio.ru   *
*_________________________*
* Файл настройки проекта: *
* style.scss              *
***************************
*/
/* ====================== RESET.CSS ====================== */
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 90vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-style: normal;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

i {
  font-style: italic;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Удаляем крестик из input[type="search"] со всех браузеров */
input[type=text]::-ms-clear,
input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: unset;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

/* ====================== RESET.CSS ====================== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
	 ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  margin: 0;
}

/* Grouping content
	 ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
  text-decoration: unset;
  color: black;
}

svg {
  display: inline-block;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
  padding: 0;
  outline: none;
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/*
  Remove the inheritance of text transform in Edge, Firefox, and IE.
  1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none;
}

/*
  Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/*
  Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/*
  Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted transparent;
}

/*
  Correct the padding in Firefox.
*/
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/*
  1. Correct the text wrapping in Edge and IE.
  2. Correct the color inheritance from `fieldset` elements in IE.
  3. Remove the padding so developers are not caught out when they zero out
      `fieldset` elements in all browsers.
*/
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/*
  Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
  vertical-align: baseline;
}

/*
  Remove the default vertical scrollbar in IE 10+.
*/
textarea {
  overflow: auto;
}

/*
  1. Add the correct box sizing in IE 10.
  2. Remove the padding in IE 10.
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/*
  Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/*
  1. Correct the odd appearance in Chrome and Safari.
  2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Correct the inability to style clickable types in iOS and Safari.
  2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* 
Interactive
Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
  display: block;
}

/*
Add the correct display in all browsers.
*/
summary {
  display: list-item;
}

/* 
Misc
Add the correct display in IE 10+.
*/
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

button {
  background: none;
  border: none;
  outline: none;
}

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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

table {
  border-spacing: 0;
}

/* ====================== RESET.CSS ====================== */
/*
********************************************************************
Миксин - Адаптив пример вызова:  
@include adaptiv-value("font-size", 42, 30, 0); 
Пояснение:
@include adaptiv-value(
свойство на пример: padding, 
Начальное макетное значение: 50, 
Минимальное значение: 20, 
Режим один из трех: 0);
Видео пояснение: https://www.youtube.com/watch?v=HJZP5QsrpXs&t=24s
/********************************************************************
*/
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

@media (min-width: 320px) and (max-width: 767px) {
  .col-m-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-m-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-m-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-m-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-m-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-m-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-m-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-m-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-m-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-m-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-m-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-m-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .col-t-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-t-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-t-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-t-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-t-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-t-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-t-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-t-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-t-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-t-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-t-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-t-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
}
/*
********************************************************************
Миксин - Адаптив пример вызова:  
@include adaptiv-value("font-size", 42, 30, 0); 
Пояснение:
@include adaptiv-value(
свойство на пример: padding, 
Начальное макетное значение: 50, 
Минимальное значение: 20, 
Режим один из трех: 0);
Видео пояснение: https://www.youtube.com/watch?v=HJZP5QsrpXs&t=24s
/********************************************************************
*/
/*
***************************
mixin.scss                *
***************************
*/
/*
***************************
mixin.scss                *
***************************
*/
@font-face {
  font-family: "social";
  src: url("fonts/social.eot?81pt57");
  src: url("fonts/social.eot?81pt57#iefix") format("embedded-opentype"), url("fonts/social.ttf?81pt57") format("truetype"), url("fonts/social.woff?81pt57") format("woff"), url("fonts/social.svg?81pt57#social") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=i-]::before, [class*=" i-"]::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "social" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.i-whatsapp:before {
  content: "\e900";
  color: #fff;
}

.i-viber:before {
  content: "\e901";
  color: #fff;
}

.i-inst:before {
  content: "\e902";
  color: #fff;
}

.i-ok:before {
  content: "\e903";
  color: #fff;
}

.i-tg:before {
  content: "\e904";
  color: #fff;
}

.i-vk:before {
  content: "\e905";
  color: #fff;
}

.i-ya-dzen:before {
  content: "\e906";
  color: #fff;
}

.i-yt:before {
  content: "\e907";
  color: #fff;
}

.i-fb:before {
  content: "\e908";
  color: #fff;
}

/************************
BASE (Основные настройки)
*************************/
@font-face {
  font-family: "ManropeBold";
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/RobotoRegular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/LatoRegular.woff2") format("woff2");
}
@font-face {
  font-family: "LatoSemiBold";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/LatoSemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "LatoBold";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/LatoBold.woff2") format("woff2");
}
/* ====================== Title (Заголовки) ====================== */
body {
  min-height: 300vh;
  font-size: 16px;
  color: #101010;
  font-family: "Lato", san-serif;
  line-height: 120%;
}
@media (max-width: 1410px) {
  body {
    font-size: calc(12px + 4 * ((100vw - 280px) / 1130));
  }
}

a {
  text-decoration: underline;
}
a:hover {
  color: #101010;
  text-decoration: underline;
}

.success * {
  color: #FFFFFF !important;
}

.section-title {
  line-height: 130%;
  color: #101010;
}

.t1,
h1 {
  line-height: 100%;
  font-size: 28px;
  line-height: 100%;
  font-size: 32px;
  line-height: 100%;
  font-size: 36px;
  color: #101010;
  font-family: "LatoBold", san-serif;
  line-height: 110%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .t1,
  h1 {
    font-size: calc(0.0089385475 * 100vw + 25.1396648045px);
  }
}
@media (min-width: 767.5px) {
  .t1,
  h1 {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .t1,
  h1 {
    font-size: calc(0.0156862745 * 100vw + 19.9529411765px);
  }
}
@media (min-width: 1023px) {
  .t1,
  h1 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .t1,
  h1 {
    font-size: calc(0.0402234637 * 100vw + -5.1888268156px);
  }
}
@media (min-width: 1919px) {
  .t1,
  h1 {
    font-size: 72px;
  }
}
.t1-sb,
h1-sb {
  font-family: "LatoSemiBold", san-serif;
}
.t1-b,
h1-b {
  font-family: "LatoBold", san-serif;
}

.t2,
h2 {
  line-height: 100%;
  font-size: 26px;
  line-height: 100%;
  font-size: 28px;
  line-height: 100%;
  font-size: 32px;
  color: #101010;
  font-family: "Lato", san-serif;
  line-height: 130%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .t2,
  h2 {
    font-size: calc(0.0044692737 * 100vw + 24.5698324022px);
  }
}
@media (min-width: 767.5px) {
  .t2,
  h2 {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .t2,
  h2 {
    font-size: calc(0.0156862745 * 100vw + 15.9529411765px);
  }
}
@media (min-width: 1023px) {
  .t2,
  h2 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .t2,
  h2 {
    font-size: calc(0.017877095 * 100vw + 13.6938547486px);
  }
}
@media (min-width: 1919px) {
  .t2,
  h2 {
    font-size: 48px;
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .t2,
  h2 {
    line-height: 150%;
  }
}
.t2-sb,
h2-sb {
  font-family: "LatoSemiBold", san-serif;
}
.t2-b,
h2-b {
  font-family: "LatoBold", san-serif;
}

.t3,
h3 {
  line-height: 100%;
  font-size: 20px;
  line-height: 100%;
  font-size: 20px;
  line-height: 100%;
  font-size: 24px;
  color: #101010;
  font-family: "Roboto", san-serif;
  line-height: 150%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .t3,
  h3 {
    font-size: calc(0 * 100vw + 20px);
  }
}
@media (min-width: 767.5px) {
  .t3,
  h3 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .t3,
  h3 {
    font-size: calc(0.0156862745 * 100vw + 7.9529411765px);
  }
}
@media (min-width: 1023px) {
  .t3,
  h3 {
    font-size: 24px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .t3,
  h3 {
    font-size: calc(0.0067039106 * 100vw + 17.1351955307px);
  }
}
@media (min-width: 1919px) {
  .t3,
  h3 {
    font-size: 30px;
  }
}
.t3-sb,
h3-sb {
  font-family: "LatoSemiBold", san-serif;
}
.t3-b,
h3-b {
  font-family: "LatoBold", san-serif;
}

.t4,
h4 {
  line-height: 100%;
  font-size: 18px;
  line-height: 100%;
  font-size: 18px;
  line-height: 100%;
  font-size: 20px;
  color: #101010;
  font-family: "Roboto", san-serif;
  line-height: 140%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .t4,
  h4 {
    font-size: calc(0 * 100vw + 18px);
  }
}
@media (min-width: 767.5px) {
  .t4,
  h4 {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .t4,
  h4 {
    font-size: calc(0.0078431373 * 100vw + 11.9764705882px);
  }
}
@media (min-width: 1023px) {
  .t4,
  h4 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .t4,
  h4 {
    font-size: calc(0.0067039106 * 100vw + 13.1351955307px);
  }
}
@media (min-width: 1919px) {
  .t4,
  h4 {
    font-size: 26px;
  }
}
.t4-sb,
h4-sb {
  font-family: "LatoSemiBold", san-serif;
}
.t4-b,
h4-b {
  font-family: "LatoBold", san-serif;
}

.t5,
h5 {
  line-height: 100%;
  font-size: 16px;
  line-height: 100%;
  font-size: 16px;
  line-height: 100%;
  font-size: 18px;
  color: #101010;
  font-family: "Lato", san-serif;
  line-height: 140%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .t5,
  h5 {
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 767.5px) {
  .t5,
  h5 {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .t5,
  h5 {
    font-size: calc(0.0078431373 * 100vw + 9.9764705882px);
  }
}
@media (min-width: 1023px) {
  .t5,
  h5 {
    font-size: 18px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .t5,
  h5 {
    font-size: calc(0.0022346369 * 100vw + 15.7117318436px);
  }
}
@media (min-width: 1919px) {
  .t5,
  h5 {
    font-size: 20px;
  }
}
.t5-sb,
h5-sb {
  font-family: "LatoSemiBold", san-serif;
}
.t5-b,
h5-b {
  font-family: "LatoBold", san-serif;
}

.t6,
h6 {
  line-height: 100%;
  font-size: 14px;
  line-height: 100%;
  font-size: 14px;
  line-height: 100%;
  font-size: 16px;
  color: #101010;
  font-family: "Lato", san-serif;
  line-height: 140%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .t6,
  h6 {
    font-size: calc(0 * 100vw + 14px);
  }
}
@media (min-width: 767.5px) {
  .t6,
  h6 {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .t6,
  h6 {
    font-size: calc(0.0078431373 * 100vw + 7.9764705882px);
  }
}
@media (min-width: 1023px) {
  .t6,
  h6 {
    font-size: 16px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .t6,
  h6 {
    font-size: calc(0.0022346369 * 100vw + 13.7117318436px);
  }
}
@media (min-width: 1919px) {
  .t6,
  h6 {
    font-size: 18px;
  }
}
.t6-sb,
h6-sb {
  font-family: "LatoSemiBold", san-serif;
}
.t6-b,
h6-b {
  font-family: "LatoBold", san-serif;
}

/* ====================== SubTitle (Подзаголовки) ====================== */
p,
.text {
  line-height: 100%;
  font-size: 14px;
  line-height: 100%;
  font-size: 14px;
  line-height: 100%;
  font-size: 16px;
  color: #101010;
  font-family: "Lato", san-serif;
  line-height: 170%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  p,
  .text {
    font-size: calc(0 * 100vw + 14px);
  }
}
@media (min-width: 767.5px) {
  p,
  .text {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  p,
  .text {
    font-size: calc(0.0078431373 * 100vw + 7.9764705882px);
  }
}
@media (min-width: 1023px) {
  p,
  .text {
    font-size: 16px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  p,
  .text {
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1919px) {
  p,
  .text {
    font-size: 16px;
  }
}
p-sb,
.text-sb {
  font-family: "LatoSemiBold", san-serif;
}
p-b,
.text-b {
  font-family: "LatoBold", san-serif;
}
@media (min-width: 320px) and (max-width: 1023px) {
  p,
  .text {
    line-height: 160%;
  }
}
p-center,
.text-center {
  text-align: center;
}
p-left,
.text-left {
  text-align-last: left;
}
p-right,
.text-right {
  text-align: right;
}

.mini {
  font-size: 14px;
  line-height: 150%;
}
.mini-sb {
  font-family: "LatoSemiBold", san-serif;
}
.mini-b {
  font-family: "LatoBold", san-serif;
}

.max {
  line-height: 100%;
  font-size: 80px;
  line-height: 100%;
  font-size: 80px;
  line-height: 100%;
  font-size: 120px;
  line-height: 110%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .max {
    font-size: calc(0 * 100vw + 80px);
  }
}
@media (min-width: 767.5px) {
  .max {
    font-size: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .max {
    font-size: calc(0.1568627451 * 100vw + -40.4705882353px);
  }
}
@media (min-width: 1023px) {
  .max {
    font-size: 120px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .max {
    font-size: calc(0 * 100vw + 120px);
  }
}
@media (min-width: 1919px) {
  .max {
    font-size: 120px;
  }
}
.max-sb {
  font-family: "LatoSemiBold", san-serif;
}
.max-b {
  font-family: "LatoBold", san-serif;
}

.footer-text {
  line-height: 100%;
  font-size: 12px;
  line-height: 100%;
  font-size: 12px;
  line-height: 100%;
  font-size: 12px;
  line-height: 120%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .footer-text {
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 767.5px) {
  .footer-text {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-text {
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1023px) {
  .footer-text {
    font-size: 12px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .footer-text {
    font-size: calc(0.0022346369 * 100vw + 9.7117318436px);
  }
}
@media (min-width: 1919px) {
  .footer-text {
    font-size: 14px;
  }
}
.footer-text-sb {
  font-family: "LatoSemiBold", san-serif;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .footer-text {
    line-height: 140%;
  }
}

.section-header__title {
  font-family: "LatoSemiBold", sans-serif;
}
.section-header__description {
  color: #686868;
  font-size: 14px;
}

.show-more {
  line-height: 100%;
  font-size: 14px;
  line-height: 100%;
  font-size: 14px;
  line-height: 100%;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: #559800;
  text-underline-offset: 5px;
  line-height: 170%;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .show-more {
    font-size: calc(0 * 100vw + 14px);
  }
}
@media (min-width: 767.5px) {
  .show-more {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .show-more {
    font-size: calc(0.0078431373 * 100vw + 7.9764705882px);
  }
}
@media (min-width: 1023px) {
  .show-more {
    font-size: 16px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .show-more {
    font-size: calc(0 * 100vw + 16px);
  }
}
@media (min-width: 1919px) {
  .show-more {
    font-size: 16px;
  }
}

.subtitle-offer {
  font-size: 16px;
  color: #101010;
  font-family: "Lato", san-serif;
  line-height: 120%;
}
@media (max-width: 1410px) {
  .subtitle-offer {
    font-size: calc(14px + 2 * ((100vw - 280px) / 1130));
  }
}

.section-description {
  line-height: 170% !important;
  color: #929292 !important;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .section-description {
    width: 100%;
  }
}

.btn * {
  font-size: 14px;
  line-height: 160%;
}

/* ======================== MEDIA QUERIES ======================= */
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-static__title {
    font-size: 28px;
  }
  .offer-static__description {
    line-height: 170%;
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-static__title {
    font-size: 28px;
  }
  .offer-static__description {
    line-height: 170%;
    font-size: 14px;
  }
}
main {
  display: flex;
  flex-direction: column;
  row-gap: 10.625em;
}
@media (min-width: 1600px) and (max-width: 1919px) {
  main {
    row-gap: 10.625em;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  main {
    row-gap: 9.375em;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  main {
    row-gap: 8.125em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  main {
    row-gap: 6.25em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  main {
    row-gap: 5em;
  }
}

.scroll-up {
  position: fixed;
  bottom: 145px;
  right: 84px;
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #559800;
  backdrop-filter: blur(0px);
  cursor: pointer;
  opacity: 0;
  transform: scale3d(0, 0, 0);
  transition: opacity 0.2s ease-in, transform 0.2s ease-in, background-color 0.5s ease;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .scroll-up {
    right: 0.9375em;
    bottom: 6em;
  }
}
.scroll-up:hover {
  opacity: 0.6;
}

.scroll-up.show {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.form__group {
  display: flex;
  flex-direction: column;
  border-color: #101010;
}
.form__group_white {
  color: #FFFFFF;
}
.form__label {
  line-height: 100%;
  font-size: 12px;
  line-height: 100%;
  font-size: 12px;
  line-height: 100%;
  font-size: 12px;
  line-height: 170%;
  margin-bottom: 0.5em;
  color: inherit;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .form__label {
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 767.5px) {
  .form__label {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .form__label {
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 1023px) {
  .form__label {
    font-size: 12px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .form__label {
    font-size: calc(0.0022346369 * 100vw + 9.7117318436px);
  }
}
@media (min-width: 1919px) {
  .form__label {
    font-size: 14px;
  }
}
.form__input {
  display: block;
  max-width: 330px;
  background: transparent;
  border: 1px solid #D4D4D4;
  border-color: inherit;
  color: inherit;
  border-radius: 30px;
  padding: 0.714em 1.428em;
}
.form__input_white {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.form__input:focus {
  border: 1px solid rgba(212, 212, 212, 0.8);
}
.form__input:valid {
  border-color: #79C716;
}
.form__input:focus:invalid {
  border-color: red;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 170%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 1410px) {
  .checkbox-container {
    font-size: calc(10px + 4 * ((100vw - 280px) / 1130));
  }
}
.checkbox-container__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0px;
  width: 0px;
}
.checkbox-container__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  background-color: #eee;
  box-sizing: border-box;
  border: 1px solid #559800;
}
@media (min-width: 320px) and (max-width: 767px) {
  .checkbox-container__checkmark {
    width: 15px;
    height: 15px;
  }
}
.checkbox-container:hover .checkbox-container__input ~ .checkbox-container__checkmark {
  background-color: #ccc;
}
.checkbox-container .checkbox-container__input:checked ~ .checkbox-container__checkmark {
  background-color: #559800;
  background-image: url("../img/checked.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.section-header__title {
  padding-bottom: 0.416em;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .section-header__title {
    padding-bottom: 0.3125em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section-header__title {
    padding-bottom: 0.357em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .section-header__title {
    padding-bottom: 0.384em;
  }
}
.section-header__description {
  margin-bottom: 5em;
  max-width: 450px;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .section-header__description {
    margin-bottom: 3.571em;
    max-width: 470px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section-header__description {
    max-width: 365px;
    margin-bottom: 2.857em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .section-header__description {
    width: 100%;
    margin-bottom: 2.5em;
  }
}

.prices {
  display: flex;
  align-items: center;
}
.prices__new {
  margin-right: 2.5em;
}
.prices__old {
  color: #929292;
  text-decoration: line-through;
}

.show-more {
  color: #101010;
  width: 100%;
  margin-top: 4.375em;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .show-more {
    margin-top: 2.5em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .show-more {
    margin-top: 2.142em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .show-more {
    margin-top: 2.142em;
  }
}

.dynamic-bullets {
  display: none !important;
}

@media (min-width: 320px) and (max-width: 1023px) {
  .dynamic-bullets {
    display: flex !important;
    width: 100% !important;
    justify-content: center;
    left: 0;
    transform: translateX(0) !important;
  }
  .dynamic-bullets span {
    display: block;
    width: 40px;
    height: 5px;
    background-color: #559800;
    border-radius: 5px;
  }
  .dynamic-bullets span.swiper-pagination-bullet-active {
    background: #559800;
  }
}
.btn {
  position: relative;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  max-width: 100%;
  width: max-content;
  overflow: hidden;
  background: #559800;
  color: #FFFFFF;
  transition: 0.5s;
  border-radius: 30px;
  max-height: 52px;
  cursor: pointer;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .btn {
    max-height: 42px !important;
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .btn {
    max-height: 42px !important;
  }
}
.btn__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 20px;
  padding: 0 0.625em;
  transition: 0.5s;
}
.btn__first, .btn__second {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 52px;
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .btn__first, .btn__second {
    line-height: 42px;
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .btn__first, .btn__second {
    line-height: 42px;
  }
}
.btn:hover {
  background: #79C716;
}
.btn:hover .btn__wrapper {
  transform: translateY(-52px);
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .btn:hover .btn__wrapper {
    transform: translateY(-42px);
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .btn:hover .btn__wrapper {
    transform: translateY(-42px);
  }
}

.btn-play {
  width: 120px;
  height: 120px;
  background: #559800;
  border-radius: 50%;
}
@media (max-width: 1410px) {
  .btn-play {
    width: calc(50px + 70 * ((100vw - 280px) / 1130));
  }
}
@media (max-width: 1410px) {
  .btn-play {
    height: calc(50px + 70 * ((100vw - 280px) / 1130));
  }
}

.swipper__prev,
.swipper__next {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #559800;
  overflow: hidden;
}
@media (max-width: 1410px) {
  .swipper__prev,
  .swipper__next {
    width: calc(40px + 20 * ((100vw - 280px) / 1130));
  }
}
@media (max-width: 1410px) {
  .swipper__prev,
  .swipper__next {
    height: calc(40px + 20 * ((100vw - 280px) / 1130));
  }
}

.swipper-button {
  position: relative;
}
.swipper-button svg {
  z-index: 99999;
}
.swipper-button__blind {
  position: absolute;
  width: inherit;
  height: inherit;
  transition: 0.3s;
  background: #79C716;
  opacity: 0.7;
  transform: translateX(-60px);
}
.swipper-button:hover > .swipper-button__blind {
  transform: translateX(0px);
}

.bg-filter {
  min-height: inherit;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}

/* ========================= Сетка для услуг ===================== */
.cards-grid {
  display: grid;
}
@media (min-width: 320px) and (max-width: 767px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
  .cards-grid .card-item {
    min-height: 255px;
  }
  .cards-grid .card-item:nth-child(-n+2) {
    margin-top: 0;
  }
  .cards-grid .card-item:nth-child(odd) {
    margin-left: 0;
  }
  .cards-grid .card-item:nth-child(even) {
    margin-right: 0;
  }
  .cards-grid .card-item:nth-last-child(1), .cards-grid .card-item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .cards-grid .card-item:hover .card-item__content {
    visibility: visible;
  }
  .cards-grid .card-item__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 0;
  }
  .cards-grid .card-item__button {
    position: relative;
    opacity: 1;
    min-width: 119px;
    height: 40px;
  }
  .cards-grid .card-item__button > span {
    padding: 0.83em 2.33em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
  .cards-grid .card-item {
    margin: 20px 10px;
  }
  .cards-grid .card-item:nth-child(-n+2) {
    margin-top: 0;
  }
  .cards-grid .card-item:nth-child(odd) {
    margin-left: 0;
  }
  .cards-grid .card-item:nth-child(even) {
    margin-right: 0;
  }
  .cards-grid .card-item:nth-last-child(1), .cards-grid .card-item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .cards-grid .card-item:hover .card-item__content {
    visibility: visible;
  }
  .cards-grid .card-item__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 0;
  }
  .cards-grid .card-item__button {
    position: relative;
    opacity: 1;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    grid-template-rows: repeat(1, 1fr);
    grid-auto-rows: 0;
    row-gap: 40px;
    column-gap: 30px;
  }
  .cards-grid .card-item {
    max-width: 218px;
  }
  .cards-grid .card-item:hover .card-item__content {
    visibility: visible;
  }
  .cards-grid .card-item__info {
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 0;
  }
  .cards-grid .card-item__button {
    position: relative;
    opacity: 1;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .cards-grid {
    grid-template-columns: repeat(4, minmax(246px, 1fr));
    grid-template-rows: repeat(1, 1fr);
    grid-auto-rows: 0;
    column-gap: 35px;
    row-gap: 40px;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    column-gap: 30px;
    row-gap: 60px;
  }
}
@media (min-width: 1920px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    column-gap: 30px;
    row-gap: 60px;
  }
}

.card-item {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 450px;
  overflow: hidden;
}
.card-item:hover {
  cursor: pointer;
}
.card-item:hover .card-item__icon {
  transform: scale(1.1);
}
.card-item:hover .card-item__info {
  left: 0;
  width: 100%;
  text-align: center;
}
.card-item:hover .card-item__content {
  visibility: hidden;
}
.card-item:hover .card-item__button {
  opacity: 1;
}
.card-item__icon {
  transition-duration: 0.3s;
}
.card-item__name {
  padding-top: 0.83em;
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  margin-bottom: 0.5em;
}
.card-item__price {
  padding-bottom: 0.75em;
}
.card-item__info {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  transition: 0.3s;
  left: 5%;
  width: 90%;
  margin: 0 auto;
  background: white;
}
.card-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-item__button {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  max-height: 53px;
  height: 53px;
  min-width: 153px;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}

@media (min-width: 320px) and (max-width: 767px) {
  .extra-menu {
    z-index: 3;
    position: fixed;
    bottom: 1.25rem;
    left: calc(50% - 145px);
    display: flex;
    width: 290px;
    margin: 0 auto;
    padding: 0.9375rem 2.625rem;
    border-radius: 30px;
    background: #559800;
  }
  .extra-menu__list {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .extra-menu {
    z-index: 3;
    position: fixed;
    bottom: 1.25rem;
    left: calc(50% - 145px);
    display: flex;
    width: 290px;
    margin: 0 auto;
    padding: 0.9375rem 2.625rem;
    border-radius: 30px;
    background: #559800;
  }
  .extra-menu__list {
    display: flex;
    width: 100%;
    justify-content: space-around;
  }
}
:root {
  --marquee-elements-displayed: 4;
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --marquee-elements-displayed: 2;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  :root {
    --marquee-elements-displayed: 1;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  :root {
    --marquee-elements-displayed: 3;
  }
}

.marquee {
  min-width: 100vw;
  width: max-content;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  position: absolute;
  top: 0;
  width: 2rem;
  height: 100%;
  content: "";
  z-index: 1;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, transparent 100%);
}
.marquee__content {
  width: 100%;
  height: 100%;
  display: flex;
  animation: scrolling 24s linear infinite;
}
.marquee__content:hover {
  animation-play-state: paused;
}
.marquee__main, .marquee__duplicate {
  display: flex;
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.header {
  transform: translateY(0%);
  transition: transform 0.3s ease-in;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media not ((min-width: 320px) and (max-width: 1023px)) {
  .header.header-hide {
    transform: translateY(-100%);
    background: #FFFFFF;
    transition: transform 0.3s ease-in, background-color 0.5s linear 0s;
  }
}
.header__container {
  position: relative;
}
.header-mobile {
  font-size: 16px;
}
@media (max-width: 1410px) {
  .header-mobile {
    font-size: calc(14px + 2 * ((100vw - 280px) / 1130));
  }
}
.header-mobile__wrapper {
  position: fixed;
  top: 0;
  height: 100vh;
  padding: 2.85em min(1.87em, 30px);
  width: calc(100vw - 30px);
  transition: 0.5s right;
  background: #FFFFFF;
}
.header-mobile__wrapper_active {
  right: 0;
  transition: 0.5s right;
}
.header-mobile__wrapper_disabled {
  right: calc((100vw - 30px) * -1);
  transition: 0.5s;
}
.header-mobile__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-items: right;
}
.header-mobile .mobile-nav__item {
  display: block;
  text-align: right;
  margin-bottom: 2.07em;
}
.header-mobile .mobile-nav__item:last-child {
  margin-bottom: 0;
}
.header-mobile .mobile-nav__link {
  text-decoration: none;
}
.header .header-mobile__contacts {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.header .header-mobile a {
  text-decoration: none !important;
}
.header .header-mobile__phone {
  font-size: 16px;
  font-family: "LatoBold", san-serif;
  margin-bottom: 1.5em;
  margin-top: 7.78em;
}
@media (max-width: 1410px) {
  .header .header-mobile__phone {
    font-size: calc(14px + 2 * ((100vw - 280px) / 1130));
  }
}
.header .header-mobile__adress {
  font-size: 14px;
  margin-bottom: 1.33em;
}
@media (max-width: 1410px) {
  .header .header-mobile__adress {
    font-size: calc(12px + 2 * ((100vw - 280px) / 1130));
  }
}
.header .header-mobile__mail {
  font-size: 14px;
}
@media (max-width: 1410px) {
  .header .header-mobile__mail {
    font-size: calc(12px + 2 * ((100vw - 280px) / 1130));
  }
}
.header__wrapper {
  box-sizing: border-box;
  background: white;
  padding: 0 min(1.87em, 15px);
  border-bottom: 1px solid #cdcdcd;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25em 0;
}
.header__contacts {
  text-align: right;
}
.header__phone {
  font-size: 20px;
  font-family: "LatoBold", san-serif;
  text-decoration: none;
  transition: 0.3s;
}
@media (max-width: 1410px) {
  .header__phone {
    font-size: calc(16px + 4 * ((100vw - 280px) / 1130));
  }
}
.header__phone:hover {
  text-decoration: none;
  color: #79C716;
}
.header__phone:hover::after {
  width: 100%;
}
.header .burger {
  z-index: 99999999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 43px;
  height: 43px;
  background: #559800;
  border-radius: 50%;
  position: relative;
}
.header .burger__content {
  width: 19px;
  height: 11px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header .burger span {
  position: absolute;
  display: block;
  width: 19px;
  height: 1px;
  transition-duration: 0.4s;
  background: #FFFFFF;
}
.header .burger span:first-child {
  margin: 0;
  transform-origin: center;
  top: 0;
}
.header .burger span:nth-child(2) {
  top: 48%;
  width: 13.3px;
  opacity: 1;
}
.header .burger span:nth-child(3) {
  transform-origin: center;
  bottom: 0;
}

.burger_active span {
  position: absolute;
  display: block;
  width: 24px;
  height: 1px;
  transition-duration: 0.4s;
  background: #FFFFFF;
}
.burger_active span:first-child {
  margin: 0;
  transform-origin: center;
  transform: rotate(45deg);
  top: 45% !important;
}
.burger_active span:nth-child(2) {
  width: 13.3px;
  background: transparent;
}
.burger_active span:nth-child(3) {
  transform-origin: center;
  transform: rotate(-45deg);
  bottom: 50% !important;
}

.logo__image {
  width: 180px;
  height: 64px;
}
@media (max-width: 1410px) {
  .logo__image {
    width: calc(100px + 80 * ((100vw - 280px) / 1130));
  }
}
@media (max-width: 1410px) {
  .logo__image {
    height: calc(36px + 28 * ((100vw - 280px) / 1130));
  }
}

.navigation {
  font-size: 16px;
}
@media (max-width: 1410px) {
  .navigation {
    font-size: calc(12px + 4 * ((100vw - 280px) / 1130));
  }
}
.navigation__list {
  display: flex;
}
.navigation__item {
  margin-right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1410px) {
  .navigation__item {
    margin-right: calc(30px + 50 * ((100vw - 1024px) / 386));
  }
}
.navigation__item:before {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 11px;
  height: 11px;
  border: 1px solid #cdcdcd;
  border-radius: 50%;
  background: #559800;
  transform: scale(0);
  transition: transform 0.4s ease;
}
.navigation__item:hover::before {
  transform: scale(1);
}
.navigation__item:last-child {
  margin-right: 0;
}
.navigation__link {
  transition: 0.3s;
  text-decoration: none;
}
.navigation__link:hover {
  color: #79C716;
  text-decoration: none;
}

@media (min-width: 320px) and (max-width: 1023px) {
  .header__contacts, .header__navigation {
    display: none;
  }
  .header__wrapper {
    padding: 0 0;
  }
  .header__burger {
    display: flex !important;
  }
}
.offer-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-attachment: fixed;
  color: #FFFFFF;
}
.offer-slideshow__wrapper {
  display: flex;
  align-items: center;
}
.offer-slideshow__container {
  width: 100%;
}
.offer-slideshow__swiper-slide {
  min-height: 100vh;
  background-size: cover;
}
.offer-slideshow__swiper-slide[slide-index="1"] {
  background-image: linear-gradient(to bottom, rgba(18, 42, 66, 0.5), rgba(18, 42, 66, 0.5)), url(https://images.unsplash.com/photo-1690763367559-d63c891dc409?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE2OTIwMTI2NjR8&ixlib=rb-4.0.3&q=85);
}
.offer-slideshow__swiper-slide[slide-index="2"] {
  background-image: linear-gradient(to bottom, rgba(18, 42, 66, 0.5), rgba(18, 42, 66, 0.5)), url(../img/sunflower.jpg);
}
.offer-slideshow__swiper-slide[slide-index="3"] {
  background-image: linear-gradient(to bottom, rgba(18, 42, 66, 0.5), rgba(18, 42, 66, 0.5)), url(../img/sunflower.jpg);
}
.offer-slideshow__navigate-container {
  position: relative !important;
  z-index: 1000;
}
.offer-slideshow__slide-navigate {
  position: absolute;
  bottom: 3.125em;
  display: flex;
}
.offer-slideshow__prev {
  margin-right: 0.9375em;
}
.offer-slideshow__title {
  width: 50%;
  margin-bottom: 0.805em;
  color: #FFFFFF;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .offer-slideshow__title {
    padding-bottom: 0.555em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-slideshow__title {
    padding-bottom: 0.78125em;
    width: 70%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-slideshow__title {
    width: 100%;
    padding-bottom: 0.714em;
  }
}
.offer-slideshow__description {
  display: block;
  margin-bottom: 3.375em;
  color: #FFFFFF;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .offer-slideshow__description {
    margin-bottom: 1.428em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-slideshow__description {
    margin-bottom: 1.428em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-slideshow__description {
    margin-bottom: 1.428em;
  }
}

@media (min-width: 320px) and (max-width: 1023px) {
  .offer-slideshow__navigate-wrapper {
    visibility: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-slideshow {
    min-height: 80vh !important;
  }
}
.offer-video__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-video__container {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-video__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offer-video__title {
  grid-column: 10 span;
  padding-top: 3.96875em;
  padding-bottom: 0.55em;
  padding-bottom: 0.5em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-video__title {
    grid-column: 6 span;
    padding-top: 4.5em;
    padding-bottom: 0.78125em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-video__title {
    grid-column: 2 span;
    padding-top: 5.5357em;
    padding-bottom: 0.714em;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .offer-video__title {
    padding-top: 5.535em;
    padding-bottom: 0.55em;
  }
}
.offer-video__subtitle {
  grid-column: 3/7;
  grid-row: 2/2;
  margin-bottom: 1.5em;
  font-family: "LatoRegular", sans-serif !important;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-video__subtitle {
    grid-column: 4 span;
    margin-bottom: 1.4285em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-video__subtitle {
    grid-column: 2 span;
    margin-bottom: 1.4285em;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .offer-video__subtitle {
    margin-bottom: 1.11em;
  }
}
.offer-video__btn {
  grid-column: 2 span;
  grid-row: 3/3;
  grid-column-start: 3;
  margin-bottom: 7.9375em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-video__btn {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 3.1428em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-video__btn {
    grid-column: 2 span;
    margin-bottom: 2.5em;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .offer-video__btn {
    margin-bottom: 3.571em;
  }
}
.offer-video__content {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  height: 435px;
}
@media (max-width: 1410px) {
  .offer-video__content {
    height: calc(298px + 137 * ((100vw - 1024px) / 386));
  }
}
.offer-video__content .offer-video__preview {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.offer-video__content .offer-video__play {
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer-video__content .offer-video__file {
  width: 100%;
}
.offer-video__content video {
  display: block;
  object-fit: cover;
}

@media (min-width: 320px) and (max-width: 1023px) {
  .offer-video__play {
    width: 50px !important;
    height: 50px !important;
  }
  .offer-video__play svg {
    width: 6.25px;
  }
  .offer-video__content {
    height: 430px;
  }
}
@media (min-width: 320px) and (max-width: 1023px) and (max-width: 1410px) {
  .offer-video__content {
    height: calc(180px + 250 * ((100vw - 280px) / 1130));
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-video {
    min-height: 80vh !important;
  }
  .offer-video__file {
    display: none !important;
  }
  .offer-video__preview > * {
    display: none !important;
  }
  .offer-video__preview {
    background-size: cover !important;
    background-attachment: fixed !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-video__file {
    display: none !important;
  }
  .offer-video__preview > * {
    display: none !important;
  }
  .offer-video__preview {
    background-size: cover !important;
    background-attachment: fixed !important;
  }
}
.offer-static {
  min-height: 100vh;
  width: 100%;
  background: url(../img/bg-static.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #FFFFFF;
}
.offer-static__wrapper {
  display: flex;
  align-items: center;
}
.offer-static__container {
  width: 100%;
}
.offer-static__title {
  width: 50%;
  margin-bottom: 0.805em;
  color: #FFFFFF;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .offer-static__title {
    padding-bottom: 0.555em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-static__title {
    padding-bottom: 0.78125em;
    width: 70%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-static__title {
    width: 100%;
    padding-bottom: 0.714em;
  }
}
.offer-static__description {
  display: block;
  margin-bottom: 3.375em;
  color: #FFFFFF;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .offer-static__description {
    margin-bottom: 1.428em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-static__description {
    margin-bottom: 1.428em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-static__description {
    margin-bottom: 1.428em;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .offer-static {
    min-height: 80dvh;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .offer-static {
    min-height: 80dvh;
  }
}
.main-service__description {
  width: 100%;
  margin-bottom: 3.571em;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .main-service__description {
    margin-bottom: 2.142em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .main-service__description {
    margin-bottom: 2.142em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .main-service__description {
    margin-bottom: 2.142em;
  }
}
.main-service__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas: "h h h h l l l l l l l l";
  column-gap: 1.875em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .main-service__container {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: "h h h h h h" "l l l l l l" !important;
    row-gap: 1.875em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .main-service__container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "h h" "l l" !important;
    row-gap: 1.875em;
  }
}
.main-service__header {
  grid-area: h;
  align-items: self-start;
  justify-content: start;
  padding: 0;
  line-height: 150%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .main-service__header {
    width: 100%;
  }
}
.main-service__list {
  grid-area: l;
  display: flex;
  flex-direction: column;
  row-gap: 1.25em;
  width: 100%;
}
.main-service__item {
  display: grid;
  width: 100%;
  padding: 1.875em;
}
.main-service-card {
  background: #EFF4E9;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  font-family: "Lato";
}
.main-service-card__title {
  grid-area: 1/1/2/4;
  max-width: 300px;
  font-weight: 600;
  font-size: 16px;
  align-self: center;
}
@media (max-width: 1410px) {
  .main-service-card__title {
    font-size: calc(14px + 2 * ((100vw - 280px) / 1130));
  }
}
.main-service-card__description {
  font-size: 14px;
  line-height: 170%;
  grid-area: 1/4/2/7;
  max-width: 330px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .main-service-card__description {
    margin: 1em 0;
    max-width: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .main-service-card__description {
    margin: 1.07em 0;
    max-width: 100%;
  }
}
.main-service-card__price {
  font-size: 20px;
  grid-area: 1/7/2/9;
  align-self: center;
  justify-self: end;
  font-weight: 600;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .main-service-card {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .main-service-card {
    display: block;
  }
}

.advantages__card {
  min-height: 350px;
  padding: 1.875rem;
  background: #559800;
}

.advantages-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: 2s;
}
.advantages-card:hover {
  background: #EFF4E9;
  transition: 1s;
}
.advantages-card:hover .advantages-card__num {
  display: none;
}
.advantages-card:hover .advantages-card__content {
  display: block;
  color: #929292;
}
.advantages-card:hover .advantages-card__title {
  color: black;
  transition: 2s;
}
.advantages-card__num {
  display: block;
  display: block;
  font-family: "ManropeBold", san-serif;
  color: #FFFFFF;
}
.advantages-card__title {
  color: #FFFFFF;
}
.advantages-card__content {
  width: 100%;
  display: none;
  color: white;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .advantages-card {
    min-height: 219px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .advantages-card {
    justify-content: space-between;
  }
  .advantages-card:hover {
    background: #EFF4E9;
    transition: 1s;
  }
  .advantages-card__num {
    opacity: 1;
    padding-bottom: 0.5em;
    display: block;
    color: #FFFFFF;
  }
  .advantages-card__content {
    position: relative;
    width: 100%;
    opacity: 1;
    display: block;
    color: white;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .advantages-card {
    justify-content: space-between;
    margin: 0px;
  }
  .advantages-card:hover {
    background: #EFF4E9;
    transition: 1s;
  }
  .advantages-card__num {
    opacity: 1;
    padding-bottom: 0.5em;
    display: block;
    color: #FFFFFF;
  }
  .advantages-card__content {
    position: relative;
    width: 100%;
    opacity: 1;
    display: block;
    color: white;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .advantages__list {
    grid-template-columns: repeat(1, 1fr) !important;
    column-gap: 14px;
    row-gap: 15px;
  }
}

.capture-point {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.capture-point__wrapper {
  padding: 6.75em 30px !important;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .capture-point__wrapper {
    padding: 3.125em 30px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .capture-point__wrapper {
    padding: 1.875em 30px !important;
  }
}
.capture-point__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.capture-point__question {
  color: #FFFFFF;
}
.capture-point__description {
  color: #FFFFFF;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .capture-point__container {
    flex-direction: column;
  }
  .capture-point__description {
    margin-top: 0.714em;
    margin-bottom: 0.714em;
    text-align: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .capture-point__container {
    flex-direction: column;
  }
  .capture-point__description {
    margin-top: 0.714em;
    margin-bottom: 0.714em;
    text-align: center;
  }
}
.gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.gallery__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px !important;
  margin-right: 30px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .gallery__slide {
    width: 184px !important;
  }
  .gallery__slide:not(:last-child) {
    margin-right: 30px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery__slide {
    width: 184px !important;
  }
  .gallery__slide:not(:last-child) {
    margin-right: 30px !important;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .gallery__slide {
    width: 219px !important;
  }
  .gallery__slide:not(:last-child) {
    margin-right: 30px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .gallery__slide {
    width: 246px !important;
  }
  .gallery__slide:not(:last-child) {
    margin-right: 30px !important;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .gallery__slide {
    width: 330px !important;
  }
  .gallery__slide:not(:last-child) {
    margin-right: 30px !important;
  }
}
.gallery__slide img {
  display: block;
  width: 100%;
}
.gallery__header-container {
  display: flex;
  width: 100%;
  align-items: center;
  padding-bottom: 3.75rem;
}
@media (min-width: 320px) and (max-width: 767px) {
  .gallery__header-container {
    padding-bottom: 2.1875rem;
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .gallery__header-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.gallery__title {
  padding-right: 8.979em;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .gallery__title {
    padding-right: 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .gallery__title {
    padding-bottom: 0.357em;
  }
}
.gallery__description {
  color: #929292;
  font-size: 14px;
}
@media (max-width: 1410px) {
  .gallery__description {
    font-size: calc(12px + 2 * ((100vw - 280px) / 1130));
  }
}
.gallery .swiper-pagination-galery {
  margin-top: 1.875rem;
  display: flex;
  height: 2px;
}
@media not ((min-width: 320px) and (max-width: 1023px)) {
  .gallery .swiper-pagination-galery {
    display: none;
  }
}
.gallery .swiper-pagination-galery > .swiper-pagination-bullet {
  flex-grow: 1;
  background: #EFF4E9;
  width: auto;
  height: 2px !important;
  border-radius: 0;
  opacity: 1;
}
.gallery .swiper-pagination-galery > .swiper-pagination-bullet_active {
  background: #559800;
}
.gallery__slide-navigate {
  position: absolute;
  top: calc(50% - 22.5px);
  left: -22.5px;
  display: flex;
  justify-content: space-between;
  z-index: 500;
  width: calc(100% + 45px);
}
@media (min-width: 320px) and (max-width: 1023px) {
  .gallery__slide-navigate {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .gallery__slide-navigate {
    top: calc(50% - (45px + -5 * ((100vw - 280px) / 1130)) / 2);
    left: calc((45px + -5 * ((100vw - 280px) / 1130)) * -1 / 2);
    width: calc(100% + (45px + -5 * ((100vw - 280px) / 1130)));
  }
}
.gallery__next, .gallery__prev {
  width: 45px;
  height: 45px;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .gallery__next, .gallery__prev {
    width: calc(45px + -5 * ((100vw - 280px) / 1130)) !important;
    height: calc(45px + -5 * ((100vw - 280px) / 1130)) !important;
  }
}

.gallery-swiper {
  overflow: visible !important;
}
.gallery-swiper__wrapper {
  align-items: center !important;
}

.service-rates {
  overflow-x: hidden;
}

.rates {
  width: 100%;
  overflow: visible;
}
.rates__wrapper {
  height: 100% !important;
}
.rates__slide {
  flex: 0 0 33.3333333333%;
  max-width: 450px;
  padding-right: 1.875em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rates__slide {
    flex: 0 0 41.6666666667%;
    max-width: 290px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .rates__slide {
    flex: 0 0 100%;
    max-width: 246px;
  }
}
.rates__slide:last-child {
  margin-right: 0 !important;
}
.rates__pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.rates .rates-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.rates .rates-pagination-bullet-active {
  opacity: 1;
}

.rate {
  box-sizing: border-box;
  background: #EFF4E9;
}
.rate__title {
  position: relative;
  line-height: 150%;
  padding: 2em 1.33em 0.833em 0;
  margin-left: 1.66em;
}
.rate__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: #559800;
}
.rate__price {
  line-height: 100%;
  font-size: 28px;
  line-height: 100%;
  font-size: 28px;
  line-height: 100%;
  font-size: 34px;
  font-family: "LatoSemiBold";
  margin-bottom: 0.625em;
  margin-top: 0.416em;
  margin-left: 1.04em;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .rate__price {
    font-size: calc(0 * 100vw + 28px);
  }
}
@media (min-width: 767.5px) {
  .rate__price {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rate__price {
    font-size: calc(0.0235294118 * 100vw + 9.9294117647px);
  }
}
@media (min-width: 1023px) {
  .rate__price {
    font-size: 34px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .rate__price {
    font-size: calc(0.0156424581 * 100vw + 17.982122905px);
  }
}
@media (min-width: 1919px) {
  .rate__price {
    font-size: 48px;
  }
}
.rate__btn {
  margin-top: 1.875em;
  margin-bottom: 3.75em;
  margin-left: 3.125em;
}
.rate__list {
  padding-left: 4em !important;
}
.rate__list > li {
  position: relative;
  display: flex;
  line-height: 170% !important;
  color: #686868;
  line-height: 100%;
  font-size: 12px;
  line-height: 100%;
  font-size: 12px;
  line-height: 100%;
  font-size: 14px;
  margin-bottom: 5px;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .rate__list > li {
    font-size: calc(0 * 100vw + 12px);
  }
}
@media (min-width: 767.5px) {
  .rate__list > li {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rate__list > li {
    font-size: calc(0.0078431373 * 100vw + 5.9764705882px);
  }
}
@media (min-width: 1023px) {
  .rate__list > li {
    font-size: 14px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .rate__list > li {
    font-size: calc(0 * 100vw + 14px);
  }
}
@media (min-width: 1919px) {
  .rate__list > li {
    font-size: 14px;
  }
}
.rate__list > li::before {
  content: "";
  position: absolute;
  display: flex;
  bottom: calc(50% - 2.5px);
  left: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #559800;
}

.sales {
  display: flex;
  background-color: #306000;
  background-image: url(../img/bg-sales.webp);
  background-position: 50vw 0%;
  background-size: 60% auto;
  background-repeat: no-repeat;
  width: 100%;
}
.sales__image {
  display: none;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales {
    background-position: 51vw 0%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .sales {
    background-position: 100vw 0%;
    flex-direction: column;
  }
  .sales__image {
    display: block;
  }
}
.sales__wrapper {
  width: 100%;
}
.sales__content {
  color: #FFFFFF;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: row;
  column-gap: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__content {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .sales__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sales__title {
  line-height: 100%;
  font-size: 26px;
  line-height: 100%;
  font-size: 28px;
  line-height: 100%;
  font-size: 32px;
  grid-column: 5 span;
  grid-row: 1/1;
  color: inherit;
  line-height: 130%;
  margin-bottom: 0.208em;
  margin-top: 3.458em;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .sales__title {
    font-size: calc(0.0044692737 * 100vw + 24.5698324022px);
  }
}
@media (min-width: 767.5px) {
  .sales__title {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__title {
    font-size: calc(0.0156862745 * 100vw + 15.9529411765px);
  }
}
@media (min-width: 1023px) {
  .sales__title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .sales__title {
    font-size: calc(0.017877095 * 100vw + 13.6938547486px);
  }
}
@media (min-width: 1919px) {
  .sales__title {
    font-size: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__title {
    grid-column: 3 span;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .sales__title {
    grid-column: 2 span;
  }
}
.sales__description {
  grid-column: 4 span;
  grid-row: 2/2;
  font-size: 14px;
  line-height: 170%;
  margin-bottom: 4.285em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__description {
    grid-column: 3 span;
    margin-bottom: 2.5em;
    margin-top: 0.714em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .sales__description {
    grid-column: 2 span;
    margin-bottom: 2.5em;
    margin-top: 0.714em;
  }
}
.sales__form-container {
  grid-column: 3 span;
  grid-row: 4/4;
  margin-bottom: 10.375em;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .sales__form-container {
    grid-column: 4 span;
    grid-row: 4/5;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__form-container {
    grid-column: 3 span;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .sales__form-container {
    grid-column: 2 span;
  }
}
.sales__timer {
  grid-column: 4 span;
  grid-row: 3/3;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__timer {
    grid-column: 3 span;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .sales__timer {
    grid-column: 2 span;
  }
}
.sales__timer .timer {
  display: flex;
  flex-direction: row;
  margin-bottom: 3.75em;
}
.sales__timer .timer__number {
  display: flex;
  flex-direction: column;
}
.sales__timer .timer__time {
  line-height: 100%;
  font-size: 26px;
  line-height: 100%;
  font-size: 28px;
  line-height: 100%;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .sales__timer .timer__time {
    font-size: calc(0.0044692737 * 100vw + 24.5698324022px);
  }
}
@media (min-width: 767.5px) {
  .sales__timer .timer__time {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__timer .timer__time {
    font-size: calc(0.0156862745 * 100vw + 15.9529411765px);
  }
}
@media (min-width: 1023px) {
  .sales__timer .timer__time {
    font-size: 32px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .sales__timer .timer__time {
    font-size: calc(0.017877095 * 100vw + 13.6938547486px);
  }
}
@media (min-width: 1919px) {
  .sales__timer .timer__time {
    font-size: 48px;
  }
}
.sales__timer .timer__text {
  line-height: 100%;
  font-size: 14px;
  line-height: 100%;
  font-size: 14px;
  line-height: 100%;
  font-size: 14px;
  line-height: 170%;
  text-align: center;
  margin-top: 0.1875em;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .sales__timer .timer__text {
    font-size: calc(0 * 100vw + 14px);
  }
}
@media (min-width: 767.5px) {
  .sales__timer .timer__text {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__timer .timer__text {
    font-size: calc(0 * 100vw + 14px);
  }
}
@media (min-width: 1023px) {
  .sales__timer .timer__text {
    font-size: 14px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .sales__timer .timer__text {
    font-size: calc(0.0022346369 * 100vw + 11.7117318436px);
  }
}
@media (min-width: 1919px) {
  .sales__timer .timer__text {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .sales__timer .timer__text {
    margin-bottom: 2.1875em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__timer .timer__text {
    margin-bottom: 2.142em;
  }
}
.sales__timer .timer__separator {
  line-height: 100%;
  font-size: 26px;
  line-height: 100%;
  font-size: 28px;
  line-height: 100%;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  margin: 0 0.604em;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .sales__timer .timer__separator {
    font-size: calc(0.0044692737 * 100vw + 24.5698324022px);
  }
}
@media (min-width: 767.5px) {
  .sales__timer .timer__separator {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sales__timer .timer__separator {
    font-size: calc(0.0156862745 * 100vw + 15.9529411765px);
  }
}
@media (min-width: 1023px) {
  .sales__timer .timer__separator {
    font-size: 32px;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .sales__timer .timer__separator {
    font-size: calc(0.017877095 * 100vw + 13.6938547486px);
  }
}
@media (min-width: 1919px) {
  .sales__timer .timer__separator {
    font-size: 48px;
  }
}
.sales .sale-form__item {
  margin-bottom: 0.625em;
}
.sales .sale-form__button {
  width: 100%;
  max-width: 330px;
  background-color: #79C716;
  margin-bottom: 0.8125em;
}
@media (min-width: 320px) and (max-width: 767px) {
  .sales .sale-form__button {
    margin-bottom: 1.428em;
  }
}
.sales .sale-form__button:hover {
  background-color: #559800;
}

@media (min-width: 320px) and (max-width: 1023px) {
  .additional-services__list {
    gap: 10px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .additional-services__list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
}

.add-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.875em;
  max-height: fit-content !important;
  height: -webkit-fill-available;
  height: -moz-available;
  background-color: #EFF4E9;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .add-service-item {
    padding: 1.785em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .add-service-item {
    padding: 1.785em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .add-service-item {
    padding: 1.071em;
  }
}
.add-service-item__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  max-height: 100px;
  max-width: 100px;
  min-height: 42px;
  min-width: 42px;
  width: calc(42px + 58 * ((100vw - 280px) / 1130)) !important;
  height: calc(42px + 58 * ((100vw - 280px) / 1130)) !important;
  overflow: hidden;
  border-radius: 50%;
}
.add-service-item__icon {
  position: absolute;
  z-index: 2;
  height: 100%;
  object-fit: cover;
  display: block;
}
.add-service-item__title {
  padding: 1.11em 0;
  font-family: "LatoSemiBold";
  text-align: center;
}
.add-service-item__description {
  color: #686868;
  text-align: center;
}
.add-service-item__button {
  bottom: 0;
  margin-bottom: 3.07em;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .add-service-item__button {
    margin-bottom: 0;
    margin-top: 1.07em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .add-service-item__button {
    margin-bottom: 0;
    margin-top: 1.07em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .add-service-item__button {
    margin-top: 1.07em;
    margin-bottom: 0;
  }
}
.add-service-item__button.btn {
  height: calc(41px + 4 * ((100vw - 280px) / 1130)) !important;
}
.add-service-item__button.btn .btn__first,
.add-service-item__button.btn .btn__second {
  height: calc(41px + 4 * ((100vw - 280px) / 1130)) !important;
}
.add-service-item__button.btn:hover .btn__wrapper {
  transform: translateY(calc(-1 * (41px + 4 * ((100vw - 280px) / 1130)))) !important;
}

.company {
  font-size: 16px;
  position: relative;
  width: 100%;
  min-height: 70vh;
  background-size: cover;
  background-attachment: fixed;
  color: #FFFFFF;
}
@media (max-width: 1410px) {
  .company {
    font-size: calc(14px + 2 * ((100vw - 280px) / 1130));
  }
}
.company__container {
  position: relative;
}
.company__swipper {
  overflow: hidden;
  min-height: 100vh;
}
.company__swipper-wrapper {
  height: 100vh !important;
}
.company__wrapper {
  padding: 0;
  position: relative;
  min-height: inherit;
  z-index: 100;
}
.company__swiper-slide {
  background-size: cover;
  width: 100%;
  min-height: 100%;
}
.company__swiper-slide[slide-index="1"] {
  background-color: red;
  background-image: url(https://images.unsplash.com/photo-1690763367559-d63c891dc409?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE2OTIwMTI2NjR8&ixlib=rb-4.0.3&q=85);
}
.company__swiper-slide[slide-index="2"] {
  background-color: green;
  background-image: url(https://images.unsplash.com/photo-1690200371608-1b8b6a43d973?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE2OTIwMTczMDV8&ixlib=rb-4.0.3&q=85);
}
.company__swiper-slide[slide-index="3"] {
  background-color: black;
  background-image: url(https://images.unsplash.com/photo-1690826085941-3805cd31aadb?crop=entropy&cs=srgb&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE2OTIwMTczMTZ8&ixlib=rb-4.0.3&q=85);
}
.company__navigate-container {
  position: relative !important;
  z-index: 1000;
}
.company__slide-navigate {
  position: absolute;
  bottom: 3.125em;
  display: flex;
}
.company__prev {
  margin-right: 0.9375em;
}
.company__title {
  max-width: 45%;
  padding-top: 4.94em;
  padding-bottom: 0.805em;
  color: #FFFFFF;
}
.company__description {
  display: block;
  max-width: 45%;
  color: #FFFFFF;
  margin-bottom: 3.375em;
}
.company-content {
  background: #FFFFFF;
  overflow-x: clip;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .company-content {
    margin-top: 2.3125em;
  }
}
.company-content__container {
  display: flex;
  color: black;
  position: relative;
}
.company-content__image {
  margin: 6.25em 0;
}
.company-content__right {
  z-index: 3;
  position: relative;
  display: block;
  width: 50%;
  height: 100%;
  padding-top: 10.625em;
  padding-left: 9.375em;
  background: #FFFFFF;
  transform: translateY(-282px);
}
.company-content__right:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 50vw;
  height: 100%;
  background-color: #fff;
  transform: translateX(99%);
}
.company-content__title {
  padding-bottom: 1.458em;
}
.company-content__description {
  color: #686868;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .company-content__container {
    flex-direction: column;
  }
  .company-content__left {
    order: 2;
  }
  .company-content__right {
    order: 1;
    padding: 1.785em 0;
    transform: translateY(0);
    width: 100%;
  }
  .company-content__right__description {
    padding: 0;
  }
  .company-content__right:after {
    display: none;
  }
}
.company .statistic-card {
  margin-right: 5em;
  display: flex;
}
.company .statistic-card:nth-child(odd) .statistic-card__description {
  justify-content: flex-start;
}
.company .statistic-card:nth-child(even) .statistic-card__description {
  justify-content: flex-end;
}
.company .statistic-card__description {
  display: flex;
  flex-direction: column;
  color: #101010;
  font-family: Lato;
  font-style: normal;
}
.company .statistic-card__description-title {
  font-weight: 600;
  line-height: 120%;
}
.company .statistic-card__description-text {
  font-weight: 400;
}
.company .statistic-card__number {
  white-space: nowrap;
  color: #559800;
  font-family: Lato;
  font-style: normal;
  font-weight: 700;
  line-height: 82%;
  margin-right: 0.125em;
}
.company .statistic-swipper__wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

@media (min-width: 1600px) and (max-width: 1919px) {
  .company__title {
    padding-top: 4.19em;
    padding-bottom: 0.41em;
  }
  .company__description {
    margin-bottom: 1.875em;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .company__title {
    padding-top: 4.875em;
    padding-bottom: 0.416em;
  }
  .company__description {
    margin-bottom: 1.428em;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .company__title {
    padding-top: 8.027em;
    padding-bottom: 0.55em;
  }
  .company__description {
    margin-bottom: 1.428em;
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .company__navigate-wrapper {
    visibility: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .company {
    min-height: 80vh !important;
  }
  .company__title {
    padding-top: 9.312em;
    padding-bottom: 0.78125em;
    max-width: 80%;
    width: 100% !important;
  }
  .company__description {
    max-width: 80%;
    width: 100% !important;
    margin-top: 1.428em;
    margin-bottom: 1.428em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .company__title {
    font-size: 1.75rem;
    max-width: 100%;
    width: 100%;
    padding-top: 8.03em;
    padding-bottom: 0.714em;
  }
  .company__description {
    max-width: 100%;
    width: 100%;
    line-height: 170%;
    margin-top: 1.428em;
    margin-bottom: 1.428em;
  }
}
.employees__wrapper {
  overflow-x: clip;
}
.employees__container {
  position: relative;
}
.employees__description {
  margin-bottom: 5em;
}
.employees-swiper {
  overflow: hidden !important;
}
.employees-swiper__wrapper {
  margin-bottom: 2.187em;
}
.employees-swiper__slide {
  width: 100%;
  min-height: 352px;
}
.employees-swiper__slide img {
  width: inherit;
}
.employees-slide__position {
  font-size: 14px;
  margin-top: 1.785em;
  margin-bottom: 0.714em;
}
.employees-slide:hover .employees-slide__name {
  color: #559800;
}
.employees-slide__name {
  font-family: "LatoSemiBold";
  margin-bottom: 0.5em;
}
.employees-slide__phone {
  font-size: 16px;
  color: #686868;
}
@media (max-width: 1410px) {
  .employees-slide__phone {
    font-size: calc(14px + 2 * ((100vw - 280px) / 1130));
  }
}
.employees__content {
  position: relative;
}
.employees__slide-navigate {
  position: absolute;
  top: calc(50% - 22.5px);
  left: -22.5px;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 45px);
}
@media (min-width: 320px) and (max-width: 1023px) {
  .employees__slide-navigate {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .employees__slide-navigate {
    top: calc(50% - (28px + 17 * ((100vw - 280px) / 1130)) / 2);
    left: calc((28px + 17 * ((100vw - 280px) / 1130)) * -1 / 2);
    width: calc(100% + (28px + 17 * ((100vw - 280px) / 1130)));
  }
}
.employees__next, .employees__prev {
  width: 45px;
  height: 45px;
  z-index: 50;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .employees__next, .employees__prev {
    width: calc(30px + 5 * ((100vw - 280px) / 1130)) !important;
    height: calc(30px + 5 * ((100vw - 280px) / 1130)) !important;
  }
}

.partners__swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.partners__item {
  margin-right: 150px;
}

.certificate__title {
  padding-bottom: 0;
  margin-bottom: 1.458em;
}
.certificate-card__zoom {
  position: absolute;
  left: calc(50% - (80px / 2));
  top: calc(50% - (80px / 2));
  background-color: #559800;
  background-image: url("../img/zoom.svg");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  width: calc(80px );
  height: calc(80px );
  border-radius: 50%;
  transition: 0.5s opacity;
}
.certificate-card:hover .certificate-card__zoom {
  opacity: 1;
}
.certificate__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.875em;
}
.certificate__item {
  position: relative;
  grid-column: 2 span;
  padding: 1.5625em;
  background: #EFF4E9;
}
.certificate__item img {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .certificate .certificate__item {
    grid-column: 4 span;
  }
  .certificate .certificate__item:nth-child(n+4) {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .certificate .certificate__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.9375em;
  }
  .certificate .certificate__item {
    grid-column: 1 span;
  }
}

.reviews-text__wrapper {
  overflow-x: clip;
}
.reviews-text__container {
  position: relative;
}
.reviews-text__description {
  margin-bottom: 5em;
}
.reviews-text-swiper {
  overflow: hidden !important;
}
.reviews-text-swiper__wrapper {
  margin-bottom: 2.187em;
}
.reviews-text-swiper__wrapper .rt__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25em;
}
.reviews-text-swiper__wrapper .rt__header-stars > svg {
  stroke-opacity: 0;
}
.reviews-text-swiper__wrapper .rt__header-stars[stars="5"] > svg {
  fill: #559800;
  stroke: #559800;
}
.reviews-text-swiper__wrapper .rt__header-stars[stars="4"] > svg:nth-child(-n+4) {
  fill: #559800;
  stroke: #559800;
  stroke-opacity: 0;
}
.reviews-text-swiper__wrapper .rt__header-stars[stars="3"] > svg:nth-child(-n+3) {
  fill: #559800;
  stroke: #559800;
  stroke-opacity: 0;
}
.reviews-text-swiper__wrapper .rt__header-stars[stars="2"] > svg:nth-child(-n+2) {
  fill: #559800;
  stroke: #559800;
  stroke-opacity: 0;
}
.reviews-text-swiper__wrapper .rt__header-stars[stars="1"] > svg:nth-child(-n+1) {
  fill: #559800;
  stroke: #559800;
  stroke-opacity: 0;
}
.reviews-text-swiper__wrapper .rt__header-time {
  color: #686868;
}
.reviews-text-swiper__wrapper .rt__info {
  position: relative;
  color: #686868;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-text-swiper__wrapper .rt__footer {
  font-size: 18px;
  margin-top: 1.11em;
}
@media (max-width: 1410px) {
  .reviews-text-swiper__wrapper .rt__footer {
    font-size: calc(16px + 2 * ((100vw - 280px) / 1130));
  }
}
.reviews-text-swiper__wrapper .rt .full-review {
  display: -webkit-box;
  -webkit-line-clamp: 9999;
  -webkit-box-orient: vertical;
  overflow: visible;
}
.reviews-text-swiper__wrapper .rt__showmore_disabled {
  display: none !important;
}
.reviews-text-swiper__wrapper .rt__showmore, .reviews-text-swiper__wrapper .rt__collapse {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: fit-content;
  height: auto;
  background: linear-gradient(90deg, rgba(239, 244, 233, 0.5) 0%, rgb(239, 244, 233) 25%, rgb(239, 244, 233) 100%);
  text-align: right;
  padding-left: 40px;
  color: #686868;
}
.reviews-text-swiper__wrapper .rt__showmore::after, .reviews-text-swiper__wrapper .rt__collapse::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0px;
  transform-origin: left;
  display: block;
  transition: 0.5s width;
  width: calc(100% - 40px);
  height: 2px;
  background: #559800;
}
.reviews-text-swiper__wrapper .rt__showmore:hover::after, .reviews-text-swiper__wrapper .rt__collapse:hover::after {
  width: 0;
}
.reviews-text-swiper__slide {
  width: 100%;
}
.reviews-text-slide {
  padding: 2.5em;
  background: #EFF4E9;
}
.reviews-text__content {
  position: relative;
}
.reviews-text__slide-navigate {
  position: absolute;
  bottom: 150px;
  left: -22.5px;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 45px);
}
@media (min-width: 320px) and (max-width: 1023px) {
  .reviews-text__slide-navigate {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .reviews-text__slide-navigate {
    top: calc(50% - (28px + 17 * ((100vw - 280px) / 1130)) / 2);
    left: calc((28px + 17 * ((100vw - 280px) / 1130)) * -1 / 2);
    width: calc(100% + (28px + 17 * ((100vw - 280px) / 1130)));
  }
}
.reviews-text__next, .reviews-text__prev {
  width: 45px;
  height: 45px;
  z-index: 50;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .reviews-text__next, .reviews-text__prev {
    width: calc(30px + 5 * ((100vw - 280px) / 1130)) !important;
    height: calc(30px + 5 * ((100vw - 280px) / 1130)) !important;
  }
}

.reviews-video__wrapper {
  overflow-x: clip;
}
.reviews-video__container {
  position: relative;
}
.reviews-video__description {
  margin-bottom: 5em;
}
.reviews-video-swiper {
  overflow: hidden !important;
}
.reviews-video-swiper__wrapper {
  margin-bottom: 2.187em;
}
.reviews-video-swiper__slide {
  width: 100%;
  min-height: 317px;
}
.reviews-video-swiper__slide img {
  width: inherit;
}
.reviews-video-slide {
  position: relative;
}
.reviews-video-slide__position {
  font-size: 14px;
  margin-top: 1.785em;
  margin-bottom: 0.714em;
}
.reviews-video-slide:hover .reviews-video-slide__name {
  color: #559800;
}
.reviews-video-slide__name {
  font-size: 20px;
  line-height: 170%;
  font-family: "LatoSemiBold";
}
@media (max-width: 1410px) {
  .reviews-video-slide__name {
    font-size: calc(14px + 6 * ((100vw - 280px) / 1130));
  }
}
.reviews-video-slide__time {
  font-size: 16px;
  color: #686868;
}
@media (max-width: 1410px) {
  .reviews-video-slide__time {
    font-size: calc(14px + 2 * ((100vw - 280px) / 1130));
  }
}
.reviews-video-slide__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5625em;
}
.reviews-video-slide__thumbnail {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}
.reviews-video-slide__thumbnail .play {
  position: absolute;
  left: calc(50% - (100px / 2));
  top: calc(50% - (100px / 2));
  background-color: #559800;
  background-image: url("../img/play.svg");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: 0.5s opacity;
}
.reviews-video-slide__thumbnail:hover .play {
  opacity: 1;
}
.reviews-video__content {
  position: relative;
}
.reviews-video__slide-navigate {
  position: absolute;
  top: 50%;
  left: -22.5px;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 45px);
}
@media (min-width: 320px) and (max-width: 1023px) {
  .reviews-video__slide-navigate {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .reviews-video__slide-navigate {
    top: calc(50% - (28px + 17 * ((100vw - 280px) / 1130)) / 2);
    left: calc((28px + 17 * ((100vw - 280px) / 1130)) * -1 / 2);
    width: calc(100% + (28px + 17 * ((100vw - 280px) / 1130)));
  }
}
.reviews-video__next, .reviews-video__prev {
  width: 45px;
  height: 45px;
  z-index: 50;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .reviews-video__next, .reviews-video__prev {
    width: calc(30px + 5 * ((100vw - 280px) / 1130)) !important;
    height: calc(30px + 5 * ((100vw - 280px) / 1130)) !important;
  }
}

.steps__container {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .steps__container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 20px;
    width: 100%;
  }
  .steps__list {
    max-width: 100% !important;
    width: 100%;
    grid-column: 4 span/6;
  }
}
.steps__title {
  padding-bottom: 0;
  margin-bottom: 1.458em;
}
.steps__list {
  position: relative;
  z-index: 500;
  display: flex;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .steps__list {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .steps__list {
    row-gap: 2.1875em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .steps__list {
    row-gap: 2.91em;
  }
}
.steps .step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 25%;
}
.steps .step:last-child .step__number {
  position: relative;
}
.steps .step:last-child .step__number::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #EFF4E9;
  left: 0;
  top: 0;
  border-radius: 20px;
  z-index: -1;
  animation: pulse-border 1.5s ease-out 3s infinite;
}
@keyframes pulse-border {
  from {
    opacity: 1;
    scale: 1;
  }
  to {
    opacity: 0.6;
    scale: 2;
  }
}
.steps .step__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  margin-bottom: 2.3125em;
  color: #FFFFFF;
  background: #559800;
}
@media (max-width: 1410px) {
  .steps .step__number {
    width: calc(50px + 20 * ((100vw - 280px) / 1130));
  }
}
@media (max-width: 1410px) {
  .steps .step__number {
    height: calc(50px + 20 * ((100vw - 280px) / 1130));
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .steps .step__number {
    margin-bottom: 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .steps .step {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .steps .step {
    display: grid;
    column-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    width: 100%;
  }
  .steps .step__number {
    grid-column: span 1/2;
    justify-self: center;
    align-self: baseline;
  }
  .steps .step__content {
    grid-column: span 3;
    text-align: left;
    align-items: baseline !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .steps .step {
    display: flex;
  }
}
.steps .step__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.steps .step__title {
  color: #101010;
  font-size: 18px;
  font-family: "LatoSemiBold";
  line-height: 150%;
  margin-bottom: 1.11em;
}
@media (min-width: 320px) and (max-width: 767px) {
  .steps .step__title {
    text-align: center;
    margin-top: 0.833em;
    margin-bottom: 0.55em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .steps .step__title {
    margin-bottom: 1.07em;
  }
}
.steps .step__description {
  font-size: 16px;
  color: #686868;
  text-align: center;
}
@media (max-width: 1410px) {
  .steps .step__description {
    font-size: calc(12px + 4 * ((100vw - 280px) / 1130));
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .steps .step__description {
    width: 100%;
    line-height: 1.25em;
    text-align: left;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .steps .step__description {
    text-align: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .steps .step {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
  }
}
.steps [data-aos=custom-work].aos-animate {
  -webkit-clip-path: inset(0 0 0 0) !important;
  clip-path: inset(0 0 0 0) !important;
}
.steps [data-aos=custom-work] {
  overflow: hidden;
  -webkit-clip-path: inset(0 100% 0 0) !important;
  clip-path: inset(0 100% 0 0) !important;
  transition: 2.2s cubic-bezier(0.4, 0.08, 0, 1.03) !important;
  transition-property: -webkit-clip-path !important;
  transition-property: clip-path !important;
  transition-property: clip-path, -webkit-clip-path !important;
}
.steps__progress {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80% !important;
  z-index: 100;
  width: inherit;
  overflow: hidden;
}
.steps__progress > svg {
  max-width: 100%;
}
.steps__progress > svg:not(:first-child) {
  display: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  .steps__progress {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .steps__progress {
    display: flex;
    justify-content: center;
    grid-column: 1 span/3;
    max-height: 100%;
    height: 100%;
    width: auto;
  }
  .steps__progress > svg:first-child {
    display: none;
  }
  .steps__progress > svg:not(:first-child) {
    height: 90% !important;
    display: block;
  }
}

.contacts {
  display: flex;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .contacts {
    flex-direction: column;
  }
  .contacts__map {
    width: 100% !important;
    order: 1;
    min-height: 259px;
  }
  .contacts__map iframe {
    width: 100%;
    min-height: 259px;
  }
  .contacts__content {
    width: 100% !important;
    padding: 2.53125em 1.5625em !important;
  }
}
.contacts a:hover {
  color: #79C716;
  transition: 0.5s;
}
.contacts__map {
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contacts__map {
    width: 40%;
  }
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
}
.contacts__content {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 8.125em 7.5em;
  padding-right: 30px;
  color: #FFFFFF !important;
  background: #306000;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contacts__content {
    width: 60%;
    padding: 5em 3.125em !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .contacts__content {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
}
.contacts__title {
  margin-bottom: 1.0416em;
  color: inherit !important;
}
.contacts__phone {
  font-family: "LatoSemiBold";
  margin-bottom: 0.5em;
  text-decoration: none;
  color: inherit;
}
.contacts__phone:hover {
  text-decoration: none;
}
.contacts__address {
  margin-bottom: 0.625em;
}
.contacts__address, .contacts__mail {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #559800;
  color: inherit;
}
.contacts__schedule {
  margin-top: 1.875em;
  margin-bottom: 2.5em;
}
.contacts__btn {
  max-width: 197px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contacts__btn {
    max-width: 188px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .contacts__btn {
    max-width: 180px;
  }
}

.schedule {
  display: grid;
  max-width: 160px;
  grid-template-columns: 0.9fr 1.1fr;
}
.schedule > * {
  color: #FFFFFF;
}

.footer {
  padding: 1em 0;
  min-height: 90px;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
@media (max-width: 1410px) {
  .footer .social {
    font-size: calc(14px + 2 * ((100vw - 280px) / 1130));
  }
}
.footer .social__list {
  display: flex;
  align-items: center;
}
.footer .social__link {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #559800;
  text-decoration: none;
}
.footer .social__item:not(:last-child) {
  margin-right: 1.25em;
}
@media (min-width: 320px) and (max-width: 767px) {
  .footer .social {
    justify-content: flex-start;
  }
  .footer__social {
    margin: 0.9375em 0;
    order: 1;
  }
  .footer__copyright {
    order: 2;
    margin: 0.714em 0;
  }
  .footer__dev {
    order: 3;
  }
}

.dev__icon {
  fill: #101010;
  margin-right: 0.857em;
}

.service-popup {
  display: none;
  padding: 0;
}
.service-popup > .f-button.is-close-btn {
  top: 10px;
  right: 10px;
  color: #FFFFFF;
}
.service-popup__content {
  min-width: 260px;
  max-width: 930px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .service-popup__content {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 320px 1fr;
    column-gap: 20px;
    max-width: 592px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .service-popup__content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 172px 1fr;
    column-gap: 14px;
    max-width: 320px;
  }
}
.service-popup__description {
  grid-column: 3 span;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .service-popup__description {
    grid-column-start: 2;
    grid-column-end: 6;
    grid-row: 2;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .service-popup__description {
    grid-column: 2 span;
    grid-row: 2;
    padding: 0 0.8125em;
  }
}
.service-popup__image {
  grid-column: 4 span;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .service-popup__image {
    grid-column: 6 span;
    grid-row: 1;
    max-height: 320px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .service-popup__image {
    grid-column: 2 span;
    grid-row: 1;
    max-height: 172px;
  }
}
.service-popup__title {
  margin-top: 2.3em;
  margin-bottom: 0.769em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .service-popup__title {
    margin-bottom: 0.555em;
  }
}
.service-popup__text {
  color: #686868;
  line-height: 170%;
  margin-bottom: 1.428em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .service-popup__text {
    margin-bottom: 1.071em;
  }
}
.service-popup__prices {
  margin-bottom: 1.25em;
}
.service-popup__item > .btn {
  width: 100%;
}
.service-popup__item:has(.btn) {
  margin-top: 0.625em;
  margin-bottom: 0.9375em;
}
.service-popup__item > label {
  color: #686868;
}
.service-popup__item > input[type=phone] {
  border-color: #D4D4D4;
  width: 100%;
  max-width: 100%;
}
.service-popup__item > input[type=phone]:focus {
  border-color: #101010;
}
.service-popup__item .checkbox-container {
  color: #686868;
  margin-bottom: 0;
}
.service-popup__item .checkbox-container__checkmark {
  margin-top: 2.5px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .service-popup__item .checkbox-container__checkmark {
    width: 15px;
    height: 15px;
  }
}
.service-popup__form {
  margin-bottom: 2.857em;
}

.fancybox__slide:has(.service-popup) {
  padding: 0;
}

.success-popup {
  display: none;
}
.success-popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.success-popup__description {
  max-width: 286px;
  text-align: center;
  line-height: 170%;
  color: #686868;
  margin-top: 1.428em;
}
.success-popup__title {
  margin-top: 1.5em;
}

.additional-popup {
  display: none;
  padding: 0;
}
.additional-popup > .f-button.is-close-btn {
  top: 10px;
  right: 10px;
  color: #FFFFFF;
}
.additional-popup__container {
  min-width: 260px;
  max-width: 570px;
  min-height: 455px;
  width: 100%;
  padding: 3.75em;
}
.additional-popup__title {
  text-align: center;
}
.additional-popup__description {
  max-width: 330px;
  text-align: center;
  margin-bottom: 2.142em;
  margin-top: 0.714em;
  color: #686868;
  line-height: 170%;
}
.additional-popup__item {
  margin-bottom: 0.625em;
}
.additional-popup__item > .btn {
  width: 100%;
}
.additional-popup__item:has(.btn) {
  margin-top: 0.625em;
  margin-bottom: 0.9375em;
}
.additional-popup__item > label {
  color: #686868;
}
.additional-popup__item > input[type=phone] {
  border-color: #D4D4D4;
  width: 100%;
  max-width: 100%;
}
.additional-popup__item > input[type=phone]:focus {
  border-color: #101010;
}
.additional-popup__item .checkbox-container {
  color: #686868;
  margin-bottom: 0;
}
.additional-popup__item .checkbox-container__checkmark {
  margin-top: 2.5px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .additional-popup__item .checkbox-container__checkmark {
    width: 15px;
    height: 15px;
  }
}

.fancybox-slide:has(.quiz-popup) {
  padding: 0;
  box-sizing: border-box;
}

.quiz-popup {
  display: none;
  width: 100dvw;
  height: 100dvh;
  box-sizing: border-box;
  padding: 0;
  background-color: #EFF4E9;
}
.quiz-popup__container {
  display: flex;
  height: 100%;
  width: 100%;
  transition: 1s;
  overflow: hidden;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .quiz-popup__container_default {
    flex-direction: column-reverse;
  }
  .quiz-popup__container_default .quiz-popup__picture {
    width: 100%;
    max-height: 275px;
    overflow: hidden;
  }
}
@media (min-width: 320px) and (max-width: 1023px) and (min-width: 768px) and (max-width: 1023px) {
  .quiz-popup__container_default .quiz-popup__picture {
    max-height: 400px;
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .quiz-popup__container_default .questions {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 320px) and (max-width: 1023px) and (min-width: 768px) and (max-width: 1023px) {
  .quiz-popup__container_default .questions {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .quiz-popup__container_default .questions__content {
    grid-column: span 2;
    justify-content: center;
  }
}
@media (min-width: 320px) and (max-width: 1023px) and (min-width: 768px) and (max-width: 1023px) {
  .quiz-popup__container_default .questions__content {
    grid-column: span 4/6;
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .quiz-popup__container_default .questions .questions-form {
    display: none;
  }
}
.quiz-popup__container_default .questions__content:has(.welcome) {
  grid-column: span 4/6;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.quiz-popup__container_default .questions__content:has(.welcome) #questions-form {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quiz-popup__container_default .questions__content:has(.welcome) {
    grid-column: span 3/5 !important;
    padding-top: 3.125em;
    padding-bottom: 5.125em;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .quiz-popup__container_default .questions__content:has(.welcome) {
    grid-column: span 2;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .quiz-popup__container_active {
    flex-direction: initial;
  }
}
.quiz-popup__container_active .quiz-popup__picture {
  width: 25%;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .quiz-popup__container_active .quiz-popup__picture {
    width: 0%;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .quiz-popup__container_active .quiz-popup__picture {
    width: 0%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quiz-popup__container_active .quiz-popup__picture {
    width: 0%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .quiz-popup__container_active .quiz-popup__picture {
    width: 0%;
  }
}
.quiz-popup__container_active .quiz-popup__questions {
  grid-template-columns: repeat(9, 1fr);
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .quiz-popup__container_active .quiz-popup__questions {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .quiz-popup__container_active .quiz-popup__questions {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quiz-popup__container_active .quiz-popup__questions {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .quiz-popup__container_active .quiz-popup__questions {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px;
  }
}
.quiz-popup__container_active .quiz-popup__questions .questions__content {
  grid-column: 2/8 span;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .quiz-popup__container_active .quiz-popup__questions .questions__content {
    grid-column: 2/12;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .quiz-popup__container_active .quiz-popup__questions .questions__content {
    grid-column: 2/12;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quiz-popup__container_active .quiz-popup__questions .questions__content {
    grid-column: 2/4 span;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .quiz-popup__container_active .quiz-popup__questions .questions__content {
    grid-column: 1/2 span;
  }
}
@media (min-width: 320px) and (max-width: 1023px) {
  .quiz-popup__container_active_order {
    flex-direction: column-reverse;
  }
  .quiz-popup__container_active_order .quiz-popup__picture {
    height: 0%;
  }
}
.quiz-popup__container_active_order .quiz-popup__questions {
  grid-template-columns: repeat(6, 1fr);
}
@media (min-width: 320px) and (max-width: 767px) {
  .quiz-popup__container_active_order .quiz-popup__questions {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quiz-popup__container_active_order .quiz-popup__questions {
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
  }
}
.quiz-popup__container_active_order .quiz-popup__picture {
  width: 50%;
}
.quiz-popup__container_active_order .questions__content {
  grid-column: 2/6 !important;
}
@media (min-width: 320px) and (max-width: 767px) {
  .quiz-popup__container_active_order .questions__content {
    grid-column: span 2 !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quiz-popup__container_active_order .questions__content {
    grid-column: 2/6 !important;
  }
}
.quiz-popup__container_success {
  background: #306000;
}
.quiz-popup__container_success .success {
  display: block !important;
}
.quiz-popup__picture {
  width: 50%;
  height: 100%;
  transition: 0.3s;
  flex: 0 1 auto;
  overflow: hidden;
}
.quiz-popup__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quiz-popup__questions {
  width: 50%;
  flex: 1 1 auto;
}

.questions {
  position: relative;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 30px;
  padding-right: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .questions {
    column-gap: 20px;
    padding-right: 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .questions {
    column-gap: 14px;
    padding-right: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .questions {
    padding-right: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .questions {
    padding-right: 0;
  }
}

.welcome {
  max-width: 610px;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .welcome {
    max-width: 351px;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .welcome {
    max-width: 351px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .welcome {
    max-width: 374px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .welcome {
    max-width: 260px;
    margin: 0 auto;
  }
}
.welcome__title {
  margin-bottom: 1.33em;
}
@media (min-width: 320px) and (max-width: 767px) {
  .welcome__title {
    margin-top: 2em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .welcome__title {
    margin-top: 2.5em;
  }
}
.welcome__description {
  color: #686868;
  margin-bottom: 2.857em;
}
.welcome__btn {
  max-width: 198px;
  margin-bottom: 1.33em;
}

.questions-form {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
.questions-form__section_active {
  display: grid;
}
.questions-form__section_disabled {
  display: none !important;
}
.questions-form__title {
  margin-bottom: 0.666em;
}
.questions-form__description {
  margin-bottom: 3.125em;
}
.questions-form .questions-footer {
  background: #EFF4E9;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.1875em;
}
@media (min-width: 320px) and (max-width: 767px) {
  .questions-form .questions-footer {
    flex-direction: column;
  }
}
.questions-form .questions-footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(0deg, #eff4e9 0%, rgba(239, 244, 233, 0.9) 60%, rgba(239, 244, 233, 0) 100%);
}
.questions-form .questions-footer__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 320px) and (max-width: 767px) {
  .questions-form .questions-footer__wrapper {
    width: 100%;
    order: 2;
  }
}
.questions-form .questions-footer .discount {
  min-width: 295px;
  display: flex;
  justify-content: space-between;
  background: white;
  align-items: center;
  padding: 1.25em;
}
@media (min-width: 320px) and (max-width: 767px) {
  .questions-form .questions-footer .discount {
    width: 100%;
    margin-bottom: 0.625em;
    order: 1;
  }
}
.questions-form .questions-footer .discount__text {
  font-weight: 600;
}
.questions-form .questions-footer .discount__value {
  color: #559800;
  text-align: end;
  align-self: self-end;
}
.questions-form .questions-footer__back {
  display: flex;
  justify-content: center;
  width: 53px;
  height: 53px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #559800;
  align-items: center;
  margin-right: 1.25em;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .questions-form .questions-footer__back {
    width: 42px;
    height: 42px;
  }
}
.questions-form .text-question, .questions-form .image-question {
  width: 100%;
}
.questions-form .text-question__group, .questions-form .image-question__group {
  max-height: 600px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-flow: row;
  padding-bottom: 1em;
  column-gap: 30px;
  row-gap: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .questions-form .text-question__group, .questions-form .image-question__group {
    max-height: 400px;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 6em;
    column-gap: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .questions-form .text-question__group, .questions-form .image-question__group {
    max-height: 500px;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 5em;
    column-gap: 20px;
  }
  .questions-form .text-question__group::-webkit-scrollbar, .questions-form .image-question__group::-webkit-scrollbar {
    width: 0em !important;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .questions-form .text-question__group, .questions-form .image-question__group {
    grid-template-columns: repeat(10, 1fr);
    padding-bottom: 5em;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .questions-form .text-question__group, .questions-form .image-question__group {
    grid-template-columns: repeat(10, 1fr);
  }
}
.questions-form .text-question__group::-webkit-scrollbar, .questions-form .image-question__group::-webkit-scrollbar {
  width: 0.5em;
}
@media (min-width: 320px) and (max-width: 767px) {
  .questions-form .text-question__group::-webkit-scrollbar, .questions-form .image-question__group::-webkit-scrollbar {
    width: 0%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .questions-form .text-question__group::-webkit-scrollbar, .questions-form .image-question__group::-webkit-scrollbar {
    width: 0%;
  }
}
.questions-form .text-question__group::-webkit-scrollbar-thumb, .questions-form .image-question__group::-webkit-scrollbar-thumb {
  background-color: #559800;
}
.questions-form .text-question__label, .questions-form .image-question__label {
  grid-column: span 2;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .questions-form .text-question__label, .questions-form .image-question__label {
    grid-column: span 2;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .questions-form .text-question__label, .questions-form .image-question__label {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .questions-form .text-question__label, .questions-form .image-question__label {
    grid-column: span 3;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .questions-form .text-question__label, .questions-form .image-question__label {
    grid-column: span 3;
  }
}
.questions-form .send-discount {
  max-width: 330px;
}
.questions-form .send-discount__item {
  margin-bottom: 0.625em;
  width: 100%;
}
.questions-form .send-discount-btn {
  width: 100% !important;
}
.questions-form .success {
  display: none;
  background-color: transparent;
}
.questions-form .success__icon {
  height: 70px;
  width: 70px;
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #FFFFFF;
}
.questions-form .success__icon svg {
  transform: scale(1.5);
}
.questions-form .success__title {
  margin: 1.33em 0;
}
.questions-form .success__description {
  color: #FFFFFF;
}

* {
  font-family: "Lato";
}

.question__input {
  display: block;
  visibility: hidden;
  cursor: pointer;
}

.quiz-radio {
  position: relative;
  display: block;
  grid-column: 2 span;
  height: 59px;
  border: 1px solid black;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background: white;
}
.quiz-radio__text {
  width: 100%;
  padding-left: 60px;
}
.quiz-radio::before {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #559800;
  box-sizing: border-box;
  top: 18px;
  left: 20px;
}
.quiz-radio:has(input:checked) {
  border-color: #559800;
  color: #559800;
}
.quiz-radio:has(input:checked)::before {
  border-color: #559800;
}
.quiz-radio:has(input:checked)::after {
  display: block;
}
.quiz-radio::after {
  content: "";
  position: absolute;
  display: none;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 1px solid #559800;
  top: 24px;
  left: 26px;
  background: #559800;
}

.radio-image {
  display: block;
  grid-column: span 2;
}
@media (min-width: 320px) and (max-width: 767px) {
  .radio-image {
    grid-column: span 1 !important;
  }
  .radio-image:last-child {
    margin-bottom: 25px;
  }
}
.radio-image__item {
  width: 100%;
  border: 1px solid transparent;
}
.radio-image__input {
  display: none;
}
.radio-image__picture {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}
.radio-image__description {
  box-sizing: border-box;
  width: 100%;
  padding: 0.9375em;
  background-color: #FFFFFF;
}
.radio-image:has(.radio-image__input:checked) > .radio-image__item {
  border-color: #559800;
}
.radio-image:has(.radio-image__input:checked) > .radio-image__item > .radio-image__description {
  border-color: #559800;
}

html {
  scroll-behavior: smooth;
}

body, main {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.wrapper {
  padding: 0 1.875rem;
}
@media (min-width: 320px) and (max-width: 767px) {
  .wrapper {
    padding: 0 0.9375rem;
  }
}

.container {
  margin: 0 auto;
  max-width: 1410px;
  min-width: calc(280px - 1.5625rem);
}

.preloader {
  display: flex;
  z-index: 99999999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
}
.preloader.hidden {
  display: none;
}

.loading-text {
  font-family: Verdana, Tahoma, sans-serif;
  margin-bottom: 15px;
  color: #101010;
}

.loading-indicator {
  position: relative;
  width: 300px;
  height: 2px;
  margin-bottom: 40px;
  border-radius: 3px;
  background-color: #EFF4E9;
  overflow: hidden;
}

.background-indicator {
  width: 320px;
  height: 2px;
  border-radius: 3px;
  background-color: #306000;
  animation: indicator 1.5s infinite ease-in-out;
}

.loading-indicator::after {
  content: "";
  position: absolute;
  width: 320px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 3px;
  background-color: #559800;
  animation: indicator 1.5s infinite ease-in-out 0.2s;
}

@keyframes indicator {
  from {
    transform: translateX(-320px);
  }
  to {
    transform: translateX(10px);
  }
}/*# sourceMappingURL=style.css.map */

/* TEST */
.services__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 20px;
}
.services__list__item {
	width: 24%;
	position: relative;
	height: 450px;
	overflow: hidden;
}
.services-card__description {
	position: absolute;
	bottom: 0;
	width: 100%;
}
.services-card__description__wrapper {
	width: 80%;
	background: #FFFFFF;
	margin-left: auto;
    margin-right: auto;
	padding: 1rem;
	transition: all .5s;
}
.services-card__bgimage {
	background-size: cover;
	background-position: center;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: all .5s;
}
.services-card:hover .services-card__bgimage {
	transform: scale(1.1);
}
.services-card:hover .services-card__description__wrapper {
	width: 100%;
}
.services-card:hover .services-card__title, .services-card:hover .services-card__price {
	width: 80%;
	color: #FFFFFF;
}
.services-card .card-item__button {
	top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	margin: auto;
}
.services-card:hover .card-item__button {
	opacity: 1;
	background: #D61523;
}
.services-card:hover .card-item__button:hover {
	background: #F11A2A;
}
@media(max-width: 992px){
	.services__list__item {
		width: 49%;
	}
}
@media(max-width: 576px){
	.services__list__item {
		width: 100%;
	}
}
