@charset "UTF-8";
:root {
  --font-family: "Manrope", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --third-family: "Inter", sans-serif;
  --content-width: 1200px;
  --content-offset: 1rem;
  --swiper-pagination-bullet-size: 24px;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-border-radius: 2px;
  --swiper-pagination-color: #001f62;
  --swiper-pagination-bullet-inactive-color: #001f62;
  --accent-color: #9cc50b;
  --accent-2-color: #016151;
  --accent-3-color: #2d645b;
  --bg-color: #ffffff;
  --hover-color: #29773a;
  --hover-button-color: #29773a;
  --light-color: #fff;
  --title-color: #3d3d3d;
  --text-color: #595959;
  --button-gradient: linear-gradient(90deg, #a0c708 0%, #319546 98.5%);
  --input-background-color: transparent;
  --input-background-color-focus: transparent;
  --input-border-color: #e1e1e1;
  --header-height: 80px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-family: "Montserrat";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-family: "Montserrat";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-family: "Montserrat";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-family: "Montserrat";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  font-family: "Manrope";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff");
  font-family: "Manrope";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"), url("../fonts/Manrope-SemiBold.woff") format("woff");
  font-family: "Manrope";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
  font-family: "Manrope";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-family: "Inter";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-family: "Inter";
  font-display: swap;
}
@font-face {
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-family: "Inter";
  font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

::selection,
::-moz-selection,
::-webkit-selection {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
  scrollbar-gutter: stable;
}
@media (prefers-reduced-motion: no-preference) {
  html :has(:target) {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    /* Добавлять к якорям tabindex="-1"  */
    scroll-behavior: smooth;
  }
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  background: var(--accent-2-color);
  background-blend-mode: multiply;
  min-width: 20rem;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--text-color);
  line-height: 1.4;
  font-family: var(--font-family, sans-serif);
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.disable-scroll {
  overflow: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

section {
  position: relative;
  padding: clamp(1.5625rem, 0.414rem + 4.9vw, 4.0625rem) 0;
}

section:first-of-type .container {
  outline: none !important;
  border: 0;
}

.section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: clamp(0.938rem, 0.707rem + 0.98vw, 1.875rem);
  text-align: left;
}
@media (min-width: 1024px) {
  .section-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.page__title {
  max-width: 30ch;
  font-weight: 700;
  font-size: clamp(2rem, 1.631rem + 1.57vw, 3.5rem);
  font-family: var(--second-family);
}
.page__title span {
  color: var(--accent-color);
}

.section__title {
  color: var(--title-color);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.417rem + 1.67vw, 2.563rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section__title span {
  color: var(--accent-color);
}
@media (prefers-reduced-motion: no-preference) {
  .section__title.element-animation {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section__title.element-animation.element-show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section__title.element-animation {
    -webkit-transform: translateX(-60px);
    -ms-transform: translateX(-60px);
    transform: translateX(-60px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section__title.element-animation {
    -webkit-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    transform: translateX(-80px);
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  width: min(var(--content-width), 100% - var(--content-offset) * 2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--font-family);
  text-wrap: balance;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
label {
  line-height: 1.1;
}

p,
li,
figcaption {
  max-width: 120ch;
  text-wrap: pretty;
}

p {
  margin-bottom: clamp(0.625rem, 0.823rem + 0.49vw, 0.9375rem);
  text-wrap: pretty;
}

img,
picture,
video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  shape-margin: 0.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  font-style: italic;
}

picture img {
  width: 100%;
}

@media (inverted-colors: inverted) {
  img,
  video {
    -webkit-filter: invert(100%);
    filter: invert(100%);
  }
}
svg * {
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
}

a,
button,
select {
  cursor: pointer;
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.link-phone,
.link-email {
  white-space: nowrap;
}

div:has(> img) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.is-hidden {
  display: none !important;
}

.btn-reset {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
}

.list-reset,
ul[class],
ol[class],
dl[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: --input-background-color;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

input,
button,
textarea,
select {
  font: inherit;
}

fieldset {
  margin: 0;
  border: 0;
  padding: 0;
  min-width: 0;
}

.visually-hidden {
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.page--ios .disable-scroll {
  position: relative;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
[id^=txtblock-],
[id^=ismall-],
[id^=medium-],
[id^=large-],
[id^=imedium-] {
  display: none !important;
}

.preloader {
  --size-preload: 128px;
  position: absolute;
  top: calc(50% - var(--size-preload) / 2);
  left: calc(50% - var(--size-preload) / 2);
  width: var(--size-preload);
  height: var(--size-preload);
  border-radius: 50%;
  -webkit-perspective: 800px;
  perspective: 800px;
}
.preloader__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #030713;
  z-index: 1001;
}
.preloader .inner {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.preloader .inner.one {
  left: 0%;
  top: 0%;
  -webkit-animation: rotate-one 1s linear infinite;
  animation: rotate-one 1s linear infinite;
  border-bottom: 5px solid var(--accent-color);
}
.preloader .inner.two {
  right: 0%;
  top: 0%;
  -webkit-animation: rotate-two 1s linear infinite;
  animation: rotate-two 1s linear infinite;
  border-right: 5px solid var(--hover-color);
}
.preloader .inner.three {
  right: 0%;
  bottom: 0%;
  -webkit-animation: rotate-three 1s linear infinite;
  animation: rotate-three 1s linear infinite;
  border-top: 5px solid green;
}

.loaded .preloader__wrapper {
  display: none !important;
}

@-webkit-keyframes rotate-one {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-one {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-webkit-keyframes rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-webkit-keyframes rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@keyframes rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 52px;
  background: var(--button-gradient);
  padding: clamp(0.688rem, 0.5rem + 0.94vw, 0.875rem) clamp(1.5rem, 0.813rem + 3.44vw, 2.188rem);
  overflow: hidden;
  color: var(--light-color);
  font-weight: 500;
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 0.938rem);
  line-height: 115%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.btn:after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  background-color: var(--hover-button-color);
  width: 0;
  height: 100%;
  content: "";
}
@media (any-hover: hover) {
  .btn:hover {
    color: var(--light-color);
  }
  .btn:hover:after {
    left: 0;
    width: 100%;
  }
}
.btn:active {
  top: 2px;
}
.btn:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background-color: transparent;
  width: 100%;
}
@media screen and (max-width: 1023.98px) {
  .header {
    background-color: #fff;
    color: #171717;
  }
  .header .header__logo {
    display: none;
    z-index: -1;
  }
  .header .header__logo.sticky {
    display: block;
    z-index: 1;
  }
  .header .header__grid, .header .header__phone, .header .header__email {
    color: #171717;
  }
  .header .header__grid:hover, .header .header__phone:hover, .header .header__email:hover {
    color: var(--hover-color);
  }
  .header .header__email svg path {
    fill: #171717;
  }
  .header .header__nav.nav-two, .header .header__actions {
    border-color: #171717;
  }
  .header .search__form svg rect, .header .search__form svg line {
    stroke: #171717;
  }
  .header .search__btn:hover svg rect, .header .search__btn:hover svg path {
    stroke: var(--hover-color);
  }
  .header .search__form.show input[type=text] {
    border: 1px solid #171717;
  }
  .header .header-menu__item a {
    color: #171717;
  }
  .header .header-menu__item a:hover {
    color: var(--hover-color);
  }
}
.header.topheader {
  top: -300px;
}
.header.sticky {
  position: fixed;
  top: 0;
  background-color: #fff;
  color: #171717;
}
.header.sticky .header__logo {
  display: none;
  z-index: -1;
}
.header.sticky .header__logo.sticky {
  display: block;
  z-index: 1;
}
.header.sticky .header__grid, .header.sticky .header__phone, .header.sticky .header__email {
  color: #171717;
}
.header.sticky .header__grid:hover, .header.sticky .header__phone:hover, .header.sticky .header__email:hover {
  color: var(--hover-color);
}
.header.sticky .header__email svg path {
  fill: #171717;
}
.header.sticky .header__nav.nav-two, .header.sticky .header__actions {
  border-color: #171717;
}
.header.sticky .search__form svg rect, .header.sticky .search__form svg line {
  stroke: #171717;
}
.header.sticky .search__btn:hover svg rect, .header.sticky .search__btn:hover svg path {
  stroke: var(--hover-color);
}
.header.sticky .search__form.show input[type=text] {
  border: 1px solid #171717;
}
.header.sticky .header-menu__item a, .header.sticky .header-menu__item button, .header.sticky .mobile-menu__item button {
  color: #171717;
}
.header.sticky .header-menu__item a:hover, .header.sticky .header-menu__item button:hover, .header.sticky .mobile-menu__item button:hover {
  color: var(--hover-color);
}
.header.sticky #mega-menu-wrap-top-two #mega-menu-top-two > li.mega-menu-item > a.mega-menu-link {
  color: #171717 !important;
}
.header.sticky #mega-menu-wrap-top-two #mega-menu-top-two > li.mega-menu-item > a.mega-menu-link:hover {
  color: var(--hover-color) !important;
}
.header.menu--active::after {
  left: 0;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media screen and (min-width: 1024px) {
  .header__container {
    padding-bottom: 0;
  }
}
.header__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  row-gap: 9px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  color: var(--light-color);
}
@media screen and (min-width: 1024px) {
  .header__grid {
    -ms-grid-columns: auto 3fr 1fr;
    grid-template-columns: auto 3fr 1fr;
  }
}
.header__logo {
  display: block;
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px;
  width: 50px;
  height: 50px;
}
.header__logo.sticky {
  display: none;
  z-index: -1;
}
.header__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.header__logo:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.header .mobile__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: var(--header-height);
  right: -102%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-transition: right 0.4s ease-in-out;
  transition: right 0.4s ease-in-out;
  background-color: var(--light-color);
  padding: 15px clamp(1.25rem, 0.682rem + 2.84vw, 2.5rem) 25px;
  width: 100%;
  min-width: 320px;
  max-width: 640px;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
}
.header .mobile__nav.menu--active {
  right: 0;
}
.header .mobile__nav button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 45px;
}
@media screen and (min-width: 1024) {
  .header .mobile__nav {
    display: none;
  }
}
.header .mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: auto;
}
.header .mobile-menu__item {
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid #d2d2d2;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header .mobile-menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  color: #1f1f1f;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: normal;
}
.header .mobile-menu__item a:hover {
  color: var(--hover-color);
}
.header .mobile-menu__item a:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.header .mobile-menu__item.menu-item-has-children button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 19px;
  right: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 20px;
  height: 20px;
}
.header .mobile-menu__item.menu-item-has-children.download-open .sub-menu {
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  padding-right: clamp(0.938rem, 0.653rem + 1.42vw, 1.563rem);
  padding-bottom: 0;
  padding-left: clamp(0.75rem, 0.523rem + 1.14vw, 1.25rem);
  height: auto;
  pointer-events: all;
}
.header .mobile-menu__item.menu-item-has-children.download-open .sub-menu .sub-item a {
  margin-top: 15px;
  margin-bottom: 15px;
}
.header .mobile-menu__item.menu-item-has-children.download-open button {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header .mobile-menu .sub-menu {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  min-width: 0;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .header .mobile-menu .sub-menu {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    width: 100%;
    height: 0;
  }
}
.header .mobile-menu .sub-menu .sub-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: 100%;
  color: #1f1f1f;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: var(--header-height);
  right: -102%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-transition: right 0.4s ease-in-out;
  transition: right 0.4s ease-in-out;
  background-color: var(--light-color);
  padding: clamp(1.5rem, 0.7rem + 2.13vw, 1.875rem) clamp(1.875rem, 1.307rem + 2.84vw, 3.125rem);
  min-width: 320px;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
}
.header__nav.nav-two {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  margin: 0;
  border-top: 1px solid var(--light-color);
  padding-top: 9px;
  padding-bottom: 9px;
  width: 100%;
  overflow: unset;
}
.header__nav.nav-two > div {
  width: 100%;
}
.header__nav.nav-two .header-menu {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
/*   gap: 65px; */
  width: 100%;
}
@media (min-width: 1024px) {
  .header__nav {
    position: relative;
    top: 0;
    right: 0;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
    gap: clamp(10px, -9rem + 7.83vw, 70px);
    margin-right: auto;
    margin-left: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    width: auto;
    max-width: 100%;
    height: auto;
    overflow: unset;
  }
}
.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(20px, 0.528rem + 3.08vw, 40px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .header-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: clamp(0.938rem, -5.704rem + 10.38vw, 1.625rem);
  }
}
.header-menu__item {
  position: relative;
}
.header-menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  margin: 0 auto;
  color: var(--light-color);
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  font-family: var(--font-family);
  letter-spacing: -0.05em;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .header-menu__item a {
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
}
.header-menu__item a:hover {
  color: var(--accent-color);
}
.header-menu__item a:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.header-menu__item.menu-item-has-children {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.header-menu__item.menu-item-has-children button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 20px;
  height: 20px;
  color: var(--light-color);
}
.header-menu__item.menu-item-has-children.download-open .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-box-shadow: 0 8px 24px -6px rgba(209, 215, 222, 0.4);
  box-shadow: 0 8px 24px -6px rgba(209, 215, 222, 0.4);
  border: 1px solid #eaedf2;
  border-radius: 8px;
  background: #f8f8f8;
  padding: clamp(0.938rem, 0.653rem + 1.42vw, 1.563rem);
  height: auto;
  pointer-events: all;
}
.header-menu__item.menu-item-has-children.download-open .sub-menu .sub-item a {
  margin-top: 15px;
  margin-bottom: 15px;
}
.header-menu__item.menu-item-has-children.download-open button {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  min-width: 300px;
  overflow: hidden;
  pointer-events: none;
  color: #1f1f1f;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .header-menu .sub-menu {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding-top: 0;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
    width: 100%;
    height: 0;
  }
}
.header-menu .sub-menu .sub-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: 100%;
  color: #1f1f1f;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
@media (any-hover: hover) {
  .header-menu .sub-menu .sub-item a:hover {
    padding-left: 15px;
    color: var(--hover-color);
  }
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 3;
  grid-column: 3;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .header__actions {
    border-left: 1px solid var(--light-color);
    padding-left: clamp(0.75rem, -5.288rem + 9.43vw, 1.375rem);
  }
}
.header .search__wrapper {
  display: none;
}
@media screen and (min-width: 567px) {
  .header .search__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
  }
}
.header .search__form {
  position: absolute;
  left: 30px;
  z-index: 5;
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
  background-color: transparent;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 1024px) {
  .header .search__form {
    right: 30px;
    left: initial;
  }
}
.header .search__form input[type=text] {
  position: absolute;
  top: -3px;
  left: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  border: none;
  border-radius: 43px;
  background: #f6f6f6;
  padding: 0;
  width: 0;
  height: calc(100% + 6px);
  color: var(--text-color);
  font-size: 16px;
}
.header .search__form input[type=text]:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
@media screen and (min-width: 1024px) {
  .header .search__form input[type=text] {
    right: 0;
    left: initial;
  }
}
.header .search__form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: -30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 30px;
  height: 30px;
  color: var(--text-color);
}
.header .search__form label:hover svg line, .header .search__form label:hover svg rect {
  stroke: var(--accent-color);
}
@media screen and (min-width: 1024px) {
  .header .search__form label {
    right: -30px;
    left: initial;
  }
}
.header .search__form.show {
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
  width: 275px;
}
@media screen and (min-width: 631px) {
  .header .search__form.show {
    width: 455px;
  }
}
.header .search__form.show input[type=text] {
  visibility: visible;
  padding-right: 10px;
  padding-left: 10px;
  width: 100% !important;
}
.header .search__form.show input[type=text]:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.header__phone {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.7rem, 0.137rem + 2.08vw, 0.875rem);
  line-height: 110%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  text-align: center;
}
.header__phone:hover {
  color: var(--accent-color);
}
.header__phone:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.header__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
  font-weight: 500;
  font-size: clamp(0.7rem, 0.137rem + 2.08vw, 0.875rem);
  line-height: 110%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.header__email:hover {
  color: var(--accent-color);
}
.header__email:hover svg path {
  fill: var(--accent-color);
}
.header__email:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.header__socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
  width: clamp(1.688rem, 1.509rem + 0.76vw, 1.875rem);
  height: clamp(1.688rem, 1.509rem + 0.76vw, 1.875rem);
}
.header__socials a:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.header__socials a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__btn {
  position: relative;
  padding-top: 8.5px;
  padding-bottom: 8.5px;
  padding-left: 20px;
  font-size: 12px;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .header__btn {
    min-width: clamp(9.688rem, 9.33rem + 0.56vw, 10rem);
  }
}
.header__btn svg {
  width: clamp(0.5rem, 0.214rem + 0.45vw, 0.75rem);
  height: clamp(0.5rem, 0.214rem + 0.45vw, 0.75rem);
}
@media screen and (min-width: 630px) {
  .header__btn svg {
    position: absolute;
    top: 50%;
    right: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.header__btn svg path {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header__btn:hover svg path {
  fill: var(--light-color);
}
.header .burger-btn {
  --anim-menu-btn-width: 1em;
  --anim-menu-btn-gap: 0.25em;
  --anim-menu-btn-color: inherit;
  --anim-menu-btn-transition-duration: 0.2s;
  --anim-menu-btn-icon-size: 19px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 40px;
  background: #289440;
  width: clamp(2.625rem, 1.969rem + 2.8vw, 3.313rem);
  height: clamp(1.688rem, 1.27rem + 1.78vw, 2.125rem);
  color: var(--light-color);
}
@media (min-width: 1024px) {
  .header .burger-btn {
    display: none;
  }
}

.panel {
  position: fixed;
  top: -100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 44;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding-top: var(--header-height);
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

.panel__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  row-gap: 20px;
  border-radius: 15px;
  background-color: var(--light-color);
  padding: 25px 25px 25px 10px;
  height: calc(97vh - var(--header-height));
}

.panel__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 15px;
}

.panel__title {
  color: #1f1f1f;
  font-weight: 800;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.panel__title.two {
  margin-left: 220px;
}

.panel__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  width: 23px;
  height: 23px;
}
@media (any-hover: hover) {
  .panel__close:hover {
    color: var(--hover-color);
  }
}

.panel_open {
  top: 0;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.panel__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: auto;
}
.panel__nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  padding: 4px 15px;
  width: 300px;
  max-height: calc(85vh - var(--header-height));
  overflow-x: hidden;
  overflow-y: auto;
}
.panel__nav > ul > li {
  position: relative;
}
.panel__nav > ul > li:hover::after {
  position: absolute;
  z-index: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  inset: -4px -12px;
  border-radius: 10px;
  background-color: #f0f0f0;
  content: "";
}
.panel__nav > ul > li a {
  position: relative;
  z-index: 1;
  color: #1f1f1f;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: left;
}

.panel-submenu__wrapper {
  position: relative;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  padding-left: 20px;
  max-height: calc(85vh - var(--header-height));
  overflow: hidden;
}
.panel-submenu__wrapper .panel-menu {
  display: none;
}
.panel-submenu__wrapper .panel-submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 20px;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin: 0;
  padding: 0;
  padding: 4px 15px;
  width: 100%;
  width: 845px;
  max-height: 100%;
  pointer-events: none;
}
.panel-submenu__wrapper .panel-submenu.--open {
  top: 0;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.panel-submenu__wrapper .panel-submenu > li {
  position: relative;
  max-width: 84ch;
}
.panel-submenu__wrapper .panel-submenu > li:hover::after {
  position: absolute;
  z-index: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  inset: -4px -15px;
  border-radius: 10px;
  background-color: #f0f0f0;
  width: 100%;
  content: "";
}
.panel-submenu__wrapper .panel-submenu > li a {
  position: relative;
  z-index: 1;
  color: #1f1f1f;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
  text-align: left;
}

.section-hero {
  --min-height-hero: clamp(
    45.625rem,
    35.313rem + 51.56vw,
    55.938rem
  );
  position: relative;
  background-color: #0e3725;
  padding: 0;
  width: 100%;
  min-height: var(--min-height-hero);
  color: var(--light-color);
}
@media screen and (min-width: 641px) {
  .section-hero {
    --min-height-hero: 895px;
  }
}
@media screen and (min-width: 768px) {
  .section-hero {
    --min-height-hero: 792px;
  }
}
.section-hero__wrapper {
  position: absolute;
  inset: 0;
  background: var(--small-kartinka);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 425px) {
  .section-hero__wrapper {
    background-position: center bottom;
  }
}
@media screen and (min-width: 640px) {
  .section-hero__wrapper {
    background: var(--mob-kartinka);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .section-hero__wrapper {
    background: var(--kartinka);
    background-position: -740px 20px;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 840px) {
  .section-hero__wrapper {
    background-position: -690px 20px;
  }
}
@media screen and (min-width: 890px) {
  .section-hero__wrapper {
    background-position: -630px 20px;
  }
}
@media screen and (min-width: 960px) {
  .section-hero__wrapper {
    background-position: -560px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .section-hero__wrapper {
    background-position: -480px bottom;
  }
}
@media screen and (min-width: 1124px) {
  .section-hero__wrapper {
    background-position: -420px bottom;
  }
}
@media screen and (min-width: 1200px) {
  .section-hero__wrapper {
    background-position: -320px bottom;
  }
}
@media screen and (min-width: 1300px) {
  .section-hero__wrapper {
    background-position: -250px bottom;
  }
}
@media screen and (min-width: 1400px) {
  .section-hero__wrapper {
    background-position: -150px bottom;
  }
}
@media screen and (min-width: 1500px) {
  .section-hero__wrapper {
    background-position: center;
  }
}
.section-hero__wrapper--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  inset: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.section-hero__wrapper--image svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.section-hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 4;
  padding-top: calc(var(--header-height) + clamp(1.25rem, -0.568rem + 9.09vw, 3.125rem));
  padding-bottom: clamp(1.25rem, -0.917rem + 9.24vw, 5rem);
}
.section-hero__grid {
  --mar-top-three: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: minmax(160px, 0.5fr) (-webkit-min-content)[3] 1fr;
  -ms-grid-rows: minmax(160px, 0.5fr) (min-content)[3] 1fr;
  grid-template-rows: minmax(160px, 0.5fr) repeat(3, -webkit-min-content) 1fr;
  grid-template-rows: minmax(160px, 0.5fr) repeat(3, min-content) 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  gap: clamp(0.938rem, -0.389rem + 5.66vw, 1.875rem);
}
@media screen and (min-width: 425px) {
  .section-hero__grid {
    -ms-grid-rows: minmax(125px, 0.4fr) (-webkit-min-content)[3] 1.5fr;
    -ms-grid-rows: minmax(125px, 0.4fr) (min-content)[3] 1.5fr;
    grid-template-rows: minmax(125px, 0.4fr) repeat(3, -webkit-min-content) 1.5fr;
    grid-template-rows: minmax(125px, 0.4fr) repeat(3, min-content) 1.5fr;
  }
}
@media screen and (min-width: 567px) {
  .section-hero__grid {
    -ms-grid-rows: auto auto auto 1fr;
    grid-template-rows: auto auto auto 1fr;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 992px) {
  .section-hero__grid {
    -ms-grid-rows: 1fr auto auto 1fr;
    grid-template-rows: 1fr auto auto 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.section-hero__title {
  --size-avatar: clamp(1.813rem, 1.276rem + 2.29vw, 2.375rem);
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  align-self: flex-end;
  will-change: max-width, font-size;
  width: 100%;
  color: #fff;
  color: var(--light-color);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.458rem + 1.46vw, 2.625rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: auto;
}
.section-hero__title span {
  color: var(--accent-color);
}
@media screen and (min-width: 567px) {
  .section-hero__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    max-width: 30ch;
  }
}
@media screen and (min-width: 768px) {
  .section-hero__title {
    -ms-grid-column: 1;
    grid-column: 1;
    max-width: 17ch;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .section-hero__title.element-animation {
    -webkit-transform: translate(-80px, -20px);
    -ms-transform: translate(-80px, -20px);
    transform: translate(-80px, -20px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-hero__title.element-animation.element-show {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-hero__title.element-animation {
    -webkit-transform: translate(-100px, -40px);
    -ms-transform: translate(-100px, -40px);
    transform: translate(-100px, -40px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-hero__title.element-animation {
    -webkit-transform: translate(-140px, -60px);
    -ms-transform: translate(-140px, -60px);
    transform: translate(-140px, -60px);
  }
}
.section-hero__title .title-avatars {
  display: none;
}
@media screen and (min-width: 640px) {
  .section-hero__title .title-avatars {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: calc(var(--size-avatar) / 3);
    width: calc(var(--counter) * var(--size-avatar) * 0.75);
    height: var(--size-avatar);
  }
}
.section-hero__title .title-avatars img {
  position: absolute;
  top: 5px;
  left: calc(var(--count) * var(--size-avatar) / 1.5);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100%;
  width: var(--size-avatar);
  height: var(--size-avatar);
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
@media (prefers-reduced-motion: no-preference) {
  .section-hero__title .title-avatars.element-animation {
    -webkit-transform: translateX(80px);
    -ms-transform: translateX(80px);
    transform: translateX(80px);
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-hero__title .title-avatars.element-animation.element-show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-hero__title .title-avatars.element-animation {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-hero__title .title-avatars.element-animation {
    -webkit-transform: translateX(140px);
    -ms-transform: translateX(140px);
    transform: translateX(140px);
  }
}
.section-hero__subtitle {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  margin: 0;
  max-width: 45ch;
  color: #fff;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.219rem + 2.26vw, 1.125rem);
  line-height: 95%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-wrap: auto;
}
@media screen and (min-width: 567px) {
  .section-hero__subtitle {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
@media screen and (min-width: 992px) {
  .section-hero__subtitle {
    max-width: 37ch;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .section-hero__subtitle.element-animation {
    -webkit-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    transform: translateX(-80px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-hero__subtitle.element-animation.element-show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-hero__subtitle.element-animation {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-hero__subtitle.element-animation {
    -webkit-transform: translateX(-140px);
    -ms-transform: translateX(-140px);
    transform: translateX(-140px);
  }
}
.section-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  margin-top: 0;
}
@media screen and (min-width: 567px) {
  .section-hero__actions {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
@media screen and (min-width: 992px) {
  .section-hero__actions {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
  }
}
.section-hero .btn {
  margin-top: 0;
  min-width: 220px;
}
@media screen and (min-width: 567px) {
  .section-hero .btn {
    min-width: 30vw;
  }
}
@media screen and (min-width: 992px) {
  .section-hero .btn {
    min-width: 220px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .section-hero .btn.element-animation {
    -webkit-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    transform: translateX(-80px);
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-hero .btn.element-animation.element-show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-hero .btn.element-animation {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-hero .btn.element-animation {
    -webkit-transform: translateX(-140px);
    -ms-transform: translateX(-140px);
    transform: translateX(-140px);
  }
}
.section-hero__link {
  display: none;
}
@media screen and (min-width: 425px) {
  .section-hero__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color: var(--light-color);
    font-weight: 500;
    font-size: 15px;
    line-height: 94%;
    font-family: var(--second-family);
    letter-spacing: -0.02em;
  }
  .section-hero__link::after {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: url(../img/icons/arrow.svg) no-repeat center/contain;
    width: 21px;
    height: 16px;
    content: "";
  }
  .section-hero__link:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  .section-hero__link:hover::after {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  .section-hero__link:focus-visible {
    outline: 2px solid #a0c708;
    outline-offset: 2px;
  }
}
@media screen and (min-width: 425px) and (prefers-reduced-motion: no-preference) {
  .section-hero__link.element-animation {
    -webkit-transform: translateX(80px);
    -ms-transform: translateX(80px);
    transform: translateX(80px);
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-hero__link.element-animation.element-show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (min-width: 425px) and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-hero__link.element-animation {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@media screen and (min-width: 425px) and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-hero__link.element-animation {
    -webkit-transform: translateX(140px);
    -ms-transform: translateX(140px);
    transform: translateX(140px);
  }
}
.section-hero__image {
  position: relative;
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}
@media screen and (min-width: 567px) {
  .section-hero__image {
    -ms-grid-row: 2;
    -ms-grid-row-span: 4;
    grid-row: 2/6;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (min-width: 992px) {
  .section-hero__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1/5;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-hero__image img {
  --small: calc(var(--size-width-image) / 2.5);
  --tablet: calc(var(--size-width-image));
  position: absolute;
  bottom: -4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  aspect-ratio: var(--size-width-image)/var(--size-height-image);
  width: clamp(var(--small), 34vw, var(--tablet));
  height: auto;
}
@media screen and (min-width: 567px) {
  .section-hero__image img {
    right: -35%;
    bottom: -9%;
    left: unset;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: calc(var(--size-width-image) / 1.5);
  }
}
@media screen and (min-width: 768px) {
  .section-hero__image img {
    right: -20%;
  }
}
@media screen and (min-width: 992px) {
  .section-hero__image img {
    width: calc(var(--size-width-image) / 1.2);
  }
}
@media screen and (min-width: 1100px) {
  .section-hero__image img {
    right: -13%;
    bottom: -8%;
    left: unset;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: calc(var(--size-width-image) / 1.2);
  }
}
@media screen and (min-width: 1280px) {
  .section-hero__image img {
    right: -22%;
    bottom: -14%;
    width: var(--size-width-image);
  }
}
.section-hero .hero-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: var(--min-height-hero);
}
.section-hero .hero-slider .swiper-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.section-hero .hero-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: auto;
}
.section-hero__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  bottom: 0;
  left: 0;
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  width: 100%;
}
@media screen and (min-width: 567px) {
  .section-hero__benefits {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  .section-hero__benefits {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 45px;
    margin-top: auto;
  }
}
.section-hero__benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-hero__benefit .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--light-color);
  width: clamp(1.875rem, 1.344rem + 2.26vw, 2.25rem);
  height: clamp(1.875rem, 1.344rem + 2.26vw, 2.25rem);
}
.section-hero__benefit .icon img,
.section-hero__benefit .icon svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.section-hero__benefit-title {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.485rem + 1.13vw, 0.938rem);
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}

.section-services {
  background-color: var(--light-color);
}
.section-services .section-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
}
.section-services__title {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
.section-services__subtitle {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
}
.section-services__grid {
  padding-left: max((100% - var(--content-width)) / 2 - 10px, var(--content-offset));
}
.section-services .swiper-navigation {
  display: none;
}
@media screen and (min-width: 640px) {
  .section-services .swiper-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.section-services .swiper-navigation .services-button-prev,
.section-services .swiper-navigation .services-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.section-services .swiper-navigation .services-button-prev:focus-visible,
.section-services .swiper-navigation .services-button-next:focus-visible {
  outline: none;
}
.section-services .swiper-navigation .services-button-prev.swiper-button-disabled,
.section-services .swiper-navigation .services-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
}
.section-services .swiper-navigation .services-button-prev:not(.swiper-button-disabled):hover svg path,
.section-services .swiper-navigation .services-button-next:not(.swiper-button-disabled):hover svg path {
  fill: var(--accent-color);
}
.section-services .services-slider {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}
.section-services .services-slider .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  justify-items: center;
}
.section-services .service-item {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: auto auto 1fr;
  grid-template-rows: auto auto 1fr;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  gap: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: -webkit-grab;
  cursor: pointer;
  border-radius: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#215747), to(#208d8b));
  background: linear-gradient(180deg, #215747 0%, #208d8b 100%);
  padding: clamp(0.938rem, 0.682rem + 1.09vw, 1.5rem) clamp(0.938rem, 0.682rem + 1.09vw, 1.5rem) clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem) clamp(0.938rem, 0.568rem + 1.58vw, 1.75rem);
  max-width: 347px;
  min-height: 420px;
  overflow: hidden;
  color: var(--light-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (any-hover: hover) {
  .section-services .service-item:hover {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
  }
}
.section-services .service-item__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.section-services .service-item__counter span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100%;
  background-color: var(--light-color);
  width: 7px;
  height: 7px;
}
.section-services .service-item__counter span.active {
  background-color: #103028;
}
.section-services .service-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 100%;
  background-color: var(--light-color);
  width: 49px;
  height: 49px;
}
.section-services .service-item__link .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
}
.section-services .service-item__link .icon svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-services .service-item__title {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  font-weight: 600;
  font-size: 18px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-services .service-item__description {
  position: relative;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  opacity: 0.72;
  z-index: 1;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
	height: 46px;
}
.section-services .service-item__image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  border-bottom-right-radius: 15px;
  width: auto;
  height: 200px;
}
.section-services .service-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center right;
  object-position: center right;
}

.section-benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  row-gap: clamp(6.25rem, 3.971rem + 9.72vw, 10rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#215949), to(#208b89));
  background: linear-gradient(180deg, #215949 0%, #208b89 100%);
  padding-top: clamp(5.313rem, 4.933rem + 1.62vw, 5.938rem);
  padding-bottom: clamp(3.75rem, 2.42rem + 5.67vw, 5.938rem);
}
.section-benefits .benefits-wrapper,
.section-benefits .quiz-wrapper {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-benefits .benefits-wrapper::after,
.section-benefits .quiz-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: -60px clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) -40px;
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-benefits .benefits-wrapper .container,
.section-benefits .quiz-wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-benefits .benefits-wrapper .container,
  .section-benefits .quiz-wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-benefits__grid {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 30px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .section-benefits__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.section-benefits .section-top {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  margin: 0;
}
.section-benefits__subtitle {
  margin-bottom: 0;
}
.section-benefits__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(7.5rem, 1.548rem + 29.76vw, 20rem), 1fr));
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .section-benefits__list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
.section-benefits .item-benefits .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  width: 30px;
  height: 30px;
}
.section-benefits .item-benefits .icon svg,
.section-benefits .item-benefits .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.section-benefits .item-benefits__title {
  max-width: 12ch;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 20px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-benefits .item-benefits__text {
  opacity: 0.72;
  margin-top: 10px;
  max-width: 20ch;
  color: var(--title-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-benefits__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .section-benefits__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-benefits__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .section-benefits__image img {
    position: absolute;
    right: -15%;
    bottom: 0;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.section-benefits .quiz {
  overflow: hidden;
}
.section-benefits .quiz-wrapper::after {
  inset: -40px clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) -35px;
}
.section-benefits .quiz__grid {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: 1fr 180px;
  grid-template-rows: 1fr 180px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .section-benefits .quiz__grid {
    -ms-grid-rows: 1fr 175px;
    grid-template-rows: 1fr 175px;
  }
}
@media screen and (min-width: 547px) {
  .section-benefits .quiz__grid {
    -ms-grid-rows: 1fr 280px;
    grid-template-rows: 1fr 280px;
  }
}
@media screen and (min-width: 640px) {
  .section-benefits .quiz__grid {
    -ms-grid-rows: 1fr 320px;
    grid-template-rows: 1fr 320px;
  }
}
@media screen and (min-width: 1024px) {
  .section-benefits .quiz__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 0.8fr 1fr;
    grid-template-columns: 0.8fr 1fr;
  }
}
.section-benefits .quiz__image {
  position: absolute;
  bottom: -15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 300px;
}
@media screen and (min-width: 375px) {
  .section-benefits .quiz__image {
    bottom: -14%;
  }
}
@media screen and (min-width: 547px) {
  .section-benefits .quiz__image {
    bottom: -22%;
    width: 470px;
  }
}
@media screen and (min-width: 640px) {
  .section-benefits .quiz__image {
    bottom: -24%;
    width: 570px;
  }
}
@media screen and (min-width: 1024px) {
  .section-benefits .quiz__image {
    top: 40%;
    bottom: initial;
    left: -7%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 570px;
  }
}
.section-benefits .quiz__item {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
.section-benefits .quiz__item button {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .section-benefits .quiz__item button {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .section-benefits .quiz__item {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-benefits .quiz__title {
  margin-bottom: 15px;
  color: #2a2a2a;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.534rem + 1.46vw, 2.563rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-benefits .quiz__title span {
  color: var(--accent-color);
	display: block;
}
@media (prefers-reduced-motion: no-preference) {
  .section-benefits .quiz__title.element-animation {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-benefits .quiz__title.element-animation.element-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-benefits .quiz__title.element-animation {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-benefits .quiz__title.element-animation {
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}
.section-benefits .quiz__subtitle {
  opacity: 0.88;
  margin-bottom: 32px;
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}

.section-about {
  background-color: var(--light-color);
}
.section-about__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 992px) {
  .section-about__grid {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
  }
}
.section-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.section-about__content button {
  margin-right: auto;
  margin-left: auto;
  min-width: 235px;
}
@media screen and (min-width: 992px) {
  .section-about__content button {
    margin-top: 25px;
    margin-right: 0;
    margin-left: 0;
  }
}
.section-about__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 15px;
  aspect-ratio: 530/317;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .section-about__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
    max-width: clamp(30rem, 1.296rem + 46.3vw, 33.125rem);
  }
}
.section-about__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.section-certificates {
  background-color: var(--light-color);
}
.section-certificates .section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 567px) {
  .section-certificates .section-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 45px;
  }
}
.section-certificates__grid {
  height: auto;
}
.section-certificates .swiper-navigation {
  display: none;
}
@media screen and (min-width: 567px) {
  .section-certificates .swiper-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-left: auto;
  }
}
.section-certificates .swiper-navigation .certificates-button-prev,
.section-certificates .swiper-navigation .certificates-button-next {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  width: 55px;
}
.section-certificates .swiper-navigation .certificates-button-prev.swiper-button-disabled,
.section-certificates .swiper-navigation .certificates-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
}
.section-certificates .swiper-navigation .certificates-button-prev:not(.swiper-button-disabled):hover svg path,
.section-certificates .swiper-navigation .certificates-button-next:not(.swiper-button-disabled):hover svg path {
  fill: var(--accent-color);
}
.section-certificates .swiper-navigation .certificates-button-prev {
  display: none;
}
.section-certificates .certificates-slider .certificates-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-certificates .certificates-slider .certificates-item img {
  width: 255px;
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-reviews {
  background: -webkit-gradient(linear, left top, left bottom, from(#215949), to(#208b89));
  background: linear-gradient(180deg, #215949 0%, #208b89 100%);
}
.section-reviews__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-reviews .reviews-slider {
  padding-left: 20px;
}
.section-reviews .reviews-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: -webkit-grab;
  cursor: grab;
  border-radius: 15px;
  background: #fff;
  padding: clamp(0.938rem, 0.193rem + 3.72vw, 2.5rem) clamp(0.938rem, 0.045rem + 4.46vw, 2.813rem) clamp(0.938rem, 0.491rem + 2.23vw, 1.875rem);
  width: 100%;
  max-width: 420px;
}
.section-reviews .reviews-item__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.section-reviews .reviews-item__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.section-reviews .reviews-item__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}
.section-reviews .reviews-item__name {
  color: var(--text-color);
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  font-family: var(--third-family);
  letter-spacing: -0.02em;
}
.section-reviews .reviews-item__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 11px;
  -moz-column-gap: 11px;
  column-gap: 11px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-reviews .reviews-item__rating span:not(svg) {
  opacity: 0.41;
  color: var(--text-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.section-reviews .reviews-item__rating .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-reviews .reviews-item__rating .stars span {
  opacity: 1;
}
.section-reviews .reviews-item__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section-reviews .reviews-item__text p {
  margin: 0;
}
.section-reviews .reviews-item__link {
  position: relative;
  opacity: 0.41;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--text-color);
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.section-reviews .reviews-item__link::after {
  position: absolute;
  inset: -4px;
  content: "";
}
.section-reviews .reviews-item__link:hover {
  opacity: 1;
}
.section-reviews .reviews-item__link:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}

.section-partnerscarousel {
  --item-width: clamp(10.938rem, 6.189rem + 20.26vw, 18.75rem);
  --item-height: clamp(5rem, 0.442rem + 19.45vw, 12.5rem);
  background-color: var(--light-color);
  padding-bottom: 20px;
}
.section-partnerscarousel .section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.section-partnerscarousel .swiper-navigation {
  display: none;
}
@media screen and (min-width: 640px) {
  .section-partnerscarousel .swiper-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.section-partnerscarousel .swiper-navigation .partner-button-prev,
.section-partnerscarousel .swiper-navigation .partner-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.section-partnerscarousel .swiper-navigation .partner-button-prev:focus-visible,
.section-partnerscarousel .swiper-navigation .partner-button-next:focus-visible {
  outline: none;
}
.section-partnerscarousel .swiper-navigation .partner-button-prev.swiper-button-disabled,
.section-partnerscarousel .swiper-navigation .partner-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
}
.section-partnerscarousel .swiper-navigation .partner-button-prev:not(.swiper-button-disabled):hover svg path,
.section-partnerscarousel .swiper-navigation .partner-button-next:not(.swiper-button-disabled):hover svg path {
  fill: var(--accent-color);
}
.section-partnerscarousel .swiper-navigation .partner-button-prev {
  display: none;
}
.section-partnerscarousel__grid {
  position: relative;
  margin: auto;
  max-height: var(--item-height);
}
.section-partnerscarousel__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: var(--item-height);
  grid-template-rows: var(--item-height);
  grid-auto-flow: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.section-partnerscarousel__item {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  cursor: -webkit-grab;
  cursor: grab;
  border-radius: 10px;
  background: var(--light-color);
  width: var(--item-width);
  height: 100%;
  font-size: 22px;
  line-height: 1.1;
  font-family: var(--font-merri);
  white-space: nowrap;
}
.section-partnerscarousel__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.section-news {
  background-color: var(--light-color);
  padding-top: clamp(0.938rem, 0.193rem + 3.72vw, 2.5rem);
}
.section-news .section-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-news .swiper-navigation {
  display: none;
}
@media screen and (min-width: 640px) {
  .section-news .swiper-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.section-news .swiper-navigation .news-button-prev,
.section-news .swiper-navigation .news-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.section-news .swiper-navigation .news-button-prev:focus-visible,
.section-news .swiper-navigation .news-button-next:focus-visible {
  outline: none;
}
.section-news .swiper-navigation .news-button-prev.swiper-button-disabled,
.section-news .swiper-navigation .news-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
}
.section-news .swiper-navigation .news-button-prev:not(.swiper-button-disabled):hover svg path,
.section-news .swiper-navigation .news-button-next:not(.swiper-button-disabled):hover svg path {
  fill: var(--accent-color);
}
.section-news .swiper-navigation .news-button-prev {
  display: none;
}
.section-news__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 20px;
}
@media screen and (min-width: 640px) {
  .section-news__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.section-news .news-slider .swiper-wrapper {
/*   display: -ms-grid;
  display: grid; */
  display: flex;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
}
.section-news .news-slider .swiper-slide {
  height: auto !important;
}
.section-news .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: -webkit-grab;
  cursor: grab;
  border-radius: 15px;
  background: #f4f4f4;
  padding: 15px 17px;
  min-width: 280px;
  height: 100%;
}
.section-news .news-item__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
  background: #e1e1e1;
  aspect-ratio: 350/167;
  width: 100%;
  overflow: hidden;
}
.section-news .news-item__image:hover {
  -webkit-box-shadow: 0 2px 12px rgb(156, 197, 11);
  box-shadow: 0 2px 12px rgb(156, 197, 11);
}
.section-news .news-item__image:hover img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
.section-news .news-item__image img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section-news .news-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 10px;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.section-news .news-item__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.section-news .news-item__link:hover .news-item__title {
  color: var(--accent-color);
}
.section-news .news-item__title {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-width: 35ch;
  color: #282828;
  font-weight: 600;
  font-size: 18px;
  line-height: 136%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.section-news .news-item .text-block, .section-news .news-item .text-block h2, .section-news .news-item .text-block h3, .section-news .news-item .text-block p {
  display: -webkit-box;
/*   opacity: 0.58; */
  margin-bottom: auto;
  -webkit-line-clamp: 5;
  color: #595959;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 136%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  -webkit-box-orient: vertical;
  margin-top: 0;
  overflow: hidden;
}
.section-news .news-item .text-block {
	overflow: hidden;
      text-overflow: ellipsis;
      display: -moz-box;
      -moz-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      line-clamp: 3;
      box-orient: vertical;
	height: 60px;
}
.section-news .news-item__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
  width: 100%;
}
.section-news .news-item time, .section-news .news-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  opacity: 0.58;
  color: #595959;
  font-weight: 400;
  font-size: 14px;
  line-height: 136%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}

.page__news .news-item {
  cursor: auto;
}

.section-team {
  --mbottom-after: calc(clamp(1.2rem, -0.347rem + 5.56vw, 3.125rem) * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  row-gap: clamp(5.313rem, -3.021rem + 20.83vw, 10rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#215949), to(#208b89));
  background: linear-gradient(180deg, #215949 0%, #208b89 100%);
  padding-top: clamp(4.063rem, -5.382rem + 23.61vw, 9.375rem);
  padding-bottom: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
}
.section-team .team-wrapper,
.section-team .order-wrapper {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-team .team-wrapper::after,
.section-team .order-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-team .team-wrapper .container,
.section-team .order-wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-team .team-wrapper .container,
  .section-team .order-wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-team .order__grid {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: 1fr clamp(14.688rem, 2.307rem + 61.9vw, 18.75rem);
  grid-template-rows: 1fr clamp(14.688rem, 2.307rem + 61.9vw, 18.75rem);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}
@media screen and (min-width: 425px) {
  .section-team .order__grid {
    -ms-grid-rows: 1fr 300px;
    grid-template-rows: 1fr 300px;
  }
}
@media screen and (min-width: 567px) {
  .section-team .order__grid {
    -ms-grid-rows: 1fr 400px;
    grid-template-rows: 1fr 400px;
  }
}
@media screen and (min-width: 992px) {
  .section-team .order__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 0.8fr 1fr;
    grid-template-columns: 0.8fr 1fr;
  }
}
.section-team .order__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .section-team .order__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-team .order__image picture {
  display: block;
  margin-top: auto;
}
.section-team .order__image img {
  position: absolute;
  bottom: var(--mbottom-after);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  aspect-ratio: 44/42;
  width: clamp(16.25rem, 1.964rem + 71.43vw, 20.938rem);
  height: auto;
}
@media screen and (min-width: 567px) {
  .section-team .order__image img {
    width: 445px;
  }
}
@media screen and (min-width: 992px) {
  .section-team .order__image img {
    left: 46%;
  }
}
.section-team .order__content {
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 992px) {
  .section-team .order__content {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-team .order__title {
  max-width: 25ch;
  color: #2a2a2a;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.534rem + 1.46vw, 2.563rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: auto;
}
.section-team .order__title span {
  color: var(--accent-color);
}
.section-team .order__title.element-animation {
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
  transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
  -webkit-transition-delay: var(--anime-delay);
  transition-delay: var(--anime-delay);
}
.section-team .order__title.element-animation.element-show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .section-team .order__title.element-animation {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@media screen and (min-width: 1200px) {
  .section-team .order__title.element-animation {
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}
.section-team .order__subtitle {
  opacity: 0.88;
  max-width: 40ch;
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-team .order__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;
}
@media screen and (min-width: 567px) {
  .section-team .order__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .section-team .order__actions {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
  }
}
.section-team .order__actions button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (min-width: 992px) {
  .section-team .order__actions button {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 233px;
    flex: 0 1 233px;
  }
}
.section-team__container {
  position: relative;
  z-index: 1;
}
.section-team__grid {
  --size-avatar: clamp(8rem, 1rem + 35.94vw, 15.938rem);
  display: -ms-grid;
  display: grid;
  row-gap: 100px;
}
.section-team__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--size-avatar), 1fr));
  justify-items: center;
  gap: clamp(0.5rem, -0.561rem + 4.53vw, 1.25rem);
}
.section-team .team-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: var(--size-avatar);
  text-align: center;
}
.section-team .team-card__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 20px;
  border-radius: 100%;
  background-color: #d9d9d9;
  width: var(--size-avatar);
  height: var(--size-avatar);
  overflow: hidden;
}
.section-team .team-card__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.section-team .team-card__name {
  opacity: 0.88;
  margin-bottom: 12px;
  color: #232323;
  font-weight: 700;
  font-size: 20px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-team .team-card__position {
  display: inline-block;
  opacity: 0.88;
  max-width: 15ch;
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-align: center;
}
.section-team .contacts {
  border-radius: 15px;
  padding: clamp(0.938rem, -0.051rem + 3.72vw, 1.438rem) clamp(0rem, -3.538rem + 15.09vw, 2.5rem) clamp(0rem, -3.538rem + 15.09vw, 2.5rem);
}
@media screen and (min-width: 640px) {
  .section-team .contacts {
    background: #f7f7f7;
  }
}
@media screen and (min-width: 1024px) {
  .section-team .contacts {
    padding: 23px 19px 19px;
    padding-left: clamp(1.563rem, -12.983rem + 22.73vw, 4.063rem);
  }
}
.section-team .contacts__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1.875rem, 1.153rem + 3.08vw, 3.125rem);
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section-team .contacts__grid {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
  }
}
.section-team .contacts__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 30px;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 1024px) {
  .section-team .contacts__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.section-team .contacts__title {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  color: #000;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.433rem + 1.89vw, 2.188rem);
  line-height: 100%;
  font-family: var(--second-family);
  text-align: left;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .section-team .contacts__title {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-team .contacts__title span {
  color: var(--accent-color);
}
@media (prefers-reduced-motion: no-preference) {
  .section-team .contacts__title.element-animation {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-team .contacts__title.element-animation.element-show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-team .contacts__title.element-animation {
    -webkit-transform: translateX(-60px);
    -ms-transform: translateX(-60px);
    transform: translateX(-60px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-team .contacts__title.element-animation {
    -webkit-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    transform: translateX(-80px);
  }
}
.section-team .contacts__address {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media screen and (min-width: 1024px) {
  .section-team .contacts__address {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-team .contacts__phones {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 2;
  grid-column: 2;
}
@media screen and (min-width: 1024px) {
  .section-team .contacts__phones {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-team .contacts__address address, .section-team .contacts__phones address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-style: normal;
}
.section-team .contacts__address address span, .section-team .contacts__phones address span {
  opacity: 0.33;
  color: #000;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.573rem + 0.75vw, 0.875rem);
  line-height: 130%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-team .contacts__address address span:nth-of-type(2), .section-team .contacts__phones address span:nth-of-type(2) {
  opacity: 1;
}
.section-team .contacts__address span, .section-team .contacts__phones span {
  display: block;
  opacity: 0.33;
  color: #000;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.573rem + 0.75vw, 0.875rem);
  line-height: 130%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-team .contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #181818;
  font-weight: 500;
  font-size: 12px;
  line-height: 110%;
  font-family: var(--second-family);
  letter-spacing: -0.05em;
}
@media screen and (min-width: 375px) {
  .section-team .contacts__link {
    font-size: 14px;
  }
}
.section-team .contacts__link:hover {
  color: var(--accent-color);
}
.section-team .contacts__link .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  background: #464646;
  width: 22px;
  height: 22px;
}
.section-team .contacts__link .icon svg {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}
.section-team .contacts__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  grid-row: 3/5;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  font-size: 10px;
}
@media screen and (min-width: 375px) {
  .section-team .contacts__text {
    font-size: clamp(0.75rem, 0.573rem + 0.75vw, 0.875rem);
  }
}
@media screen and (min-width: 1024px) {
  .section-team .contacts__text {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-team .contacts__search {
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 2;
  grid-column: 2;
}
@media screen and (min-width: 1024px) {
  .section-team .contacts__search {
    -ms-grid-row: 5;
    grid-row: 5;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-team .contacts__search .contacts__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000;
  font-weight: 500;
  font-size: 12px;
  line-height: 155%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
@media screen and (min-width: 375px) {
  .section-team .contacts__search .contacts__link {
    font-size: clamp(0.875rem, 0.698rem + 0.75vw, 1rem);
  }
}
.section-team .contacts__search .contacts__link:hover {
  color: var(--accent-color);
}
.section-team .contacts__map {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 1024px) {
  .section-team .contacts__map {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-team .contacts__map-wrapper {
  position: relative;
  border-radius: 15px;
  width: 100%;
  height: clamp(28.75rem, 26.005rem + 11.71vw, 33.5rem);
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .section-team .contacts__map-wrapper {
    width: clamp(37.5rem, -9.773rem + 73.86vw, 45.625rem);
    height: 420px;
  }
}
.section-team .contacts__map-wrapper img,
.section-team .contacts__map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.breadcrumbs {
  background-image: none !important;
}
.breadcrumbs a,
.breadcrumbs span:has(a) + .separ {
  opacity: 0.32;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  font-family: var(--font-family);
  letter-spacing: -0.05em;
}
.breadcrumbs a:hover {
  color: var(--accent-color);
}
.breadcrumbs .separ {
  margin-right: 3px;
  margin-left: 3px;
}

.section-hero-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: url(../img/hero/page/bg-hero-page.svg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
  padding-bottom: 45px;
  width: 100%;
  height: clamp(13.5rem, 11.584rem + 8.18vw, 18.125rem);
  color: var(--light-color);
}
@media screen and (min-width: 1280px) {
  .section-hero-page {
    background: url(../img/hero/page/bg-full.svg);
    background-position: center 40%;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.section-hero-page__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.section-hero-page__title {
  --size-avatar: clamp(1.813rem, 1.276rem + 2.29vw, 2.375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.875rem, 0.994rem + 3.76vw, 4rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-hero-page__title .title-avatars {
  display: none;
}
@media screen and (min-width: 375px) {
  .section-hero-page__title .title-avatars {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: calc(var(--size-avatar) * -1);
    width: calc(var(--counter) * var(--size-avatar) * 0.75);
    height: var(--size-avatar);
  }
  .section-hero-page__title .title-avatars img {
    position: absolute;
    left: calc(var(--count) * var(--size-avatar) / 1.5);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 100%;
    width: var(--size-avatar);
    height: var(--size-avatar);
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
  }
}

.section-about-page {
  background-color: var(--light-color);
}

.section-history {
  background-color: var(--light-color);
}
.section-history__grid {
  --gap-grid: 50px;
  --size-icon: 30px;
  display: -ms-grid;
  display: grid;
  position: relative;
  grid-auto-flow: row;
  gap: var(--gap-grid);
  padding-top: clamp(1.25rem, -2.083rem + 6.94vw, 3.125rem) !important;
}
@media screen and (min-width: 640px) {
  .section-history__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .section-history__grid::before {
    position: absolute;
    top: calc(var(--size-icon) + 5px);
    right: 0;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 30px;
    height: calc(50% + 8px);
    content: "";
  }
}
@media screen and (min-width: 992px) {
  .section-history__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  .section-history__grid::before {
    display: none;
  }
}
.section-history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px;
}
@media screen and (min-width: 640px) {
  .section-history__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-history__item:last-of-type {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .section-history__item:last-of-type::before {
    --left-before: 28px;
    position: absolute;
    top: calc(var(--size-icon) / 2);
    left: calc(var(--size-icon) - 1px);
    background: #000;
    width: calc(100% + var(--gap-grid) - var(--left-before) + 2px);
    height: 1px;
    content: "";
  }
}
@media screen and (min-width: 992px) {
  .section-history__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-history__item:last-of-type {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 4;
    grid-column: 4;
  }
  .section-history__item:last-of-type::before {
    display: none;
  }
}
.section-history__item:not(:last-of-type)::before {
  --left-before: 28px;
  position: absolute;
  top: var(--left-before);
  left: 14px;
  background: #000;
  width: 1px;
  height: calc(100% + var(--gap-grid) - var(--left-before) + 3px);
  content: "";
}
@media screen and (min-width: 640px) {
  .section-history__item:not(:last-of-type)::before {
    top: calc(var(--size-icon) / 2);
    left: calc(var(--size-icon) - 1px);
    width: calc(100% + var(--gap-grid) - var(--left-before) + 3px);
    height: 1px;
  }
}
@media screen and (min-width: 992px) {
  .section-history__item:not(:last-of-type)::before {
    top: 14px;
    left: var(--left-before);
    width: calc(100% + var(--gap-grid) - var(--left-before) + 3px);
    height: 1px;
  }
}
@media screen and (min-width: 640px) {
  .section-history__item:nth-of-type(2)::before, .section-history__item:nth-of-type(3)::before {
    width: calc(100% - 59px);
  }
}
@media screen and (min-width: 992px) {
  .section-history__item:nth-of-type(2)::before, .section-history__item:nth-of-type(3)::before {
    width: calc(100% + var(--gap-grid) - var(--left-before) + 3px);
  }
}
.section-history__item--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: var(--size-icon);
  height: var(--size-icon);
}
.section-history__item--title {
  color: var(--accent-color);
  font-weight: 600;
/*   font-size: clamp(1rem, 0.856rem + 0.62vw, 1.25rem); */
  font-size: 1rem;
  line-height: 100%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
/* @media screen and (min-width: 992px) {
  .section-history__item--title {
    max-width: 19ch;
  }
} */

.section-team-page {
  --mbottom-after: calc(clamp(1.2rem, -0.347rem + 5.85vw, 3.85rem) * -1);
  row-gap: clamp(1.875rem, 0.284rem + 7.95vw, 6.25rem);
  background: -webkit-gradient(linear, left top, left bottom, from(#215949), to(#208b89));
  background: linear-gradient(180deg, #215949 0%, #208b89 100%);
}
.section-team-page .team-wrapper::after {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.section-team-page .benefits-wrapper {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-team-page .benefits-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  background: var(--light-color);
  content: "";
}
.section-team-page .benefits-wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-team-page .benefits-wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-team-page .benefits-wrapper .item-benefits .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  width: 30px;
  height: 30px;
}
.section-team-page .benefits-wrapper .item-benefits .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.section-team-page .benefits-wrapper .item-benefits__title {
  max-width: 12ch;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 20px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-team-page .benefits-wrapper .item-benefits__text {
  opacity: 0.72;
  margin-top: 10px;
  max-width: 20ch;
  color: var(--title-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}

.section-reviews-page {
  --mbottom-after: calc(clamp(1.3rem, -0.347rem + 4.5vw, 2.5rem) * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 85px;
}
.section-reviews-page .contacts-wrapper {
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-reviews-page .contacts-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) 10px var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-reviews-page .contacts {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  padding: clamp(0.938rem, -0.051rem + 3.72vw, 1.438rem) clamp(0rem, -3.538rem + 15.09vw, 2.5rem) clamp(0rem, -3.538rem + 15.09vw, 2.5rem);
}
@media screen and (min-width: 640px) {
  .section-reviews-page .contacts {
    background: #f7f7f7;
  }
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts {
    padding: 23px 19px 19px;
    padding-left: clamp(1.563rem, -12.983rem + 22.73vw, 4.063rem);
  }
}
.section-reviews-page .contacts__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1.875rem, 1.153rem + 3.08vw, 3.125rem);
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts__grid {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
  }
}
.section-reviews-page .contacts__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 30px;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.section-reviews-page .contacts__title {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  color: #000;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.433rem + 1.89vw, 2.188rem);
  line-height: 100%;
  font-family: var(--second-family);
  text-align: left;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts__title {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-reviews-page .contacts__title span {
  color: var(--accent-color);
}
@media (prefers-reduced-motion: no-preference) {
  .section-reviews-page .contacts__title.element-animation {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translateX(-40px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-reviews-page .contacts__title.element-animation.element-show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-reviews-page .contacts__title.element-animation {
    -webkit-transform: translateX(-60px);
    -ms-transform: translateX(-60px);
    transform: translateX(-60px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-reviews-page .contacts__title.element-animation {
    -webkit-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    transform: translateX(-80px);
  }
}
.section-reviews-page .contacts__address {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts__address {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-reviews-page .contacts__phones {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 2;
  grid-column: 2;
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts__phones {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-reviews-page .contacts__address address, .section-reviews-page .contacts__phones address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-style: normal;
}
.section-reviews-page .contacts__address address span, .section-reviews-page .contacts__phones address span {
  opacity: 0.33;
  color: #000;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.573rem + 0.75vw, 0.875rem);
  line-height: 130%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-reviews-page .contacts__address address span:nth-of-type(2), .section-reviews-page .contacts__phones address span:nth-of-type(2) {
  opacity: 1;
}
.section-reviews-page .contacts__address span, .section-reviews-page .contacts__phones span {
  display: block;
  opacity: 0.33;
  color: #000;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.573rem + 0.75vw, 0.875rem);
  line-height: 130%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-reviews-page .contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #181818;
  font-weight: 500;
  font-size: 12px;
  line-height: 110%;
  font-family: var(--second-family);
  letter-spacing: -0.05em;
}
@media screen and (min-width: 375px) {
  .section-reviews-page .contacts__link {
    font-size: 14px;
  }
}
.section-reviews-page .contacts__link:hover {
  color: var(--accent-color);
}
.section-reviews-page .contacts__link .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  background: #464646;
  width: 22px;
  height: 22px;
}
.section-reviews-page .contacts__link .icon svg {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}
.section-reviews-page .contacts__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  grid-row: 3/5;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  font-size: 10px;
}
@media screen and (min-width: 375px) {
  .section-reviews-page .contacts__text {
    font-size: clamp(0.75rem, 0.573rem + 0.75vw, 0.875rem);
  }
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts__text {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-reviews-page .contacts__search {
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 2;
  grid-column: 2;
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts__search {
    -ms-grid-row: 5;
    grid-row: 5;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-reviews-page .contacts__search .contacts__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000;
  font-weight: 500;
  font-size: 12px;
  line-height: 155%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
@media screen and (min-width: 375px) {
  .section-reviews-page .contacts__search .contacts__link {
    font-size: clamp(0.875rem, 0.698rem + 0.75vw, 1rem);
  }
}
.section-reviews-page .contacts__search .contacts__link:hover {
  color: var(--accent-color);
}
.section-reviews-page .contacts__map {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts__map {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-reviews-page .contacts__map-wrapper {
  position: relative;
  border-radius: 15px;
  width: 100%;
  height: clamp(28.75rem, 26.005rem + 11.71vw, 33.5rem);
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .section-reviews-page .contacts__map-wrapper {
    width: clamp(37.5rem, -9.773rem + 73.86vw, 45.625rem);
    height: 420px;
  }
}
.section-reviews-page .contacts__map-wrapper img,
.section-reviews-page .contacts__map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-reviews-list {
  background: var(--light-color);
}
.section-reviews-list__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-reviews-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 5px;
  background: #f4f4f4;
  padding: clamp(0.938rem, 0.089rem + 4.24vw, 2.125rem) clamp(0.938rem, -0.402rem + 6.7vw, 2.813rem);
}
.section-reviews-list__item-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.section-reviews-list__item-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  background: #d9d9d9;
  width: 65px;
  height: 65px;
  overflow: hidden;
}
.section-reviews-list__item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.section-reviews-list__item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .section-reviews-list__item-heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}
.section-reviews-list__item-author {
  color: #191919;
  font-weight: 600;
  font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
  line-height: 140%;
  font-family: var(--third-family);
  letter-spacing: -0.02em;
}
.section-reviews-list__item-opisanie {
  margin: 0;
  color: #444;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.section-reviews-list__item-content {
  margin: 0;
}

.section-team-contacts {
  background: var(--light-color);
}
.section-team-contacts .section-top {
  -ms-grid-row: 2;
  grid-row: 2;
}
.section-team-contacts .section-team__list {
  -ms-grid-row: 3;
  grid-row: 3;
}

.section-forms {
  --mbottom-after: calc(clamp(1.2rem, -0.347rem + 5.56vw, 3.125rem) * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
  padding-bottom: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
}
.section-forms .order-wrapper {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-forms .order-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-forms .order-wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-forms .order-wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-forms .order__grid {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: 1fr clamp(11.25rem, 3.214rem + 40.18vw, 28.125rem);
  grid-template-rows: 1fr clamp(11.25rem, 3.214rem + 40.18vw, 28.125rem);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1.875rem, 1.153rem + 3.08vw, 3.125rem);
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .section-forms .order__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.section-forms .order__grid .wpforms-form {
  max-width: 435px;
}
.section-forms .order__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .section-forms .order__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-forms .order__image picture {
  display: block;
  height: 100%;
}
.section-forms .order__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 62/51;
  width: clamp(17.5rem, 7.321rem + 50.89vw, 38.875rem);
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 992px) {
  .section-forms .order__image img {
    width: 622px;
    max-width: 120%;
  }
}
.section-forms .order__content {
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 992px) {
  .section-forms .order__content {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-forms .order__title {
  max-width: 25ch;
  color: #2a2a2a;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.534rem + 1.46vw, 2.563rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: auto;
}
.section-forms .order__title span {
  color: var(--accent-color);
}
@media (prefers-reduced-motion: no-preference) {
  .section-forms .order__title.element-animation {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-forms .order__title.element-animation.element-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-forms .order__title.element-animation {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-forms .order__title.element-animation {
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}
.section-forms .order__subtitle {
  opacity: 0.88;
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
@media screen and (min-width: 992px) {
  .section-forms .order__subtitle {
    max-width: 40ch;
  }
}
.section-forms .order__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;
}
@media screen and (min-width: 567px) {
  .section-forms .order__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .section-forms .order__actions {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
  }
}
.section-forms .order__actions button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (min-width: 992px) {
  .section-forms .order__actions button {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 233px;
    flex: 0 1 233px;
  }
}

.section-reviews-form {
  --mbottom-after: calc(clamp(1.2rem, -0.347rem + 5.8vw, 4rem) * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
  padding-bottom: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
}
.section-reviews-form .reviews-form__wrapper {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-reviews-form .reviews-form__wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-reviews-form .reviews-form__wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-reviews-form .reviews-form__wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-reviews-form__container {
  position: relative;
  z-index: 2;
}
.section-reviews-form__grid .wpforms-form {
  display: -ms-grid;
  display: grid;
}
.section-reviews-form__grid .wpforms-field-container {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.section-news-page .section-news__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.section-forms-news {
  padding-top: clamp(2.813rem, -1.593rem + 18.8vw, 10.438rem);
  padding-bottom: clamp(2.813rem, -1.593rem + 18.8vw, 10.438rem);
}
.section-forms-news .order__grid .wpforms-form {
  max-width: 435px;
}
@media screen and (min-width: 1024px) {
  .section-forms-news .order__grid .wpforms-form button[type=submit] {
    min-width: 260px;
  }
}
.section-forms-news .order__image img {
  aspect-ratio: 445/656;
  width: clamp(9.25rem, 2.53rem + 33.3vw, 23.2rem);
  height: auto;
}
@media screen and (min-width: 992px) {
  .section-forms-news .order__image img {
    width: 429px;
  }
}

.section-reviews-services {
  --mbottom-after: calc(clamp(1.2rem, -0.347rem + 5.56vw, 3.125rem) * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(3.125rem, 0.149rem + 14.88vw, 9.375rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
  padding-bottom: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
  overflow: hidden;
}
.section-reviews-services .order-wrapper,
.section-reviews-services .services-wrapper {
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-reviews-services .order-wrapper::after,
.section-reviews-services .services-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-reviews-services .order-wrapper .container,
.section-reviews-services .services-wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-reviews-services .order-wrapper .container,
  .section-reviews-services .services-wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-reviews-services .container {
  position: relative;
  z-index: 2;
}
.section-reviews-services .order__grid {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: 1fr clamp(11.25rem, 3.214rem + 40.18vw, 28.125rem);
  grid-template-rows: 1fr clamp(11.25rem, 3.214rem + 40.18vw, 28.125rem);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1.875rem, 1.153rem + 3.08vw, 3.125rem);
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .section-reviews-services .order__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.section-reviews-services .order__grid .wpforms-form {
  max-width: 435px;
}
.section-reviews-services .order__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .section-reviews-services .order__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-reviews-services .order__image picture {
  display: block;
  margin-bottom: calc(var(--mbottom-after) * 1);
  height: 100%;
}
.section-reviews-services .order__image img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  aspect-ratio: 55/40;
  width: clamp(17.5rem, 7.321rem + 50.89vw, 38.875rem);
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1100px) {
  .section-reviews-services .order__image img {
    bottom: -20%;
    width: 557px;
    max-width: 120%;
  }
}
.section-reviews-services .order__content {
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 1024px) {
  .section-reviews-services .order__content {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-reviews-services .order__title {
  max-width: 25ch;
  color: #2a2a2a;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.534rem + 1.46vw, 2.563rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: auto;
}
.section-reviews-services .order__title span {
  color: var(--accent-color);
}
@media (prefers-reduced-motion: no-preference) {
  .section-reviews-services .order__title.element-animation {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-reviews-services .order__title.element-animation.element-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-reviews-services .order__title.element-animation {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-reviews-services .order__title.element-animation {
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}
.section-reviews-services .order__subtitle {
  opacity: 0.88;
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
@media screen and (min-width: 992px) {
  .section-reviews-services .order__subtitle {
    max-width: 40ch;
  }
}
.section-reviews-services .order__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;
}
@media screen and (min-width: 567px) {
  .section-reviews-services .order__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .section-reviews-services .order__actions {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
  }
}
.section-reviews-services .order__actions button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (min-width: 992px) {
  .section-reviews-services .order__actions button {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 233px;
    flex: 0 1 233px;
  }
}
.section-reviews-services.single .order__grid {
  -ms-grid-rows: auto clamp(13.438rem, 3.467rem + 49.85vw, 34.375rem);
  grid-template-rows: auto clamp(13.438rem, 3.467rem + 49.85vw, 34.375rem);
}
@media screen and (min-width: 1024px) {
  .section-reviews-services.single .order__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
}
.section-reviews-services.single .order__image img {
  aspect-ratio: 1/1;
}
.section-reviews-services.single .services-wrapper .section-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-reviews-services.single .services-wrapper .swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.section-reviews-services.single .services-wrapper .other-services-button-next,
.section-reviews-services.single .services-wrapper .other-services-button-prev {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  width: 55px;
}
.section-reviews-services.single .services-wrapper .other-services-button-next.swiper-button-disabled,
.section-reviews-services.single .services-wrapper .other-services-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
}
.section-reviews-services.single .services-wrapper .other-services-button-next:not(.swiper-button-disabled):hover svg path,
.section-reviews-services.single .services-wrapper .other-services-button-prev:not(.swiper-button-disabled):hover svg path {
  fill: var(--accent-color);
}
.section-reviews-services.single .services-wrapper .other-services-slider {
  padding-top: 12px;
  padding-right: 10px;
  padding-bottom: 12px;
  padding-left: 10px;
}
.section-reviews-services.single .services-wrapper .other-services-slider .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  justify-items: center;
}

.page__services .section-reviews-services .order__image img {
  bottom: 0;
}

.section-services-page .section-top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-services-page .services-page-button-next,
.section-services-page .services-page-button-prev {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  width: 55px;
}
.section-services-page .services-page-button-next.swiper-button-disabled,
.section-services-page .services-page-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
}
.section-services-page .services-page-button-next:not(.swiper-button-disabled):hover svg path,
.section-services-page .services-page-button-prev:not(.swiper-button-disabled):hover svg path {
  fill: var(--accent-color);
}
.section-services-page .services-page-slider {
  padding-top: 12px;
  padding-right: 10px;
  padding-bottom: 12px;
  padding-left: 10px;
}

.section-hero.hero-cat-services {
  --min-height-hero: clamp(
    45.625rem,
    35.313rem + 51.56vw,
    55.938rem
  );
}
@media screen and (min-width: 641px) {
  .section-hero.hero-cat-services {
    --min-height-hero: 895px;
  }
}
@media screen and (min-width: 768px) {
  .section-hero.hero-cat-services {
    --min-height-hero: 792px;
  }
}

.hero-cat-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero-cat-services__wrapper {
  position: absolute;
  inset: 0;
  background: var(--small-kartinka);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 425px) {
  .hero-cat-services__wrapper {
    background-position: center bottom;
  }
}
@media screen and (min-width: 640px) {
  .hero-cat-services__wrapper {
    background: var(--mob-kartinka);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .hero-cat-services__wrapper {
    background: var(--kartinka);
    background-position: -740px 60px;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 840px) {
  .hero-cat-services__wrapper {
    background-position: -690px 60px;
  }
}
@media screen and (min-width: 890px) {
  .hero-cat-services__wrapper {
    background-position: -630px 60px;
  }
}
@media screen and (min-width: 960px) {
  .hero-cat-services__wrapper {
    background-position: -560px 60px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-cat-services__wrapper {
    background-position: -480px bottom;
  }
}
@media screen and (min-width: 1124px) {
  .hero-cat-services__wrapper {
    background-position: -420px bottom;
  }
}
@media screen and (min-width: 1200px) {
  .hero-cat-services__wrapper {
    background-position: -320px bottom;
  }
}
@media screen and (min-width: 1300px) {
  .hero-cat-services__wrapper {
    background-position: -250px bottom;
  }
}
@media screen and (min-width: 1400px) {
  .hero-cat-services__wrapper {
    background-position: -150px bottom;
  }
}
@media screen and (min-width: 1500px) {
  .hero-cat-services__wrapper {
    background-position: center;
  }
}
.hero-cat-services__wrapper--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  inset: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.hero-cat-services__wrapper--image svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.hero-cat-services.trials .hero-cat-services__wrapper {
  background-position: center 30px;
}
@media screen and (min-width: 425px) {
  .hero-cat-services.trials .hero-cat-services__wrapper {
    background-position: center center;
  }
}
@media screen and (min-width: 475px) {
  .hero-cat-services.trials .hero-cat-services__wrapper {
    background-position: center bottom;
  }
}
.hero-cat-services .section-hero__grid {
  --mar-top-three: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: minmax(130px, 0.5fr) (-webkit-min-content)[3] 1fr;
  -ms-grid-rows: minmax(130px, 0.5fr) (min-content)[3] 1fr;
  grid-template-rows: minmax(130px, 0.5fr) repeat(3, -webkit-min-content) 1fr;
  grid-template-rows: minmax(130px, 0.5fr) repeat(3, min-content) 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  gap: clamp(0.938rem, -0.389rem + 5.66vw, 1.875rem);
}
@media screen and (min-width: 425px) {
  .hero-cat-services .section-hero__grid {
    -ms-grid-rows: minmax(125px, 0.4fr) (-webkit-min-content)[3] 1.5fr;
    -ms-grid-rows: minmax(125px, 0.4fr) (min-content)[3] 1.5fr;
    grid-template-rows: minmax(125px, 0.4fr) repeat(3, -webkit-min-content) 1.5fr;
    grid-template-rows: minmax(125px, 0.4fr) repeat(3, min-content) 1.5fr;
  }
}
@media screen and (min-width: 567px) {
  .hero-cat-services .section-hero__grid {
    -ms-grid-rows: auto auto auto 1fr;
    grid-template-rows: auto auto auto 1fr;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services .section-hero__grid {
    -ms-grid-rows: 1fr auto auto 1fr;
    grid-template-rows: 1fr auto auto 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.hero-cat-services .section-hero__title {
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  align-self: flex-end;
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.438rem, 1.239rem + 0.85vw, 1.875rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media screen and (min-width: 640px) {
  .hero-cat-services .section-hero__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    max-width: 30ch;
  }
}
@media screen and (min-width: 768px) {
  .hero-cat-services .section-hero__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    max-width: 30ch;
  }
}
.hero-cat-services .section-hero__title .title-avatars {
  display: none;
}
@media screen and (min-width: 640px) {
  .hero-cat-services .section-hero__title .title-avatars {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.hero-cat-services .section-hero__subtitle {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row-align: center;
  align-self: center;
  max-width: 45ch;
}
@media screen and (min-width: 640px) {
  .hero-cat-services .section-hero__subtitle {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    max-width: 27ch;
  }
}
@media screen and (min-width: 768px) {
  .hero-cat-services .section-hero__subtitle {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services .section-hero__subtitle {
    max-width: 42ch;
  }
}
.hero-cat-services .section-hero__actions {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
}
@media screen and (min-width: 567px) {
  .hero-cat-services .section-hero__actions {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services .section-hero__actions {
    margin-top: 0;
  }
}
.hero-cat-services .section-hero__btn {
  margin-top: 0;
  min-width: 220px;
}
@media screen and (min-width: 567px) {
  .hero-cat-services .section-hero__btn {
    min-width: 30vw;
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services .section-hero__btn {
    min-width: 220px;
  }
}
.hero-cat-services .section-hero__link {
  display: none;
}
@media screen and (min-width: 992px) {
  .hero-cat-services .section-hero__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}
.hero-cat-services .section-hero__benefits {
  position: relative;
  bottom: 0;
  left: 0;
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  width: 100%;
}
@media screen and (min-width: 567px) {
  .hero-cat-services .section-hero__benefits {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services .section-hero__benefits {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 45px;
    margin-top: auto;
  }
}
.hero-cat-services .section-hero__image {
  position: relative;
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}
@media screen and (min-width: 567px) {
  .hero-cat-services .section-hero__image {
    -ms-grid-row: 2;
    -ms-grid-row-span: 4;
    grid-row: 2/6;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services .section-hero__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1/5;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.hero-cat-services .section-hero__image img {
  --small: calc(var(--size-width-image) / 2.5);
  --tablet: calc(var(--size-width-image));
  position: absolute;
  bottom: -11%;
  left: 34%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  aspect-ratio: var(--size-width-image)/var(--size-height-image);
  width: clamp(var(--small), 34vw, var(--tablet));
  height: auto;
}
@media screen and (min-width: 567px) {
  .hero-cat-services .section-hero__image img {
    right: -8%;
    bottom: -5%;
    left: unset;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: calc(var(--size-width-image) / 2);
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services .section-hero__image img {
    width: calc(var(--size-width-image) / 1.2);
  }
}
@media screen and (min-width: 1100px) {
  .hero-cat-services .section-hero__image img {
    right: -8%;
    bottom: -8%;
    left: unset;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: calc(var(--size-width-image) / 1.1);
  }
}
@media screen and (min-width: 1280px) {
  .hero-cat-services .section-hero__image img {
    right: -10%;
    bottom: -14%;
    width: var(--size-width-image);
  }
}

.hero-cat-services.resc {
  overflow: hidden;
}
@media screen and (min-width: 640px) {
  .hero-cat-services.resc {
    overflow: initial;
  }
}

.hero-cat-services.sert .section-hero__image img {
  left: 50%;
}
@media screen and (min-width: 567px) {
  .hero-cat-services.sert .section-hero__image img {
    right: unset;
    left: -2%;
    width: calc(var(--size-width-image) / 1.6);
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services.sert .section-hero__image img {
    right: 0;
    left: unset;
    width: calc(var(--size-width-image) / 1.2);
  }
}
@media screen and (min-width: 1100px) {
  .hero-cat-services.sert .section-hero__image img {
    width: var(--size-width-image);
  }
}
@media screen and (min-width: 1280px) {
  .hero-cat-services.sert .section-hero__image img {
    right: 0;
  }
}

.hero-cat-services.liz .section-hero__image img {
  left: 50%;
}
@media screen and (min-width: 567px) {
  .hero-cat-services.liz .section-hero__image img {
    left: -18%;
    width: calc(var(--size-width-image) / 1.8);
  }
}
@media screen and (min-width: 640px) {
  .hero-cat-services.liz .section-hero__image img {
    left: unset;
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services.liz .section-hero__image img {
    width: calc(var(--size-width-image) / 1.2);
  }
}
@media screen and (min-width: 1150px) {
  .hero-cat-services.liz .section-hero__image img {
    width: var(--size-width-image);
  }
}

.hero-cat-services.rej .section-hero__image img {
  left: 50%;
}
@media screen and (min-width: 567px) {
  .hero-cat-services.rej .section-hero__image img {
    left: -18%;
    width: calc(var(--size-width-image) / 1.9);
  }
}
@media screen and (min-width: 640px) {
  .hero-cat-services.rej .section-hero__image img {
    left: unset;
  }
}
@media screen and (min-width: 768px) {
  .hero-cat-services.rej .section-hero__image img {
    width: calc(var(--size-width-image) / 1.5);
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services.rej .section-hero__image img {
    width: calc(var(--size-width-image) / 1.3);
  }
}
@media screen and (min-width: 1100px) {
  .hero-cat-services.rej .section-hero__image img {
    width: calc(var(--size-width-image) / 1.2);
  }
}
@media screen and (min-width: 1280px) {
  .hero-cat-services.rej .section-hero__image img {
    bottom: -8%;
    width: var(--size-width-image);
  }
}

.hero-cat-services.tech .section-hero__image img {
  left: 50%;
}
@media screen and (min-width: 567px) {
  .hero-cat-services.tech .section-hero__image img {
    right: unset;
    bottom: -10%;
    left: -18%;
    width: calc(var(--size-width-image) / 1.9);
  }
}
@media screen and (min-width: 640px) {
  .hero-cat-services.tech .section-hero__image img {
    right: 3%;
    bottom: -22%;
    left: unset;
  }
}
@media screen and (min-width: 768px) {
  .hero-cat-services.tech .section-hero__image img {
    right: 6%;
    bottom: -35%;
    width: calc(var(--size-width-image) / 1.5);
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services.tech .section-hero__image img {
    right: 2%;
    bottom: -20%;
    width: calc(var(--size-width-image) / 1.5);
  }
}
@media screen and (min-width: 1100px) {
  .hero-cat-services.tech .section-hero__image img {
    right: 0;
    bottom: -17%;
    width: calc(var(--size-width-image) / 1.3);
  }
}
@media screen and (min-width: 1280px) {
  .hero-cat-services.tech .section-hero__image img {
    right: -7%;
    bottom: -20%;
    width: var(--size-width-image);
  }
}

.hero-cat-services.trials .section-hero__image img {
  left: 50%;
}
@media screen and (min-width: 567px) {
  .hero-cat-services.trials .section-hero__image img {
    right: unset;
    bottom: -5%;
    left: -18%;
    width: calc(var(--size-width-image) / 1.9);
  }
}
@media screen and (min-width: 640px) {
  .hero-cat-services.trials .section-hero__image img {
    right: 3%;
    bottom: -8%;
    left: unset;
  }
}
@media screen and (min-width: 768px) {
  .hero-cat-services.trials .section-hero__image img {
    right: 6%;
    bottom: -8%;
    width: calc(var(--size-width-image) / 1.5);
  }
}
@media screen and (min-width: 992px) {
  .hero-cat-services.trials .section-hero__image img {
    right: 2%;
    bottom: -10%;
    width: calc(var(--size-width-image) / 1.5);
  }
}
@media screen and (min-width: 1100px) {
  .hero-cat-services.trials .section-hero__image img {
    right: 0;
    bottom: -13%;
    width: calc(var(--size-width-image) / 1.3);
  }
}
@media screen and (min-width: 1280px) {
  .hero-cat-services.trials .section-hero__image img {
    right: -7%;
    bottom: -15%;
    width: var(--size-width-image);
  }
}

.section-services-description {
  background-color: var(--light-color);
}
.section-services-description__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.section-services-description__title {
  color: #000;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.188rem + 1.56vw, 2.188rem);
  line-height: 100%;
  font-family: var(--second-family);
  text-transform: uppercase;
}

.section-parameters {
  background-color: var(--light-color);
}
.section-parameters__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-parameters__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(18.125rem, 12.216rem + 29.55vw, 34.375rem), 1fr));
  gap: clamp(0.625rem, 0.398rem + 1.14vw, 1.25rem);
}
.section-parameters__item {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: clamp(1.25rem, 0.682rem + 2.84vw, 2.813rem);
  -moz-column-gap: clamp(1.25rem, 0.682rem + 2.84vw, 2.813rem);
  column-gap: clamp(1.25rem, 0.682rem + 2.84vw, 2.813rem);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  background: #f4f4f4;
  padding: clamp(0.938rem, 0.369rem + 2.84vw, 2.5rem) clamp(0.938rem, 0.142rem + 3.98vw, 3.125rem);
}
.section-parameters__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: clamp(2.125rem, 1.989rem + 0.68vw, 2.5rem);
  height: clamp(2.125rem, 1.989rem + 0.68vw, 2.5rem);
}
.section-parameters__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 5px;
  -ms-grid-column: 2;
  grid-column: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-parameters__title {
  color: #3d3d3d;
  font-weight: 600;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-parameters__text {
  margin: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-parameters__but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-children-services {
  background-color: var(--light-color);
}
.section-children-services .section-top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-children-services .swiper-navigation {
  display: none;
}
@media screen and (min-width: 640px) {
  .section-children-services .swiper-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.section-children-services .swiper-navigation .children-services-button-prev,
.section-children-services .swiper-navigation .children-services-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.section-children-services .swiper-navigation .children-services-button-prev:focus-visible,
.section-children-services .swiper-navigation .children-services-button-next:focus-visible {
  outline: none;
}
.section-children-services .swiper-navigation .children-services-button-prev.swiper-button-disabled,
.section-children-services .swiper-navigation .children-services-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
}
.section-children-services .swiper-navigation .children-services-button-prev:not(.swiper-button-disabled):hover svg path,
.section-children-services .swiper-navigation .children-services-button-next:not(.swiper-button-disabled):hover svg path {
  fill: var(--accent-color);
}
.section-children-services .swiper-navigation .children-services-button-prev.swiper-button-lock,
.section-children-services .swiper-navigation .children-services-button-next.swiper-button-lock {
  display: none;
}
.section-children-services__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(1.563rem, 0.994rem + 2.42vw, 2.813rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -10px;
  margin-left: -10px;
}
.section-children-services__grid .btn {
  min-width: 312px;
}
.section-children-services .children-services-slider {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  width: 100%;
}
.section-children-services .children-services-slider .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  justify-items: center;
}
.section-children-services__item {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: auto auto 1fr;
  grid-template-rows: auto auto 1fr;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  gap: clamp(0.625rem, 0.341rem + 1.21vw, 1.25rem);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#215747), to(#208d8b));
  background: linear-gradient(180deg, #215747 0%, #208d8b 100%);
  padding: clamp(0.938rem, 0.682rem + 1.09vw, 1.5rem) clamp(0.938rem, 0.682rem + 1.09vw, 1.5rem) clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem) clamp(0.938rem, 0.568rem + 1.58vw, 1.75rem);
  min-height: 100%;
  overflow: hidden;
  color: var(--light-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (any-hover: hover) {
  .section-children-services__item:hover {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
  }
}
.section-children-services__item .service-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 100%;
  background-color: var(--light-color);
  width: 49px;
  height: 49px;
}
.section-children-services__item .service-item__link .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
}
.section-children-services__item .service-item__link .icon svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-children-services__item .service-item__title {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  font-weight: 600;
  font-size: 20px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-children-services__item .service-item__description {
  display: -webkit-box;
  position: relative;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  opacity: 0.72;
  z-index: 1;
  margin: 0;
  -webkit-line-clamp: 6;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-history-services {
  --mbottom-after: calc(clamp(1.2rem, -0.347rem + 5.56vw, 3.125rem) * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(3.125rem, 0.149rem + 14.88vw, 9.375rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#215949), to(#208b89));
  background: linear-gradient(180deg, #215949 0%, #208b89 100%);
  padding-top: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
  padding-bottom: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
}
.section-history-services .container {
  position: relative;
  z-index: 2;
}
.section-history-services .order-wrapper,
.section-history-services .history-wrapper {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-history-services .order-wrapper::after,
.section-history-services .history-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-history-services .order-wrapper .container,
.section-history-services .history-wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-history-services .order-wrapper .container,
  .section-history-services .history-wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-history-services .order__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto clamp(12.5rem, 10.909rem + 7.95vw, 16.875rem);
  grid-template-rows: auto clamp(12.5rem, 10.909rem + 7.95vw, 16.875rem);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .section-history-services .order__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 0.5fr;
    grid-template-columns: 1fr 0.5fr;
  }
}
.section-history-services .order__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(0.938rem, 0.369rem + 2.84vw, 2.5rem);
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .section-history-services .order__content {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-history-services .order__image {
  position: relative;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 1200px) {
  .section-history-services .order__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
    height: 100%;
  }
}
.section-history-services .order__image img {
  position: absolute;
  top: 78%;
  left: 46%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 73/52;
  width: clamp(20.313rem, 14.063rem + 31.25vw, 37.5rem);
  height: auto;
}
@media screen and (min-width: 1200px) {
  .section-history-services .order__image img {
    top: 36%;
    left: 10%;
    width: 730px;
  }
}
.section-history-services .order__title {
  color: #3d3d3d;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.417rem + 1.67vw, 2.563rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-history-services .order__title span {
  color: var(--accent-color);
}
@media (prefers-reduced-motion: no-preference) {
  .section-history-services .order__title.element-animation {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-history-services .order__title.element-animation.element-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-history-services .order__title.element-animation {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-history-services .order__title.element-animation {
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}
.section-history-services .wpforms-container {
  max-width: 60ch;
}
@media screen and (min-width: 641px) {
  .section-history-services .wpforms-form {
    max-width: 435px;
  }
}
.section-history-services .wpforms-form .wpforms-field-container {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.section-history-services .wpforms-form button[type=submit] {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  width: 100%;
}
@media screen and (min-width: 641px) {
  .section-history-services .wpforms-form button[type=submit] {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row-align: start;
    align-self: start;
    width: auto;
  }
}
.section-history-services.single {
  overflow: hidden;
}
.section-history-services.single .order__grid {
  position: relative;
  -ms-grid-rows: auto clamp(18.75rem, 16.477rem + 11.36vw, 23.75rem);
  grid-template-rows: auto clamp(18.75rem, 16.477rem + 11.36vw, 23.75rem);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 1200px) {
  .section-history-services.single .order__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1.2fr 1fr;
    grid-template-columns: 1.2fr 1fr;
  }
}
.section-history-services.single .order__content {
  row-gap: 30px;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 1200px) {
  .section-history-services.single .order__content {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-history-services.single .order__title {
  text-wrap: auto;
}
.section-history-services.single .order__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .section-history-services.single .order__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-history-services.single .order__image picture {
  position: relative;
  margin-bottom: calc(var(--mbottom-after) * 1);
}
.section-history-services.single .order__image img {
  position: absolute;
  top: unset;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  aspect-ratio: 38/44;
  width: clamp(16.25rem, 12.841rem + 17.05vw, 23.75rem);
  height: auto;
}
@media screen and (min-width: 1024px) {
  .section-history-services.single .order__image img {
    bottom: 0;
    left: 50%;
    width: 382px;
  }
}

.section-faq {
  background-color: var(--light-color);
}
.section-faq__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .section-faq__grid {
    -ms-grid-columns: clamp(20.625rem, 2.625rem + 37.5vw, 26.625rem) 1fr;
    grid-template-columns: clamp(20.625rem, 2.625rem + 37.5vw, 26.625rem) 1fr;
  }
}
.section-faq__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-row-align: start;
  align-self: start;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 15px;
  background: #d9d9d9;
  width: 100%;
  height: clamp(25rem, 19.693rem + 22.64vw, 28.75rem);
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .section-faq__image {
    -ms-grid-row: 1;
    grid-row: 1;
    max-width: clamp(20.625rem, 2.625rem + 37.5vw, 26.625rem);
  }
}
.section-faq__image img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.accordion-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 20px;
  background: #f4f4f4;
  padding: clamp(0.938rem, 0.251rem + 2.93vw, 2.125rem);
  height: 100%;
}
.accordion.open .accordion__icon {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.accordion.open .accordion__content {
  opacity: 1;
  padding: 10px clamp(0rem, -2.892rem + 6.02vw, 1.25rem);
  max-height: none;
}
.accordion__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 992px) {
  .accordion__list {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.accordion__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  border: 0;
  border-top: 1px solid #eee;
  background-color: transparent;
  padding: clamp(0.625rem, -0.259rem + 3.77vw, 1.25rem) clamp(0rem, -2.892rem + 6.02vw, 1.25rem);
  width: 100%;
  text-align: left;
}
.accordion__control:hover {
  color: var(--hover-color);
}
.accordion__control:hover .accordion__icon {
  fill: var(--accent-color);
  stroke: var(--accent-2-color);
}
.accordion__control:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.accordion__content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  will-change: max-height;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0 clamp(0.625rem, -0.259rem + 3.77vw, 1.25rem);
  max-height: 0;
/*   overflow: hidden; */
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  font-family: var(--font-family);
}
.accordion__title {
  color: #232323;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.accordion__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  stroke: light-dark(var(--bg-color), var(--light-color));
  fill: transparent;
}
.accordion__icon svg {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.section-reviews-cat-services {
  --mbottom-after: calc(clamp(1.2rem, -0.347rem + 5.56vw, 3.125rem) * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  row-gap: clamp(3.125rem, 0.539rem + 11.03vw, 8.125rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -webkit-gradient(linear, left top, left bottom, from(#215949), to(#208b89));
  background: linear-gradient(180deg, #215949 0%, #208b89 100%);
  padding-top: clamp(2.188rem, 1.056rem + 4.83vw, 4.375rem);
  padding-bottom: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
}
.section-reviews-cat-services .order-wrapper {
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-reviews-cat-services .order-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-reviews-cat-services .order-wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-reviews-cat-services .order-wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-reviews-cat-services .container {
  position: relative;
  z-index: 2;
}
.section-reviews-cat-services .order__grid {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: 1fr clamp(14.688rem, 2.307rem + 61.9vw, 18.75rem);
  grid-template-rows: 1fr clamp(14.688rem, 2.307rem + 61.9vw, 18.75rem);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}
@media screen and (min-width: 425px) {
  .section-reviews-cat-services .order__grid {
    -ms-grid-rows: 1fr 300px;
    grid-template-rows: 1fr 300px;
  }
}
@media screen and (min-width: 567px) {
  .section-reviews-cat-services .order__grid {
    -ms-grid-rows: 1fr 400px;
    grid-template-rows: 1fr 400px;
  }
}
@media screen and (min-width: 992px) {
  .section-reviews-cat-services .order__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 0.8fr 1fr;
    grid-template-columns: 0.8fr 1fr;
  }
}
.section-reviews-cat-services .order__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .section-reviews-cat-services .order__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-reviews-cat-services .order__image picture {
  display: block;
  margin-top: auto;
}
.section-reviews-cat-services .order__image img {
  position: absolute;
  bottom: var(--mbottom-after);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  aspect-ratio: 44/42;
  width: clamp(18.125rem, 6.696rem + 57.14vw, 21.875rem);
  height: auto;
}
@media screen and (min-width: 425px) {
  .section-reviews-cat-services .order__image img {
    width: 350px;
  }
}
@media screen and (min-width: 567px) {
  .section-reviews-cat-services .order__image img {
    width: 445px;
  }
}
@media screen and (min-width: 992px) {
  .section-reviews-cat-services .order__image img {
    left: 42%;
  }
}
.section-reviews-cat-services .order__content {
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 992px) {
  .section-reviews-cat-services .order__content {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-reviews-cat-services .order__title {
  max-width: 25ch;
  color: #2a2a2a;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.534rem + 1.46vw, 2.563rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: auto;
}
.section-reviews-cat-services .order__title span {
  color: var(--accent-color);
}
@media (prefers-reduced-motion: no-preference) {
  .section-reviews-cat-services .order__title.element-animation {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-reviews-cat-services .order__title.element-animation.element-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-reviews-cat-services .order__title.element-animation {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-reviews-cat-services .order__title.element-animation {
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}
.section-reviews-cat-services .order__subtitle {
  opacity: 0.88;
  max-width: 40ch;
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-reviews-cat-services .order__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;
}
@media screen and (min-width: 567px) {
  .section-reviews-cat-services .order__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .section-reviews-cat-services .order__actions {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
  }
}
.section-reviews-cat-services .order__actions button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (min-width: 992px) {
  .section-reviews-cat-services .order__actions button {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 233px;
    flex: 0 1 233px;
  }
}

.hero-single-services {
  --min-height-hero: 670px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero-single-services__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--mob-kartinka);
  background-position: 22% bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 640px) {
  .hero-single-services__wrapper {
    background: var(--kartinka);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.hero-single-services .section-hero__grid {
  --mar-top-three: 30px;
  -ms-grid-rows: 0.9fr (-webkit-min-content)[3] 220px;
  -ms-grid-rows: 0.9fr (min-content)[3] 220px;
  grid-template-rows: 0.9fr repeat(3, -webkit-min-content) 220px;
  grid-template-rows: 0.9fr repeat(3, min-content) 220px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (min-width: 640px) {
  .hero-single-services .section-hero__grid {
    -ms-grid-rows: 1.7fr auto auto 1fr;
    grid-template-rows: 1.7fr auto auto 1fr;
    -ms-grid-columns: 1.5fr 1fr;
    grid-template-columns: 1.5fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .hero-single-services .section-hero__grid {
    -ms-grid-rows: 1.2fr auto auto 1fr;
    grid-template-rows: 1.2fr auto auto 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.hero-single-services .section-hero__title {
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  align-self: flex-end;
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.438rem, 1.239rem + 0.85vw, 1.875rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media screen and (min-width: 640px) {
  .hero-single-services .section-hero__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    max-width: 30ch;
  }
}
@media screen and (min-width: 768px) {
  .hero-single-services .section-hero__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
.hero-single-services .section-hero__title .title-avatars {
  display: none;
}
@media screen and (min-width: 640px) {
  .hero-single-services .section-hero__title .title-avatars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero-single-services .section-hero__subtitle {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  max-width: 45ch;
}
@media screen and (min-width: 640px) {
  .hero-single-services .section-hero__subtitle {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    max-width: 27ch;
  }
}
@media screen and (min-width: 768px) {
  .hero-single-services .section-hero__subtitle {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 992px) {
  .hero-single-services .section-hero__subtitle {
    max-width: 44ch;
  }
}
.hero-single-services .section-hero__actions {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
}
@media screen and (min-width: 567px) {
  .hero-single-services .section-hero__actions {
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .hero-single-services .section-hero__actions {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
  }
}
.hero-single-services .section-hero__btn {
  margin-top: 0;
  min-width: 220px;
}
@media screen and (min-width: 567px) {
  .hero-single-services .section-hero__btn {
    min-width: 30vw;
  }
}
@media screen and (min-width: 992px) {
  .hero-single-services .section-hero__btn {
    min-width: 220px;
  }
}
.hero-single-services .section-hero__link {
  display: none;
}
@media screen and (min-width: 992px) {
  .hero-single-services .section-hero__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}
.hero-single-services .section-hero__benefits {
  position: relative;
  bottom: 0;
  left: 0;
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  width: 100%;
}
@media screen and (min-width: 567px) {
  .hero-single-services .section-hero__benefits {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  .hero-single-services .section-hero__benefits {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 45px;
    margin-top: auto;
  }
}
.hero-single-services .section-hero__image {
  position: relative;
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}
@media screen and (min-width: 567px) {
  .hero-single-services .section-hero__image {
    -ms-grid-row: 2;
    -ms-grid-row-span: 4;
    grid-row: 2/6;
    -ms-grid-column: 3;
    grid-column: 3/3;
  }
}
@media screen and (min-width: 992px) {
  .hero-single-services .section-hero__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1/5;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.hero-single-services .section-hero__image img {
  --small: calc(var(--size-width-image) / 2.5);
  --tablet: calc(var(--size-width-image));
  position: absolute;
  bottom: -11%;
  left: 45%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  aspect-ratio: var(--size-width-image)/var(--size-height-image);
  width: clamp(var(--small), 34vw, var(--tablet));
  height: auto;
}
@media screen and (min-width: 567px) {
  .hero-single-services .section-hero__image img {
    right: -8%;
    bottom: -5%;
    left: unset;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: calc(var(--size-width-image) / 1.5);
  }
}
@media screen and (min-width: 992px) {
  .hero-single-services .section-hero__image img {
    width: calc(var(--size-width-image) / 1.2);
  }
}
@media screen and (min-width: 1100px) {
  .hero-single-services .section-hero__image img {
    right: -8%;
    bottom: -8%;
    left: unset;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: var(--size-width-image);
  }
}
@media screen and (min-width: 1280px) {
  .hero-single-services .section-hero__image img {
    right: -10%;
    bottom: -5%;
    width: var(--size-width-image);
  }
}

.section-single-services-parameters__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-single-services-parameters__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: clamp(1.25rem, 0.603rem + 2.76vw, 2.5rem);
}
@media screen and (min-width: 992px) {
  .section-single-services-parameters__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-single-services-parameters__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(0.938rem, 0.453rem + 2.07vw, 1.875rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-single-services-parameters__item header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(1.25rem, 0.682rem + 2.84vw, 2.813rem);
  -moz-column-gap: clamp(1.25rem, 0.682rem + 2.84vw, 2.813rem);
  column-gap: clamp(1.25rem, 0.682rem + 2.84vw, 2.813rem);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  background: #f4f4f4;
  padding: clamp(0.938rem, 0.369rem + 2.84vw, 2.5rem) clamp(0.938rem, 0.142rem + 3.98vw, 3.125rem);
  width: 100%;
}
.section-single-services-parameters__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: clamp(2.125rem, 1.989rem + 0.68vw, 2.5rem);
  height: clamp(2.125rem, 1.989rem + 0.68vw, 2.5rem);
}
.section-single-services-parameters__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-single-services-parameters__title {
  color: #3d3d3d;
  font-weight: 600;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-single-services-parameters__text {
  margin: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-single-services-parameters .text-block {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.section-samples {
  background-color: var(--light-color);
}
.section-samples__title {
  max-width: 27ch;
  text-wrap: auto;
}
.section-samples .section-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-samples .swiper-navigation {
  display: none;
}
@media screen and (min-width: 640px) {
  .section-samples .swiper-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.section-samples .swiper-navigation .samples-button-prev,
.section-samples .swiper-navigation .samples-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.section-samples .swiper-navigation .samples-button-prev:focus-visible,
.section-samples .swiper-navigation .samples-button-next:focus-visible {
  outline: none;
}
.section-samples .swiper-navigation .samples-button-prev.swiper-button-disabled,
.section-samples .swiper-navigation .samples-button-next.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
}
.section-samples .swiper-navigation .samples-button-prev:not(.swiper-button-disabled):hover svg path,
.section-samples .swiper-navigation .samples-button-next:not(.swiper-button-disabled):hover svg path {
  fill: var(--accent-color);
}
.section-samples__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(18.125rem, 10.387rem + 38.69vw, 34.375rem), 1fr));
  -ms-grid-column-align: center;
  justify-self: center;
  gap: 20px;
  width: 100%;
}
.section-samples__item {
  background: #d9d9d9;
  aspect-ratio: 34/47;
  width: 100%;
  max-width: 590px;
  overflow: hidden;
}
.section-samples__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.section-form-order-passport {
  overflow: hidden;
  --mbottom-after: calc(clamp(1.2rem, -0.347rem + 5vw, 3rem) * -1);
  padding-top: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
  padding-bottom: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
}
.section-form-order-passport .order-wrapper {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-form-order-passport .order-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-form-order-passport .order-wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-form-order-passport .order-wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-form-order-passport .order__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 45px;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .section-form-order-passport .order__content {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-form-order-passport .order__grid {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: 1fr clamp(9.375rem, 4.911rem + 22.32vw, 18.75rem);
  grid-template-rows: 1fr clamp(9.375rem, 4.911rem + 22.32vw, 18.75rem);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .section-form-order-passport .order__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 0.7fr;
    grid-template-columns: 1fr 0.7fr;
  }
}
.section-form-order-passport .order__grid .wpforms-form {
  max-width: 535px;
}
.section-form-order-passport .order__grid .wpforms-form .wpforms-field-container {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 641px) {
  .section-form-order-passport .order__grid .wpforms-form .wpforms-field-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.section-form-order-passport .order__grid .wpforms-form button[type=submit] {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .section-form-order-passport .order__grid .wpforms-form button[type=submit] {
    width: auto;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
}
.section-form-order-passport .order__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .section-form-order-passport .order__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-form-order-passport .order__image picture {
  margin-bottom: calc(var(--mbottom-after) * 1);
}
.section-form-order-passport .order__image img {
  position: absolute;
  top: unset;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  aspect-ratio: 72/41;
  width: clamp(20.313rem, 8.259rem + 60.27vw, 45.625rem);
  max-width: 120%;
}
@media screen and (min-width: 1024px) {
  .section-form-order-passport .order__image img {
    bottom: 0;
    left: 47%;
    width: clamp(26.25rem, -126.131rem + 238.1vw, 45rem);
    max-width: 134%;
  }
}
.section-form-order-passport .order__title {
  max-width: 25ch;
  color: #2a2a2a;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.534rem + 1.46vw, 2.563rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-form-order-passport .order__title span {
  color: var(--accent-color);
}
.section-form-order-passport .order__subtitle {
  opacity: 0.88;
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
@media screen and (min-width: 992px) {
  .section-form-order-passport .order__subtitle {
    max-width: 40ch;
  }
}
.section-form-order-passport .order__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;
}
@media screen and (min-width: 567px) {
  .section-form-order-passport .order__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .section-form-order-passport .order__actions {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
  }
}
.section-form-order-passport .order__actions button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (min-width: 992px) {
  .section-form-order-passport .order__actions button {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 233px;
    flex: 0 1 233px;
  }
}

.section-hero-article {
  --min-height-hero: 670px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: var(--min-height-hero);
}
.section-hero-article__wrapper {
  position: absolute;
  inset: 0;
  background: var(--small-kartinka);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 425px) {
  .section-hero-article__wrapper {
    background-position: center bottom;
  }
}
@media screen and (min-width: 640px) {
  .section-hero-article__wrapper {
    background: var(--mob-kartinka);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .section-hero-article__wrapper {
    background: var(--kartinka);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.section-hero-article__wrapper--image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  inset: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.section-hero-article__wrapper--image svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.section-hero-article__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 4;
  padding-top: calc(var(--header-height) + clamp(1.25rem, -0.568rem + 9.09vw, 3.125rem));
  padding-bottom: clamp(1.25rem, -0.917rem + 9.24vw, 5rem);
}
.section-hero-article__grid {
  --mar-top-three: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto 1fr;
  grid-template-rows: auto auto 1fr;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  gap: clamp(0.938rem, -0.389rem + 5.66vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .section-hero-article__grid {
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .section-hero-article__grid {
    -ms-grid-rows: 0.5fr auto auto;
    grid-template-rows: 0.5fr auto auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.section-hero-article__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .section-hero-article__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-hero-article__image img {
  width: clamp(16.25rem, 6.875rem + 46.88vw, 25.625rem);
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .section-hero-article__image img {
    width: 100%;
  }
}
.section-hero-article .breadcrumbs {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-row-align: end;
  align-self: end;
  margin-bottom: 15px;
}
.section-hero-article__title {
  -ms-grid-row: 2;
  grid-row: 2;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.3rem + 0.94vw, 1.875rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-hero-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 3;
  grid-row: 3;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 35px;
}
.section-hero-article__meta time,
.section-hero-article__meta .write,
.section-hero-article__meta .views {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.section-hero-article__meta .views {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.section-article-description {
  background-color: var(--light-color);
}
.section-article-description__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(1.25rem, 0.889rem + 1.54vw, 1.875rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.section-article-description__info {
  border-radius: 10px;
  background: #f4f4f4;
  padding: clamp(0.938rem, 0.396rem + 2.31vw, 1.875rem) clamp(0.938rem, 0.179rem + 3.24vw, 2.25rem);
}
.section-article-description__title {
  margin-top: 30px;
  color: #000;
  font-weight: 500;
  font-size: clamp(1.875rem, 1.694rem + 0.77vw, 2.188rem);
  line-height: 100%;
  font-family: var(--second-family);
  text-transform: uppercase;
}
.section-article-description__contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  row-gap: 25px;
  border-radius: 10px;
  background: #f4f4f4;
  padding: clamp(0.938rem, 0.468rem + 2vw, 1.75rem) clamp(0.938rem, 0.035rem + 3.85vw, 2.5rem);
  width: 100%;
}
.section-article-description__contacts--title {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  color: #595959;
  font-weight: 700;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
@media screen and (min-width: 567px) {
  .section-article-description__contacts--title {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-article-description__contacts--mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.section-article-description__contacts--social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-row-align: center;
  align-self: center;
  gap: 10px;
}
@media screen and (min-width: 567px) {
  .section-article-description__contacts--social {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-article-description__contacts--social .social__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
}
.section-article-description__contacts--social .social__item a svg {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-article-readalso .section-news__grid {
  grid-template-columns: repeat(auto-fit, minmax(clamp(18.125rem, 16.136rem + 9.94vw, 22.5rem), 1fr));
}

.section-forms-article {
  padding-top: clamp(3.125rem, -0.199rem + 16.62vw, 10.438rem);
  padding-bottom: clamp(3.125rem, -0.199rem + 16.62vw, 10.438rem);
}
.section-forms-article .order__image img {
  aspect-ratio: 1/1;
  width: clamp(9.25rem, 2.53rem + 33.3vw, 23.2rem);
  height: auto;
}
@media screen and (min-width: 992px) {
  .section-forms-article .order__image img {
    width: 623px;
  }
}

.section-registries-lists {
  background-color: var(--light-color);
}
.section-registries-lists .first-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(1.875rem, 0.208rem + 8.33vw, 5.938rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.section-registries-lists .first-step.--close {
  display: none;
}
.section-registries-lists__title {
  max-width: 38ch;
  font-size: clamp(1.625rem, 1.199rem + 2.13vw, 2.563rem);
  text-wrap: auto;
}
.section-registries-lists__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.section-registries-lists__item {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: auto auto auto 1fr;
  grid-template-rows: auto auto auto 1fr;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  gap: clamp(0.625rem, 0.341rem + 1.21vw, 1.25rem);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#215747), to(#208d8b));
  background: linear-gradient(180deg, #215747 0%, #208d8b 100%);
  padding: clamp(0.938rem, 0.682rem + 1.09vw, 1.5rem) clamp(0.938rem, 0.682rem + 1.09vw, 1.5rem) clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem) clamp(0.938rem, 0.568rem + 1.58vw, 1.75rem);
  min-height: clamp(10.875rem, 9.286rem + 6.78vw, 13.625rem);
  overflow: hidden;
  color: var(--light-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (any-hover: hover) {
  .section-registries-lists__item:hover {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
  }
}
.section-registries-lists__item .service-item__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4px;
}
.section-registries-lists__item .service-item__counter span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 100%;
  background-color: var(--light-color);
  width: 7px;
  height: 7px;
}
.section-registries-lists__item .service-item__counter span.active {
  background-color: #103028;
}
.section-registries-lists__item .service-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 100%;
  background-color: var(--light-color);
  width: 49px;
  height: 49px;
}
.section-registries-lists__item .service-item__link .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
}
.section-registries-lists__item .service-item__category {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  opacity: 0.72;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-registries-lists__item .service-item__title {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  font-weight: 600;
  font-size: 20px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-registries-lists__item .service-item__description {
  position: relative;
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  opacity: 0.72;
  z-index: 1;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-registries-lists .second-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 550px;
}
.section-registries-lists .second-step .second-step-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.section-registries-lists .second-step .second-step-layout .step-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  row-gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .section-registries-lists .second-step .second-step-layout .step-heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.section-registries-lists .second-step .second-step-layout .step-heading .action-back {
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .section-registries-lists .second-step .second-step-layout .step-heading .action-back {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.section-registries-lists .second-step .wpforms-form .wpforms-field-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 640px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field-container {
    -ms-grid-columns: 1fr 0.5fr 0.5fr 1fr;
    grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
  }
}
.section-registries-lists .second-step .wpforms-form .wpforms-field-label {
  color: #444;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.section-registries-lists .second-step .wpforms-form .wpforms-field:has(input) input {
  border-bottom: 0;
  border-radius: 5px;
  background: #f4f4f4;
  height: 53px !important;
}
.section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=name]) {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
.section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=date-reg]) {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=date-reg]) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=date-reg]) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}
.section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=date-end]) {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=date-end]) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=date-end]) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5;
  }
}
.section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=applicant]) {
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=applicant]) {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=applicant]) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
.section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=manufacturer]) {
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=manufacturer]) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=manufacturer]) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
  }
}
.section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=product]) {
  -ms-grid-row: 6;
  grid-row: 6;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=product]) {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-lists .second-step .wpforms-form .wpforms-field:has([id=product]) {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
  }
}
.section-registries-lists .second-step .wpforms-form button[type=submit] {
  margin-right: auto;
  margin-left: auto;
  min-width: 180px;
}
.section-registries-lists .second-step.--close {
  display: none;
}

.section-registries-checks {
  --mbottom-after: calc(clamp(1.2rem, -0.347rem + 5.56vw, 3.125rem) * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(3.125rem, 0.149rem + 14.88vw, 9.375rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#215949), to(#208b89));
  background: linear-gradient(180deg, #215949 0%, #208b89 100%);
  padding-top: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
  padding-bottom: clamp(3.3rem, -1.007rem + 11.11vw, 5.938rem);
}
.section-registries-checks .accordion-wrapper {
  position: relative;
  background-color: transparent;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-registries-checks .accordion-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-registries-checks .container,
.section-registries-checks .section-top,
.section-registries-checks .accordion__list {
  position: relative;
  z-index: 2;
}
.section-registries-checks .accordion {
  max-width: 100%;
}
.section-registries-checks .accordion__control {
  border-color: #000;
  padding-top: 10px;
  padding-right: 0;
  padding-bottom: 10px;
  padding-left: 0;
}
@media screen and (min-height: 640px) {
  .section-registries-checks .accordion__control {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.section-registries-checks .accordion:first-of-type .accordion__control {
  border-top: 0;
}
.section-registries-checks .accordion__title {
  color: #262626;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.5rem + 1.88vw, 1.25rem);
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
.section-registries-checks .accordion__icon {
  width: clamp(1.563rem, 1.25rem + 1.56vw, 1.875rem);
  height: clamp(1.563rem, 1.25rem + 1.56vw, 1.875rem);
}
.section-registries-checks .accordion.open .accordion__content {
  padding-right: 0;
  padding-left: 0;
}
.section-registries-checks .accordion:not(:last-of-type).accordion.open .accordion__content {
  padding-bottom: 40px;
}
.section-registries-checks .order-wrapper {
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.section-registries-checks .order-wrapper::after {
  position: absolute;
  z-index: 0;
  inset: var(--mbottom-after) clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem) var(--mbottom-after);
  border-radius: 15px;
  background: var(--light-color);
  content: "";
}
.section-registries-checks .order-wrapper .container {
  width: min(var(--content-width), 100% - var(--content-offset) * 3);
}
@media screen and (min-width: 640px) {
  .section-registries-checks .order-wrapper .container {
    width: min(var(--content-width), 100% - var(--content-offset) * 5);
  }
}
.section-registries-checks .order__grid {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-rows: 1fr clamp(11.25rem, 3.214rem + 40.18vw, 28.125rem);
  grid-template-rows: 1fr clamp(11.25rem, 3.214rem + 40.18vw, 28.125rem);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1.875rem, 1.153rem + 3.08vw, 3.125rem);
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .section-registries-checks .order__grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.section-registries-checks .order__grid .wpforms-form {
  max-width: 435px;
}
.section-registries-checks .order__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .section-registries-checks .order__image {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.section-registries-checks .order__image picture {
  display: block;
  height: 100%;
}
.section-registries-checks .order__image img {
  position: absolute;
  top: 50%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 65/43;
  width: clamp(17.5rem, 7.321rem + 50.89vw, 38.875rem);
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 992px) {
  .section-registries-checks .order__image img {
    top: 43%;
    left: 59%;
    width: 652px;
    max-width: 120%;
  }
}
.section-registries-checks .order__content {
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 992px) {
  .section-registries-checks .order__content {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.section-registries-checks .order__title {
  max-width: 25ch;
  color: #2a2a2a;
  font-weight: 700;
  font-size: clamp(1.875rem, 1.534rem + 1.46vw, 2.563rem);
  line-height: 117%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: auto;
}
.section-registries-checks .order__title span {
  color: var(--accent-color);
}
@media (prefers-reduced-motion: no-preference) {
  .section-registries-checks .order__title.element-animation {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    opacity: 0;
    -webkit-transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    transition: all 1s cubic-bezier(0.385, 0.11, 0.25, 1.495);
    -webkit-transition-delay: var(--anime-delay);
    transition-delay: var(--anime-delay);
  }
  .section-registries-checks .order__title.element-animation.element-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  .section-registries-checks .order__title.element-animation {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 1200px) {
  .section-registries-checks .order__title.element-animation {
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}
.section-registries-checks .order__subtitle {
  opacity: 0.88;
  color: #232323;
  font-weight: 500;
  font-size: 16px;
  line-height: 94%;
  font-family: var(--second-family);
  letter-spacing: -0.02em;
}
@media screen and (min-width: 992px) {
  .section-registries-checks .order__subtitle {
    max-width: 40ch;
  }
}
.section-registries-checks .order__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;
}
@media screen and (min-width: 567px) {
  .section-registries-checks .order__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-checks .order__actions {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
  }
}
.section-registries-checks .order__actions button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (min-width: 992px) {
  .section-registries-checks .order__actions button {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 233px;
    flex: 0 1 233px;
  }
}

.wpmtst-submission-form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 800px) {
  .wpmtst-submission-form {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.wpmtst-submission-form .form-field {
  margin-bottom: 0 !important;
}
.wpmtst-submission-form .form-field.field-post_content {
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 800px) {
  .wpmtst-submission-form .form-field.field-post_content {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
  }
}
.wpmtst-submission-form .form-field.field-post_content textarea {
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 170px;
}
.wpmtst-submission-form .form-field.wpmtst-submit {
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 800px) {
  .wpmtst-submission-form .form-field.wpmtst-submit {
    -ms-grid-row: 3;
    grid-row: 3;
  }
}
.wpmtst-submission-form .wpmtst_submit_testimonial {
  position: relative;
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 52px !important;
  background: var(--button-gradient);
  padding: clamp(0.688rem, 0.5rem + 0.94vw, 0.875rem) clamp(1.5rem, 0.813rem + 3.44vw, 2.188rem) !important;
  overflow: hidden;
  color: var(--light-color);
  font-weight: 500;
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 0.938rem) !important;
  line-height: 115%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.wpmtst-submission-form .wpmtst_submit_testimonial:after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  background-color: var(--hover-button-color);
  width: 0;
  height: 100%;
  content: "";
}
@media (any-hover: hover) {
  .wpmtst-submission-form .wpmtst_submit_testimonial:hover {
    background: var(--button-gradient) !important;
    color: var(--light-color);
  }
  .wpmtst-submission-form .wpmtst_submit_testimonial:hover:after {
    left: 0;
    width: 100%;
  }
}
.wpmtst-submission-form .wpmtst_submit_testimonial:active {
  top: 2px;
}
.wpmtst-submission-form .wpmtst_submit_testimonial:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}

.section-reviews-list__grid .wpmtst-testimonial-inner {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: auto auto 1fr;
  grid-template-columns: auto auto 1fr;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 5px;
  border: 0 !important;
  border-radius: 5px;
  background: #f4f4f4;
  padding: clamp(0.938rem, 0.089rem + 4.24vw, 2.125rem) clamp(0.938rem, -0.402rem + 6.7vw, 2.813rem) !important;
}
.section-reviews-list__grid .wpmtst-testimonial-inner .clear {
  display: none !important;
}

.strong-view.wpmtst-default .wpmtst-testimonial-heading,
.strong-view.wpmtst-modern .wpmtst-testimonial-heading {
  display: none !important;
}

.strong-view.wpmtst-default .wpmtst-testimonial-image,
.strong-view.wpmtst-modern .wpmtst-testimonial-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  align-items: center;
  float: none !important;
  margin: 0 !important;
  border-radius: 100%;
  background: #d9d9d9;
  width: 65px;
  height: 65px;
  overflow: hidden;
}
.strong-view.wpmtst-default .wpmtst-testimonial-image img,
.strong-view.wpmtst-modern .wpmtst-testimonial-image img {
  border: 0 !important;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.wpmtst-testimonial-content.testimonial-content {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  margin: 0 !important;
  margin-top: 20px !important;
  color: #444 !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 130% !important;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  text-align: left !important;
}
.wpmtst-testimonial-content.testimonial-content::before, .wpmtst-testimonial-content.testimonial-content::after,
.wpmtst-testimonial-content.testimonial-content .testimonial-heading {
  display: none !important;
}

.wpmtst-testimonial-field.testimonial-field.testimonial-name {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
  align-self: flex-end;
  margin: 0 !important;
  color: #191919;
  font-weight: 600;
  font-size: clamp(1rem, 0.761rem + 1.02vw, 1.25rem);
  line-height: 140%;
  font-family: var(--third-family);
  letter-spacing: -0.02em;
  text-align: left !important;
}

.wpmtst-testimonial-field.testimonial-field.testimonial-company {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  align-self: flex-start;
  color: #444;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  text-align: left !important;
}

.strong-view.wpmtst-modern .wpmtst-testimonial-field:has(> span) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 3;
  grid-column: 3;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: left !important;
}

.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 0;
  cursor: -webkit-grab;
  cursor: grab;
  margin: 0 !important;
  border-radius: 15px;
  background: #fff;
  padding: clamp(0.938rem, 0.193rem + 3.72vw, 2.5rem) clamp(0.938rem, 0.045rem + 4.2vw, 2.3rem) clamp(0.938rem, 0.491rem + 2.23vw, 1.875rem) !important;
  width: 100%;
  max-width: clamp(20.625rem, 17.784rem + 12.12vw, 26.875rem);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 1280px) {
  .wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner {
    max-width: clamp(26.875rem, 24.375rem + 3.13vw, 28.125rem);
  }
}
.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .testimonial-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-column: 1;
  grid-column: 1;
  width: 50px;
  height: 50px;
}
.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .wpmtst-testimonial-content {
  display: -webkit-box;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -webkit-line-clamp: 3;
  color: var(--text-color);
  font-style: normal !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  -webkit-box-orient: vertical;
  margin: 0 !important;
  margin-top: 15px !important;
  padding: 0 !important;
  height: 55px;
  overflow: hidden;
  text-align: left !important;
}
.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .wpmtst-testimonial-content::before, .wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .wpmtst-testimonial-content::after,
.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .wpmtst-testimonial-content .testimonial-heading {
  display: none !important;
}
.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .testimonial-field.testimonial-name {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row-align: center;
  align-self: center;
  color: var(--text-color);
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  font-family: var(--third-family);
  letter-spacing: -0.02em;
}
.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .wpmtst-testimonial-field:has(> span) {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 0 !important;
}
.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .readmore {
  position: relative;
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  margin-top: 10px;
  text-align: left !important;
}
.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .readmore a {
  opacity: 0.41;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--text-color) !important;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
  text-align: left !important;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.wpmtst-testimonial.testimonial.t-slide .wpmtst-testimonial-inner.testimonial-inner .readmore a:hover {
  opacity: 1;
}

.services-page-slider {
  height: 880px;
}
.services-page-slider .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
}
.services-page-slider .swiper-slide {
  height: auto !important;
}

.section-policy {
  background-color: var(--bg-color);
}

.page-policy .section-hero-page__title {
  font-size: clamp(1.75rem, 1.011rem + 3.15vw, 3.375rem);
}
.page-policy .title-avatars {
  display: none;
}

.footer {
  --ptop-footer: clamp(1.563rem, 0.974rem + 2.94vw, 2.813rem);
  position: relative;
  background-color: var(--light-color);
  padding-top: var(--ptop-footer);
}
.footer__top {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: 0.5fr 1fr;
  grid-template-columns: 0.5fr 1fr;
  -webkit-column-gap: clamp(0.938rem, -0.326rem + 5.39vw, 3.125rem);
  -moz-column-gap: clamp(0.938rem, -0.326rem + 5.39vw, 3.125rem);
  column-gap: clamp(0.938rem, -0.326rem + 5.39vw, 3.125rem);
  row-gap: 35px;
}
@media screen and (min-width: 920px) {
  .footer__top {
    -ms-grid-columns: 1fr 1fr 1fr 93px;
    grid-template-columns: 1fr 1fr 1fr 93px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__top {
    -ms-grid-columns: auto 0.5fr 1fr 1fr 93px;
    grid-template-columns: auto 0.5fr 1fr 1fr 93px;
  }
}
.footer__left {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  gap: 13px;
}
@media screen and (min-width: 1024px) {
  .footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__logo {
  display: block;
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  margin-bottom: 13px;
  -webkit-box-shadow: 0 0 6px 4px var(--accent-3-color);
  box-shadow: 0 0 6px 4px var(--accent-3-color);
  border-radius: 50px;
  background: var(--accent-3-color);
  width: 50px;
  height: 50px;
}
.footer__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
}
@media screen and (min-width: 425px) {
  .footer__contacts {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.footer__phone, .footer__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-column-gap: 17px;
  -moz-column-gap: 17px;
  column-gap: 17px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #181818;
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  font-family: var(--font-family);
  letter-spacing: -0.05em;
}
.footer__phone:hover, .footer__mail:hover {
  color: var(--hover-color);
}
.footer__phone:focus-visible, .footer__mail:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.footer__phone .icon, .footer__mail .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  background: var(--accent-3-color);
  width: 22px;
  height: 22px;
}
.footer__phone .icon svg, .footer__mail .icon svg {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 425px) {
  .footer__block {
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3/5;
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .footer__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    margin: 0;
  }
}
.footer__btn {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.footer__btn:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
@media screen and (min-width: 425px) {
  .footer__btn {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  border-radius: 43px;
  background: #f4f9ff;
  padding: 7px;
}
.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 29px;
  width: 29px;
  height: 29px;
}
.footer__social-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__social-link:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 8px;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 425px) {
  .footer__address {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.footer__address-title {
  color: #000;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.footer__address-description {
  max-width: 24ch;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.footer__work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 8px;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 425px) {
  .footer__work {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.footer__work-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.footer__work-description {
  max-width: 19ch;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.footer__work-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer__col {
    padding-top: 75px;
  }
}
.footer__col:nth-of-type(1) {
  -ms-grid-row: 2;
  grid-row: 2;
}
@media screen and (min-width: 920px) {
  .footer__col:nth-of-type(1) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 3;
    grid-column: 3;
  }
}
@media screen and (min-width: 1024px) {
  .footer__col:nth-of-type(1) {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.footer__col:nth-of-type(2) {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media screen and (min-width: 425px) {
  .footer__col:nth-of-type(2) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (min-width: 920px) {
  .footer__col:nth-of-type(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1024px) {
  .footer__col:nth-of-type(2) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
  }
}
@media screen and (min-width: 1130px) {
  .footer__col:nth-of-type(2) {
    -ms-grid-column: 3;
    grid-column: 3;
  }
}
.footer__col:nth-of-type(3) {
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
@media screen and (min-width: 425px) {
  .footer__col:nth-of-type(3) {
    -ms-grid-row: 3;
    grid-row: 3;
  }
}
@media screen and (min-width: 920px) {
  .footer__col:nth-of-type(3) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
  }
}
@media screen and (min-width: 1024px) {
  .footer__col:nth-of-type(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
    padding-top: 0;
  }
}
@media screen and (min-width: 1130px) {
  .footer__col:nth-of-type(3) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 4;
    grid-column: 4;
    padding-top: 75px;
  }
}
.footer-menu__item {
  list-style: none;
}
.footer-menu__item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-menu a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #181818;
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  font-family: var(--font-family);
  letter-spacing: -0.05em;
}
.footer-menu a:hover {
  color: var(--accent-color);
}
.footer-menu a:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.footer__right-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 11px;
  background: #2d645b;
  padding: 8px 29px 7px;
  color: var(--light-color);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.05em;
}
.footer__bottom {
  margin-top: clamp(1.563rem, 0.352rem + 5.17vw, 4rem);
  background: var(--accent-3-color);
}
.footer__bottom--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 27px 0;
  color: var(--light-color);
}
@media screen and (min-width: 1024px) {
  .footer__bottom--wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.footer__bottom > * {
  color: var(--light-color);
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  font-family: var(--font-family);
  letter-spacing: -0.05em;
}
.footer__bottom a {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  color: inherit;
}
.footer__bottom a:hover {
  color: var(--accent-color);
}
.footer__bottom .footer__developer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 7px;
}

.socials {
  --color-1:#4267b2;
  --color-2:#1da1f2;
  --color-3:#2897b2;
  --color-4:#5EB5F7;
  --color-5:#ff0000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.socials__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: clamp(1.25rem, 0.866rem + 1.64vw, 2.813rem);
}
.socials__item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.socials__item a {
  position: relative;
  color: inherit;
  text-decoration: none;
}
.socials__item a .layer {
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.socials__item a .layer span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  -webkit-transform: all 0.5s;
  -ms-transform: all 0.5s;
  transform: all 0.5s;
}
.socials__item a .layer svg {
  border: 1px solid #fff;
  border-radius: 5px;
  -webkit-transform: all 0.5s;
  -ms-transform: all 0.5s;
  transform: all 0.5s;
}
.socials__item a .text {
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-weight: 600;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.socials__item a:hover {
  color: var(--hover-color);
}
.socials__item a:hover .layer {
  -webkit-transform: rotate(-35deg) skew(20deg);
  -ms-transform: rotate(-35deg) skew(20deg);
  transform: rotate(-35deg) skew(20deg);
}
.socials__item a:hover .layer span:nth-child(1) {
  opacity: 0.2;
  -webkit-transform: all 0.5s;
  -ms-transform: all 0.5s;
  transform: all 0.5s;
}
.socials__item a:hover .layer span:nth-child(2) {
  opacity: 0.4;
  -webkit-transform: translate(5px, -5px);
  -ms-transform: translate(5px, -5px);
  transform: translate(5px, -5px);
  -webkit-transform: all 0.5s;
  -ms-transform: all 0.5s;
  transform: all 0.5s;
}
.socials__item a:hover .layer span:nth-child(3) {
  opacity: 0.6;
  -webkit-transform: translate(10px, -10px);
  -ms-transform: translate(10px, -10px);
  transform: translate(10px, -10px);
  -webkit-transform: all 0.5s;
  -ms-transform: all 0.5s;
  transform: all 0.5s;
}
.socials__item a:hover .layer span:nth-child(4) {
  opacity: 0.8;
  -webkit-transform: translate(15px, -15px);
  -ms-transform: translate(15px, -15px);
  transform: translate(15px, -15px);
  -webkit-transform: all 0.5s;
  -ms-transform: all 0.5s;
  transform: all 0.5s;
}
.socials__item a:hover .layer svg {
  opacity: 1;
  -webkit-transform: translate(15px, -15px);
  -ms-transform: translate(15px, -15px);
  transform: translate(15px, -15px);
  -webkit-transform: all 0.5s;
  -ms-transform: all 0.5s;
  transform: all 0.5s;
}
.socials__item a:hover .text {
  bottom: -35px;
  opacity: 1;
}
.socials__item:nth-child(1) a .layer span, .socials__item:nth-child(1) a .layer svg, .socials__item:nth-child(1) a .text {
  color: var(--color-1);
  border-color: var(--color-1);
}
.socials__item:nth-child(2) a .layer span, .socials__item:nth-child(2) a .layer svg, .socials__item:nth-child(2) a .text {
  color: var(--color-2);
  border-color: var(--color-2);
}
.socials__item:nth-child(3) a .layer span, .socials__item:nth-child(3) a .layer svg, .socials__item:nth-child(3) a .text {
  color: var(--color-3);
  border-color: var(--color-3);
}
.socials__item:nth-child(4) a .layer span, .socials__item:nth-child(4) a .layer svg, .socials__item:nth-child(4) a .text {
  color: var(--color-4);
  border-color: var(--color-4);
}
.socials__item:nth-child(5) a .layer span, .socials__item:nth-child(5) a .layer svg, .socials__item:nth-child(5) a .text {
  color: var(--color-5);
  border-color: var(--color-5);
}
.socials__item:nth-child(1) a .layer span, .socials__item:nth-child(1) a .layer svg {
  -webkit-box-shadow: -1px 1px 3px var(--color-1);
  box-shadow: -1px 1px 3px var(--color-1);
}
.socials__item:nth-child(2) a .layer span, .socials__item:nth-child(2) a .layer svg {
  -webkit-box-shadow: -1px 1px 3px var(--color-2);
  box-shadow: -1px 1px 3px var(--color-2);
}
.socials__item:nth-child(3) a .layer span, .socials__item:nth-child(3) a .layer svg {
  -webkit-box-shadow: -1px 1px 3px var(--color-3);
  box-shadow: -1px 1px 3px var(--color-3);
}
.socials__item:nth-child(4) a .layer span, .socials__item:nth-child(4) a .layer svg {
  -webkit-box-shadow: -1px 1px 3px var(--color-4);
  box-shadow: -1px 1px 3px var(--color-4);
}
.socials__item:nth-child(5) a .layer span, .socials__item:nth-child(5) a .layer svg {
  -webkit-box-shadow: -1px 1px 3px var(--color-5);
  box-shadow: -1px 1px 3px var(--color-5);
}

dialog {
  --animation-scale-down: scale-down 0.5s cubic-bezier(0.5, -0.5, 0.1, 1.5);
  --wpforms-button-size-margin-top: 0;
  --wpforms-field-size-input-spacing: 7px;
  --wpforms-field-size-input-height: clamp(2.5rem, 1.607rem + 4.46vw, 3.75rem);
  --wpforms-field-size-font-size: clamp(0.938rem, 0.491rem + 2.23vw, 1.563rem);
  --wpforms-field-size-padding-h: clamp(0.938rem, 0.714rem + 1.12vw, 1.25rem);
  --wpforms-button-size-height: clamp(2.5rem, 1.994rem + 2.16vw, 3.375rem);
  --wpforms-button-background-color-alt: var(--accent-color);
  -webkit-animation: var(--animation-scale-down) forwards;
  animation: var(--animation-scale-down) forwards;
  -webkit-transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete, opacity 0.5s, -webkit-transform 0.5s;
  transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete, opacity 0.5s, -webkit-transform 0.5s;
  transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete, opacity 0.5s, transform 0.5s;
  transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete, opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  margin: auto;
  inset: 0;
  width: 100%;
  max-width: min(90vw, 560px);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-x: auto;
}

#quizDialog {
  max-width: min(95vw, 1095px);
  height: 100%;
}

#calculateDialog {
  max-width: min(95vw, 760px);
}

#learnDialog {
  max-width: min(95vw, 460px);
}

#callbackDialog {
  max-width: min(95vw, 550px);
}

#reviewsDialog {
  max-width: min(95vw, 650px);
}

.hidden {
  display: none;
}

dialog[open] {
  opacity: 1;
  -webkit-animation: slide-in-up 0.5s ease-in-out forwards;
  animation: slide-in-up 0.5s ease-in-out forwards;
}

dialog:not([open]) {
  opacity: 0;
  pointer-events: none;
}

dialog::-ms-backdrop {
  backdrop-filter: blur(0.25rem);
}

dialog::backdrop {
  -webkit-backdrop-filter: blur(0.25rem);
  backdrop-filter: blur(0.25rem);
}

#quizDialog::-ms-backdrop {
  background-color: rgba(57, 70, 121, 0.94);
}

#quizDialog::backdrop {
  background-color: rgba(57, 70, 121, 0.94);
}

@-webkit-keyframes slide-in-up {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes slide-in-up {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-webkit-keyframes scale-down {
  to {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@keyframes scale-down {
  to {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
body:has(dialog[open]) {
  overflow: hidden;
}

dialog[open]::-ms-backdrop {
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.6);
}

dialog[open]::backdrop {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.6);
}

.dialog {
  border: 0;
  border-radius: 15px;
  padding-top: clamp(1.875rem, 0.792rem + 4.2vw, 3.5rem);
  padding-right: clamp(0.938rem, 0.576rem + 1.54vw, 1.563rem);
  padding-bottom: clamp(1.875rem, 0.792rem + 4.2vw, 3.5rem);
  padding-left: clamp(0.938rem, 0.576rem + 1.54vw, 1.563rem);
}
.dialog-close {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
}
.dialog-close svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.dialog-close:hover {
  color: var(--accent-color);
}
.dialog-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(0.938rem, 0.491rem + 2.23vw, 1.563rem);
  font-weight: 300;
  font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
  /* 14px 16px */
  line-height: 1.55;
}
.dialog-content__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(0.625rem, 0.179rem + 2.23vw, 1.25rem);
  width: 100%;
}
.dialog-content__title {
  color: #2a2a2a;
  font-weight: 700;
  font-size: clamp(1.5rem, 0.922rem + 2.47vw, 2.5rem);
  line-height: 117%;
  letter-spacing: -0.02em;
  text-align: left;
  text-transform: uppercase;
}
.dialog-content__title span {
  color: var(--accent-color);
}
.dialog-content__text {
  margin: 0 auto;
  text-align: left;
}
.dialog-content__description {
  margin: 0;
  font-weight: 300;
  font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
  line-height: 1.55;
  text-align: center;
}
.dialog-content .wpforms-form button[type=submit] {
  width: 100%;
  min-width: 260px;
}

div.wpforms-container-full:not(:empty) {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

.wpforms-form {
  --wpforms-button-background-color: rgb(31, 91, 255);
  --wpforms-button-border-radius: 30px;
  --wpforms-button-size-margin-top: 0;
  --wpforms-field-size-input-spacing: 7px;
  --wpforms-field-size-input-height: 40px;
  --wpforms-field-size-font-size: clamp(
    0.75rem,
    0.625rem + 0.63vw,
    0.875rem
  );
  --wpforms-field-size-padding-h: clamp(0.938rem, 0.714rem + 1.12vw, 1.25rem);
  --wpforms-button-size-height: clamp(2.5rem, 1.994rem + 2.16vw, 3.375rem);
  --wpforms-button-background-color-alt: var(--accent-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(18px, 1.024rem + 0.43vw, 22px);
  width: 100%;
}
.wpforms-form .wpforms-hidden,
.wpforms-form .wpforms-label-hide {
  display: none;
}
.wpforms-form .wpforms-field-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: clamp(0.625rem, 0.179rem + 2.23vw, 1.25rem);
  width: 100%;
}
.wpforms-form .wpforms-layout-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
}
.wpforms-form .wpforms-layout-row .wpforms-layout-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.wpforms-form .wpforms-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 !important;
  width: 100%;
}
.wpforms-form .wpforms-layout-column .wpforms-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.wpforms-form input,
.wpforms-form textarea {
  margin: 0;
  outline: none;
  border: 0 !important;
  border-bottom: 1px solid #e2e2e2 !important;
  padding: 0 var(--wpforms-field-size-padding-h) !important;
  width: 100%;
  height: var(--wpforms-field-size-input-height) !important;
  resize: none !important;
  color: #4d4d4d;
  font-size: var(--wpforms-field-size-font-size) !important;
  line-height: 1.33;
}
.wpforms-form input::-webkit-input-placeholder, .wpforms-form textarea::-webkit-input-placeholder {
  color: #7f7f7f;
}
.wpforms-form input::-moz-placeholder, .wpforms-form textarea::-moz-placeholder {
  color: #7f7f7f;
}
.wpforms-form input:-ms-input-placeholder, .wpforms-form textarea:-ms-input-placeholder {
  color: #7f7f7f;
}
.wpforms-form input::-ms-input-placeholder, .wpforms-form textarea::-ms-input-placeholder {
  color: #7f7f7f;
}
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
  color: #7f7f7f;
}
.wpforms-form input:focus-visible, .wpforms-form input:focus,
.wpforms-form textarea:focus-visible,
.wpforms-form textarea:focus {
  outline: 2px solid #a0c708 !important;
  outline-offset: 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 0 !important;
}
.wpforms-form input[type=checkbox]:before {
  top: 0 !important;
  left: 0 !important;
}
.wpforms-form input[type=checkbox]:checked:after {
  top: -1px !important;
  left: -2px !important;
  border-color: var(--accent-color) !important;
}
.wpforms-form em.wpforms-error[role=alert] {
  position: absolute !important;
  bottom: -20px;
}
.wpforms-form .wpforms-field-gdpr-checkbox > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.75rem, 0.69rem + 0.3vw, 0.875rem);
}
.wpforms-form .wpforms-field-gdpr-checkbox input {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 !important;
  border: 1px solid var(--accent-color) !important;
  border-radius: 5px;
  padding: 0 !important;
  width: 19px !important;
  min-width: 19px !important;
  height: 19px !important;
  accent-color: var(--accent-color);
}
.wpforms-form .wpforms-field-gdpr-checkbox input::before {
  top: 0;
  left: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 0 !important;
  width: 16px;
  height: 16px;
}
.wpforms-form .wpforms-field-gdpr-checkbox input:checked:after {
  top: -1px;
  left: -1px;
  border-bottom: 4px solid var(--accent-color);
  border-left: 4px solid var(--accent-color);
}
.wpforms-form .wpforms-field-gdpr-checkbox label {
  padding-left: 5px;
}
.wpforms-form button[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  outline: none;
  border: 0;
  border-radius: 30px;
  background: var(--button-gradient);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: var(--wpforms-button-size-height);
  overflow: hidden;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}
.wpforms-form button[type=submit]:after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  background-color: var(--hover-button-color);
  width: 0;
  height: 100%;
  content: "";
}
@media screen and (min-width: 640px) {
  .wpforms-form button[type=submit] {
    min-width: 260px;
  }
}
@media (any-hover: hover) {
  .wpforms-form button[type=submit]:hover {
    color: var(--light-color);
  }
  .wpforms-form button[type=submit]:hover:after {
    left: 0;
    width: 100%;
  }
}
.wpforms-form button[type=submit]:active {
  top: 2px;
}
.wpforms-form button[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--accent-color);
  color: var(--light-color);
}
.wpforms-form button[type=submit]:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.wpforms-form .form-bottom-text {
  text-align: center;
  text-wrap: balance;
}
.wpforms-form .form-bottom-text a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.wpforms-form .form-bottom-text a:hover {
  text-decoration: underline;
}
.wpforms-form .error {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  color: red;
  font-weight: 400;
  font-size: 11px;
  font-family: var(--font-family);
}
@media (any-hover: hover) {
  .wpforms-form button[type=submit]:hover,
  .wpforms-form input[type=submit]:hover {
    color: var(--light-color);
  }
  .wpforms-form button[type=submit]:hover:after,
  .wpforms-form input[type=submit]:hover:after {
    left: 0;
    width: 100%;
  }
}
.wpforms-form button[type=submit]:active,
.wpforms-form input[type=submit]:active {
  top: 2px;
}
.wpforms-form button[type=submit]:focus-visible,
.wpforms-form input[type=submit]:focus-visible {
  outline: 2px solid #a0c708;
  outline-offset: 2px;
}
.wpforms-page-button:focus:after {
  border-radius: inherit !important;
}

.wpforms-container-full .wpforms-form .iti--allow-dropdown .iti__country-container .iti__dropdown-content .iti__country-list {
  max-height: 110px !important;
}

.form-order .wpforms-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wpforms-field-container .wpforms-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.wpforms-page-indicator-page-progress-wrap {
  background: -webkit-gradient(linear, left top, right top, color-stop(-1000%, rgba(156, 197, 11, 0.25)), color-stop(500%, transparent));
  background: linear-gradient(90deg, rgba(156, 197, 11, 0.25) -1000%, transparent 500%);
  height: 8px !important;
}

.wpforms-page-indicator.progress .wpforms-page-indicator-page-progress {
  background-color: var(--accent-color) !important;
  height: 8px !important;
}

.wpforms-clear.wpforms-pagebreak-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wpforms-clear.wpforms-pagebreak-left .wpforms-page-button {
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#a0c708), color-stop(98.5%, #319546)) !important;
  background: linear-gradient(90deg, #a0c708 0%, #319546 98.5%) !important;
  padding: 9px 25px;
  height: auto;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.wpforms-clear.wpforms-pagebreak-left .wpforms-page-button.wpforms-page-prev {
  margin: 0 !important;
  margin-right: auto;
}
.wpforms-clear.wpforms-pagebreak-left .wpforms-page-button.wpforms-page-next {
  margin: 0 !important;
  margin-left: auto !important;
}

.wpforms-field.wpforms-field-radio ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[1];
  grid-template-columns: repeat(1, auto);
  padding: 0;
}

.wpforms-field.wpforms-field-radio.wpforms-list-2-columns ul {
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.wpforms-field.wpforms-field-radio ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  border: 1px solid #a2b3c0;
  border-radius: 10px;
  padding: 13px 24px;
  height: 49px;
}

.wpforms-field.wpforms-field-radio ul li input {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 !important;
  outline: none;
  border-radius: 22px;
  padding: 0 !important;
  width: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  height: 22px !important;
  accent-color: var(--accent-color);
}

.wpforms-field.wpforms-field-radio ul li input + label {
  position: relative;
  cursor: pointer;
  padding-left: 0 !important;
}
.wpforms-field.wpforms-field-radio ul li input + label::after {
  position: absolute;
  z-index: 0;
  inset: -10px -24px;
  content: "";
}

.wpforms-field.wpforms-field-radio ul li input[type=radio]:before,
.wpforms-field.wpforms-field-radio ul li input[type=radio]:after {
  width: 24px !important;
  height: 24px !important;
}

.wpforms-field.wpforms-field-radio ul li input[type=radio]:checked:before {
  -webkit-box-shadow: 0 0 0 1px var(--accent-color), 0px 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 1px var(--accent-color), 0px 1px 2px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.wpforms-field.wpforms-field-radio ul li input[type=radio]:checked:after {
  background-color: var(--accent-color);
}

#calculateDialog .wpforms-form {
  row-gap: 25px;
}
#calculateDialog .wpforms-form .wpforms-submit-container {
  position: absolute;
  right: clamp(0.938rem, 0.576rem + 1.54vw, 1.563rem);
  bottom: clamp(1.875rem, 0.792rem + 4.2vw, 3.5rem);
}
#calculateDialog .wpforms-form button[type=submit] {
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#a0c708), color-stop(98.5%, #319546)) !important;
  background: linear-gradient(90deg, #a0c708 0%, #319546 98.5%) !important;
  padding: 9px 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 150px;
  height: auto;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 640px) {
  #calculateDialog .wpforms-form button[type=submit] {
    padding: 9px 25px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 260px;
  }
}

.section-reviews-form__grid .wpforms-form {
  display: -ms-grid;
  display: grid;
}
.section-reviews-form__grid .wpforms-form .wpforms-field-container {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 640px) {
  .section-reviews-form__grid .wpforms-form .wpforms-field-container {
    -ms-grid-columns: 0.8fr 1fr;
    grid-template-columns: 0.8fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .section-reviews-form__grid .wpforms-form .wpforms-field-container {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.section-reviews-form__grid .wpforms-form .wpforms-field:has(input) input:not([type=checkbox]) {
  border: 0;
  border-bottom: 0 !important;
  border-radius: 5px;
  background: #f4f4f4;
}
.section-reviews-form__grid .wpforms-form .wpforms-field:has(textarea) {
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-reviews-form__grid .wpforms-form .wpforms-field:has(textarea) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 992px) {
  .section-reviews-form__grid .wpforms-form .wpforms-field:has(textarea) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
  }
}
.section-reviews-form__grid .wpforms-form .wpforms-field:has(textarea) textarea {
  border: 0;
  border-bottom: 0;
  border-radius: 5px;
  background: #f4f4f4;
  padding: 23px 22px !important;
  min-height: 178px !important;
}
.section-reviews-form__grid .wpforms-form .wpforms-field-gdpr-checkbox > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.75rem, 0.69rem + 0.3vw, 0.875rem);
}
.section-reviews-form__grid .wpforms-form .wpforms-field-gdpr-checkbox input {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 !important;
  border: 1px solid var(--accent-color) !important;
  border-radius: 5px;
  padding: 0 !important;
  width: 19px !important;
  min-width: 19px !important;
  height: 19px !important;
  accent-color: var(--accent-color);
}
.section-reviews-form__grid .wpforms-form .wpforms-field-gdpr-checkbox input::before {
  top: 0;
  left: 0;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 0 !important;
  width: 16px;
  height: 16px;
}
.section-reviews-form__grid .wpforms-form .wpforms-field-gdpr-checkbox input:checked:after {
  top: -1px;
  left: -1px;
  border-bottom: 4px solid var(--accent-color);
  border-left: 4px solid var(--accent-color);
}
.section-reviews-form__grid .wpforms-form .wpforms-field-gdpr-checkbox label {
  padding-left: 5px;
}
.section-reviews-form__grid .wpforms-form button[type=submit] {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 640px) {
  .section-reviews-form__grid .wpforms-form button[type=submit] {
    margin: 0;
    min-width: 260px;
  }
}

.section-registries-checks .accordion__content .wpforms-form .wpforms-field-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 640px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field-container {
    -ms-grid-columns: 1fr 0.5fr 0.5fr 1fr;
    grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
  }
}
.section-registries-checks .accordion__content .wpforms-form .wpforms-field-label {
  color: #444;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.section-registries-checks .accordion__content .wpforms-form .wpforms-field:has(input) input {
  border-bottom: 0;
  border-radius: 5px;
  background: #f4f4f4;
  height: 53px !important;
}
.section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=name]) {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
.section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=date-reg]) {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=date-reg]) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=date-reg]) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}
.section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=date-end]) {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=date-end]) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=date-end]) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/5;
  }
}
.section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=applicant]) {
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=applicant]) {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=applicant]) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
.section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=manufacturer]) {
  -ms-grid-row: 4;
  grid-row: 4;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=manufacturer]) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=manufacturer]) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/5;
  }
}
.section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=product]) {
  -ms-grid-row: 6;
  grid-row: 6;
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (min-width: 640px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=product]) {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 992px) {
  .section-registries-checks .accordion__content .wpforms-form .wpforms-field:has([id=product]) {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
  }
}
.section-registries-checks .accordion__content .wpforms-form button[type=submit] {
  margin-right: auto;
  margin-left: auto;
  min-width: 180px;
}

.globe-container,
.globe {
  --size-width: 29px;
  --size-height: 29px;
  width: var(--size-width);
  height: var(--size-height);
}

.globe-container {
  display: inline-block;
  position: absolute;
  top: 52.8%;
  left: 52.8%;
  -webkit-transform: scale(1.1) translate(-50%, -50%);
  -ms-transform: scale(1.1) translate(-50%, -50%);
  transform: scale(1.1) translate(-50%, -50%);
}

.globe {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.globe-worldmap,
.globe-worldmap-front,
.globe-worldmap-back,
.globe-sphere,
.globe-outer-shadow,
.globe-inner-shadow {
  display: block;
  position: absolute;
  margin: 0;
}

.globe-sphere,
.globe-outer-shadow,
.globe-inner-shadow {
  top: 0;
  left: 0;
  background-position: 0 0;
  background-repeat: no-repeat;
  width: var(--size-width);
  height: var(--size-height);
}

.globe-worldmap {
  top: 0;
  left: 0;
  border-radius: 50%;
  width: var(--size-width);
  height: var(--size-height);
  overflow: hidden;
}

.globe-worldmap-front,
.globe-worldmap-back {
  top: 0;
  left: 0;
  background-image: url(../globe/worldmap.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(var(--size-height) * 5);
  height: var(--size-height);
  overflow: visible;
}

.sticky .globe-worldmap-front,
.sticky .globe-worldmap-back {
  top: 0;
  left: 0;
  background-image: url(../globe/worldmap-sticky.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(var(--size-height) * 5);
  height: var(--size-height);
  overflow: visible;
}

.globe-outer-shadow {
  top: 186px;
  left: 0;
  background-image: url(../globe/outer_shadow.svg);
  width: var(--size-width);
  height: 30px;
}

.globe-inner-shadow {
  display: none;
  background-image: url(../globe/inner_shadow.svg);
}

.globe-worldmap-front {
  -webkit-animation: textureSpinreverse 8s linear infinite;
  animation: textureSpinreverse 8s linear infinite;
  background-position: 0px 0px;
}

.globe-worldmap-back {
  -webkit-animation: textureSpin 8s linear infinite;
  animation: textureSpin 8s linear infinite;
  background-position: 0px calc((var(--size-height) + var(--size-height) / 10) * -1);
}

@-webkit-keyframes textureSpin {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-47.5%);
    transform: translateX(-47.5%);
  }
}

@keyframes textureSpin {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-47.5%);
    transform: translateX(-47.5%);
  }
}
@-webkit-keyframes textureSpinreverse {
  from {
    -webkit-transform: translateX(-47.5%);
    transform: translateX(-47.5%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes textureSpinreverse {
  from {
    -webkit-transform: translateX(-47.5%);
    transform: translateX(-47.5%);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.section-policy .policy-list {
  padding-top: clamp(0.938rem, 0.799rem + 0.59vw, 1.5rem);
}
.section-policy .policy-list .policy-list-wrapper > li span,
.section-policy .policy-list .policy-list-wrapper > li:before .fs-largest {
  font-size: clamp(1.25rem, 1.096rem + 0.66vw, 1.875rem);
  font-weight: 500;
  line-height: 1.4;
}
.section-policy .policy-list li:before {
  content: counters(item, ".") ".";
  counter-increment: item;
  position: absolute;
  -webkit-transform: translateX(-120%);
  -ms-transform: translateX(-120%);
  transform: translateX(-120%);
}
.section-policy .policy-list ol {
  counter-reset: item;
  padding-left: 24px;
}
.section-policy .policy-list .policy-list-wrapper {
  margin-bottom: clamp(2.188rem, 1.957rem + 0.98vw, 3.125rem);
  padding-left: 22px;
}
.section-policy .policy-list li {
  max-width: 120ch;
  display: block;
  font-family: var(--second-family);
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  line-height: 1.5;
}
.section-policy .policy-list .policy-list-wrapper > li {
  margin-top: clamp(0.625rem, 0.533rem + 0.39vw, 1rem);
}
.section-policy .policy-list-feedback {
  color: var(--text-color);
  text-decoration: underline;
}
.section-policy .policy-list-feedback:hover {
  color: var(--accent-color);
}

.text-block {
  color: #444;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  font-family: var(--font-family);
  letter-spacing: -0.02em;
}
.text-block p {
  margin-top: 0;
}
.text-block ul, .text-block ol {
  padding-left: 17px;
}
.text-block ul li {
  list-style-type: disc;
}/*# sourceMappingURL=main.css.map */
.text-block h1, .text-block h2, .text-block h3, .text-block h4, .text-block h5, .text-block h6  {
	margin-top: revert;
	margin-bottom: revert;
}
@media all and (min-width: 1241px) {
	.section-services .services-slider .swiper-wrapper {
	  grid-template-columns: repeat(4, 1fr);
	  gap: 20px;
		grid-auto-flow: unset;
	  justify-items: center;
	}
	.section-services .swiper-navigation {
		display: none;
	}
	.section-services__grid {
		padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    width: min(var(--content-width), 100% - var(--content-offset) * 2);
	}
}
#toc-list {
	margin-top: revert;
	margin-bottom: revert;
}
#toc-list a {
	color: #000;
}
#toc-list a:hover {
	text-decoration: underline;
}
.btn-serf {
	width: max-content;
}
.section-registries-checks .accordion.open .accordion__content {
	max-height: unset !important;
}
    .section-registries-checks.prayses .order__image img {
        left: 50%;
    }
@media all and (min-width: 1023px) {
    .section-registries-checks.prayses .order__image img {
        left: 39%;
    }
}

.table_prays__top {
    display: flex;    
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 0 20px;
}

.table_prays__top div {
    font-family: var(--second-family);
    width: 100%;
    font-weight: 700;
    font-size: 30px;
    line-height: 117%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #9cc50b;
    text-align: center;
}

.table_prays__bottom {
    margin-bottom: 20px;
}

.table_prays__item {
    margin-bottom: 12px;
    background: #f4f4f4;
    border-radius: 10px;
    display: flex;    
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    min-height: 100px;
    transition: all .3s ease-out;
}
.table_prays__item div {
    font-family: var(--second-family);
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    line-height: 94%;
    transition: all .3s ease-out;
    letter-spacing: -0.02em;
    color: #262626;
    text-align: center;
}
.table_prays__item--link {
    background: var(--accent-3-color);
}
.table_prays__item--link div {
    color: #fff;
}
.table_prays__item--link:hover {
    background: #f4f4f4;
}
.table_prays__item--link:hover div {
    color: #262626;
}
@media all and (max-width: 1023px) {
    .table_prays {
        overflow: auto;
    }
    .table_prays__in {
        width: max-content;
    }
    .table_prays__top div, .table_prays__item div {
        width: 200px;
    }
    .table_prays__item {
        min-height: unset;
    }
    .table_prays__item {
        padding: 10px;
    }
    .table_prays__top div {
        font-size: 20px;
    }
    .table_prays__item div {
        font-size: 16px;
    }
}


