@import url(https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Fira+Sans:wght@400;500;700&display=swap);
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  padding: 0;
  margin: 0;
}

/*ol, ul {*/
/*list-style: none;*/
/*}*/
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

* {
  margin: 0;
  padding: 0;
}
*:after, *:before {
  width: 0;
}

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

input[type=text],
input[type=email],
input[type=phone],
input[type=number],
input[type=submit],
input[type=reset],
textarea,
button {
  border-radius: 0;
  appearance: none;
  outline: none;
  border: none;
}

a {
  text-decoration: none;
}

button {
  border: none;
  appearance: none;
}

/* End of Eric Meyer's CSS Reset */
body {
  padding: 0;
  margin: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
}
body.popup-opened {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

svg {
  pointer-events: none;
}

@media (hover: hover) {
  a:hover {
    color: #408C7F;
  }
}
a:active {
  color: #408C7F;
}

a,
button {
  cursor: pointer;
  transition-duration: 0.2s;
  transition-property: background-color, color, border-color, box-shadow, opacity, linear-gradient;
  transition-timing-function: ease-in-out;
}
a:disabled,
button:disabled {
  pointer-events: none;
  opacity: 0.6;
}

input[type=submit]:disabled {
  pointer-events: none;
  opacity: 0.6;
}

.white-bg {
  background-color: #fff !important;
}

.lightgreen-bg {
  background-color: #eef7f5 !important;
}

.single-content h2 {
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
  font-size: 64px;
  line-height: 1.1;
  color: #f2f2f2;
}
@media screen and (max-width: 991px) {
  .single-content h2 {
    font-size: 56px;
  }
}
@media screen and (max-width: 768px) {
  .single-content h2 {
    font-size: 48px;
  }
}
.single-content h1 {
  font-family: "Ubuntu", sans-serif;
  font-size: 300px;
  line-height: 1;
  color: #f2f2f2;
}
@media screen and (max-width: 991px) {
  .single-content h1 {
    font-size: 200px;
  }
}
@media screen and (max-width: 768px) {
  .single-content h1 {
    font-size: 150px;
  }
}
.single-content p {
  font-size: 32px;
  line-height: 1.2;
  color: #f2f2f2;
}
@media screen and (max-width: 991px) {
  .single-content p {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .single-content p {
    font-size: 20px;
  }
}

.back-button-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .back-button-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
.back-button-wrapper__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  border: solid 2px #f2f2f2;
  color: #f2f2f2;
}
@media screen and (max-width: 991px) {
  .back-button-wrapper__button {
    width: 100%;
    padding: 18px 24px;
  }
}

.breadcrumbs {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.breadcrumbs .current-item {
  font-weight: 700;
}

.aligncenter {
  margin: 0 auto;
}

@media (hover: hover) {
  .black-bg-hover-effect:hover, .single-solution__nav-link:hover, .single-product__document-file:hover, .sidebar__popup-button:hover, .product-card__download-btn:hover {
    color: #fff;
    background-color: #2f2f2f;
  }
  .black-bg-hover-effect:hover svg path, .single-solution__nav-link:hover svg path, .single-product__document-file:hover svg path, .sidebar__popup-button:hover svg path, .product-card__download-btn:hover svg path {
    stroke: #fff;
  }
}
.black-bg-hover-effect:active, .single-solution__nav-link:active, .single-product__document-file:active, .sidebar__popup-button:active, .product-card__download-btn:active {
  color: #fff;
  background-color: #2f2f2f;
}
.black-bg-hover-effect:active svg path, .single-solution__nav-link:active svg path, .single-product__document-file:active svg path, .sidebar__popup-button:active svg path, .product-card__download-btn:active svg path {
  stroke: #fff;
}

@media (hover: hover) {
  .white-color-hover-effect:hover, .our-history__slide-btn:hover {
    color: #5cc17d;
    background-color: #fff;
  }
}
.white-color-hover-effect:active, .our-history__slide-btn:active {
  color: #5cc17d;
  background-color: #fff;
}

.scale-hover-effect, .product-card {
  transition: transform 0.3s ease-in-out;
}
@media (hover: hover) {
  .scale-hover-effect:hover, .product-card:hover {
    transform: scale(1.02);
  }
}
.scale-hover-effect:active, .product-card:active {
  transform: scale(1.02);
}
@media (hover: hover) {
  .scale-hover-effect.mod-1:hover, .mod-1.product-card:hover {
    transform: scale(1.1);
  }
}
.scale-hover-effect.mod-1:active, .mod-1.product-card:active {
  transform: scale(1.1);
}

@media (hover: hover) {
  .bg-hover-effect:hover, .navigation.pagination .page-numbers.next:hover,
  .navigation.pagination .page-numbers.prev:hover {
    background-color: #408C7F;
  }
  .bg-hover-effect:hover svg path, .navigation.pagination .page-numbers.next:hover svg path,
  .navigation.pagination .page-numbers.prev:hover svg path {
    stroke: #fff;
  }
}
.bg-hover-effect:active, .navigation.pagination .page-numbers.next:active,
.navigation.pagination .page-numbers.prev:active {
  background-color: #408C7F;
}
.bg-hover-effect:active svg path, .navigation.pagination .page-numbers.next:active svg path,
.navigation.pagination .page-numbers.prev:active svg path {
  stroke: #fff;
}

.square-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #f2f2f2;
  transition: 0.3s background-color;
}
@media (hover: hover) {
  .square-wrapper:hover {
    background-color: #408C7F;
  }
}
.square-wrapper:active {
  background-color: #408C7F;
}
.square-wrapper.with-icon {
  gap: 8px;
}

.grey-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #2f2f2f;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .grey-btn {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .grey-btn:hover {
    color: #f2f2f2;
    background-color: #408C7F;
  }
}
.grey-btn:active {
  color: #f2f2f2;
  background-color: #408C7F;
}

.primary-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  line-height: 1.25;
  padding: 12px 16px;
  border-radius: 8px;
  color: #f2f2f2;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .primary-btn {
    font-size: 14px;
  }
}
.primary-btn:after, .primary-btn:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  background-image: linear-gradient(to left, #5cc17d, #469a9e);
  transition: opacity 0.3s linear;
}
.primary-btn:before {
  opacity: 1;
}
@media (hover: hover) {
  .primary-btn:hover {
    color: #fff;
  }
  .primary-btn:hover:after {
    opacity: 1;
    background-image: linear-gradient(to left, #408C7F, #408C7F);
  }
}
.primary-btn:active {
  color: #fff;
}
.primary-btn:active:after {
  opacity: 1;
  background-image: linear-gradient(to left, #408C7F, #408C7F);
}
.primary-btn.with-icon {
  padding: 16px 24px;
}
@media screen and (max-width: 991px) {
  .primary-btn.with-icon {
    padding: 14px 16px;
  }
}

.tranparent-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1.25;
  gap: 8px;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #f2f2f2;
  color: #f2f2f2;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .tranparent-btn {
    padding: 14px 16px;
  }
}
@media (hover: hover) {
  .tranparent-btn:hover {
    color: #f2f2f2;
    background-color: #408C7F;
    border: 2px solid #408C7F;
  }
}
.tranparent-btn:active {
  background-color: #408C7F;
  border: 2px solid #408C7F;
}
.tranparent-btn.with-icon {
  padding: 16px 24px;
}

