@import url("../../../../fonts.googleapis.com/css2%3Ffamily=Raleway:ital,wght@0,100..900%3B1,100..900&display=swap.css");

:root {
  --container: 1300px;

  --text-size: 16px;
  --text-size-sm: 16px;
  --text-size-esm: 12px;
  --h1-size: 48px;
  --h2-size: 40px;
  --h3-size: 19px;
  --h4-size: 32px;
  --h5-size: 28px;
  --h6-size: 24px;
}
*,
::after,
::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-size: var(--text-size);
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  line-height: 1.3;
  color: #01130b;
  background: #ffffff;
  font-variant-numeric: lining-nums;
}
a {
  color: #019658;
  transition: 0.5s;
}
a:hover {
  text-decoration: none;
}
img {
  margin: 0;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/* PART 1 - Before Lazy Load */
img[data-lazyloaded] {
  opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded {
  -webkit-transition: opacity 0.5s linear 0.2s;
  -moz-transition: opacity 0.5s linear 0.2s;
  transition: opacity 0.5s linear 0.2s;
  opacity: 1;
}
.bg-cover {
  position: relative;
}
.bg-cover img,
.bg-cover video {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bg-cover span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  margin: 16px 0 24px;
  line-height: 1.2;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}
h1 {
  font-size: var(--h1-size);
}
h2 {
  font-size: var(--h2-size);
}
h3 {
  font-size: var(--h3-size);
}
h4 {
  font-size: var(--h4-size);
}
h5 {
  font-size: var(--h5-size);
}
h6 {
  font-size: var(--h6-size);
}
p,
ul,
ol,
blockquote {
  margin: 0 0 16px;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
blockquote:last-child {
  margin-bottom: 0;
}
iframe {
  max-width: 100%;
}
.form-fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px -14px;
}
.form-field {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 7px;
  margin-bottom: 14px;
}
.form-field-50 {
  flex: 0 0 50%;
  max-width: 50%;
}
::-webkit-input-placeholder {
  color: #8d8d8d;
}
::-moz-placeholder {
  color: #8d8d8d;
}
:-ms-input-placeholder {
  color: #8d8d8d;
}
:-moz-placeholder {
  color: #8d8d8d;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  font-size: var(--text-size);
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  line-height: 1.3;
  width: 100%;
  background: #ffffff;
  border: 1px solid #b8b8b8;
  color: #01130b;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  padding: 18px 40px;
  height: 71px;
  outline: none;
  transition: 0.5s;
}
textarea {
  height: 159px;
  resize: vertical;
}
select {
  cursor: pointer;
}
input.filled,
textarea.filled {
  border: 1px solid #019658;
}
input.wpcf7-not-valid,
textarea.wpcf7-not-valid {
  border: 1px solid #f62525;
}
input.field-icon {
  padding-left: 57px;
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: 25px;
}
input.field-icon-user {
  background-image: url(images/user.svg);
}
input.field-icon-phone {
  background-image: url(images/phone-2.svg);
}
.form-field-button .btn {
  width: 100%;
}
.form-field-soc {
  order: 1;
}
.wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 0;
}
.wpcf7-not-valid-tip {
  margin-top: 2px;
  font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 10px 15px;
  font-size: var(--text-size-sm);
  text-align: center;
  background: var(--white);
}

.screen-reader-text {
  display: none;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.section {
  position: relative;
  padding-top: 30px;
  padding-bottom: 5px;
  z-index: 1;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
@media (min-width: 992px) {
  .hide-lg {
    display: none !important;
  }
}
.bg-light {
  background: #f3f4f8;
}

.heading {
  position: relative;
  margin-bottom: 50px;
  line-height: 1.5;
}
.heading.white {
  color: #ffffff;
}
.heading h1,
.heading h2 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.heading h1:last-child,
.heading h2:last-child {
  margin-bottom: 0;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--h6-size);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid transparent;
  padding: 18px 43px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  outline: none;
  min-height: 71px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
}
.btn.btn-sm {
  font-size: var(--text-size);
  min-height: 48px;
  padding: 9px 31px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
}
.btn.no-shadow {
  box-shadow: none;
}
.btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  transform: translateY(calc(100% + 1px));
  transition: 0.5s;
  -moz-border-radius: 19px;
  -webkit-border-radius: 19px;
  border-radius: 19px;
  z-index: -1;
}
.btn.btn-sm:before {
  -moz-border-radius: 14px;
  -webkit-border-radius: 14px;
  border-radius: 14px;
}
.btn:hover:before {
  transform: translateY(0);
}
.btn-icon {
  padding: 0;
}
.btn.btn-sm.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
}
.btn-icon span {
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  flex: 0 0 23px;
  max-width: 23px;
  height: 23px;
  transition: 0.5s;
}
.btn-icon span.telegram {
  -webkit-mask-image: url(images/telegram.svg);
  mask-image: url(images/telegram.svg);
}
.btn-icon span.viber {
  -webkit-mask-image: url(images/viber.svg);
  mask-image: url(images/viber.svg);
}
.btn-icon span.instagram {
  -webkit-mask-image: url(images/instagram.svg);
  mask-image: url(images/instagram.svg);
}
.btn-icon span.facebook {
  -webkit-mask-image: url(images/facebook.svg);
  mask-image: url(images/facebook.svg);
}
.btn-icon span.whatsapp {
  -webkit-mask-image: url(images/whatsapp.svg);
  mask-image: url(images/whatsapp.svg);
}
.btn-primary {
  background-color: #1b76d3;
  color: #ffffff;
}
.btn-primary.shadow-white {
  box-shadow: 0 4px 0 0 #ffffff;
}
.btn-primary.shadow-black {
  box-shadow: 0 6px 0 0 #02140b;
}
.btn-primary:before {
  background: #ffffff;
}
.btn-primary.shadow-black:before {
  background: #02140b;
}
.btn-primary.btn-icon span {
  background-color: #ffffff;
}
.btn-primary:hover {
  background-color: #1b76d3;
  color: #019658;
}
.btn-primary.shadow-white:hover {
  box-shadow: none;
}
.btn-primary.shadow-black:hover {
  box-shadow: none;
  background-color: #02140b;
  color: #ffffff;
}
.btn-primary.btn-icon:hover span {
  background-color: #1b76d3;
}
.btn-primary-dark {
  background-color: #024589;
  color: #ffffff;
}
.btn-primary-dark:before {
  background: #ffffff;
}
.btn-primary-dark.btn-icon span {
  background-color: #ffffff;
}
.btn-primary-dark:hover {
  background-color: #1b76d3;
  color: #004e2e;
}
.btn-primary-dark.btn-icon:hover span {
  background-color: #1b76d3;
}

.btn-secondary {
  background-color: #014589;
  color: #dcddde;
}
.btn-secondary.shadow-green {
  box-shadow: 0 6px 0 0 #1b76d3;
}
.btn-secondary.shadow-black {
  box-shadow: 0 6px 0 0 #021a10;
}
.btn-secondary:before {
  background: #1b76d3;
}
.btn-secondary.shadow-black:before {
  background: #021a10;
}
.btn-secondary:hover {
  background-color: #029658;
  color: #ffffff;
}
.btn-secondary.shadow-green:hover {
  box-shadow: none;
}
.btn-secondary.shadow-black:hover {
  background-color: #021a10;
  box-shadow: none;
}

.btn-thirdy {
  background-color: #1b76d3;
  color: #ffffff;
}
.btn-thirdy:hover {
  background-color: #ffffff;
  color: #01130b;
}

.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  top: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 8px;
}
.swiper-pagination-bullet {
  flex: 0 0 10px;
  max-width: 10px;
  width: 10px !important;
  height: 10px !important;
  background: #e2e5f0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
}
.swiper-pagination.white .swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.4 !important;
}
.swiper-pagination-bullet-active {
  background: #019658 !important;
}
.swiper-pagination.white .swiper-pagination-bullet-active {
  background: #ffffff !important;
  opacity: 1 !important;
}

.swiper-navigation {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9;
}
.swiper-navigation button {
  position: relative;
  flex: 0 0 72px;
  max-width: 72px;
  width: 72px;
  height: 72px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #e7e7ea;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  padding: 0;
  cursor: pointer;
  box-shadow: 0px 8px 48px 0px rgba(21, 33, 81, 0.08);
  backdrop-filter: blur(20px);
  transition: 0.5s;
}
.swiper-navigation button:hover {
  background: #ffffff;
}
.swiper-navigation button:disabled {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(0.88);
  cursor: no-drop;
}
.swiper-navigation button:before {
  content: "";
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/big-arrow-right.svg);
  mask-image: url(images/big-arrow-right.svg);
  background-color: #01130b;
  flex: 0 0 32px;
  max-width: 32px;
  width: 32px;
  height: 32px;
  transition: 0.5s;
  z-index: 1;
}
.swiper-navigation button.swiper-navigation-prev:before {
  transform: rotate(-180deg);
}
.swiper-navigation button:hover:before {
  background-color: #019557;
}
.swiper-navigation button:disabled:before {
  background-color: #01130b;
}

