/***************************************
*General
****************************************/

body {
  color: rgba(29, 29, 27, 0.6);
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625em;
  overflow-x: hidden;
  background: #eef9fe;
}

.sect-title {
  position: relative;
}

.sub-title {
  color: #81a71b;
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sub-title:before {
  content: "";
  position: relative;
  border-radius: 5.5px;
  margin-right: 10px;
  width: 11px;
  height: 11px;
  display: inline-block;
  background: linear-gradient(90deg, #5bc5f2 -0.01%, #8dc04d 99.99%);
}

.sub-title.color--1:before {
  background: #fff;
}

.sect-title h2,
.sect-title .h2,
.sect-title .bloc-title {
  color: #1d1d1b;
  font-size: clamp(32px, 1rem + 1.7vw, 42px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.14286em;
  margin-bottom: 56px;
}

.sect-title h1,
.sect-title .h1,
.page-title {
  color: #1d1d1b;
  font-size: clamp(36px, 1rem + 2vw, 48px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.208333em;
  margin-bottom: 24px;
}

.row {
  margin: 0 -12px;
}

.row > div {
  padding-left: 12px;
  padding-right: 12px;
}

.img-masking {
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/img-masking.svg);
  mask-image: url(../images/img-masking.svg);
}

/** Animation **/

html:not(.no-js) [data-aos="fade-up"] {
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}

html:not(.no-js) [data-aos="fade-down"] {
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}

html:not(.no-js) [data-aos="fade-right"] {
  -webkit-transform: translate3d(-30px, 0, 0);
  transform: translate3d(-30px, 0, 0);
}

html:not(.no-js) [data-aos="fade-left"] {
  -webkit-transform: translate3d(30px, 0, 0);
  transform: translate3d(30px, 0, 0);
}

/* Preloader */

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #eef9fe;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/preloader.svg);
  background-size: 140px;
}

/** Slider **/

.slide-controls-nav .slide-btn-next,
.slide-controls-nav .slide-btn-prev,
.slide-control-dots .owl-dot,
.owl-carousel .owl-dots .owl-dot,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.slide-controls-nav .owl-prev,
.slide-controls-nav .owl-next,
.swiper-pagination-bullets .swiper-pagination-bullet {
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  background: none;
  min-height: auto;
  height: auto;
  width: auto;
  color: inherit;
  display: inline-flex;
  font: inherit;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: none;
  overflow: visible;
  opacity: 1;
}

.owl-carousel .owl-nav,
.slide-controls-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.slide-controls-nav .slide-btn-next,
.slide-controls-nav .slide-btn-prev,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.slide-controls-nav .owl-prev,
.slide-controls-nav .owl-next {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 28px;
  background: #1d1d1b;
  gap: 0;
  padding: 0;
  display: flex;
  z-index: 1;
  margin: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.slide-controls-nav .slide-btn-next:hover,
.slide-controls-nav .slide-btn-prev:hover,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover,
.slide-controls-nav .owl-prev:hover,
.slide-controls-nav .owl-next:hover {
  background-color: #81a71b;
}

.slide-controls-nav .slide-btn-next:hover svg path,
.slide-controls-nav .slide-btn-prev:hover svg path,
.owl-carousel .owl-nav button.owl-prev:hover svg path,
.owl-carousel .owl-nav button.owl-next:hover svg path,
.slide-controls-nav .owl-prev:hover svg path,
.slide-controls-nav .owl-next:hover svg path {
  fill: #fff !important;
}

.slide-btn-next.swiper-button-disabled,
.slide-btn-prev.swiper-button-disabled,
.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled,
.slide-controls-nav .owl-prev.disabled,
.slide-controls-nav .owl-next.disabled {
  opacity: 0.4;
}

.owl-carousel .owl-dots,
.slide-control-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-control-dots .owl-dot,
.owl-carousel .owl-dots .owl-dot,
.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 !important;
  padding: 0;
  margin: 0;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 0;
  background-color: rgba(20, 18, 17, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.slide-control-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot.active,
.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #141211;
}

/** Colors **/

.color--1 {
  color: #fff !important;
}

.color--2 {
  color: #81a71b !important;
}

.color--3 {
  color: #5bc5f2 !important;
}

.color--4 {
  color: #1d1d1b !important;
}

.color--5 {
  color: #f2f8f9 !important;
}

.color--6 {
  color: #1c1c1c !important;
}

.color--7 {
  color: #000 !important;
}

/** Background **/

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

.background--2 {
  background-color: #81a71b !important;
}

.background--3 {
  background-color: #5bc5f2 !important;
}

.background--4 {
  background-color: #1d1d1b !important;
}

.background--5 {
  background-color: #f2f8f9 !important;
}

.background--6 {
  background-color: #1c1c1c !important;
}

.background--7 {
  background-color: #000 !important;
}

.background--none {
  background: none !important;
}

.background--gradient {
  background: linear-gradient(90deg, #5bc5f2 -0.01%, #8dc04d 99.99%);
}

/** Socials **/

.social-link {
  position: relative;
}

.social-link:hover svg path {
  fill: #ff6928 !important;
}

.social-links ul,
.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/** Variables **/

p {
  margin-bottom: 1.25em;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.page section.empty-space {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

figure {
  margin: 0;
}

.form-group {
  margin-bottom: 25px;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

strong,
b {
  font-weight: 700;
}

iframe {
  width: 100%;
  border: none;
  display: block;
}

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

*:-moz-selection {
  background: #171615;
  color: #fff;
  text-shadow: none;
}

:-moz-selection {
  background: #171615;
  color: #fff;
  text-shadow: none;
}

:selection {
  background: #171615;
  color: #fff;
  text-shadow: none;
}

.form-control,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
select {
  font-family: "Urbanist", sans-serif;
  color: rgba(43, 39, 37, 1);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.125em;
  text-transform: none;
  vertical-align: middle;
  letter-spacing: normal;
  width: 100%;
  outline: none;
  height: 58px;
  padding: 20px;
  margin: 0;
  border: 0;
  border-radius: 30px;
  background: #fff;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: none;
  outline: none !important;
}

.form-control:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
  color: rgba(43, 39, 37, 1);
  border: 0;
  background: #fff;
  outline: none;
  box-shadow: none;
}

input:-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(43, 39, 37, 0.3) !important;
}

input::placeholder {
  /* Chrome, Firefox, Opera, Safari 110.1+ */
  color: rgba(43, 39, 37, 0.3) !important;
  opacity: 1;
  /* Firefox */
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(43, 39, 37, 0.3) !important;
}

textarea::placeholder {
  color: rgba(43, 39, 37, 0.3) !important;
}

.btn-1,
.btn-2,
.btn-3,
button,
input[type="submit"],
input[type="button"] {
  font-family: "Urbanist", sans-serif;
  color: #f2f8f9;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75em;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none !important;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: none;
  box-shadow: none;
  text-decoration: none;
  border-radius: 100px;
  background: none;
  border: 0;
  height: auto;
  padding: 0;
  gap: 0;
  outline: none;
}

.btn-3 {
  background: linear-gradient(90deg, #5bc5f2 -0.01%, #8dc04d 99.99%);
  height: 49px;
  padding: 11px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.btn-2 {
  color: #1d1d1b;
}

.btn-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
}

.btn-wrapper .btn-text {
  position: relative;
  border-radius: 100px;
  background: linear-gradient(90deg, #5bc5f2 -0.01%, #8dc04d 99.99%);
  display: flex;
  padding: 19px 26px 15px 26px;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  z-index: 2;
  height: 56px;
}

.btn-2 .btn-wrapper .btn-text {
  background: #fff;
}

.btn-1:hover .btn-wrapper .btn-text,
.btn-2:hover .btn-wrapper .btn-text {
  transform: translateX(67px);
}

.btn-wrapper .btn-icon {
  display: flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  background: #81a71b;
  transition: 0.4s;
}

.btn-1:hover .btn-wrapper .btn-icon:last-child,
.btn-2:hover .btn-wrapper .btn-icon:last-child {
  scale: 0;
}

.btn-wrapper .btn-icon:first-child {
  scale: 0;
  position: absolute;
  left: 11px;
  background: #5bc5f2;
}

.btn-2 .btn-wrapper .btn-icon {
  background: #fff;
}

.btn-1:hover .btn-wrapper .btn-icon:first-child,
.btn-2:hover .btn-wrapper .btn-icon:first-child {
  scale: 1;
  left: 0;
}

.btn-1:hover,
.btn-2:hover,
button:hover,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  color: #f2f8f9;
  background: none;
  outline: none;
}

.btn-2:hover {
  color: #1d1d1b;
}

.btn-3:hover {
  color: #f2f8f9;
}

.text-align-last {
  -moz-text-align-last: center;
  text-align-last: center;
}

.text-hyphens {
  -ms-hyphens: auto;
  hyphens: auto;
}

.text-gradient {
  background: linear-gradient(90deg, #d99d62 32.53%, #8a5820 67.53%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.word-break-all {
  word-break: break-all;
}

.box-shadow {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1d1d1b;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-25 {
  opacity: 0.25;
}

.backdrop-filter {
  backdrop-filter: blur(0.5px);
}

.offset-right-1 {
  margin-right: 8.333333%;
}

.max-width-100 {
  max-width: 100% !important;
}

.flex--1 {
  -ms-flex: 1;
  flex: 1;
}

.z-index--1 {
  z-index: 1 !important;
}

.z-index--auto {
  z-index: auto !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-900 {
  font-weight: 900 !important;
}

.text-lg-nowrap {
  white-space: nowrap;
}

.text-normal {
  text-transform: none !important;
}

.text-underline {
  text-decoration: underline !important;
}

.text-transform-none {
  text-transform: none !important;
}

.overflow-visible {
  overflow: visible !important;
}

.padding-l-33px {
  padding-left: 33px;
}

.padding-t-60px {
  padding-top: clamp(40px, 1rem + 2.8vw, 60px);
}

.margin-b-30px {
  margin-bottom: 30px;
}

.margin-l-neg15px {
  margin-left: -15px;
}

.margin-l-neg12px {
  margin-left: -12px;
}

.margin-r-neg15px {
  margin-right: -15px;
}

.margin-r-neg12px {
  margin-right: -12px;
}

.border-radius-70px {
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  border-radius: 70px;
}

.border-top {
  border-top: 1px solid #d3d5d9 !important;
}

.border-bottom {
  border-bottom: 1px solid #d3d5d9 !important;
}

.v-middle {
  transform: translateY(-50%);
  top: 50%;
}

.h-middle {
  transform: translateX(-50%);
  left: 50%;
}

.vh-middle {
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.obj-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.obj-fit-pos-t {
  object-position: top;
}

.obj-fit-pos-b {
  object-position: bottom;
}

.obj-fit-pos-r {
  object-position: right;
}

.cursor-pointer {
  cursor: pointer;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-pos-tc {
  background-position: top center;
}

.bg-pos-tl {
  background-position: top left;
}

.bg-pos-tr {
  background-position: top right;
}

.bg-pos-cl {
  background-position: center left;
}

.bg-pos-cr {
  background-position: center right;
}

.bg-pos-bc {
  background-position: bottom center;
}

.bg-pos-br {
  background-position: bottom right;
}

.bg-pos-bl {
  background-position: bottom left;
}

.bg-pos-center {
  background-position: center center;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.top-0 {
  top: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.width-50 {
  width: 50%;
}

.width-40 {
  width: 40%;
}

.width-45 {
  width: 45%;
}

.gap-24px {
  gap: 24px;
}

.gap-30px {
  gap: 30px;
}

.row-gap-24px {
  gap: 24px 0;
}

.row-gap-30px {
  gap: 30px 0;
}

.row-gap-48px {
  gap: 48px 0;
}

.column-gap-24px {
  -moz-column-gap: 24px;
  -webkit-column-gap: 24px;
  column-gap: 24px;
}

.column-gap-61px {
  -moz-column-gap: 61px;
  -webkit-column-gap: 61px;
  column-gap: 61px;
}

.column-count-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

/** Transition **/

img,
svg,
svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/** Extra Outer **/

body .page {
  position: relative;
  background: #eef9fe;
}

body .site-main {
  background: #eef9fe;
  overflow: hidden;
}

/***************************************
* Header
****************************************/

/** Site navigation **/

.site-navigation__menu,
.site-navigation__inner,
.main-header .site-navigation .menu ul li,
.site-header-menu__inner,
.main-header__wrap {
  position: relative;
}

.main-menu-toggle input[type="checkbox"] {
  display: none;
}

.site-header-menu {
  position: relative;
  padding: 0;
  width: 100%;
}

.site-header-navigation {
  padding: 0 20px;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.site-header-menu button.menu-toggle-form {
  gap: 8px;
  display: flex;
  align-items: center;
  padding: 0;
  height: 40px;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875em;
  text-transform: uppercase;
  padding-left: 24px;
  border-radius: 0;
  margin-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.close-menu,
.main-menu-toggle {
  position: relative;
  float: right;
}

.close-menu {
  position: absolute;
  right: 60px;
  top: 50px;
  z-index: 14;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  background: #fff;
  color: #1d1d1b;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.36111em;
}

.main-menu-toggle label {
  cursor: pointer;
  position: static;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: none;
  gap: 8px;
}

.main-menu-toggle .toggle-block {
  position: absolute;
  height: 3px;
  width: 100%;
  padding: 0;
  background-color: #fff;
}

.main-header {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: absolute;
  background-color: transparent;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
}

.site-header-menu__inner {
  padding: 20px 0 0;
}

.site-header-navigation .site-branding {
  position: relative;
  text-align: center;
}

.site-header-navigation__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 0;
}

.site-header-navigation ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-header-navigation .menu__client-area-link {
  display: none;
}
.sticky-header .site-header-navigation .menu__client-area-link {
  display: flex;
  width: 49px;
  height: 49px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #81a71b;
  margin-left: 16px;
}

.site-navigation .menu ul li ul {
  max-height: 0;
  overflow: hidden;
  display: inherit;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-navigation .menu ul li ul.active {
  max-height: 55em;
  padding: 15px 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

ul.contacts-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

ul.contacts-list li {
  color: #1d1d1b;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  display: flex;
  align-items: center;
  gap: 8px;
}

ul.contacts-list li a:hover {
  color: #81a71b;
}

.site-navigation .menu > ul {
  position: relative;
  left: 0;
  max-height: 100%;
  padding: 0;
  z-index: 100;
  width: 100%;
  z-index: 20000;
  top: auto;
  border-top: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-navigation .menu li,
.site-navigation .menu > ul > li {
  display: block;
  overflow: hidden;
}

.site-navigation .menu > ul > li > a {
  color: #fff;
  font-size: clamp(24px, 1rem + 1vw, 32px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.3125em;
  position: relative;
  display: inline-block;
  gap: 15px;
  text-decoration: none;
  padding: 12px 0;
  background-image: linear-gradient(90deg, #81a71b 0%, #81a71b 100%);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0px 81%;
}

.site-navigation .menu > ul > li.has-submenu > a:after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
  display: block;
  margin-top: 0;
  pointer-events: none;
  position: absolute;
  display: block;
  top: 50%;
  right: -33px;
  margin-top: -7px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 13px;
  height: 13px;
}

.site-navigation .menu > ul > li.has-submenu > a.active:after,
.site-navigation .menu > ul > li.has-submenu > a.hover:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  border-right: 3px solid #81a71b;
  border-bottom: 3px solid #81a71b;
}

.site-navigation .menu ul li ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.site-navigation .menu ul ul > li a {
  color: #fff;
  font-size: clamp(16px, 1rem + 0.5vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.416666em;
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

.site-navigation .menu ul ul > li:not(:first-child):before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 24px;
  border-radius: 5.5px;
  position: relative;
  top: -3px;
  background: linear-gradient(90deg, #5bc5f2 -0.01%, #8dc04d 99.99%);
}

.site-navigation .menu > ul > li > a.active,
.site-navigation .menu > ul > li:hover > a,
.site-navigation .menu > ul > li.hover > a {
  color: #81a71b;
  background-size: 100% 2px;
}

.site-navigation .menu ul ul > li.active > a,
.site-navigation .menu ul ul > li:hover > a,
.site-navigation .menu ul ul > li.hover > a {
  color: #81a71b;
}

/** Header top **/

.main-header__top {
  position: relative;
  display: flex;
  padding: 25px 20px;
  align-items: center;
}

.main-header__top-items {
  width: 100%;
  display: flex;
  align-items: center;
}

.main-header__top-items ul.contacts-list li {
  color: #fff;
}

.main-header__top-items ul.contacts-list li a:hover {
  color: #fff;
}

.main-header__top .main-header__client-area {
  position: absolute;
  top: 0;
  right: 20px;
  margin-left: auto;
  border-radius: 0 0 0 30px;
  background: #fff;
  padding: 9px 0 9px 9px;
}

.main-header__top .main-header__client-area:before,
.main-header__top .main-header__client-area:after {
  content: "";
  position: absolute;
  background: url(../images/corner-2.svg) no-repeat top right;
  width: 30px;
  height: 30px;
  left: -30px;
  top: 0;
}

.main-header__top .main-header__client-area:after {
  right: 0;
  left: unset;
  top: unset;
  bottom: -30px;
}

.main-header__top .main-header__client-area a {
  color: #fff;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.36111em;
  border-radius: 30px;
  background: #81a71b;
  display: flex;
  padding: 10.5px 60px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* sidebar menu */
.sidebar-menu {
  position: relative;
  z-index: 999;
}

.site-navigation__logo {
  text-align: center;
}

.sidebar-menu.active .site-navigation__logo {
  visibility: visible;
  animation: 1s ease 500ms 1 normal both running fadeInUp;
}

.site-navigation__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  width: 90%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.sidebar-menu__inner {
  background: none;
  position: fixed;
  height: 100vh;
  width: 100%;
  max-width: 100%;
  top: 0;
  right: 0;
  z-index: 9999;
  display: none;
  padding: 100px 0 40px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.sidebar-menu__inner .site-navigation {
  height: calc(100vh - 140px);
  overflow: auto;
}

.sidebar-menu.active:before {
  content: "";
  background: rgba(29, 29, 27, 0.96);
  backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.sidebar-menu.active .site-navigation__menu {
  visibility: visible;
  animation: 1s ease 600ms 1 normal both running fadeInUp;
}

.sidebar-menu.active:before,
.sidebar-menu.active .sidebar-menu__inner {
  opacity: 1;
  display: block;
}

.menu-box-visible {
  overflow: hidden;
}

.site-navigation__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-menu.active .site-navigation__foot {
  visibility: visible;
  animation: 1s ease 700ms 1 normal both running fadeInUp;
}

.site-navigation__copyright {
  color: #fff;
  font-size: 13.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5942em;
}

/***************************************
* Footer
****************************************/

.footer {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.footer .layer-logo {
  margin-top: 17px;
  z-index: -1;
}

.footer-title {
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 5px;
}

.footer-title:before {
  content: "";
  width: 25px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #81a71b;
}

/***************************************
* Bloc text / image
****************************************/

.bloc-text {
  color: rgba(29, 29, 27, 0.6);
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625em;
  position: relative;
}

.bloc-text .h3,
.bloc-text h3 {
  color: #1d1d1b;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1666666em;
  margin-bottom: 16px;
}

.bloc-text ul {
  margin-top: -11px;
  margin-bottom: 12px;
  padding-left: 0;
}

.bloc-text ul li {
  position: relative;
  padding-left: 0;
}

.bloc-text ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #009d6c;
  position: relative;
  top: -2px;
  left: 0;
  display: inline-block;
  margin-right: 8px;
  margin-left: 15px;
}

.bloc-text p:last-of-type {
  margin-bottom: 0;
}

.page .font-size-22px {
  font-size: 1.375rem;
  line-height: normal;
}

.page .site-main .font-size-48px {
  font-size: clamp(32px, 1rem + 2.5vw, 48px);
  line-height: 1.375em;
}

.page .site-main .font-size-36px {
  font-size: clamp(30px, 1rem + 1.3vw, 36px);
  line-height: 1.277777em;
}
.bloc-text h2 {
    color: #1D1D1B;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 24px;
}
.copyright-text b {
    color: #81A71B;
}
.page-contact .bg-img img {
    object-position: bottom;
}