.grey-tranparent-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  gap: 8px;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  border: 2px solid #2f2f2f;
  color: #2f2f2f;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .grey-tranparent-btn {
    padding: 14px 16px;
  }
}
@media (hover: hover) {
  .grey-tranparent-btn:hover {
    color: #f2f2f2;
    background-color: #408C7F;
    border: 2px solid #408C7F;
  }
  .grey-tranparent-btn:hover svg path {
    stroke: #fff;
  }
}
.grey-tranparent-btn:active {
  background-color: #408C7F;
  border: 2px solid #408C7F;
}
.grey-tranparent-btn:active svg path {
  stroke: #fff;
}

img {
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.viewed .from-left {
  animation: from-left 1s ease-out forwards;
}
.viewed .from-right {
  animation: from-right 1s ease-out forwards;
}

@keyframes from-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes from-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.container {
  --container-max: 1680px;
  width: 100%;
  max-width: var(--container-max);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1600px) {
  .container {
    --container-max: 1440px;
  }
}
@media (max-width: 1440px) {
  .container {
    --container-max: 1280px;
  }
}
@media (max-width: 1280px) {
  .container {
    --container-max: 1140px;
  }
}
@media (max-width: 1140px) {
  .container {
    --container-max: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    --container-max: 768px;
  }
}
@media (max-width: 768px) {
  .container {
    --container-max: 670px;
  }
}
@media (max-width: 576px) {
  .container {
    --container-max: 100%;
  }
}

.small-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 991px) {
  .small-container {
    max-width: 768px;
  }
}

.swiper-same-height .swiper-container, .single-product__related-block-slider .swiper-container {
  display: flex;
  align-items: stretch;
  /* Stretches items to fit the tallest one */
}
.swiper-same-height .swiper-slide, .single-product__related-block-slider .swiper-slide {
  height: auto;
  /* Ensures slide content fills the available height */
}

.breakout-right, .single-product__related-block-slider {
  position: relative;
  width: calc(100vw - (100vw - var(--container-max)) / 2);
  margin-right: calc(-1 * (100vw - var(--container-max)) / 2);
}

textarea {
  height: 132px;
  resize: none;
}

textarea,
input[type=date],
input[type=text] {
  width: 100%;
  font-family: "Fira Sans", sans-serif;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.4;
  color: #727272;
  background-color: #f2f2f2;
}
textarea.not-valid,
input[type=date].not-valid,
input[type=text].not-valid {
  background-color: #fcb4b4;
}
textarea:focus,
input[type=date]:focus,
input[type=text]:focus {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 8px;
  background-color: #fff;
  transition: 0.3s background-color, color ease-in-out;
}
@media (hover: hover) {
  input[type=submit]:hover {
    background-color: #408C7F;
    color: #fff;
  }
  input[type=submit]:hover svg path {
    stroke: #fff;
  }
}
input[type=submit]:active {
  background-color: #408C7F;
  color: #fff;
}
input[type=submit]:active svg path {
  stroke: #fff;
}

.slider-button-prev,
.slider-button-next {
  background-color: transparent;
  width: 56px;
  height: 56px;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: solid 2px #2f2f2f;
}

.wpcf7-form br {
  display: none;
}
.wpcf7-form .form-title {
  flex-grow: 0;
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  text-align: left;
  color: #f2f2f2;
  margin-bottom: 16px;
}
@media screen and (max-width: 570px) {
  .wpcf7-form .form-title {
    margin-bottom: 14px;
  }
}
.wpcf7-form .inputs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.wpcf7-form .wpcf7-form-control.wpcf7-acceptance {
  display: flex;
  margin-bottom: 16px;
}
@media screen and (max-width: 570px) {
  .wpcf7-form .wpcf7-form-control.wpcf7-acceptance {
    margin-bottom: 14px;
  }
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #fff;
  margin: 8px 0;
}
.wpcf7-form .wpcf7-response-output {
  color: #fff;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  font-size: 22px;
}

.wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
  position: relative;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #f2f2f2;
  display: flex;
}
.wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: flex;
  gap: 7px;
}
.wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  flex-shrink: 0;
  position: relative;
  top: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border: 1px solid #dcdcdc;
}
.wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label:before {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBMaWNlbnNlOiBQRC4gTWFkZSBieSBNYXJ5IEFrdmVvOiBodHRwczovL21hcnlha3Zlby5jb20vIC0tPgo8c3ZnIGZpbGw9IiNkY2RjZGMiIHdpZHRoPSIxMHB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgaWQ9ImNoZWNrIiBkYXRhLW5hbWU9IkxpbmUgQ29sb3IiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgY2xhc3M9Imljb24gbGluZS1jb2xvciI+PHBvbHlsaW5lIGlkPSJwcmltYXJ5IiBwb2ludHM9IjUgMTIgMTAgMTcgMTkgOCIgc3R5bGU9ImZpbGw6IG5vbmU7IHN0cm9rZTogI2RjZGNkYzsgc3Ryb2tlLWxpbmVjYXA6IHJvdW5kOyBzdHJva2UtbGluZWpvaW46IHJvdW5kOyBzdHJva2Utd2lkdGg6IDI7Ij48L3BvbHlsaW5lPjwvc3ZnPg==");
}

.navigation.pagination .page-numbers:not(.next):not(.prev) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 41px;
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #2f2f2f;
  text-align: center;
  padding: 9px;
  transition: 0.3s all;
  border-bottom: 2px solid transparent;
}
.navigation.pagination .page-numbers:not(.next):not(.prev):hover, .navigation.pagination .page-numbers:not(.next):not(.prev).current {
  font-weight: 700;
  border-bottom: 2px solid #4ba495;
}
.navigation.pagination .page-numbers:not(.next):not(.prev).dots {
  pointer-events: none;
}
.navigation.pagination .page-numbers.next,
.navigation.pagination .page-numbers.prev {
  width: 40px;
  height: 40px;
  font-size: 0;
  border-radius: 50px;
  border: solid 2px #727272;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 25px;
}
.navigation.pagination .page-numbers.next {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuNzUgMTJIMjAuMjUiIHN0cm9rZT0iIzJGMkYyRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTEzLjUgNS4yNUwyMC4yNSAxMkwxMy41IDE4Ljc1IiBzdHJva2U9IiMyRjJGMkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
}
.navigation.pagination .page-numbers.prev {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjI1IDEySDMuNzUiIHN0cm9rZT0iIzJGMkYyRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTEwLjUgNS4yNUwzLjc1IDEyTDEwLjUgMTguNzUiIHN0cm9rZT0iIzJGMkYyRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}
.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.share-wrapper {
  display: flex;
  align-items: center;
}
.share-wrapper .share-wrapper-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
  margin-right: 16px;
  margin-bottom: 0;
}
.share-wrapper .share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.share-wrapper .share-wrapper-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  line-height: 1;
}
h1 strong,
h1 b,
h2 strong,
h2 b,
h3 strong,
h3 b,
h4 strong,
h4 b,
h5 strong,
h5 b,
h6 strong,
h6 b {
  color: #4ba495;
}