.soc-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.soc-links li {
  margin-right: 9px;
}
.soc-links li:last-child {
  margin-right: 0;
}
.soc-links li.soc-desktop {
  display: none;
}
@media (min-width: 992px) {
  .soc-links li.soc-desktop {
    display: block;
  }
  .soc-links li.soc-mobile {
    display: none;
  }
}
.soc-links li a {
  padding: 0;
  width: 48px;
  height: 48px;
  min-height: auto;
}

.modal-mobile {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 360px);
  z-index: -9999;
  opacity: 0;
  transition: 0.5s;
}
.modal-mobile.show {
  z-index: 9999;
  opacity: 1;
}
.modal-mobile-wrap {
  position: relative;
  background: #f3f4f8;
  height: 65%;
  width: 100%;
  transform: translateX(100%);
  transition: 0.5s;
  overflow: auto;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
  transform: translateX(0);
}
.modal-mobile-header {
  border-bottom: 1px solid #d9e2dc;
  position: relative;
  padding: 10px 0;
}
.modal-mobile-header-wrap {
  height: 40px;
  gap: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-mobile-logo {
  max-width: 180px;
  flex: auto;
}
.modal-mobile-logo img {
  max-height: 40px;
}
.modal-mobile-close {
  -webkit-mask-image: url(images/close.svg);
  mask-image: url(images/close.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #06975a;
  flex: 0 0 20px;
  max-width: 20px;
  width: 20px;
  height: 20px;
  border: none;
  padding: 0;
  outline: none !important;
  cursor: pointer;
  transition: 0.5s;
}
.modal-mobile-close:hover {
  background-color: #01130b;
}
.modal-mobile-body {
  flex: auto;
  position: relative;
  padding: 32px 0;
}
.modal-mobile-body .container {
  height: 100%;
}
.modal-mobile-body-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mobile-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu li a {
  font-size: var(--h6-size);
  line-height: 1.15;
  display: block;
  color: #02390f;
  text-decoration: none;
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
  color: #06975a;
}
.modal-mobile-soc {
  margin-top: 25px;
  display: flex;
  margin-bottom: 25px;
}
.modal-mobile-button {
  margin-top: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  max-width: 640px;
  margin: 1.75rem auto;
  pointer-events: none;
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}
.modal-xl {
  max-width: var(--container);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  outline: 0;
  padding: 60px 75px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  z-index: 1;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #01130b;
  opacity: 0;
  z-index: -1;
}
.modal-backdrop.show {
  opacity: 0.6;
  z-index: 1049;
}
.modal-title {
  margin-bottom: 32px;
  line-height: 1.2;
  font-size: var(--h6-size);
}
.modal-title h3 {
  font-size: var(--h3-size);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.modal-title h3:last-child {
  margin-bottom: 0;
}
.modal-title br {
  display: none;
}
.modal-close {
  position: absolute;
  background: #fdfdfd;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  top: 0px;
  left: calc(100% + 32px);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: 0.5s;
  z-index: 9;
}
.modal-close:hover {
  background-color: #019658;
}
.modal-close:before {
  content: "";
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/close.svg);
  mask-image: url(images/close.svg);
  background-color: #ffffff;
  flex: 0 0 24px;
  max-width: 24px;
  height: 24px;
  transition: 0.5s;
}
.modal-close:hover:before {
  background: #ffffff;
}
.modal-content input[type="text"],
.modal-content input[type="tel"],
.modal-content textarea {
  background-color: #ececec;
}

.wp-caption {
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 26px -12px 2px;
}
.gallery:first-child {
  margin-top: 0;
}
.gallery:last-child {
  margin-bottom: -24px;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 0 0 24px;
  padding: 0 12px;
}
.gallery-item * {
  height: 100%;
}
.gallery-item > * {
  overflow: hidden;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid var(--grey-light);
}
.gallery-columns-2 .gallery-item {
  flex: 0 0 calc(100% / 2);
  max-width: calc(100% / 2);
}
.gallery-columns-3 .gallery-item {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
}
.gallery-columns-4 .gallery-item {
  flex: 0 0 calc(100% / 4);
  max-width: calc(100% / 4);
}
.gallery-columns-5 .gallery-item {
  flex: 0 0 calc(100% / 5);
  max-width: calc(100% / 5);
}
.gallery-columns-6 .gallery-item {
  flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item {
  flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
}
.gallery-columns-8 .gallery-item {
  flex: 0 0 calc(100% / 8);
  max-width: calc(100% / 8);
}
.gallery-columns-9 .gallery-item {
  flex: 0 0 calc(100% / 9);
  max-width: calc(100% / 9);
}
.gallery-caption {
  display: block;
}
.alignleft {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}
.alignright {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.fancybox__toolbar__column.is-left {
  padding-top: 15px;
  padding-left: 15px;
  flex-direction: column !important;
  justify-content: center !important;
}
.fancybox__toolbar__column.is-right {
  padding-top: 15px;
  padding-right: 15px;
}
.fancybox__backdrop {
  backdrop-filter: blur(22px);
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.fancybox__infobar {
  background: rgba(0, 0, 0, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  -moz-border-radius: 24px !important;
  -webkit-border-radius: 24px !important;
  border-radius: 24px !important;
  padding: 5px 24px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  font-size: var(--text-size) !important;
  letter-spacing: 1px;
}
.fancybox__infobar span {
  padding: 0 !important;
}
.fancybox__infobar span:first-child {
  color: #ffffff !important;
}
.fancybox__content {
  padding: 24px !important;
  background: rgba(243, 244, 248, 0.1) !important;
  -moz-border-radius: 40px !important;
  -webkit-border-radius: 40px !important;
  border-radius: 40px !important;
  backdrop-filter: blur(22px);
}
.fancybox__content img,
.fancybox__content iframe {
  -moz-border-radius: 20px !important;
  -webkit-border-radius: 20px !important;
  border-radius: 20px !important;
}
.fancybox__content img {
  width: auto !important;
  height: auto !important;
}
.fancybox__thumbs {
  --f-thumb-border-radius: 8px !important;
}
.is-compact .fancybox__footer {
  background: none !important;
}
.f-button[title="Close"] {
  background: rgba(243, 244, 248, 0.1) !important;
  backdrop-filter: blur(22px);
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  width: 75px !important;
  height: 75px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.f-button[title="Close"] svg {
  display: none;
}
.f-button[title="Close"]:before {
  content: "";
  -webkit-mask-image: url(images/close.svg);
  mask-image: url(images/close.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #ffffff;
  flex: 0 0 29px;
  max-width: 29px;
  height: 29px;
  transition: 0.5s;
}

.page-content ul {
  padding: 0;
  list-style: none;
}
.page-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-content ul li:last-child {
  margin-bottom: 0;
}
.page-content ul li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #019658;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  top: 7px;
  left: 0;
  z-index: 1;
}

.wrapper {
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  background: #f3f4f8;
  padding: 10px 0;
  box-shadow: 0px 8px 48px 0px rgba(21, 33, 81, 0.08);
  z-index: 999999;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header-logo {
  flex: auto;
  max-width: 205px;
  margin-top: -6px;
}
.header-logo img {
  max-height: 47px;
}
.main-menu {
  flex: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-menu li a {
  font-weight: 500;
  display: inline-block;
  padding: 8px 12px;
  line-height: 1;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  color: #02390f;
  text-decoration: none;
}
.main-menu li a:hover {
  background: rgba(1, 150, 88, 0.15);
}

.header-soc-icon-desktop {
  display: none;
}
@media (min-width: 992px) {
  .header-soc-icon-desktop {
    display: block;
  }
  .header-soc-icon-mobile {
    display: none;
  }
}

.lang-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
}
.lang-menu > li {
  position: relative;
}
.lang-menu > li > a {
  position: relative;
  border: 1.5px solid #1b76d3;
  color: #1b76d3;
  padding: 5px 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  width: 71px;
  height: 48px;
  text-decoration: none;
  z-index: 1;
}
.lang-menu > li.menu-item-has-children > a:after {
  content: "";
  -webkit-mask-image: url(images/chevron-down.svg);
  mask-image: url(images/chevron-down.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #019658;
  flex: 0 0 10px;
  max-width: 10px;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  transition: 0.25s;
}
.lang-menu > li.active > a:after {
  transform: rotate(-180deg);
}
.lang-menu ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0px;
  width: 100%;
  border: 1.5px solid #019658;
  border-top: none;
  background: #f3f4f8;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 9;
}
.lang-menu ul li {
  position: relative;
  text-align: center;
  border-bottom: 1.5px solid #019658;
  z-index: 1;
}
.lang-menu ul li:last-child {
  border-bottom: none;
}
.lang-menu ul li a {
  text-transform: uppercase;
  color: #02390f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding: 5px 12px;
  min-height: 48px;
}
.lang-menu ul li a:hover {
  color: #019658;
}
.header-toggle {
  display: flex;
  align-items: center;
}
.header-toggle button {
  position: relative;
  flex: 0 0 26px;
  max-width: 26px;
  width: 26px;
  height: 26px;
  border: none;
  outline: none !important;
  padding: 0;
  background: none;
  cursor: pointer;
  transition: 0.5s;
  z-index: 1;
}
.header-toggle button span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #06975a;
  border-radius: 2px;
  transition: 0.3s ease;
  left: 0;
}
.header-toggle button span:nth-child(1) {
  top: 4px;
}
.header-toggle button span:nth-child(2) {
  top: 12px;
}
.header-toggle button span:nth-child(3) {
  top: 20px;
}
.header-toggle button.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
}
.header-toggle button.active span:nth-child(2) {
  opacity: 0;
}
.header-toggle button.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
}
.header-toggle button:hover span {
  background-color: #01130b;
}

.main {
  position: relative;
  z-index: 1;
}

.footer {
  background: #01130b;
  color: #ffffff;
}
.footer a {
  color: #ffffff;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.footer-logo {
  flex: auto;
  max-width: 205px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-logo img {
  max-height: 47px;
}
.footer-button {
  margin-left: auto;
  margin-right: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-widget {
  position: relative;
  z-index: 1;
}
.footer-widget-contacts:before {
  content: "";
  border-left: 1px solid #404040;
  position: absolute;
  height: 100%;
  top: 0;
  left: -32px;
  z-index: 1;
}
.footer-widget-title {
  font-size: var(--h6-size);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}
.footer-contacts p {
  position: relative;
  display: flex;
  line-height: 1;
  z-index: 1;
}
.footer-contacts p:before {
  content: "";
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #019658;
  flex: 0 0 21px;
  max-width: 21px;
  width: 21px;
  height: 21px;
  margin-right: 16px;
}
.footer-contacts p.phone:before {
  -webkit-mask-image: url(images/phone.svg);
  mask-image: url(images/phone.svg);
}
.footer-contacts p.e-mail:before {
  -webkit-mask-image: url(images/e-mail.svg);
  mask-image: url(images/e-mail.svg);
}
.footer-contacts p a {
  text-decoration: none;
}
.footer-contacts p a:hover {
  color: #019658;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid #404040;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: var(--text-size-sm);
  line-height: 1;
}
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-menu li a {
  text-decoration: none;
}
.footer-menu li a:hover {
  color: #019658;
}

.page-header {
  position: relative;
  margin-bottom: 60px;
}
.page-title {
  text-align: center;
}
.error-404-number {
  text-align: center;
  font-size: calc(var(--h1-size) * 5);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
  color: #a2f0cf;
}
.error-404-button {
  text-align: center;
}

.hero-section {
  position: relative;
  padding: 120px 0;
  background: #000000;
  overflow: hidden;
  min-height: 770px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.hero-wrap {
  display: flex;
  justify-content: space-between;
}
.hero-left {
  flex: 0 0 calc(56% - 12px);
  max-width: calc(56% - 12px);
  display: flex;
  flex-direction: column;
}
.hero-content {
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 32px;
  font-weight: 500;
  width: calc(100% + 30px);
}
.hero-content h1 {
  font-size: var(--h1-size);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 30px;
}
html[lang="ru-RU"] .hero-content h1 {
  font-size: calc(var(--h1-size) / 1);
}
.hero-content h1 strong {
  font-weight: 800;
}
.hero-checklist {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero-checklist li {
  background: rgba(255, 255, 255, 0.13);
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  color: #ffffff;
  padding: 14px 24px;
  line-height: 1.2;
  font-weight: 500;
  display: flex;
  z-index: 1;
}
.hero-checklist li:before {
  content: "";
  background: url(images/check-circle.svg) no-repeat center;
  background-size: contain;
  flex: 0 0 18px;
  max-width: 18px;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  margin-top: 3px;
  z-index: 1;
}
.hero-button {
  margin-top: auto;
}
.hero-right {
  flex: 0 0 calc(44% - 12px);
  max-width: calc(44% - 12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-image {
  position: relative;
  z-index: 1;
}
.hero-advantage {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e6e9f0;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  padding: 22px;
  width: max-content;
  max-width: 105%;
  backdrop-filter: blur(18px);
  z-index: 1;
}
.hero-advantage-1 {
  right: calc(100% - 46px);
  bottom: calc(100% - 66px);
}
.hero-advantage-2 {
  left: calc(100% - 88px);
  bottom: calc(100% - 71px);
}
.hero-advantage-3 {
  right: calc(100% - 94px);
  top: calc(100% - 84px);
  display: flex;
  align-items: center;
  min-width: 285px;
}
.hero-advantage-4 {
  left: calc(100% - 53px);
  top: calc(100% - 60px);
  display: flex;
  align-items: center;
  min-width: 160px;
}
.hero-advantage-head {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}
.hero-advantage-image {
  flex: 0 0 38px;
  max-width: 38px;
  height: 38px;
  background: #019557;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.hero-advantage-3 .hero-advantage-image {
  flex: 0 0 74px;
  max-width: 74px;
  height: auto;
  margin-right: 20px;
  background: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}
.hero-advantage-image img {
  max-width: 20px;
  max-height: 20px;
}
.hero-advantage-3 .hero-advantage-image img {
  max-width: 100%;
  max-height: 100%;
}
.hero-advantage-title {
  font-size: var(--text-size-sm);
  margin-bottom: 0;
  font-weight: 700;
}
.hero-advantage-3 .hero-advantage-title,
.hero-advantage-4 .hero-advantage-title {
  margin-bottom: -5px;
}
.hero-advantage-title span {
  display: inline-block;
  font-size: var(--h4-size);
  font-weight: 800;
  vertical-align: middle;
  margin-right: 2px;
}
.hero-advantage-content {
  font-size: calc(var(--text-size-sm) / 1.0457);
  line-height: 1.2;
}
.hero-advantage-line {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-advantage-line-1 {
  width: 147px;
  bottom: calc(100% + 15px);
  left: 37px;
}
.hero-advantage-line-2 {
  width: 418px;
  left: calc(100% + 42px);
  top: 62px;
  transform: rotate(90deg);
  transform-origin: top left;
}
.hero-advantage-line-3 {
  width: 132px;
  top: calc(100% + 7px);
  left: 86px;
}
.hero-advantage-line-4 {
  width: 398px;
  right: calc(100% + 32px);
  top: 58px;
  transform: rotate(-90deg);
  transform-origin: top right;
}
.hero-advantage-line:before,
.hero-advantage-line:after {
  content: "";
  flex: 0 0 16px;
  max-width: 16px;
  width: 16px;
  height: 16px;
  background: #ededed;
  border: 2.6px solid #01130b;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.hero-advantage-line span {
  flex: auto;
  max-width: 100%;
  height: 1.05px;
  background: linear-gradient(90deg, #52eeac 0%, #1bc27e 100%);
}
.hero-image-button {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  z-index: 4;
}
.hero-image-button:before {
  content: "";
  background: url(images/arrow-up-circle.svg) no-repeat center;
  background-size: contain;
  flex: 0 0 26px;
  max-height: 26px;
  width: 26px;
  margin-bottom: 6px;
  transform: translateY(-3px);
  animation: hero-image-button-animate 2s infinite linear;
}
@-webkit-keyframes hero-image-button-animate {
  0% {
    transform: translateY(-3px);
  }
  25% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-3px);
  }
}
@keyframes hero-image-button-animate {
  0% {
    transform: translateY(-3px);
  }
  25% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-3px);
  }
}

.hero-grid {
  position: absolute;
  width: 644px;
  height: 644px;
  z-index: -1;
}
.hero-grid:before {
  content: "";
  position: absolute;
  width: calc(100% / 1.25);
  height: calc(100% / 1.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #014588;
  filter: blur(250px);
}
.hero-grid:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(images/grid-green.svg) no-repeat center;
  background-size: contain;
}
.hero-grid-1 {
  top: -172px;
  left: calc((100% - var(--container)) / 2 - 240px);
}
.hero-grid-2 {
  bottom: -322px;
  left: calc(50% - 322px - 9px);
}

.about-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-left {
  flex: 0 0 calc(43% - 29px);
  max-width: calc(43% - 29px);
}
.about-image {
  position: relative;
  margin: 40px 0;
  height: calc(var(--container) * 0.43 - 29px);
  z-index: 1;
}
.about-image img {
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
}
.about-image:before {
  content: "";
  position: absolute;
  width: 139px;
  height: 115px;
  background: url(images/about-image-before.webp) no-repeat center;
  background-size: contain;
  bottom: -40px;
  left: -32px;
  z-index: 1;
}
.about-image:after {
  content: "";
  position: absolute;
  width: 138px;
  height: 115px;
  background: url(images/about-image-after.webp) no-repeat center;
  background-size: contain;
  top: -40px;
  right: -32px;
  z-index: 1;
}
.about-right {
  flex: 0 0 calc(57% - 29px);
  max-width: calc(57% - 29px);
}
.about-heading.heading {
  margin-bottom: 24px;
}
.about-content {
  margin-bottom: 32px;
}
.about-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.about-partners span img {
  max-height: 78px;
}

.cases-section {
  background: #050118;
}
.cases-wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cases-heading.heading {
  max-width: calc(100% - 156px - 20px);
}
.cases-swiper {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  overflow: hidden;
  z-index: 1;
}
.cases-pagination {
  flex: 0 0 100%;
  max-width: 100%;
}
.cases-button {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-top: 60px;
}

.case-item.swiper-slide {
  height: auto !important;
}
.case-item__wrap {
  position: relative;
  background: #ffffff;
  border: 1px solid #d7d5f4;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px;
  z-index: 1;
}
.case-item__image {
  flex: 0 0 calc(((var(--container) - 20px * 2) / 3 - 32px * 2) / 1.78);
  max-hheight: calc(((var(--container) - 20px * 2) / 3 - 32px * 2) / 1.78);
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}
.case-item__image img {
  object-position: top center;
}
.case-item__title {
  margin: 0 0 16px;
  font-size: var(--text-size);
  font-weight: 600;
  line-height: 1.5;
  flex: auto;
}
.case-item__button .btn.btn-sm {
  padding: 9px 17px;
  min-height: 50px;
}
.case-item__button .btn:after {
  content: "";
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/arrow-right.svg);
  mask-image: url(images/arrow-right.svg);
  background-color: #ffffff;
  flex: 0 0 24px;
  max-width: 24px;
  width: 24px;
  height: 16px;
  margin-left: 9px;
  transition: 0.5s;
}
.case-item__button .btn:hover:after {
  background-color: #019658;
}
.case-item__hide {
  display: none;
}

.reviews-wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reviews-heading.heading {
  max-width: calc(100% - 156px - 20px);
  margin-bottom: 38px;
}

.reviews-swiper {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  overflow: hidden;
  z-index: 1;
}
.reviews-pagination {
  flex: 0 0 100%;
  max-width: 100%;
}
.reviews-content {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 60px;
  font-size: var(--h6-size);
}
.reviews-button {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-top: 32px;
}

.review-item__wrap {
  position: relative;
  padding-top: 34px;
  z-index: 1;
}
.review-item__main {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  background: #e2e5f0;
  -moz-border-radius: 30px 30px 0 40px;
  -webkit-border-radius: 30px 30px 0 40px;
  border-radius: 30px 30px 0 30px;
  padding: 48px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 310px;
}
.review-item__main:before {
  content: "";
  background: url(images/quote.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  width: 79px;
  height: 62px;
  left: 26px;
  top: -34px;
  z-index: 1;
}
.review-item__content {
  font-size: var(--h6-size);
  line-height: 1.2;
  flex: auto;
  margin-bottom: 24px;
}
.review-item__rating {
  position: relative;
}
.review-item__stars {
  position: relative;
  width: 220px;
  height: 36px;
  z-index: 1;
}
.review-item__stars:before {
  content: "";
  -webkit-mask-size: 220px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  -webkit-mask-image: url(images/stars.svg);
  mask-image: url(images/stars.svg);
  background-color: #bbbfd2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.review-item__stars span {
  -webkit-mask-size: 220px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  -webkit-mask-image: url(images/stars.svg);
  mask-image: url(images/stars.svg);
  background-color: #019658;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.review-item__bottom {
  display: flex;
}
.review-item__client {
  position: relative;
  padding-top: 16px;
  flex: auto;
  max-width: calc(100% - 85px);
  display: flex;
  align-items: center;
  background: #f3f4f8;
  -moz-border-radius: 0 30px 0 0;
  -webkit-border-radius: 0 30px 0 0;
  border-radius: 0 30px 0 0;
  padding-right: 20px;
  z-index: 2;
}
.review-item__image {
  flex: 0 0 58px;
  max-width: 58px;
  height: 58px;
  margin-right: 16px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.review-item__info {
  flex: auto;
}
.review-item__name {
  font-size: var(--h6-size);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 5px;
}
.review-item__profession {
  line-height: 1.2;
  color: #777777;
}
.review-item__button {
  position: relative;
  flex: 0 0 85px;
  max-width: 85px;
  height: 85px;
  background: #e2e5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-border-radius: 0 0 30px 30px;
  -webkit-border-radius: 0 0 30px 30px;
  border-radius: 0 0 30px 30px;
  z-index: 1;
}
.review-item__button:before {
  content: "";
  background: #e2e5f0;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: -50px;
  z-index: -1;
}
.review-item__button a {
  flex: 0 0 53px;
  max-width: 53px;
  height: 53px;
  border: 2px solid #019658;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-item__button a:hover {
  background: #019658;
}
.review-item__button a:before {
  content: "";
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/play.svg);
  mask-image: url(images/play.svg);
  background-color: #019658;
  flex: 0 0 25px;
  max-width: 25px;
  height: 25px;
  transition: 0.5s;
}
.review-item__button a:hover:before {
  background-color: #ffffff;
}

.services-section {
  background: #01130b;
  overflow: hidden;
}
.services-wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.services-heading.heading {
  max-width: calc(100% - 156px - 20px);
  margin-bottom: 48px;
}
.services-swiper {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  z-index: 1;
}
.services-grid {
  position: absolute;
  width: 800px;
  height: 800px;
  z-index: -1;
}
.services-grid:before {
  content: "";
  position: absolute;
  width: calc(100% / 1.25);
  height: calc(100% / 1.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #014588;
  filter: blur(300px);
}
.services-grid:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(images/grid-green.svg) no-repeat center;
  background-size: contain;
}
.services-grid-1 {
  top: -410px;
  left: calc((100% - var(--container)) / 2 - 420px);
}
.services-grid-2 {
  bottom: -410px;
  right: calc((100% - var(--container)) / 2 - 420px);
}

.service-item.swiper-slide {
  height: auto;
}
.service-item__wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgb(255 255 255);
  backdrop-filter: blur(12px);
  padding: 60px 50px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.service-item__image {
  text-align: center;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.service-item__image img {
  max-height: 62px;
}
.service-item__title {
  font-size: var(--h4-size);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 24px;
  color: #ffffff;
}
.service-item__text {
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
  flex: auto;
}
.service-item__button {
  text-align: center;
}

.feedback-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0px 50px;
  color: #ffffff;
  z-index: 1;
}
.feedback-wrap.reverse {
  flex-direction: row-reverse;
}
.feedback-wrap-bg {
  content: "";
  overflow: hidden;
  background: #050118;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  position: absolute;
  width: 100%;
  height: calc(100% - 135px);
  left: 0;
  bottom: 0;
  z-index: -1;
}
.feedback-wrap-bg:before {
  content: "";
  position: absolute;
  width: 925px;
  height: 925px;
  top: -278px;
  right: -278px;
  background: url(images/grid-white.svg) no-repeat center;
  background-size: contain;
}
.feedback-wrap.reverse .feedback-wrap-bg:before {
  content: "";
  position: absolute;
  width: 925px;
  height: 925px;
  top: -278px;
  left: -278px;
  right: auto;
  background: url(images/grid-white.svg) no-repeat center;
  background-size: contain;
}
.feedback-left {
  flex: 0 0 calc(62% - 20px);
  max-width: calc(62% - 20px);
  padding: 195px 0 60px;
}
.feedback-heading.heading p {
  font-size: var(--h6-size);
  width: calc(100% + 85px);
}
.feedback-right {
  flex: 0 0 calc(38% - 20px);
  max-width: calc(38% - 20px);
}
.feedback-image {
  height: 100%;
}
.feedback-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.feedback-wrap .wpcf7-not-valid-tip {
  color: #ffffff;
  color: #f62525;
}

.form-soc {
  position: relative;
  background: #f3f4f8;
  display: flex;
  gap: 12px;
  padding: 14px;
  height: 100%;
  -moz-border-radius: 20px;
  -webki-border-radius: 20px;
  border-radius: 20px;
}
.form-field-soc-big .form-soc {
  background: none;
  padding: 0;
  gap: 18px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  height: auto;
}
.form-soc a {
  flex: 1 1;
  display: flex;
  align-items: center;
  font-size: var(--text-size-esm);
  padding: 10px;
  text-decoration: none;
  color: #01130b;
  line-height: 1.1;
  background: rgb(1 59 150 / 25%);
  -moz-border-radius: 11px;
  -webki-border-radius: 11px;
  border-radius: 11px;
}
.form-field-soc-big .form-soc a {
  font-size: 18px;
  padding: 14px 16px;
  -moz-border-radius: 16px;
  -webki-border-radius: 16px;
  border-radius: 16px;
  min-height: 63px;
}
.form-soc a:before {
  content: "";
  flex: 0 0 18px;
  max-width: 18px;
  width: 18px;
  height: 18px;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background: #01130b;
  margin-right: 7px;
  transition: 0.5s;
}
.form-field-soc-big .form-soc a:before {
  flex: 0 0 28px;
  max-width: 28px;
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.form-soc a.telegram:before {
  -webkit-mask-image: url(images/telegram.svg);
  mask-image: url(images/telegram.svg);
}
.form-soc a.viber:before {
  -webkit-mask-image: url(images/viber.svg);
  mask-image: url(images/viber.svg);
}
.form-soc a.instagram:before {
  -webkit-mask-image: url(images/instagram.svg);
  mask-image: url(images/instagram.svg);
}
.form-soc a.facebook:before {
  -webkit-mask-image: url(images/facebook.svg);
  mask-image: url(images/facebook.svg);
}
.form-soc a.whatsapp:before {
  -webkit-mask-image: url(images/whatsapp.svg);
  mask-image: url(images/whatsapp.svg);
}
.form-soc a:hover {
  color: #ffffff;
  background: #019658;
}
.form-soc a:hover:before {
  background-color: #ffffff;
}

.form-field-soc-big {
  margin-top: 30px;
}
.form-field-soc-big p {
  text-align: center;
  font-size: var(--h6-size);
  line-height: 1.2;
  margin-bottom: 32px;
}

.steps-items {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 10px;
  z-index: 1;
}
.steps-items:after {
  content: "";
  width: 676px;
  height: 2px;
  background: #019658;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: -1;
}
.steps-item {
  max-width: 640px;
  padding-left: 24px;
  margin-left: 10px;
  padding-bottom: 34px;
  background: #ffffff;
  z-index: 4;
}
.steps-item__line {
  content: "";
  background: linear-gradient(180deg, rgba(1, 150, 88, 0) 0%, #019658 100%);
  position: absolute;
  width: 2px;
  /*top: 0;
	left: 0;*/
  margin-left: -24px;
  height: 100%;
  z-index: 1;
}
.steps-item:nth-child(2) {
  margin-left: 222px;
  z-index: 3;
}
.steps-item:nth-child(3) {
  margin-left: 444px;
  z-index: 2;
}
.steps-item:nth-child(4) {
  margin-left: 666px;
  z-index: 1;
}
.steps-item__title {
  font-size: var(--h6-size);
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 11px;
}
.steps-item__number {
  position: absolute;
  bottom: 0;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  background: #000000;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -34px;
  z-index: 2;
}
.steps-item__bg {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(1, 150, 88, 0) 0%,
    rgba(1, 150, 88, 0.08) 100%
  );
  position: absolute;
  width: 222px;
  margin-left: -244px;
  height: 100%;
  z-index: 1;
}
.steps-item:nth-child(1) .steps-item__bg {
  display: none;
}
.steps-item:nth-child(2) .steps-item__bg {
  margin-left: -235px;
  width: 213px;
}

.faq-items {
  position: relative;
  max-width: 1084px;
  margin: 30px auto;
  z-index: 1;
}
.faq-item {
  position: relative;
  background: #ffffff;
  border: 2px solid #019658;
  backdrop-filter: blur(12px);
  margin-bottom: 24px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  z-index: 1;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 5px 10px;
  transition: 0.5s;
}
.faq-item__image {
  flex: 0 0 36px;
  max-width: 36px;
  margin-right: 20px;
}
.faq-item__title {
  flex: auto;
  font-size: var(--h3-size);
  line-height: 1.1;
  font-weight: 700;
}
.faq-item__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 69px;
  max-width: 49px;
  width: 69px;
  height: 49px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: 20px;
  background: #019658;
  transition: 0.5s;
}
.faq-item__toggle:before {
  content: "";
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url(images/arrow-down.svg);
  mask-image: url(images/arrow-down.svg);
  background-color: #ffffff;
  margin-top: 6px;
  flex: 0 0 29px;
  max-width: 29px;
  width: 29px;
  height: 29px;
  transition: 0.5s;
}
.active .faq-item__toggle:before {
  margin-top: 0;
  -webkit-mask-image: url(images/close.svg);
  mask-image: url(images/close.svg);
}
.faq-item__body {
  margin-top: -15px;
  padding: 0 50px 50px;
}
.faq-item__content {
  max-width: calc(100% - 69px - 20px);
}

.page-header-thanks .page-title {
  margin-bottom: 16px;
}
.thanks-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.thanks-left {
  flex: 0 0 calc(50% - 22px);
  max-width: calc(50% - 22px);
}
.thanks-right {
  flex: 0 0 calc(50% - 22px);
  max-width: calc(50% - 22px);
}
.thanks-button {
  margin-top: 60px;
}

.modalReminder .modal-content {
  padding: 60px 110px;
}
.modalReminder .modal-close {
  top: 24px;
  right: 24px;
  left: auto;
  background: #ececec;
}
.modalReminder .modal-close:hover {
  background: #019658;
}
.modalReminder-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.modalReminder-left {
  flex: 0 0 calc(50% - 55px);
  max-width: calc(50% - 55px);
}
.modalReminder-right {
  flex: 0 0 calc(50% - 55px);
  max-width: 466px;
}
.modalReminder-content {
  font-size: var(--h6-size);
  line-height: 1.2;
  margin-bottom: 24px;
}
.modalReminder-content strong {
  font-weight: 700;
}
.modalReminder-image {
  text-align: center;
}
.modalReminder-image img {
  max-height: 326px;
}
.modalReminder-button {
  margin-top: 24px;
}
.modalReminder-button .btn {
  width: 100%;
}

@media (max-width: 1399px) {
  :root {
    --container: 1110px;

    --text-size: 16px;
    --text-size-sm: 14px;
    --text-size-esm: 10px;
    --h1-size: 40px;
    --h2-size: 36px;
    --h3-size: 19px;
    --h4-size: 28px;
    --h5-size: 24px;
    --h6-size: 20px;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  select,
  textarea {
    height: 64px;
  }
  textarea {
    height: 165px;
  }
  .btn {
    padding: 15px 36px;
    min-height: 64px;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .heading {
    margin-bottom: 40px;
  }
  .swiper-navigation button {
    flex: 0 0 64px;
    max-width: 64px;
    width: 64px;
    height: 64px;
  }
  .header-wrap {
    gap: 12px;
  }
  .hero-section {
    padding: 100px 0;
    min-height: 680px;
  }
  .hero-image-inner img {
    max-height: 480px;
  }
  .hero-checklist li:before {
    margin-top: 0;
  }
  .hero-advantage {
    padding: 20px;
  }
  .hero-advantage-image {
    flex: 0 0 32px;
    max-width: 32px;
    height: 32px;
  }
  .hero-advantage-title span {
    font-size: var(--h5-size);
  }
  .hero-advantage-3 {
    min-width: 267px;
    top: calc(100% - 68px);
  }
  .hero-advantage-line-1 {
    width: 120px;
    bottom: calc(100% + 10px);
  }
  .hero-advantage-line-2 {
    width: 364px;
    left: calc(100% + 35px);
  }
  .hero-advantage-line-3 {
    width: 107px;
    top: calc(100% + 5px);
  }
  .hero-advantage-line-4 {
    width: 361px;
    right: calc(100% + 31px);
  }
  .about-image {
    margin: 30px 0;
  }
  .about-image:before {
    width: 112px;
    height: 93px;
    bottom: -30px;
    left: -26px;
  }
  .about-image:after {
    width: 112px;
    height: 93px;
    top: -30px;
    right: -26px;
  }
  .case-item__wrap {
    padding: 26px;
  }
  .case-item__image {
    flex: 0 0 calc(((var(--container) - 20px * 2) / 3 - 26px * 2) / 1.78);
    max-height: calc(((var(--container) - 20px * 2) / 3 - 26px * 2) / 1.78);
  }
  .cases-button,
  .reviews-content {
    margin-top: 44px;
  }
  .review-item__name {
    font-size: var(--text-size);
  }
  .review-item__profession {
    font-size: var(--text-size-sm);
  }
  .service-item__wrap {
    padding: 40px;
  }
  .service-item__title br,
  .service-item__text br {
    display: none;
  }
  .feedback-wrap-bg {
    height: calc(100% - 100px);
  }
  .feedback-left {
    padding: 150px 0 40px;
  }
  .form-soc {
    gap: 6px;
  }
  .form-soc a {
    padding: 7px;
  }
  .faq-items {
    max-width: 920px;
  }
  .faq-item__head {
    padding: 24px 36px;
  }
  .faq-item__image {
    flex: 0 0 32px;
    max-width: 32px;
  }
  .faq-item__title {
    font-size: var(--h4-size);
  }
  .faq-item__toggle {
    flex: 0 0 64px;
    max-width: 64px;
    width: 64px;
    height: 64px;
  }
  .faq-item__toggle:before {
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
  }
  .faq-item__body {
    padding: 0 36px 36px;
  }
  .faq-item__content {
    max-width: calc(100% - 64px - 20px);
  }
  .footer-wrap {
    gap: 40px;
  }
  .footer-widget-contacts:before {
    left: -26px;
  }
  .form-field-soc-big .form-soc a {
    min-height: 56px;
  }
  .modal-content,
  .modalReminder .modal-content {
    padding: 25px 20px;
  }
  .modalReminder .modal-title {
    padding: 0 40px;
  }
  .modal-close {
    width: 65px;
    height: 65px;
  }
  .modal-close:before {
    flex: 0 0 20px;
    max-width: 20px;
    height: 20px;
  }
  .page-header {
    margin-bottom: 44px;
  }
  .steps-item {
    max-width: 580px;
  }
  .steps-item__text br {
    display: none;
  }
}

@media (max-width: 1199px) {
  :root {
    --container: 910px;

    --text-size: 16px;
    --text-size-sm: 14px;
    --text-size-esm: 10px;
    --h1-size: 36px;
    --h2-size: 32px;
    --h3-size: 28px;
    --h4-size: 24px;
    --h5-size: 20px;
    --h6-size: 18px;
  }
  textarea {
    height: 118px;
  }
  .header-wrap {
    gap: 6px;
  }
  .header-logo {
    max-width: 160px;
    margin-top: -5px;
  }
  .main-menu li a {
    padding: 8px 6px;
  }
  .header-button .btn {
    padding-left: 10px;
    padding-right: 10px;
  }
  .lang-menu > li > a {
    width: 68px;
  }
  .hero-image-inner img {
    max-height: 420px;
  }
  .hero-advantage {
    padding: 16px;
  }
  .hero-advantage-image {
    flex: 0 0 28px;
    max-width: 28px;
    height: 28px;
  }
  .hero-advantage-title span {
    font-size: var(--h4-size);
  }
  .hero-advantage-1 {
    bottom: calc(100% - 44px);
  }
  .hero-advantage-2 {
    left: calc(100% - 116px);
    bottom: calc(100% - 44px);
  }
  .hero-advantage-3 {
    min-width: 228px;
    top: calc(100% - 60px);
  }
  .hero-advantage-3 .hero-advantage-image {
    flex: 0 0 56px;
    max-width: 56px;
    margin-right: 12px;
  }
  .hero-advantage-4 {
    left: calc(100% - 70px);
    top: calc(100% - 45px);
  }
  .hero-advantage-line-1 {
    width: 63px;
  }
  .hero-advantage-line-2 {
    width: 346px;
    top: 36px;
  }
  .hero-advantage-line-3 {
    width: 60px;
  }
  .hero-advantage-line-4 {
    top: 36px;
    width: 332px;
  }
  .hero-image-button {
    bottom: 80px;
  }
  .review-item__main {
    min-height: 260px;
  }
  .review-item__stars {
    width: 184px;
    height: 30px;
  }
  .review-item__stars:before,
  .review-item__stars span {
    -webkit-mask-size: 184px;
  }
  .service-item__image {
    height: 54px;
  }
  .service-item__image img {
    max-height: 54px;
  }
  .feedback-wrap-bg {
    height: 100%;
  }
  .feedback-left {
    padding: 40px 0;
  }
  .feedback-left {
    flex: 0 0 calc(70% - 20px);
    max-width: calc(70% - 20px);
  }
  .feedback-right {
    flex: 0 0 calc(30% - 20px);
    max-width: calc(30% - 20px);
  }
  .form-soc a {
    font-size: 8px;
  }
  .steps-item {
    max-width: 420px;
  }
  .steps-item br {
    display: none;
  }
  .feedback-wrap-bg:before {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -250px;
  }
  .feedback-wrap.reverse .feedback-wrap-bg:before {
    width: 700px;
    height: 700px;
    top: -250px;
    left: -250px;
  }
  .footer-button .btn {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
  }
  .modalReminder-left,
  .modalReminder-right {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .footer-contacts p:before {
    margin-right: 10px;
    margin-top: -3px;
    flex: 0 0 20px;
    max-width: 20px;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 991px) {
  :root {
    --container: 690px;

    --text-size: 16px;
    --text-size-sm: 14px;
    --text-size-esm: 11px;
    --h1-size: 26px;
    --h2-size: 24px;
    --h3-size: 23px;
    --h4-size: 22px;
    --h5-size: 21px;
    --h6-size: 20px;
  }
  .btn:before {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }
  .btn-secondary.shadow-black,
  .btn-primary.shadow-black {
    box-shadow: 0 4.5px 0 0 #021a10;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .heading {
    margin-bottom: 32px;
  }
  .swiper-pagination {
    margin-top: 20px;
  }
  .swiper-pagination-bullet {
    flex: 0 0 6px;
    max-width: 6px;
    width: 6px !important;
    height: 6px !important;
  }
  .swiper-navigation button {
    flex: 0 0 40px;
    max-width: 40px;
    width: 40px;
    height: 40px;
    box-shadow: 0px 6.67px 40px 0px rgba(21, 33, 81, 0.08);
  }
  .swiper-navigation button:before {
    flex: 0 0 23px;
    max-width: 23px;
    width: 23px;
    height: 23px;
  }
  .swiper-navigation button:disabled {
    transform: scale(0.92);
  }
  .header {
    padding: 10px 0;
  }
  .header-wrap {
    height: 40px;
    gap: 16px;
  }
  .header-logo {
    margin-top: 0;
    max-width: 180px;
  }
  .header-logo img {
    max-height: 40px;
  }
  .main-menu,
  .header-button,
  .header-soc-icon {
    display: none;
  }
  .lang-menu > li > a {
    height: 40px;
  }
  .lang-menu ul li a {
    min-height: 40px;
  }
  .hero-section {
    padding: 60px 0 107px;
    min-height: 780px;
  }
  .hero-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 88px;
  }
  .hero-left,
  .hero-right {
    flex: auto;
    max-width: 100%;
  }
  .hero-content br {
    display: none;
  }
  .hero-content h1 {
    margin-bottom: 16px;
  }
  .hero-content {
    margin-bottom: 22px;
    width: 100%;
  }
  .hero-checklist li {
    padding: 10px 15px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
  }
  .hero-button .btn {
    font-size: var(--text-size);
    min-height: 42px;
    padding: 9px 19px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    box-shadow: 0 3px 0 0 #029658;
  }
  .hero-image-inner img {
    max-height: 300px;
  }
  .hero-advantage {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 15px;
  }
  .hero-advantage-head {
    margin-bottom: 6px;
  }
  .hero-advantage-image {
    flex: 0 0 24px;
    max-width: 24px;
    height: 24px;
    margin-right: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
  .hero-advantage-image img {
    max-width: 12px;
    max-height: 12px;
  }
  .hero-advantage-title {
    font-size: var(--text-size-esm);
  }
  .hero-advantage-title span {
    font-size: var(--h6-size);
    margin-right: 0;
  }
  .hero-advantage-content {
    font-size: calc(var(--text-size-esm) / 1.1316);
  }
  .hero-advantage-1 {
    bottom: calc(100% - 41px);
    right: calc(100% - 24px);
  }
  .hero-advantage-2 {
    left: calc(100% - 68px);
    bottom: calc(100% - 40px);
    min-width: 165px;
  }
  .hero-advantage-3 {
    min-width: 193px;
    top: calc(100% - 33px);
    right: calc(100% - 82px);
  }
  .hero-advantage-4 {
    left: calc(100% - 30px);
    top: calc(100% - 20px);
    min-width: 104px;
  }
  .hero-advantage-3 .hero-advantage-title,
  .hero-advantage-4 .hero-advantage-title {
    margin-bottom: 2px;
  }
  .hero-advantage-line:before,
  .hero-advantage-line:after {
    flex: 0 0 10px;
    max-width: 10px;
    width: 10px;
    height: 10px;
    border-width: 1.46px;
  }
  .hero-advantage-line-1 {
    width: 65px;
    bottom: calc(100% + 9px);
    left: 20px;
  }
  .hero-advantage-line-2 {
    width: 249px;
    top: 35px;
    left: calc(100% + 24px);
  }
  .hero-advantage-line-3 {
    width: 45px;
    top: calc(100% + 6px);
    left: 78px;
  }
  .hero-advantage-line-4 {
    top: 36px;
    width: 236px;
    right: calc(100% + 19px);
  }
  .hero-image {
    margin-left: 12px;
  }
  .hero-image-button {
    font-size: 5px;
    bottom: 55px;
  }
  .hero-image-button:before {
    flex: 0 0 15px;
    max-height: 15px;
    width: 15px;
    margin-bottom: 4px;
  }
  .hero-grid {
    width: 380px;
    height: 380px;
  }
  .hero-grid:before {
    filter: blur(150px);
  }
  .hero-grid-1 {
    top: -140px;
    left: calc((100% - var(--container)) / 2 - 165px);
  }
  .hero-grid-2 {
    bottom: 196px;
    right: calc((100% - var(--container)) / 2 - 165px);
    left: auto;
  }
  .about-wrap {
    flex-direction: column-reverse;
    align-items: normal;
    gap: 24px;
  }
  .about-left,
  .about-right {
    flex: auto;
    max-width: 100%;
  }
  .about-image {
    height: var(--container);
    margin: 16px 0;
  }
  .about-image:before {
    width: 90px;
    height: 75px;
    left: -1px;
    bottom: -15px;
  }
  .about-image:after {
    width: 90px;
    height: 74px;
    right: -1px;
    top: -15px;
  }
  .about-heading.heading,
  .about-content {
    margin-bottom: 16px;
  }
  .about-partners {
    gap: 7px;
  }
  .about-partners span img {
    max-height: 24px;
  }
  .about-partners span:first-child img {
    max-height: 38px;
  }
  .cases-heading.heading {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .cases-swiper {
    order: 2;
  }
  .cases-pagination {
    order: 3;
  }
  .cases-navigation {
    order: 4;
    margin-top: 16px;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
  }
  .cases-button {
    margin-top: 32px;
    order: 5;
  }
  .case-item__wrap {
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
  }
  .case-item__image {
    flex: 0 0 calc(((var(--container) - 20px) / 2 - 26px * 2) / 1.78);
    max-height: calc(((var(--container) - 20px) / 2 - 26px * 2) / 1.78);
    margin-bottom: 14px;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    border-radius: 14px;
  }
  .case-item__title {
    margin-bottom: 13px;
  }
  .case-item__button .btn.btn-sm {
    padding: 9px 14px;
    min-height: 41px;
  }
  .cases-button .btn,
  .reviews-button .btn,
  .footer-button .btn,
  .modal-mobile-button .btn {
    font-size: var(--h2-size);
    padding: 15px 27px;
    min-width: 340px;
  }
  .reviews-heading.heading {
    max-width: 100%;
    margin-bottom: 27px;
    flex: 0 0 100%;
    order: 1;
  }
  .reviews-swiper {
    order: 2;
  }
  .review-item__main {
    padding: 44px 24px 32px;
    -moz-border-radius: 24px 24px 0 24px;
    -webkit-border-radius: 24px 24px 0 24px;
    border-radius: 24px 24px 0 24px;
  }
  .review-item__main:before {
    width: 64px;
    height: 50px;
    left: 21px;
    top: -28px;
  }
  .review-item__button a {
    flex: 0 0 44px;
    max-width: 44px;
    height: 44px;
    border: 1px solid #019658;
  }
  .review-item__button {
    position: relative;
    flex: 0 0 70px;
    max-width: 70px;
    height: 70px;
  }
  .review-item__button a:before {
    flex: 0 0 20px;
    max-width: 20px;
    height: 20px;
  }
  .review-item__client {
    max-width: calc(100% - 70px);
    padding-top: 13px;
  }
  .review-item__image {
    flex: 0 0 48px;
    max-width: 48px;
    height: 48px;
    margin-right: 12px;
  }
  .review-item__name {
    font-size: calc(var(--h6-size) / 1.111);
  }
  .reviews-pagination {
    order: 3;
    margin-top: 24px;
  }
  .swiper-navigation {
    margin-top: 16px;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    order: 4;
  }
  .reviews-content {
    font-size: var(--h2-size);
    font-weight: 500;
    margin-top: 32px;
    order: 5;
  }
  .reviews-button {
    order: 6;
    margin-top: 26px;
  }
  .services-swiper .swiper-wrapper {
    transform: none !important;
    display: block;
    height: auto !important;
  }
  .services-swiper .swiper-slide {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 16px;
  }
  .services-swiper .swiper-slide:last-child {
    margin-bottom: 0;
  }
  .service-item__wrap {
    padding: 32px 24px;
  }
  .service-item__image {
    height: 47px;
    margin-bottom: 24px;
  }
  .service-item__image img {
    max-height: 47px;
  }
  .service-item__title {
    font-size: var(--h6-size);
    margin-bottom: 16px;
  }
  .service-item__text {
    font-size: var(--text-size-sm);
    margin-bottom: 32px;
  }
  .service-item__button .btn {
    font-size: var(--text-size-sm);
    min-height: 40px;
    padding: 9px 22px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    box-shadow: 0 3px 0 0 #ffffff;
  }
  .services-navigation {
    display: none;
  }
  .services-grid {
    width: 380px;
    height: 380px;
  }
  .services-grid-1 {
    top: -156px;
    right: calc((100% - var(--container)) / 2 - 166px);
    left: auto;
  }
  .services-grid-2 {
    bottom: -155px;
    left: calc((100% - var(--container)) / 2 - 166px);
    right: auto;
  }
  .services-heading.heading {
    margin-bottom: 32px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .services-grid:before {
    filter: blur(145px);
  }
  .services-pagination {
    display: none;
  }
  .feedback-wrap {
    padding: 44px 16px 0;
    flex-direction: column;
    gap: 30px;
  }
  .feedback-left {
    flex: auto;
    max-width: 100%;
    padding: 0;
  }
  .feedback-heading {
    margin: 0 8px 24px;
  }
  .feedback-heading.heading p {
    font-size: var(--text-size);
    width: 100%;
  }
  .feedback-right {
    flex: auto;
    max-width: 100%;
  }
  .feedback-image {
    height: 235px;
  }
  .feedback-wrap-bg:before {
    width: 660px;
    height: 660px;
    left: calc(50% + 45px);
    top: auto;
    bottom: -176px;
    right: auto;
    transform: translateX(-50%);
  }
  .form-fields {
    margin: 0 -4px -8px;
  }
  .form-field {
    margin: 0 0 8px;
    padding: 0 4px;
  }
  .steps-items {
    overflow: inherit;
    padding-bottom: 0;
  }
  .steps-item {
    position: relative;
    max-width: 100%;
    padding-bottom: 24px;
    padding-left: 25px;
    margin-left: 0 !important;
    background: none;
    z-index: 1;
  }
  .steps-item:last-child {
    padding-bottom: 0;
  }
  .steps-items:after,
  .steps-item__bg {
    display: none;
  }
  .steps-item__line {
    background: #019658;
    width: 1px;
    height: 100% !important;
    left: 7px;
    margin-left: 0;
    top: 0px;
    transform: translateY(3px);
  }
  .steps-item:last-child .steps-item__line {
    display: none;
  }
  .steps-item__number {
    font-size: 10px;
    width: 15px;
    height: 15px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-left: 0;
    left: 0;
    top: 3px;
  }
  .steps-item__title {
    margin-bottom: 9px;
  }
  .steps-item__text {
    font-size: var(--text-size-sm);
  }
  .faq-item {
    margin-bottom: 12px;
    border-width: 1px;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    border-radius: 13px;
  }
  .faq-item__head {
    padding: 16px 12px;
  }
  .faq-item__image {
    flex: 0 0 14px;
    max-width: 14px;
    margin-right: 10px;
  }
  .faq-item__title {
    font-size: calc(var(--text-size) / 1.09);
  }
  .faq-item__toggle {
    flex: 0 0 25px;
    max-width: 25px;
    width: 25px;
    height: 25px;
    margin-left: 10px;
  }
  .faq-item__toggle:before {
    flex: 0 0 12px;
    max-width: 12px;
    width: 12px;
    height: 12px;
    margin-top: 2px;
  }
  .faq-item__body {
    margin-top: -10px;
    padding: 0 12px 16px;
  }
  .faq-item__content {
    max-width: calc(100% - 25px - 10px);
    font-size: 12px;
  }
  .faq-item__content > * {
    margin-bottom: 8px;
  }
  .faq-item__content > *:last-child {
    margin-bottom: 0;
  }
  .feedback-wrap.reverse {
    flex-direction: column;
  }
  .feedback-wrap.reverse .feedback-wrap-bg:before {
    width: 660px;
    height: 660px;
    left: calc(50% - 45px);
    top: auto;
    bottom: -176px;
    right: auto;
    transform: translateX(-50%);
  }
  .footer-wrap {
    gap: 45px;
    flex-direction: column;
  }
  .footer-logo {
    order: 1;
  }
  .footer-widget-contacts {
    order: 2;
  }
  .footer-widget-contacts:before {
    display: none;
  }
  .footer-widget-title {
    font-size: var(--h2-size);
  }
  .footer-contacts p:before {
    flex: 0 0 21px;
    max-width: 21px;
    width: 21px;
    height: 21px;
    margin-right: 16px;
  }
  .footer-contacts p {
    font-size: var(--h6-size);
  }
  .footer-widget-soc {
    order: 3;
  }
  .footer-soc .soc-links li {
    margin-right: 11px;
  }
  .footer-soc li a.btn.btn-sm.btn-icon {
    width: 60px;
    height: 60px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
  }
  .footer-button {
    order: 4;
    margin: 0;
    display: block;
  }
  .footer-bottom {
    margin-top: 32px;
    padding-top: 36px;
    flex-direction: column;
    gap: 18px;
    font-size: var(--text-size);
  }
  .copyright {
    opacity: 0.5;
  }
  .lang-menu {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .f-button[title="Close"] {
    width: 45px !important;
    height: 45px !important;
  }
  .f-button[title="Close"]:before {
    flex: 0 0 17px;
    max-width: 17px;
    height: 17px;
  }
  .fancybox__content {
    padding: 16px !important;
    -moz-border-radius: 30px !important;
    -webkit-border-radius: 30px !important;
    border-radius: 30px !important;
  }
  .fancybox__content img,
  .fancybox__content iframe {
    -moz-border-radius: 16px !important;
    -webkit-border-radius: 16px !important;
    border-radius: 16px !important;
  }
  .modal-dialog {
    max-width: 380px;
  }
  .modal-content,
  .modalReminder .modal-content {
    padding: 44px 16px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
  }
  .modal-title {
    font-size: var(--text-size);
    margin-bottom: 24px;
    max-width: calc(100% - 55px);
  }
  .modal-title br {
    display: block;
  }
  .modal-title > * {
    text-align: left !important;
  }
  .modal-title h3 {
    font-size: var(--h1-size);
  }
  html[lang="ru-RU"] .modalReminder .modal-title h3 {
    font-size: calc(var(--h1-size) / 1.09);
  }
  .modal-close {
    top: 16px;
    right: 16px;
    left: auto;
    background: #ececec;
    width: 45px;
    height: 45px;
  }
  .modal-close:hover {
    background: #019658;
  }
  .modal-close:before {
    flex: 0 0 17px;
    max-width: 17px;
  }
  .form-field-soc-big {
    margin-top: 32px;
  }
  .form-field-soc-big p {
    font-size: var(--text-size);
    text-align: left;
    margin-bottom: 24px;
  }
  .form-field-soc-big .form-soc {
    gap: 10px;
  }
  .form-field-soc-big .form-soc a {
    min-height: 46px;
    padding: 12px 8px;
    -moz-border-radius: 12px;
    -webki-border-radius: 12px;
    border-radius: 12px;
    font-size: 13px;
  }
  .form-field-soc-big .form-soc a:before {
    flex: 0 0 17px;
    max-width: 17px;
    width: 17px;
    height: 17px;
    margin-right: 7px;
  }

  .modalReminder .modal-title {
    padding: 0;
    margin-bottom: 14px;
  }
  .modalReminder-wrap {
    gap: 26px;
  }
  .modalReminder-left,
  .modalReminder-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .modalReminder-content {
    font-size: var(--text-size);
  }
  .modalReminder-content > * {
    text-align: left !important;
  }
  .modalReminder-image {
    display: none;
  }
  .modalReminder-button {
    margin-top: 0;
  }
  .modal-content .btn {
    min-height: 49px;
    font-size: var(--text-size);
    padding: 13px 24px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
  }
  .modalReminder-right .modalReminder-content {
    margin-bottom: 16px;
  }
  .page-header {
    margin-bottom: 32px;
  }
  .error-404-number {
    font-size: calc(var(--h1-size) * 6);
  }
  .modal-content input {
    height: 49px;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
    border-radius: 14px;
  }
  .modal-content input.field-icon {
    background-size: 17px;
    padding-left: 48px;
  }
  .modal-content textarea {
    height: 102px;
  }

  .thanks-left {
    display: none;
  }
  .thanks-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .thanks-button {
    margin-top: 30px;
    text-align: center;
  }
  .thanks-content br {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --container: 510px;

    --text-size: 16px;
    --text-size-sm: 14px;
    --text-size-esm: 11px;
    --h1-size: 26px;
    --h2-size: 24px;
    --h3-size: 23px;
    --h4-size: 22px;
    --h5-size: 21px;
    --h6-size: 20px;
  }
  .form-field {
    order: 1;
  }
  .form-field-50 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .case-item__image {
    flex: 0 0 calc((var(--container) - 26px * 2) / 1.78);
    max-height: calc((var(--container) - 26px * 2) / 1.78);
  }
  .form-soc a {
    min-height: 38px;
    justify-content: center;
    font-size: 10.48px;
  }
  .form-soc a:before {
    flex: 0 0 14px;
    max-width: 14px;
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 575px) {
  :root {
    --container: calc(100vw - 32px);

    --text-size: 16px;
    --text-size-sm: 14px;
    --text-size-esm: 11px;
    --h1-size: 26px;
    --h2-size: 24px;
    --h3-size: 23px;
    --h4-size: 22px;
    --h5-size: 21px;
    --h6-size: 20px;
  }
  .hero-content p br {
    display: none;
  }
  .cases-button .btn,
  .reviews-button .btn,
  .footer-button .btn,
  .modal-mobile-button .btn {
    padding: 15px 20px;
  }
  .heading p br {
    display: none;
  }
  .fancybox__content {
    max-width: calc(100% - 80px) !important;
  }
  .is-horizontal .f-carousel__nav .f-button.is-prev,
  .is-horizontal .fancybox__nav .f-button.is-prev {
    left: 5px !important;
  }
  .is-horizontal .f-carousel__nav .f-button.is-next,
  .is-horizontal .fancybox__nav .f-button.is-next {
    right: 5px !important;
  }

  .has-youtube .fancybox__content {
    height: calc((100vw - 120px) / 0.54) !important;
  }
}

@media (max-width: 405px) {
  .feedback-wrap.reverse .feedback-heading.heading p {
    max-width: 230px;
  }
}
.home-projects {
  padding: 100px 0;
  background: #ffffff;
  color: #000000;
  position: relative;
  overflow: hidden;
}

.home-projects__title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.2;
}

.home-projects__title span {
  display: block;
  background: linear-gradient(90deg, #e7b67a 0%, #f3dfb2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====== SWIPER (LOGOS) ====== */
.home-projects__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.home-projects-swiper {
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  padding-bottom: 20px;
}

.home-projects-swiper__wrapper {
  display: flex;
  align-items: center;
}

.home-projects-swiper__slide {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.home-projects-swiper__slide:hover {
  opacity: 1;
  transform: scale(1.05);
}

.home-projects-swiper__img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.home-projects-swiper__slide:hover .home-projects-swiper__img {
  filter: grayscale(0);
}

.home-projects-swiper__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e7b67a;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.home-projects-swiper__link:hover {
  background: #f3dfb2;
  transform: scale(1.05);
}

/* ====== STATS BLOCK ====== */
.home-projects-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 900px;
}

.home-projects-stats__item {
  text-align: center;
}

.home-projects-stats__label {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #172e3e 0%, #f3dfb2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-projects-stats__value {
  font-size: 16px;
  color: #ccc;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .home-projects__title {
    font-size: 36px;
  }
  .home-projects-swiper__slide {
    width: auto;
    margin-right: 20px !important;
  }
  .home-projects-stats {
    gap: 30px;
  }
  .home-projects-stats__label {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .home-projects {
    padding: 10px 0;
  }
  .home-projects__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .home-projects-stats__label {
    font-size: 24px;
  }
  .home-projects-stats__value {
    font-size: 14px;
  }
}
/* === FIX SWIPER WIDTH === */
.home-projects-swiper {
  width: 100%;
  overflow: hidden; /* скрывает лишнее */
}

.home-projects-swiper__wrapper {
  display: flex;
  align-items: center;
}

.home-projects-swiper__slide {
  width: auto !important;
  flex-shrink: 0 !important;
  margin-right: 20px !important;
}

.home-projects-swiper__img {
  width: auto;
  height: 80px;
  object-fit: contain;
}
.home-projects-swiper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  flex-shrink: 0;
  width: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.home-projects-swiper__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  background: #01130b;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.home-projects-swiper__link:hover {
  background: #04613d;
}
.swiper-slide img {
  width: auto; /* сохраняет пропорции */
  object-fit: contain; /* вписывает картинку без обрезки */
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05); /* чуть меньше увеличения при ховере */
  opacity: 1;
}
.home-cases {
  padding: 10px 0;
  background: #f9f9f9;
}

.home-cases__container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-cases__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1100px;
  padding: 60px;
  background: #fff;
  border-radius: 30px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-cases__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home-cases__content {
  flex: 1;
}

.home-cases__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #007bff, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-cases__text {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.home-cases__image {
  flex-shrink: 0;
}

.home-cases__image img {
  width: 420px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.home-cases__link:hover .home-cases__image img {
  transform: scale(1.05);
}

/* адаптив */
@media (max-width: 768px) {
  .home-cases__link {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .home-cases__image img {
    width: 100%;
    height: auto;
  }
}
.services-swiper {
  overflow: hidden;
  width: 100%;
}

.swiper-slide.service-item {
  display: flex;
  justify-content: center;
}

.service-item__wrap {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.service-item__image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.service-item__title {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-item__text {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto 25px;
  word-wrap: break-word;
  text-align: left;
}

.service-item__button {
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .services-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
}
/* Контейнер Swiper — не должен выходить за пределы родителя */
.services-section .container {
  overflow: visible;
}

/* Исправляем Swiper обрезание справа */
.services-swiper {
  overflow: visible !important;
  width: 100%;
  box-sizing: border-box;
  padding-right: 1px; /* устраняет микросрез */
}

/* Каждая карточка не шире 100% */
.swiper-slide.service-item {
  flex-shrink: 0;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* Внутренности карточки */
.service-item__wrap {
  width: 100%;
  box-sizing: border-box;
}

/* Чтобы Swiper точно считал размеры */
.swiper-wrapper {
  box-sizing: border-box;
}

/* На мобильных и планшетах */
@media (max-width: 991px) {
  .services-swiper {
    padding-right: 0;
  }
}
/* уменьшить ширину карточек на ПК */
@media (min-width: 1200px) {
  .swiper-slide.service-item {
    max-width: 30%; /* вместо ~33.3% */
    margin-right: 2%; /* немного расстояния между карточками */
  }

  /* чтобы последний слайд не срезался */
  .swiper-slide.service-item:last-child {
    margin-right: 0;
  }

  .services-swiper {
    overflow: visible;
  }
}
.case-item__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* === FIX: нормальная сетка формы === */
.form-fields {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  justify-content: space-between !important;
}

.form-field {
  flex: 1 1 calc(50% - 10px) !important;
  box-sizing: border-box !important;
  min-width: 280px !important;
}

.form-field-100 {
  flex: 1 1 100% !important;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100% !important;
  box-sizing: border-box !important;
}

.form-field-button {
  display: flex !important;
  justify-content: center !important;
}

@media (max-width: 768px) {
  .form-field {
    flex: 1 1 100% !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 991px) {
  .main-menu {
    display: none;
  }
  .main-menu.active {
    display: block;
  }
}