h1 {
  font-size: 64px;
  font-weight: 700;
  color: #f2f2f2;
  letter-spacing: -1px;
}
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 56px;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 470px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 56px;
}
@media screen and (max-width: 1200px) {
  h2 {
    font-size: 46px;
  }
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 470px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 20px;
  line-height: 1.2;
}

p {
  font-size: 16px;
  font-family: "Ubuntu", sans-serif;
}
@media screen and (max-width: 991px) {
  p {
    font-size: 18px;
  }
}

a,
button,
span {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

html {
  position: relative;
  min-height: 100%;
}
html.popup-opened {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html.popup-opened {
    height: 100vh;
  }
}

.my_overlay {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #16181D;
  opacity: 0.9;
  cursor: pointer;
  display: block;
}

.popup {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 5000;
  display: none;
  overflow-x: hidden;
  overflow-y: scroll;
}
.popup .popup-wrapper {
  position: relative;
  width: 860px;
  padding: 32px;
  margin: 70px auto 50px;
  position: relative;
  z-index: 2;
  background: #fff;
}
.popup .wpcf7-not-valid-tip {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .popup .popup-wrapper {
    margin-top: 40px;
    width: 90% !important;
    padding: 45px 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 470px) {
  .popup .popup-wrapper {
    width: calc(100% - 20px) !important;
    padding: 70px 20px;
  }
}
.popup button.popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
  border: none;
  width: 56px;
  height: 56px;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background-color: #f2f2f2;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  z-index: 10;
  opacity: 0.9;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .popup button.popup-close {
    background-size: 15px auto;
    opacity: 1;
    width: 40px;
    height: 40px;
  }
}
.popup button.popup-close:hover {
  opacity: 1;
}

div.wpcf7 .ajax-loader {
  position: absolute;
  right: 0;
}

#popup-contact-us-form-shorcode .popup-wrapper,
#popup-form-shorcode .popup-wrapper {
  background-image: linear-gradient(to left, #5cc17d, #469a9e);
}
@media screen and (max-width: 768px) {
  #popup-contact-us-form-shorcode .popup-wrapper,
  #popup-form-shorcode .popup-wrapper {
    padding: 32px 16px;
  }
}
#popup-contact-us-form-shorcode .submit-button-wrapper,
#popup-form-shorcode .submit-button-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#popup-contact-us-form-shorcode .submit-button-wrapper:after,
#popup-form-shorcode .submit-button-wrapper:after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzgyNzIxXzM3MjYpIj4KPHBhdGggZD0iTTEwIDE0TDIxIDMiIHN0cm9rZT0iIzJGMkYyRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTIxLjAwMDYgM0wxNC41MDA2IDIxQzE0LjQ1NjcgMjEuMDk1NyAxNC4zODYyIDIxLjE3NjkgMTQuMjk3NiAyMS4yMzM4QzE0LjIwOSAyMS4yOTA2IDE0LjEwNTkgMjEuMzIwOSAxNC4wMDA2IDIxLjMyMDlDMTMuODk1MiAyMS4zMjA5IDEzLjc5MjEgMjEuMjkwNiAxMy43MDM1IDIxLjIzMzhDMTMuNjE0OSAyMS4xNzY5IDEzLjU0NDQgMjEuMDk1NyAxMy41MDA2IDIxTDEwLjAwMDYgMTRMMy4wMDA1NiAxMC41QzIuOTA0ODIgMTAuNDU2MSAyLjgyMzY5IDEwLjM4NTcgMi43NjY4IDEwLjI5NzFDMi43MDk5MiAxMC4yMDg0IDIuNjc5NjkgMTAuMTA1MyAyLjY3OTY5IDEwQzIuNjc5NjkgOS44OTQ2OCAyLjcwOTkyIDkuNzkxNTggMi43NjY4IDkuNzAyOTVDMi44MjM2OSA5LjYxNDMxIDIuOTA0ODIgOS41NDM4NyAzLjAwMDU2IDkuNUwyMS4wMDA2IDNaIiBzdHJva2U9IiMyRjJGMkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfODI3MjFfMzcyNiI+CjxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
}
#popup-contact-us-form-shorcode .submit-button-wrapper .wpcf7-form-control,
#popup-form-shorcode .submit-button-wrapper .wpcf7-form-control {
  padding: 16px 46px 16px 24px;
}
#popup-contact-us-form-shorcode .submit-button-wrapper:hover:after,
#popup-form-shorcode .submit-button-wrapper:hover:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzgyNzIxXzM3MjYpIj4KPHBhdGggZD0iTTEwIDE0TDIxIDMiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTIxLjAwMDYgM0wxNC41MDA2IDIxQzE0LjQ1NjcgMjEuMDk1NyAxNC4zODYyIDIxLjE3NjkgMTQuMjk3NiAyMS4yMzM4QzE0LjIwOSAyMS4yOTA2IDE0LjEwNTkgMjEuMzIwOSAxNC4wMDA2IDIxLjMyMDlDMTMuODk1MiAyMS4zMjA5IDEzLjc5MjEgMjEuMjkwNiAxMy43MDM1IDIxLjIzMzhDMTMuNjE0OSAyMS4xNzY5IDEzLjU0NDQgMjEuMDk1NyAxMy41MDA2IDIxTDEwLjAwMDYgMTRMMy4wMDA1NiAxMC41QzIuOTA0ODIgMTAuNDU2MSAyLjgyMzY5IDEwLjM4NTcgMi43NjY4IDEwLjI5NzFDMi43MDk5MiAxMC4yMDg0IDIuNjc5NjkgMTAuMTA1MyAyLjY3OTY5IDEwQzIuNjc5NjkgOS44OTQ2OCAyLjcwOTkyIDkuNzkxNTggMi43NjY4IDkuNzAyOTVDMi44MjM2OSA5LjYxNDMxIDIuOTA0ODIgOS41NDM4NyAzLjAwMDU2IDkuNUwyMS4wMDA2IDNaIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfODI3MjFfMzcyNiI+CjxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
}

.header {
  display: flex;
  align-items: center;
  height: 64px;
}
.header.menu-opened .header__nav-wrapper {
  top: 0;
}
.header.menu-opened .header__hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzgyNTMzXzQzNDQpIj4KPHBhdGggZD0iTTE4IDZMNiAxOCIgc3Ryb2tlPSIjMkYyRjJGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNiA2TDE4IDE4IiBzdHJva2U9IiMyRjJGMkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfODI1MzNfNDM0NCI+CjxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
}
.header.menu-opened .header__hamburger svg {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header.menu-opened .header__hamburger {
    z-index: 102;
  }
}
@media screen and (max-width: 1200px) {
  .header.menu-opened .header__contact-us-container {
    display: flex;
    margin-top: 30px;
    align-items: center;
    flex-direction: column;
    gap: 24px;
  }
}
.header__contact-us-container {
  display: none;
}
.header__logo {
  max-width: 160px;
  width: 100%;
  flex-shrink: 0;
}
.header__logo.mob {
  margin-bottom: 117px;
}
@media screen and (min-width: 1200px) {
  .header__logo.mob {
    display: none;
  }
}
.header__inner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__nav-wrapper {
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1040px;
}
@media screen and (max-width: 1200px) {
  .header__nav-wrapper {
    flex-direction: column;
    transition: 0.3s top;
    align-items: center;
    padding: 64px 24px;
    position: fixed;
    top: -200%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: #fff;
  }
}
.header__menu {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
@media screen and (max-width: 1200px) {
  .header__menu {
    gap: 20px;
    flex-direction: column;
  }
}
.header__menu .menu-item {
  padding: 12px 2px;
}
@media screen and (max-width: 1200px) {
  .header__menu .menu-item {
    padding: 4px 16px;
    font-size: 24px;
    font-weight: 700;
  }
}
.header__hamburger {
  display: none;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 1200px) {
  .header__hamburger {
    display: flex;
  }
}
.header__contact-us-wrapper {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}
@media screen and (max-width: 1200px) {
  .header__contact_us {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .header__contact_us.mob {
    display: inline-flex;
  }
}
.header__whatsapp, .header__phone {
  display: flex;
  align-items: center;
}
.header__whatsapp span, .header__phone span {
  font-size: 14px;
  padding: 12px 16px;
}
@media screen and (max-width: 1470px) {
  .header__whatsapp span, .header__phone span {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .header__whatsapp.mob, .header__phone.mob {
    display: inline-flex;
  }
}

.footer {
  background-color: #101010;
  padding: 64px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 24px 0;
  }
}
.footer__inner-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}
@media screen and (max-width: 1140px) {
  .footer__inner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }
}
.footer__logo-block {
  color: #f2f2f2;
  width: 100%;
  max-width: 236px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__logo-block p {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer__logo-block {
    margin: 0 auto;
    align-items: center;
    order: 1;
    gap: 16px;
  }
}
.footer__note-block {
  font-family: "Fira Sans", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #f2f2f2;
}
.footer__note-block p:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer__developers-note {
    display: none;
    text-align: center;
    margin: auto 0;
  }
}
.footer__developers-note.mob {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__developers-note.mob {
    display: block;
    text-align: center;
    margin: auto 0;
  }
}
.footer__developers-note p {
  font-size: 12px;
}
.footer__middle-text-block {
  width: 100%;
  max-width: 350px;
  font-family: "Fira Sans", sans-serif;
  line-height: 1.3;
  color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .footer__middle-text-block {
    order: 2;
    margin: 0 auto;
  }
}
.footer__middle-text-block p {
  font-size: 14px;
}
.footer__middle-text-block p:not(:last-child) {
  margin-bottom: 24px;
}
.footer__block-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #f2f2f2;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .footer__block-title {
    margin-bottom: 16px;
    font-size: 14px;
  }
}
.footer__menu-wrapper {
  color: #f2f2f2;
  max-width: 190px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__menu-wrapper {
    order: 4;
    text-align: center;
    margin: 0 auto;
  }
}
.footer__menu {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    margin-bottom: 38px;
  }
}
.footer__contacts-us-block {
  color: #f2f2f2;
  width: 100%;
  max-width: 290px;
}
@media screen and (max-width: 768px) {
  .footer__contacts-us-block {
    order: 3;
    text-align: center;
    margin: 0 auto;
  }
}
.footer__work-schedule, .footer__email, .footer__footer-location {
  margin-bottom: 16px;
  line-height: 1.3;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer__work-schedule, .footer__email, .footer__footer-location {
    margin-bottom: 14px;
  }
}
.footer__phone {
  display: inline-flex;
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #f2f2f2;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer__phone {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.footer__socials-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .footer__socials-wrapper {
    justify-content: center;
  }
}
.footer__social-item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background-color: #2f2f2f;
}
.footer__ps-text {
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .footer__ps-text {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer__ps-text p {
    font-size: 14px;
  }
}
.footer__ps-text a {
  font-weight: 700;
  line-height: 1.2;
  color: #4ba495;
  text-decoration: underline;
}

.page404 {
  background-image: linear-gradient(to right, #469a9e 0%, #5cc17d);
  padding: 120px 0;
}
@media screen and (max-width: 1140px) {
  .page404 {
    padding: 109px 0;
  }
}
.page404__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.thank-you {
  background-image: linear-gradient(to right, #469a9e 0%, #5cc17d);
  padding: 120px 0;
}
@media screen and (max-width: 1140px) {
  .thank-you {
    padding: 109px 0;
  }
}
.thank-you__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.thank-you .single-content {
  margin: 0 auto;
  max-width: 880px;
}
.thank-you .single-content h1 {
  font-size: 150px;
  margin-bottom: 8px;
}
@media screen and (max-width: 991px) {
  .thank-you .single-content h1 {
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .thank-you .single-content h1 {
    font-size: 80px;
  }
}

.sitemap-block {
  padding: 64px 0;
}
@media screen and (max-width: 991px) {
  .sitemap-block {
    padding: 32px 0;
  }
}

.sitemap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 1470px) {
  .sitemap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .sitemap {
    display: flex;
    flex-direction: column;
  }
}
.sitemap__section-title {
  margin-bottom: 20px;
}
.sitemap__section {
  margin-bottom: 20px;
  border-top: 1px solid #469a9e;
  border-bottom: 1px solid #469a9e;
  background-color: #f2f2f2;
  padding: 16px;
}
.sitemap__posts-list, .sitemap__category-sublist, .sitemap__category-list, .sitemap__pages-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
}
.sitemap__category-item.has-children > a {
  margin-bottom: 10px;
  display: block;
}
.sitemap__category-sublist {
  padding-left: 20px;
}

.solutions-card__post-item {
  display: flex;
  flex-direction: column;
}
.solutions-card__post-thumb {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .solutions-card__post-thumb {
    margin-bottom: 20px;
  }
}
.solutions-card__post-thumb img {
  width: 100%;
  height: 100%;
}
.solutions-card__post-title {
  color: #2f2f2f;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .solutions-card__post-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .solutions-card__post-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 570px) {
  .solutions-card__post-title {
    font-size: 20px;
  }
}
.solutions-card__post-excerpt {
  margin-top: auto;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
}
@media screen and (max-width: 768px) {
  .solutions-card__post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .product-card {
    text-align: center;
    padding-bottom: 0;
  }
}
.product-card__thumb {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .product-card__thumb {
    margin-bottom: 12px;
  }
}
.product-card__thumb img {
  max-height: 333px;
}
.product-card__title {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #4ba495;
  margin-bottom: 8px;
}
@media screen and (max-width: 1140px) {
  .product-card__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .product-card__title {
    font-size: 16px;
  }
}
.product-card__execrpt {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 1140px) {
  .product-card__execrpt {
    font-size: 14px;
  }
}
.product-card__download-btn {
  border-radius: 8px;
  padding: 4px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  color: #2f2f2f;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}
@media screen and (max-width: 1140px) {
  .product-card__download-btn {
    font-size: 14px;
    gap: 8px;
  }
}
@media screen and (max-width: 470px) {
  .product-card__download-btn {
    gap: 0;
    font-size: 12px;
  }
}

.category-page {
  background-color: #eef7f5;
}
.category-page__banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 103px 0;
  position: relative;
}
@media screen and (max-width: 991px) {
  .category-page__banner {
    padding: 66px 0;
  }
}
.category-page__banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}
.category-page__banner .breadcrumbs {
  color: #f2f2f2;
  margin-bottom: 20px;
}
.category-page__container {
  position: relative;
  z-index: 1;
}
.category-page__content {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 991px) {
  .category-page__content {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.category-page__content-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .category-page__content-container {
    display: flex;
    flex-direction: column;
  }
}
.category-page__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-page__products-container-inner.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1440px) {
  .category-page__products-container-inner.grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 13px 16px;
  }
}
@media screen and (max-width: 991px) {
  .category-page__products-container-inner.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category-page__bottom-text {
  padding-top: 64px;
  padding-bottom: 128px;
}
@media screen and (max-width: 991px) {
  .category-page__bottom-text {
    padding-top: 24px;
    padding-bottom: 56px;
  }
}
.category-page__bottom-text h3 {
  margin-bottom: 24px;
}
.category-page__bottom-text h3:first-child {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 64px;
}
@media screen and (max-width: 991px) {
  .category-page__bottom-text h3:first-child {
    margin-bottom: 32px;
  }
}
.category-page__bottom-text p {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
  margin-bottom: 24px;
}
.category-page__bottom-text p:last-child {
  margin-bottom: 0;
}
.category-page__not-fount-text {
  text-align: center;
}

.sidebar {
  width: 100%;
  max-width: 260px;
}
@media screen and (max-width: 991px) {
  .sidebar {
    display: none;
  }
}
.sidebar__popup-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 8px;
  border: solid 2px #2f2f2f;
}
@media screen and (max-width: 991px) {
  .sidebar__popup-button {
    display: inline-flex;
    margin: 0 auto;
  }
}
.sidebar__title {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #2f2f2f;
  margin-bottom: 24px;
}
.sidebar__items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar__item {
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px #b9b9b9;
  padding: 0 16px;
}
.sidebar__item.active {
  border-bottom: solid 1px transparent;
  background-color: #fff;
}
.sidebar__item.active .sidebar__item-children {
  max-height: 100%;
}
.sidebar__item.active .cross:after {
  transform: translate(-50%, -50%);
}
.sidebar__item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.sidebar__item-icon path {
  fill: #727272;
}
.sidebar__item-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #2f2f2f;
  padding: 8px 0;
}
.sidebar__item-link .cross {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.sidebar__item-link .cross:before, .sidebar__item-link .cross:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: #2f2f2f;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: translate 0.3s ease;
}
.sidebar__item-link .cross:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sidebar__item-children {
  display: flex;
  flex-direction: column;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  line-height: 1.14;
  max-height: 0;
  overflow: hidden;
}
.sidebar__item-children-link {
  padding: 12px 0;
}
.sidebar__item-children-link.active {
  color: #408C7F;
}

#sidebar-popup .popup-close {
  width: 48px;
  height: 48px;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #fff;
}
#sidebar-popup .popup-wrapper {
  margin: 0;
  width: 100% !important;
  height: 100%;
  padding: 26px 20px;
  background-color: #eef7f5;
}
#sidebar-popup .sidebar {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  #sidebar-popup .sidebar {
    display: block;
  }
}

.single-product {
  background-color: #eef7f5;
}
.single-product__title-container {
  padding-top: 8px;
  margin-bottom: 48px;
}
@media screen and (max-width: 570px) {
  .single-product__title-container {
    margin-bottom: 24px;
  }
}
.single-product__title-container .breadcrumbs {
  margin-bottom: 16px;
}
@media screen and (max-width: 570px) {
  .single-product__title-container .breadcrumbs {
    font-size: 12px;
    gap: 6px;
    margin-bottom: 14px;
  }
}
.single-product__title {
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  color: #2f2f2f;
}
.single-product__hero-content {
  display: grid;
  padding-bottom: 48px;
  grid-template-columns: 643px 1fr 403px;
  align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 1680px) {
  .single-product__hero-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1470px) {
  .single-product__hero-content {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 570px) {
  .single-product__hero-content {
    gap: 24px;
    padding-bottom: 24px;
  }
}
.single-product__thumb {
  width: 100%;
  max-width: 643px;
}
@media screen and (max-width: 1470px) {
  .single-product__thumb {
    width: 50%;
  }
}
@media screen and (max-width: 1470px) {
  .single-product__thumb {
    width: 100%;
    max-width: 100%;
  }
}
.single-product__thumb img {
  width: 100%;
}
.single-product__content {
  width: 100%;
  max-width: 540px;
}
@media screen and (max-width: 1470px) {
  .single-product__content {
    width: 50%;
  }
}
@media screen and (max-width: 1470px) {
  .single-product__content {
    width: 100%;
    max-width: 100%;
  }
}
.single-product__content p {
  margin-bottom: 24px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #727272;
}
.single-product__content p:last-child {
  margin-bottom: 0;
}
.single-product__content h4 {
  margin-bottom: 24px;
  color: #2f2f2f;
}
.single-product__aside-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  background-color: #fff;
}
@media screen and (max-width: 1470px) {
  .single-product__aside-info {
    margin: 0 auto;
  }
}
@media screen and (max-width: 570px) {
  .single-product__aside-info {
    width: 100%;
    margin: 0;
    padding: 16px;
    gap: 16px;
  }
}
.single-product__aside-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.single-product__aside-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  padding: 16px;
}
@media screen and (max-width: 570px) {
  .single-product__aside-info-item {
    padding: 14px;
  }
}
.single-product__aside-info-item-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
@media screen and (max-width: 570px) {
  .single-product__aside-info-item-icon {
    margin-bottom: 14px;
  }
}
.single-product__aside-info-item-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #2f2f2f;
  margin-bottom: 8px;
}
.single-product__aside-info-item-text {
  color: #2f2f2f;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #727272;
}
.single-product__document-title {
  flex-grow: 0;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #2f2f2f;
  margin-bottom: 16px;
}
@media screen and (max-width: 570px) {
  .single-product__document-title {
    margin-bottom: 14px;
  }
}
.single-product__document-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-product__document-file {
  max-width: 250px;
  width: 100%;
  border-radius: 8px;
  border: solid 1px #b9b9b9;
  padding: 16px;
  display: inline-flex;
  gap: 24px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #2f2f2f;
}
@media screen and (max-width: 570px) {
  .single-product__document-file {
    padding: 14px;
  }
}
.single-product__document-file .btn-info-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.single-product__document-file .btn-info-wrapper .name {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 570px) {
  .single-product__document-file .btn-info-wrapper .name {
    font-size: 14px;
  }
}
.single-product__get-order {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
.single-product__related-block {
  background-color: #fff;
  padding: 64px 0;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .single-product__related-block {
    padding: 32px 0;
  }
}
.single-product__related-slider-title {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .single-product__related-slider-title {
    margin-bottom: 16px;
  }
}
.single-product__related-block-slider .swiper-slide:not(:last-child) {
  padding-right: 16px;
  border-right: 1px solid #dcdcdc;
}

.single-solution {
  background-color: #eef7f5;
}
.single-solution__content-container {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 167px;
}
@media screen and (max-width: 1470px) {
  .single-solution__content-container {
    gap: 70px;
  }
}
@media screen and (max-width: 991px) {
  .single-solution__content-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }
}
.single-solution__content {
  padding: 0 16px;
}
.single-solution__content img,
.single-solution__content h2,
.single-solution__content h3,
.single-solution__content h5,
.single-solution__content h6 {
  margin-bottom: 32px;
}
.single-solution__content h4 {
  margin-bottom: 16px;
}
.single-solution__content p {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
  margin-bottom: 32px;
}
.single-solution__content p:last-child {
  margin-bottom: 0;
}
.single-solution__content b,
.single-solution__content strong {
  font-weight: 700;
}
.single-solution__content ol,
.single-solution__content ul {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
  margin-bottom: 32px;
}
.single-solution__bottom-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 570px) {
  .single-solution__bottom-wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
.single-solution__nav {
  display: flex;
  gap: 8px;
}
.single-solution__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: solid 2px #2f2f2f;
}
.single-solution .category-block {
  background-color: #fff;
}
.single-solution__sidebar {
  display: flex;
}

.solutions-page .category-page__sidebar {
  display: none;
}
.solutions-page .category-page__content-container {
  display: flex;
}
.solutions-page .category-page__products-container-inner.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1440px) {
  .solutions-page .category-page__products-container-inner.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .solutions-page .category-page__products-container-inner.grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.solutions-page .solutions-card__post-excerpt {
  margin-top: 0;
}

.hero-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 86px;
  padding-bottom: 67px;
}
@media screen and (max-width: 768px) {
  .hero-banner {
    padding-top: 77px;
    padding-bottom: 73px;
  }
}
.hero-banner__inner-container {
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.hero-banner__title {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .hero-banner__title {
    margin-bottom: 24px;
  }
}
.hero-banner__description {
  max-width: 460px;
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #f2f2f2;
  min-height: 150px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .hero-banner__description {
    min-height: 150px;
    font-size: 16px;
  }
}
.hero-banner__button-wrapper {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .hero-banner__button-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
.hero-banner__contact-us-button {
  height: 56px;
}

.advantages {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 127px;
  padding-bottom: 192px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .advantages {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.advantages__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .advantages__bg-image {
    display: none;
  }
}
.advantages__bg-image.mob {
  position: relative;
  height: auto;
  display: none;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .advantages__bg-image.mob {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .advantages__container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.advantages__inner-container {
  max-width: 590px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .advantages__inner-container {
    max-width: 100%;
    margin-left: 0;
  }
}
.advantages__title {
  margin-bottom: 64px;
  max-width: 500px;
}
@media screen and (max-width: 1200px) {
  .advantages__title {
    max-width: 100%;
  }
}
@media screen and (max-width: 670px) {
  .advantages__title {
    margin-bottom: 32px;
  }
}
.advantages__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 670px) {
  .advantages__list {
    gap: 24px;
  }
}
.advantages__list-item {
  display: flex;
  gap: 27px;
}
@media screen and (max-width: 670px) {
  .advantages__list-item {
    gap: 16px;
  }
}
.advantages__list-item-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid 1px #b9b9b9;
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: #727272;
}
@media screen and (max-width: 670px) {
  .advantages__list-item-number {
    font-size: 20px;
    width: 48px;
    height: 48px;
  }
}
.advantages__list-item-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 670px) {
  .advantages__list-item-inner {
    gap: 8px;
  }
}
.advantages__list-item-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: #2f2f2f;
}
@media screen and (max-width: 670px) {
  .advantages__list-item-title {
    font-size: 20px;
  }
}
.advantages__list-item-text {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1px;
  color: #b9b9b9;
}

.category-block {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #eef7f5;
}
.category-block.category-block-slider {
  overflow-x: hidden;
}
.category-block.category-block-slider .category-block__slider-button-wrapper {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 570px) {
  .category-block.category-block-slider .category-block__slider-button-wrapper {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .category-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.category-block__title {
  margin-bottom: 48px;
  color: #2f2f2f;
}
@media screen and (max-width: 991px) {
  .category-block__title {
    margin-bottom: 24px;
  }
}
.category-block__category-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media screen and (max-width: 991px) {
  .category-block__category-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 670px) {
  .category-block__category-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category-block__category-item {
  aspect-ratio: 1/1;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 24px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .category-block__category-item {
    padding: 16px;
  }
}
.category-block__category-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 70%), linear-gradient(to bottom, rgba(47, 47, 47, 0.4), rgba(47, 47, 47, 0.4));
}
.category-block__category-title {
  position: relative;
  z-index: 1;
  font-family: "Ubuntu", sans-serif;
  color: #f2f2f2;
}
@media screen and (max-width: 1470px) {
  .category-block__category-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 1200px) {
  .category-block__category-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .category-block__category-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .category-block__category-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 670px) {
  .category-block__category-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 470px) {
  .category-block__category-title {
    font-size: 14px;
  }
}
.category-block__category-icon {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.horizontal-banner {
  padding-top: 137px;
  padding-bottom: 137px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  .horizontal-banner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .horizontal-banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 670px) {
  .horizontal-banner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.horizontal-banner__inner-container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1140px) {
  .horizontal-banner__inner-container {
    flex-direction: column;
  }
}
.horizontal-banner__logo {
  flex-shrink: 0;
  max-width: 306px;
  width: 100%;
  padding-right: 54px;
}
@media screen and (max-width: 1140px) {
  .horizontal-banner__logo {
    padding-right: 0;
    padding-bottom: 24px;
  }
}
.horizontal-banner__description {
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #f2f2f2;
  padding-left: 48px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 1140px) {
  .horizontal-banner__description {
    border-left: none;
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid #fff;
  }
}
@media screen and (max-width: 670px) {
  .horizontal-banner__description {
    font-size: 20px;
  }
}

.solutions-block {
  padding-top: 64px;
  padding-bottom: 64px;
  padding-right: 16px;
  padding-left: 16px;
  background-color: #eef7f5;
}
@media screen and (max-width: 991px) {
  .solutions-block {
    padding-top: 56px;
    padding-bottom: 32px;
  }
}
.solutions-block__title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .solutions-block__title-wrapper {
    margin-bottom: 20px;
  }
}
.solutions-block__slider-button-wrapper {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 570px) {
  .solutions-block__slider-button-wrapper {
    display: none;
  }
}
.solutions-block__slider .swiper-container {
  display: flex;
  align-items: stretch;
  /* Stretches items to fit the tallest one */
}
.solutions-block__slider .swiper-slide {
  height: auto;
  /* Ensures slide content fills the available height */
}
.solutions-block__link-wrapper {
  display: flex;
  margin-top: 64px;
}
@media screen and (max-width: 991px) {
  .solutions-block__link-wrapper {
    margin-top: 40px;
  }
}
.solutions-block__link {
  margin: 0 auto;
}

.contact-us {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 991px) {
  .contact-us {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.contact-us__inner-container {
  background-image: linear-gradient(to left, #5cc17d, #469a9e);
  padding: 64px;
  border-radius: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 151px;
}
@media screen and (max-width: 1140px) {
  .contact-us__inner-container {
    gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .contact-us__inner-container {
    flex-direction: column;
    padding: 32px 16px;
  }
}
.contact-us__info-wrapper {
  width: 100%;
  max-width: 700px;
}
.contact-us__title {
  font-size: 48px;
  color: #f2f2f2;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .contact-us__title {
    font-size: 46px;
  }
}
@media screen and (max-width: 991px) {
  .contact-us__title {
    font-size: 38px;
  }
}
@media screen and (max-width: 570px) {
  .contact-us__title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 470px) {
  .contact-us__title {
    font-size: 32px;
  }
}
.contact-us__description {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.4;
  color: #dcdcdc;
}
@media screen and (max-width: 570px) {
  .contact-us__description {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.contact-us__description strong {
  font-weight: 700;
  color: #f2f2f2;
}
.contact-us__description p {
  margin-bottom: 24px;
}
@media screen and (max-width: 570px) {
  .contact-us__description p {
    margin-bottom: 16px;
  }
}
.contact-us__socials-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-us__social-item {
  width: 40px;
  height: 40px;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: solid 1px #f2f2f2;
}
.contact-us__form-wrapper {
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 570px) {
  .contact-us__form-wrapper input[type=submit] {
    width: 100%;
  }
}

.our-clients {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 670px) {
  .our-clients {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.our-clients__title {
  margin-bottom: 48px;
}
@media screen and (max-width: 670px) {
  .our-clients__title {
    margin-bottom: 20px;
  }
}
.our-clients__logos-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 18px;
}
@media screen and (max-width: 1140px) {
  .our-clients__logos-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .our-clients__logos-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 670px) {
  .our-clients__logos-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
  }
}

.reviews {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .reviews {
    padding-top: 24px;
    padding-bottom: 44px;
  }
}
.reviews__title-wrapper {
  padding-right: 16px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .reviews__title-wrapper {
    margin-bottom: 20px;
  }
}
.reviews__slider-button-wrapper {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 570px) {
  .reviews__slider-button-wrapper {
    display: none;
  }
}
.reviews__slider .swiper-container {
  display: flex;
  align-items: stretch;
  /* Stretches items to fit the tallest one */
}
.reviews__slider .swiper-slide {
  height: auto;
  /* Ensures slide content fills the available height */
}
.reviews__review-item {
  border-radius: 20px;
  padding: 48px;
  background-color: #eef7f5;
}
@media screen and (max-width: 768px) {
  .reviews__review-item {
    padding: 24px;
  }
}
.reviews__review-item-logo {
  margin-bottom: 24px;
  max-width: 106px;
}
@media screen and (max-width: 470px) {
  .reviews__review-item-logo {
    margin-bottom: 16px;
  }
}
.reviews__review-item-company-name {
  margin-bottom: 9px;
  color: #2f2f2f;
}
@media screen and (max-width: 991px) {
  .reviews__review-item-company-name {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .reviews__review-item-company-name {
    font-size: 24px;
  }
}
@media screen and (max-width: 470px) {
  .reviews__review-item-company-name {
    font-size: 20px;
  }
}
.reviews__review-item-position {
  margin-bottom: 24px;
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #2f2f2f;
}
@media screen and (max-width: 470px) {
  .reviews__review-item-position {
    margin-bottom: 16px;
  }
}
.reviews__review-item-text {
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #2f2f2f;
}
@media screen and (max-width: 991px) {
  .reviews__review-item-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .reviews__review-item-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 470px) {
  .reviews__review-item-text {
    font-size: 14px;
  }
}

.about-us {
  padding: 64px 0;
  background-color: #eef7f5;
}
@media screen and (max-width: 991px) {
  .about-us {
    padding: 32px 0;
  }
}
.about-us__inner-container {
  display: flex;
  align-items: center;
  gap: 188px;
}
@media screen and (max-width: 1580px) {
  .about-us__inner-container {
    gap: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .about-us__inner-container {
    flex-direction: column;
    gap: 32px;
  }
}
.about-us__image {
  width: 100%;
  max-width: 811px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .about-us__image {
    max-width: unset;
  }
}
.about-us__content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 680px;
  align-self: flex-end;
}
@media screen and (max-width: 1280px) {
  .about-us__content-wrapper {
    max-width: unset;
  }
}
.about-us__title {
  margin-bottom: 64px;
}
@media screen and (max-width: 1280px) {
  .about-us__title {
    display: none;
  }
}
.about-us__title.mob {
  display: none;
  margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .about-us__title.mob {
    display: block;
  }
}
.about-us__content {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
  margin-bottom: 64px;
}
@media screen and (max-width: 991px) {
  .about-us__content {
    margin-bottom: 32px;
  }
}
.about-us__content p:not(:last-child) {
  margin-bottom: 24px;
}
.about-us__buttons-wrapper {
  margin-top: auto;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .about-us__buttons-wrapper {
    flex-direction: column;
    gap: 8px;
  }
}

.our-history {
  background-image: linear-gradient(to right, #469a9e 30%, #5cc17d 60%);
  padding: 24px 0;
}
@media screen and (max-width: 768px) {
  .our-history {
    padding: 16px 0;
  }
}
.our-history__title-wrapper {
  display: flex;
  flex-direction: column;
}
.our-history__title-wrapper .breadcrumbs {
  color: #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .our-history__title-wrapper .breadcrumbs {
    margin-bottom: 14px;
  }
}
.our-history__title {
  color: #fff;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .our-history__title {
    margin-bottom: 20px;
  }
}
.our-history__slider-history {
  height: 390px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .our-history__slider-history {
    height: 350px;
  }
}
.our-history__slider-history .swiper-wrapper {
  display: flex;
  align-items: stretch;
  /* Stretches items to fit the tallest one */
}
.our-history__slider-history .swiper-slide {
  height: auto;
  /* Ensures slide content fills the available height */
}
.our-history__slider-history .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .our-history__slider-history .swiper-slide {
    gap: 16px;
  }
}
.our-history__slider-history .swiper-slide.down-slide {
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .our-history__slider-history .swiper-slide.down-slide {
    justify-content: center;
  }
}
.our-history__slider-history .swiper-slide.up-slide {
  justify-content: flex-start;
}
.our-history__slide-year {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #f2f2f2;
}
.our-history__slide-title {
  font-family: "Ubuntu", sans-serif;
  line-height: 1;
  color: #f2f2f2;
}
.our-history__slide-text {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #f2f2f2;
}
.our-history__slide-btn {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #f2f2f2;
  padding: 8px 16px;
  border: solid 1px #fff;
  background-color: transparent;
  display: inline-flex;
  width: auto;
}
@media screen and (max-width: 768px) {
  .our-history__slide-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

.numbers-facts {
  padding: 64px 0;
}
@media screen and (max-width: 768px) {
  .numbers-facts {
    padding: 32px 0;
  }
}
.numbers-facts__container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1140px) {
  .numbers-facts__container {
    flex-direction: column;
  }
}
.numbers-facts__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 1140px) {
  .numbers-facts__title br {
    display: none;
  }
}
.numbers-facts__items-container {
  width: 100%;
  max-width: 840px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .numbers-facts__items-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.numbers-facts__item {
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .numbers-facts__item {
    padding: 16px;
    display: grid;
    gap: 16px;
    grid-template-columns: 150px 1fr;
  }
}
.numbers-facts__item-title {
  font-size: 64px;
  line-height: 1;
  color: #4ba495;
  margin-bottom: 32px;
}
@media screen and (max-width: 570px) {
  .numbers-facts__item-title {
    font-size: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 570px) {
  .numbers-facts__item-title span {
    font-size: 24px;
  }
}
.numbers-facts__item-text {
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: #727272;
}
@media screen and (max-width: 570px) {
  .numbers-facts__item-text {
    font-size: 20px;
  }
}

.big-about-us {
  background-color: #eef7f5;
  padding: 64px 0;
}
@media screen and (max-width: 991px) {
  .big-about-us {
    padding: 24px 0;
  }
}
.big-about-us__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 1570px) {
  .big-about-us__container {
    gap: 24px;
  }
}
.big-about-us__upper-container {
  padding: 64px 0;
  display: flex;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 1570px) {
  .big-about-us__upper-container {
    gap: 50px;
    padding: 32px 0;
  }
}
@media screen and (max-width: 1140px) {
  .big-about-us__upper-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 670px) {
  .big-about-us__upper-container {
    gap: 24px;
  }
}
.big-about-us__image {
  width: 100%;
  max-width: 811px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  .big-about-us__image {
    flex-shrink: unset;
  }
}
@media screen and (max-width: 1280px) {
  .big-about-us__image {
    max-width: unset;
  }
}
.big-about-us__list {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 1140px) {
  .big-about-us__list {
    max-width: unset;
  }
}
@media screen and (max-width: 670px) {
  .big-about-us__list {
    gap: 24px;
  }
}
.big-about-us__list-item {
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 1570px) {
  .big-about-us__list-item {
    gap: 50px;
  }
}
@media screen and (max-width: 670px) {
  .big-about-us__list-item {
    gap: 16px;
  }
}
.big-about-us__list-item-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid 1px #b9b9b9;
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: #727272;
}
@media screen and (max-width: 670px) {
  .big-about-us__list-item-number {
    font-size: 20px;
    width: 48px;
    height: 48px;
  }
}
.big-about-us__list-item-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 670px) {
  .big-about-us__list-item-inner {
    gap: 8px;
  }
}
.big-about-us__list-item-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #2f2f2f;
}
@media screen and (max-width: 670px) {
  .big-about-us__list-item-title {
    font-size: 20px;
  }
}
.big-about-us__list-item-text {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #727272;
}
.big-about-us__lower-container {
  padding: 64px 0;
  display: flex;
  align-items: flex-end;
  gap: 188px;
}
@media screen and (max-width: 1570px) {
  .big-about-us__lower-container {
    gap: 50px;
  }
}
@media screen and (max-width: 1140px) {
  .big-about-us__lower-container {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 670px) {
  .big-about-us__lower-container {
    padding: 32px 0;
    gap: 24px;
  }
}
.big-about-us__content {
  width: 100%;
  max-width: 680px;
}
@media screen and (max-width: 1140px) {
  .big-about-us__content {
    max-width: unset;
  }
}
.big-about-us__content p {
  margin-bottom: 24px;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
}
.big-about-us__content p:last-child {
  margin-bottom: 0;
}
.big-about-us__bottom-title-wrapper {
  align-self: flex-end;
  width: 100%;
  max-width: 811px;
}
@media screen and (max-width: 1140px) {
  .big-about-us__bottom-title-wrapper {
    max-width: unset;
  }
}
.big-about-us__bottom-title {
  font-size: 48px;
  margin-bottom: 24px;
}
.big-about-us__bottom-text b,
.big-about-us__bottom-text strong {
  font-weight: 700;
  color: #4ba495;
}

.block-content {
  padding: 64px 0;
}
@media screen and (max-width: 991px) {
  .block-content {
    padding: 32px 0;
  }
}
.block-content img,
.block-content h1,
.block-content h2,
.block-content h3,
.block-content h4,
.block-content h5,
.block-content h6 {
  margin-bottom: 32px;
}
.block-content h4 {
  margin-bottom: 16px;
}
.block-content p {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
  margin-bottom: 32px;
}
.block-content p:last-child {
  margin-bottom: 0;
}
.block-content b,
.block-content strong {
  font-weight: 700;
}
.block-content ol,
.block-content ul {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.4;
  color: #2f2f2f;
  margin-bottom: 32px;
}
.block-content * {
  color: #2f2f2f;
}

/*# sourceMappingURL=frontend.css.map*/