<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "Muller";
  src: local("Muller Regular"), local("Muller-Regular"), url("./fonts/MullerRegular.woff2") format("woff2"), url("./fonts/MullerRegular.woff") format("woff"), url("./fonts/MullerRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Muller";
  src: local("Muller Medium"), local("Muller-Medium"), url("./fonts/MullerMedium.woff2") format("woff2"), url("./fonts/MullerMedium.woff") format("woff"), url("./fonts/MullerMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Muller";
  src: local("Muller Bold"), local("Muller-Bold"), url("./fonts/MullerBold.woff2") format("woff2"), url("./fonts/MullerBold.woff") format("woff"), url("./fonts/MullerBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

* {
  scroll-padding-top: calc(var(--header-height, 0) + 10px);
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

html,
body {
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: var(--f-size-base)/var(--line-height-base) "Muller", sans-serif;
  color: var(--gray-200);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  background-color: var(--white);
  overflow-x: clip;
}

[hidden] {
  display: none !important;
}

button {
  padding: 0;
  font: inherit;
  color: inherit;
  background: 0;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
}

button:disabled {
  cursor: not-allowed;
}

input,
textarea,
select {
  display: block;
  padding: 0;
  font: inherit;
  color: inherit;
  border: 0;
  outline: 0;
  background: none;
}

ul li {
  list-style: none;
}

select {
  -webkit-appearance: none;
}

a {
  text-decoration: none;
  color: inherit;
}

svg,
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

:root {
  --f-size-base: 16px;
  --line-height-base: 1;
  --white: #ffffff;
  --black: #000000;
  --green: #bdf300;
  --green-500: #BDF300;
  --green-700: #D7F866;
  --green-800: #E5FA99;
  --green-900: #F2FDCC;
  --green-hover: #afe200;
  --blue-300: #003266;
  --blue-400: #004288;
  --blue-500: #0053aa;
  --blue-600: #3375BB;
  --blue-700: #6698CC;
  --blue-800: #99BADD;
  --blue-900: #CCDDEE;
  --gray-100: #1a1a1a;
  --gray-200: #333333;
  --gray-300: #4d4d4d;
  --gray-400: #666666;
  --gray-500: #808080;
  --gray-600: #999999;
  --gray-900: #e6e6e6;
  --gray-950: #f2f2f2;
  --header-height: auto;
  --section-mb: 120px;
  --scrollbar-width: 0;
  --border-color: #dbdbdb;
}

body {
  overflow-x: clip;
  display: flex;
  flex-direction: column;
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

main {
  overflow:hidden;
  flex: 1;
}

.d-none {
  display: none !important;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-100);
  background: var(--green);
  border-radius: 46px;
  line-height: 1;
  padding: 24px 40px;
  transition: 200ms;
  font-size: 20px;
  width: fit-content;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}

.btn:hover, .btn:focus, .btn:active {
  color: var(--gray-100) !important;
  background: var(--green-hover);
}

.btn-gradient {
  background: linear-gradient(265.1deg, var(--green) 20.9%, var(--green-hover) 80.93%);
}

.btn-gradient:hover, .btn-gradient:focus, .btn-gradient:active {
  background: linear-gradient(265.1deg, var(--green) 0%, var(--green-hover) 0%);
}

.btn-submit {
  white-space: nowrap;
  padding-top: 17px;
  padding-bottom: 17px;
  width: 100%;
}

/*.btn-submit:before {*/
/*  content: "";*/
/*  width: 28px;*/
/*  height: 28px;*/
/*  background-size: 100%;*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  background-image: url("data:image/svg+xml,%3Csvg width='28' height='29' viewBox='0 0 28 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2002_96)'%3E%3Cpath d='M26.6885 4.78784L12.6517 28.1821L1.65527 19.1852L3.59497 16.8148L11.8477 23.567L24.0618 3.21216L26.6885 4.78784Z' fill='%231A1A1A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2002_96'%3E%3Crect width='28' height='28' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");*/
/*}

*/

h1,
.h1 {
  font-size: 64px;
}

h1 span,
.h1 span {
  color: var(--blue-500);
}

.container {
  max-width: 1335px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.header {
  padding-top: 40px;
  position: sticky;
  height: var(--header-height);
  top: 0;
  z-index: 99;
}

.header-container {
  position: relative;
}

.header--fixed .header-logo {
  opacity: 0;
  visibility: hidden;
  width: 0;
  overflow: hidden;
}

.header--fixed .header-nav {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.header--fixed .header-nav-logo {
  opacity: 1;
  visibility: visible;
  margin-right: 70px;
  height: 36px;
  width: 84px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.header-logo {
  width: 180px;
  height: 40px;
}

.header-nav {
  display: flex;
  background-color: rgba(242, 242, 242, 0.8);
  backdrop-filter: blur(15px);
  padding: 5px 5px 5px 30px;
  border-radius: 40px;
  align-items: center;
  transition: 200ms;
}

.header-nav-logo {
  width: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 200ms;
}

.header-nav-list {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header-nav-item {
  line-height: 1;
  transition: 200ms;
}

.header-nav-item:hover, .header-nav-item:focus, .header-nav-item:active {
  color: var(--blue-500);
}

.header-nav-item.btn {
  padding: 14px 20px;
  font-size: 16px;
  white-space: nowrap;
}

.header-hamburger {
  display: none;
}

.section-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 30px;
}

.section-subtitle {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.section-description {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 20px;
  width: 66.66%;
}

.main {
  margin-top: 50px;
  margin-bottom: var(--section-mb);
}

.main-wrapper {
  display: flex;
  gap: 71px;
  align-items: center;
}

.main-content {
  width: 50.9%;
  margin-bottom: 50px;
}

.main-img {
  margin-right: -128px;
}

.main-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--gray-100);
}

.main-title span {
  color: var(--blue-500);
}

.main-desc {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 40px;
  color: var(--gray-300);
  max-width: 631px;
}

.main-line {
  padding: 34px 0;
  width: 100%;
  background-color: var(--green);
  overflow: hidden;
  margin-top: -30px;
  position: relative;
}

.main-line-wrapper {
  display: flex;
  width: max-content;
  gap: 22px;
}

.main-line-wrapper.init {
  animation: marquee 20s linear infinite;
}

.main-line-content {
  display: flex;
  gap: 22px;
}

.main-line-item {
  color: var(--black);
  white-space: nowrap;
  display: flex;
  gap: 22px;
  align-items: center;
}

.main-line-item:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  display: block;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }

}

.team {
  margin-bottom: var(--section-mb);
}

.team-block {
  display: flex;
  margin-left: -7px;
  margin-right: -7px;
}

.team-grid {
  padding-left: 7px;
  padding-right: 7px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 66.6667%;
}

.team-grid-item {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 200ms;
}

.team-grid-item:hover, .team-grid-item:focus, .team-grid-item:active {
  color: var(--blue-500);
}

.team-grid-item:hover .team-grid-item-arrow, .team-grid-item:focus .team-grid-item-arrow, .team-grid-item:active .team-grid-item-arrow {
  color: var(--blue-500);
}

.team-grid-item-img {
  position: absolute;
  top: 13px;
  right: 11px;
  width: 30%;
}

.team-grid-item-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--gray-900);
}

.team-grid-item-title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 500;
  padding-right: 33%;
  position: relative;
}

.team-grid-item-desc {
  margin-top: auto;
  position: relative;
  margin-right: 52px;
  max-width: 225px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--gray-300);
}

.team-grid-item--big {
  grid-column: span 2;
  min-height: 160px;
}

.team-grid-item--big .team-grid-item-img {
  width: 21.9%;
}

.team-grid-item--big .team-grid-item-arrow {
  left: 20px;
  right: unset;
}

.team-person {
  height: 455px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.team-person-wrapper {
  padding-left: 7px;
  padding-right: 7px;
  width: 27.96%;
  min-width: 365px;
}

.team-person-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #006ee1 0%, #004288 100%);
}

.team-person-img img {
  width: 100%;
  min-height: 60%;
  object-fit: cover;
}

.team-person-content {
  color: var(--white);
  padding: 60px 30px 10px 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(358.41deg, #0152A9 50%, rgba(1, 82, 169, 0.87) 63.49%, rgba(1, 82, 169, 0) 95.66%);

  width: 100%;
}

.team-person-position {
  font-size: 14px;
  line-height: 1.25;
  color: #ccddee;
  margin-bottom: 10px;
  margin-top: -20px;
}

.team-person-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 10px;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}


.team-person-desc {
  font-size: 18px;
  line-height: 1.25;
  color: #ccddee;
  margin-bottom: 10px;
}

.team-person .btn {
  width: 100%;
  max-width: 375px;
}

.sert {
  padding-top: var(--section-mb);
  padding-bottom: var(--section-mb);
  margin-bottom: var(--section-mb);
  background-color: #f2f2f2;
}

.sert .section-title {
  margin-bottom: 0;
}

.sert-item img {
  width: 100%;
}

.sert-title {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.sert-slider-btns {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.sert-slider-btns .swiper-button-prev {
  transform: rotate(-180deg);
  position: static;
  width: 32px;
  height: 32px;
  margin-top: 0;
}

.sert-slider-btns .swiper-button-prev:after {
  content: none;
  display: none;
}

.sert-slider-btns .swiper-button-next {
  position: static;
  width: 32px;
  height: 32px;
  margin-top: 0;
}

.sert-slider-btns .swiper-button-next:after {
  content: none;
  display: none;
}

.cases {
  margin-bottom: var(--section-mb);
}

.cases-page {
  margin-top: 116px;
}
.cases-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: url("../img/service-bg.jpg") 50% 0 no-repeat var(--blue-700);
  z-index: -1;
}
.cases-page-title {
  margin-bottom: 30px;
}

.case {
  background: var(--white);
  border: 1px solid #9a9a9a;
  display: flex;
  gap: 6px;
  position:relative;
}

.case--reverse {
  flex-direction: row-reverse;
}

.case + .case {
  margin-top: 30px;
}

.case-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  width: 386px;
  min-width: 386px;
}

.case-img .btn {
  margin-top: auto;
  white-space: nowrap;
  height: 114px;
  /*position: relative;*/
  border-radius: 8px;
  width: 100%;
  padding:0;
}

.case-img .btn span {
  position:relative;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 114px;
  width:100%;
}
.case-img .btn span:before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_47_257)'%3E%3Cpath d='M23.5773 20.7489V5.89966H27.5769V27.5769H5.89966V23.5773H20.7489L4.01036 6.83879L6.83879 4.01036L23.5773 20.7489Z' fill='%231A1A1A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_47_257'%3E%3Crect width='32' height='32' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.case-img .btn:after,
.case-content .btn:after {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
}

.case-content {
  padding: 40px;
}

.case-content-img {
  display: none;
}

.case-content .btn {
  display: none;
}

.case-title {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 500;
}

.case-desc {
  font-size: 20px;
  margin-bottom: 30px;
}

.case-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.case-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 44px;
  gap: 30px;
}

.case-list-item {
  width: calc(33.3333% - 20px);
  position: relative;
  padding-left: 10px;
}

.case-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background-color: var(--blue-500);
}

.case-list-item-title {
  color: var(--gray-400);
  margin-bottom: 7px;
}

.case-list-item-desc {
  font-size: 18px;
  font-weight: 500;
}

.case-list-item-desc ul li:not(:last-child) {
  margin-bottom: 10px;
}

.case-adv {
  background-color: var(--green);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.case-adv-item {
  max-width: calc(33.3333% - 8px);
}

.case-adv-item-content {
  max-width: 184px;
}

.case-adv-item-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

.case-page {
  margin-top: 116px;
}
@media screen and (max-width: 768px) {
  .case-page {
    margin-top: 70px;
  }
}
.case-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 840px;
  background: url("../img/service-bg.jpg") 50% 0 no-repeat var(--blue-700);
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .case-page-bg {
    height: 700px;
  }
}
@media screen and (max-width: 768px) {
  .case-page-bg {
    height: 600px;
  }
}
.case-page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .case-page-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.case-page-content {
  margin-bottom: 120px;
}
.case-page-content__top {
  position: relative;
  background: var(--gray-950);
  border-radius: 16px;
  overflow: hidden;
}
.case-page-content__top-image {
  position: relative;
}
.case-page-content__top-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 398px;
  background: linear-gradient(360deg, #666666 0%, #FFFFFF 100%);
  mix-blend-mode: multiply;
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 768px) {
  .case-page-content__top-image {
    height: 300px;
  }
  .case-page-content__top-image img {
    height: 300px;
  }
}
.case-page-content__top-image img {
  display: block;
  border-radius: 16px;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
.case-page-content__top-image--top {
  position: absolute;
  left: 40px;
  top: 40px;
  right: 40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .case-page-content__top-image--top {
    left: 10px;
    top: 10px;
    right: 10px;
  }
}
.case-page-content__top-image--bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .case-page-content__top-image--bottom {
    padding: 10px;
  }
}
.case-page-content__top-image--title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
  width: 100%;
  max-width: calc(100% - 280px);
  margin: 0 40px 0 0;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .case-page-content__top-image--title {
    font-size: 16px;
    max-width: 100%;
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .case-page-content__top-image--button {
    width: 100%;
  }
  .case-page-content__top-image--button .btn {
    width: 100%;
  }
}
.case-page-content__top-desc {
  padding: 60px 40px;
  font-size: 24px;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  .case-page-content__top-desc {
    font-size: 16px;
    padding: 20px 15px 10px;
  }
}
.case-page-content__top-desc h2, .case-page-content__top-desc .h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .case-page-content__top-desc h2, .case-page-content__top-desc .h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.case-page-content__top-desc ul {
  padding-left: 20px;
  margin: 10px 0px;
}
.case-page-content__top-desc ul li {
  list-style-type: "- ";

}

.case-page-content__item {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .case-page-content__item {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.case-page-content__item:last-child {
  padding-bottom: 0;
}
.case-page-content__item + .case-page-content__item {
  padding-top: 0;
}
.case-page-content__item.blue .container {
  position: relative;
  color: var(--white);
  z-index: 1;
}
.case-page-content__item.blue .container::before {
  content: "";
  position: absolute;
  inset: 0 15px;
  background: url("../img/case/blue-bg.jpg") 50% 50% no-repeat var(--blue-800);
  background-size: cover;
  z-index: -1;
  border-radius: 16px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.case-page-content__work {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.case-page-content__work-header {
  width: 100%;
  max-width: 50%;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}
@media screen and (max-width: 991px) {
  .case-page-content__work-header {
    max-width: 100%;
  }
}
.case-page-content__work-body {
  width: 100%;
  max-width: 50%;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}
@media screen and (max-width: 991px) {
  .case-page-content__work-body {
    max-width: 100%;
  }
}
.case-page-content__solution {
  width: 100%;
  padding: 40px 30px;
}

@media screen and (max-width: 768px) {
  .case-page-content__item.blue .container::before {
    inset:0;
    border-radius:0;
  }
  .case-page-content__solution {
    padding:100px 0;
  }
}
.case-page-content__solution-row {
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  /*margin-left: -8px;*/
  /*margin-right: -8px;*/
}
.case-page-content__solution-header {
  width: 100%;
  /*max-width: 50%;*/
  /*padding-left: 8px;*/
  /*padding-right: 8px;*/
  display: flex;
}
@media screen and (max-width: 991px) {
  .case-page-content__solution-header {
    max-width: 100%;
  }
}
.case-page-content__solution-body {
  width: 100%;
  /*max-width: 50%;*/
  /*padding-left: 8px;*/
  /*padding-right: 8px;*/
  display: flex;
}
@media screen and (max-width: 991px) {
  .case-page-content__solution-body {
    max-width: 100%;
  }
}
.case-page-content__steps-header {
  text-align: center;
}
.case-page-content__steps-body ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 25px 0 0 0;
  counter-reset: section;
}
.case-page-content__steps-body ol li {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 20%;
  flex: 0 0 20%;
  list-style-type: none;
  text-align: center;
  font-size: 24px;
  line-height: 1.25;
  height: auto;
  margin: 0;
  padding: 55px 10px 0;
  position: relative;
  text-wrap: balance;
}
@media (max-width: 991px) {
  .case-page-content__steps-body ol li {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .case-page-content__steps-body ol li {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 50px;
    padding: 40px 10px 0;
  }
}
.case-page-content__steps-body ol li .title {
  display: block;
  margin-bottom: 30px;
}
.case-page-content__steps-body ol li .days {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: auto auto 0;
  background: var(--blue-300);
  color: var(--white);
  height: 60px;
  border-radius: 8px;
  max-width: 225px;
}
@media screen and (max-width: 768px) {
  .case-page-content__steps-body ol li .days {
    margin-top: 15px;
  }
}
.case-page-content__steps-body ol li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 0;
  width: 100%;
  border-top: 2px dashed var(--blue-300);
}
@media screen and (max-width: 768px) {
  .case-page-content__steps-body ol li::before {
    display: none;
  }
}
.case-page-content__steps-body ol li::after {
  content: counter(section);
  counter-increment: section;
  position: absolute;
  left: calc(50% - 25px);
  top: -25px;
  width: 50px;
  height: 50px;
  background: var(--gray-900);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gray-100);
  border-radius: 20px;
  padding-top: 5px;
}
.case-page-content__steps-body ol li:last-child::before {
  display: none;
}
.case-page-content__solution-body ol li p {
  margin-bottom: 15px;
}
.case-page-content__solution-body ol li p:last-child {
  margin:0;
}

.solution-list p {
  font-size: 18px;
}

.case-page-content__slider-item {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
}
.case-page-content__slider-item-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.case-page-content__slider-item-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 398px;
  background: linear-gradient(360deg, #666666 0%, #FFFFFF 100%);
  mix-blend-mode: multiply;
  border-radius: 0 0 16px 16px;
}
.case-page-content__slider-item-image img {
  display: block;
}
.case-page-content__slider-item-title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .case-page-content__slider-item-title {
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .case-page-content__slider-item-title {
    bottom: 50px;
    font-size: 16px;
    text-align: center;
  }
}
.case-page-content__results {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background: var(--green-900);
  border-radius: 20px;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .case-page-content__results {
    padding: 15px;
    border-radius: 15px;
  }
}
.case-page-content__results-item {
  width: 100%;
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}
@media screen and (max-width: 991px) {
  .case-page-content__results-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.case-page-content__results-item:nth-child(2) .case-page-content__results-item-back::before {
  transform: scale(-1, 1);
  right: 0;
}
.case-page-content__results-item-back {
  background: var(--green);
  border-radius: 8px;
  /*padding: 20px;*/
  display: flex;
  align-items: center;
  position: relative;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .case-page-content__results-item-back {
    /*padding-top: 10px;*/
    flex-direction: column;
  }
}
@media screen {
  .case-page-content__results-item-back {
    /*padding-top: 5px;*/
  }
}

/*.case-page-content__results-item-back::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  background: url("data:image/svg+xml;charset=UTF-8,%3csvg width='575' height='234' viewBox='0 0 575 234' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M-4.5 12.5C13.5 -18.5 56.0861 31.4171 70.5 42.9998C98.5 65.5 136.5 52.6823 153.5 82C161.979 96.622 196.178 93.7346 208 99.4999C255 122.421 256 103.636 272.5 109.5C309.5 122.649 298 134.042 340 149.5C382 164.958 389.513 142.535 406.5 149.5C458.5 170.822 440.551 187.91 482 194.5C539 203.562 568.167 234.302 573 237.5' stroke='url(%23paint0_linear_4741_1182)' style='' stroke-width='4'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_4741_1182' x1='134.5' y1='47.0001' x2='457' y2='185.5' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23ACDE00' style='stop-color:%23ACDE00;stop-color:color(display-p3 0.6762 0.8688 0.0000);stop-opacity:1;'/%3e%3cstop offset='1' stop-color='%2398C300' stop-opacity='0.2' style='stop-color:%2398C300;stop-color:color(display-p3 0.5941 0.7639 0.0000);stop-opacity:0.2;'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e") 0 100% no-repeat;*/
/*  background-size: contain;*/
/*  left: 0;*/
/*  bottom: 0;*/
/*  right: 50px;*/
/*  top: 36px;*/
/*}*/
.case-page-content__results-item-back &gt; * {
  position: relative;
  z-index: 1;
}
.case-page-content__results-item-info {
  flex: 1 0 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  text-wrap: balance;
  padding: 0 30px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .case-page-content__results-item-info {
    font-size: 20px;
    max-width: 100%;
    padding: 30px 20px;
  }
}

@media screen and (max-width: 370px) {
  .case-page-content__results-item-info {
    padding: 30px 0;
  }
}
.case-page-content__results-item-info span {
  display: block;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .case-page-content__results-item-info span {
    margin-bottom: 5px;
  }
}
.case-page-content__results-item-time {
  flex: 0 0 158px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .case-page-content__results-item-time {
    flex-direction: row;
    justify-content: space-between;
    flex: auto 0 0;
    height: 64px;
    width: 100%;
  }
}
.case-page-content__results-item-time-block {
  height: 88px;
  background: var(--green-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .case-page-content__results-item-time-block {
    height: 64px;
    width: 100%;
    max-width: calc(50% - 16px);
    margin: 0 0 0 16px;
  }
}
.case-page-content__results-item-time-block:first-child {
  margin-bottom: 52px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case-page-content__results-item-time-block:first-child {
    margin: 0 16px 0 0;
  }
}
.case-page-content__results-item-time-block:first-child::after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 25.5L31.5 10.0149L28.9827 7.5L16 20.4703L3.01727 7.5L0.5 10.0149L16 25.5Z' fill='%23719200' style='fill:%23719200;fill:color(display-p3 0.4431 0.5725 0.0000);fill-opacity:1;'/%3e%3c/svg%3e");
  width: 32px;
  height: 32px;
  left: 50%;
  top: 100%;
  transform: translate3d(-50%, 10px, 0);
}
@media screen and (max-width: 768px) {
  .case-page-content__results-item-time-block:first-child::after {
    left: 100%;
    top: 50%;
    transform: translate3d(1px, -50%, 0) rotate(-90deg);
  }
}
.case-page-content__results-item-time-block span {
  font-size: 24px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
}
@media screen and (max-width: 768px) {
  .case-page-content__results-item-time-block span {
    font-size: 20px;
  }
}
.case-page-content__client {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.case-page-content__client-header {
  width: 100%;
  max-width: 45.8333333333%;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}
@media screen and (max-width: 991px) {
  .case-page-content__client-header {
    max-width: 100%;
  }
}
.case-page-content__client-body {
  width: 100%;
  max-width: 54.1666666667%;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}
@media screen and (max-width: 991px) {
  .case-page-content__client-body {
    max-width: 100%;
  }
}
.case-page-content__client-body-back {
  background: var(--gray-950);
  border-radius: 20px;
  padding: 20px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .case-page-content__client-body-back {
    flex-direction: column;
  }
}
.case-page-content__client-body-photo {
  flex: 0 0 180px;
}
.case-page-content__client-body-photo img {
  max-width: 100%;
  display: block;
  border-radius: 50%;
}
.case-page-content__client-body-text {
  width: 100%;
  max-width: calc(100% - 180px - 46px);
  margin-left: 46px;
  font-size: 24px;
  line-height: 1.25;
  color: var(--gray-200);
}
@media screen and (max-width: 768px) {
  .case-page-content__client-body-text {
    margin: 20px 0 0;
    max-width: 100%;
  }
}
.case-page-content__client-body-text p {
  margin: 0;
}
.case-page-content__client-body-text p.name {
  margin-top: 20px;
  font-weight: 500;
}
.case-page-content__client-body-text p.status {
  color: var(--gray-300);
  font-size: 16px;
}

.tags__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .tags__list {
    margin-bottom: 10px;
  }
}
.tags__item {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}
.tags__item a, .tags__item span {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--gray-900);
  border-radius: 20px;
  height: 36px;
  transition: 0.4s;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .tags__item a, .tags__item span {
    font-size: 14px;
    height: 34px;
  }
}
.tags__item a:hover, .tags__item a.active {
  background: var(--green);
}

.quest {
  margin-bottom: var(--section-mb);
  background-color: var(--blue-500);
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.quest-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.quest-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.quest-img {
  width: 48.9%;
  min-width: 48.9%;
  margin-bottom: -10%;
}

.quest-content {
  color: var(--white);
}

.quest-title {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 40px;
}

.quest-desc {
  font-size: 32px;
  margin-bottom: 40px;
}

.contacts {
  margin-bottom: var(--section-mb);
}

.contacts-list {
  display: flex;
  gap: 16px;
}

.contacts-block {
  width: calc(50% - 8px);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
}

.contacts-title {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 500;
}

.contacts-row + .contacts-row {
  margin-top: 30px;
}

.contacts-row-title {
  color: var(--gray-400);
  margin-bottom: 15px;
}

.contacts-row-value {
  font-size: 24px;
  font-weight: 500;
}

.contacts-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  background-color: var(--gray-900);
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-copy {
  color: var(--gray-500);
}

.footer-policy {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-policy-item {
  color: var(--gray-300);
  transition: 200ms;
}

.footer-policy-item:hover, .footer-policy-item:focus, .footer-policy-item:active {
  color: var(--gray-500);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 700px;
  border-radius: 16px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal-header {
  background-color: var(--green);
  padding: 34px 30px;
}

.modal-title {
  font-size: 32px;
  font-weight: 500;
  padding-right: 35px;
}

.modal .close-btn {
  position: absolute;
  top: 34px;
  right: 30px;
  width: 32px;
  height: 32px;
  z-index: 3;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30.9746 3.47461L18.4619 15.9873L30.9746 28.5L28.5 30.9746L15.9873 18.4619L3.47461 30.9746L1 28.5L13.5127 15.9873L1 3.47461L3.47461 1L15.9873 13.5127L28.5 1L30.9746 3.47461Z' fill='%23333333'/%3E%3C/svg%3E");
}

.modal-content a {
  text-decoration: underline;
}

.request-modal {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.request-modal-form {
  width: 320px;
  min-width: 320px;
}

.request-modal-content {
  padding: 30px;
}

.request-modal-img {
  display: flex;
  align-items: flex-end;
}

.input:not(:last-child) {
  margin-bottom: 15px;
}

.input input {
  padding: 17px 15px;
  background-color: #f2f2f2;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

.input input::placeholder {
  color: var(--gray-600);
  opacity: 1;
}

.check {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  color: var(--gray-400);
  font-size: 14px;
}

.check a {
  transition: 200ms;
}

.check a:hover, .check a:focus, .check a:active {
  color: var(--gray-200);
}

.check input[type=checkbox] {
  appearance: none;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 4px;
  position: relative;
  background-color: var(--green);
}

.check input[type=checkbox]:checked::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 3px;
  left: 4px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='29' viewBox='0 0 28 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2002_96)'%3E%3Cpath d='M26.6885 4.78784L12.6517 28.1821L1.65527 19.1852L3.59497 16.8148L11.8477 23.567L24.0618 3.21216L26.6885 4.78784Z' fill='%231A1A1A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2002_96'%3E%3Crect width='28' height='28' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.success-modal {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(106.89deg, #bdf300 8.97%, #94be00 89.08%);
  position: relative;
  overflow: hidden;
}

.success-modal-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: end;
}

.success-modal-bg img {
  mix-blend-mode: soft-light;
  height: 150%;
  margin-top: -100px;
  margin-right: -30px;
}

.success-modal-icon {
  width: 100px;
  height: 100px;
  background-color: #d7f866;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  border-radius: 30px;
  position: relative;
}

.success-modal-icon svg {
  width: 50px;
  height: 50px;
}

.success-modal-text {
  font-size: 32px;
  font-weight: 500;
  position: relative;
  text-align: center;
}

.cookie {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  transform: translateY(100%);
  transition: 300ms;
}

.cookie.active {
  transform: translateY(0);
}

.cookie-wrapper {
  padding: 40px 0;
  display: flex;
  gap: 43px;
}

.cookie-text {
  font-size: 18px;
}

.cookie-btn {
  padding: 17px 47px;
  height: fit-content;
}

.cookie a {
  text-decoration: underline;
}

.breadcrumbs {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-500);
  font-size: 14px;
}

.breadcrumbs-item:last-child {
  color: var(--gray-500);
  pointer-events: none;
}

.breadcrumbs-item:last-child:after {
  content: none;
  display: none;
}

.breadcrumbs-item:after {
  content: "";
  width: 14px;
  height: 14px;
  background: no-repeat center/100% url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.9375 7.21875L4.16275 14L3.0625 12.8987L8.737 7.21875L3.0625 1.53881L4.16275 0.4375L10.9375 7.21875Z' fill='%23CCCCCC'/%3E%3C/svg%3E");
}

.breadcrumbs-item--back {
  display: none;
}

.breadcrumbs-item--back:after {
  content: none;
  display: none;
}

.breadcrumbs-item--back:before {
  content: "";
  width: 14px;
  height: 14px;
  background: no-repeat center/100% url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.0625 7.21875L9.83725 14L10.9375 12.8987L5.263 7.21875L10.9375 1.53881L9.83725 0.4375L3.0625 7.21875Z' fill='%230053AA'/%3E%3C/svg%3E");
}

.services-page {
  margin-top: 116px;
}

.services-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: var(--gray-950);
  z-index: -1;
}

.services-page-title {
  margin-bottom: 60px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: var(--section-mb);
}

.services-item {
  padding: 20px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  transition: 200ms;
  min-height: 300px;
  position: relative;
}

.services-item:hover .services-item-title {
  color: var(--blue-500);
}

.services-item:hover .services-item-arrow {
  color: var(--blue-500);
}

.services-item-img {
  position: absolute;
  top: 33px;
  right: 35px;
  width: 37%;
}

.services-item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.services-item-title {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 20px;
  padding-right: 37%;
}

.services-item-desc {
  margin-top: auto;
  font-size: 14px;
  line-height: 1.35;
  color: var(--gray-300);
  max-width: 225px;
}

.services-item-arrow {
  color: var(--gray-900);
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.policy-page {
  margin-top: 116px;
}

.policy-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: var(--gray-950);
  z-index: -1;
}

.policy-page a {
  color: var(--blue-500);
}

.policy-page ol {
  padding: 0 0 0 15px;
}

.policy-page ul {
  padding: 15px;
}

.policy-page ul li {
  list-style: disc;
}

.content-block p {
  margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
  .case-img {
    display: none;
  }

  .case-content {
    padding: 20px;
  }

  .case-content-img {
    display: block;
    height: 240px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
  }

  .case-content-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
  }

  .case-content .btn {
    display: flex;
    margin-top: 20px;
    white-space: nowrap;
    height: 114px;
    border-radius: 8px;
    width: 100%;
    padding:0;
  }

  .case-content .btn span {
    position:relative;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 114px;
    width:100%;
  }

  .case-content .btn span:before {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_47_257)'%3E%3Cpath d='M23.5773 20.7489V5.89966H27.5769V27.5769H5.89966V23.5773H20.7489L4.01036 6.83879L6.83879 4.01036L23.5773 20.7489Z' fill='%231A1A1A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_47_257'%3E%3Crect width='32' height='32' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  }

  .case-title {
    font-size: 32px;
  }

  .quest-title {
    font-size: 42px;
  }

  .quest-desc {
    font-size: 24px;
  }

  .team-person {
    min-width: 100%;
  }

  /*.team-person-wrapper {*/
  /*  width: 41%;*/
  /*  min-width: unset;*/
  /*}*/

  .team-person-img img {
    min-height: 80%;
  }

  .team-person-title {
    font-size: 24px;
  }

  .team-person-content {
    padding: 60px 10px 10px 10px;
  }

  .team-person .btn {
    padding: 24px;
    white-space: nowrap;
  }

  .team-grid {
    width: 59%;
  }

  .team-grid-item-title {
    font-size: 20px;
  }

  .services-item-title {
    font-size: 20px;
  }

}
@media screen and (max-width: 768px) {
  :root {
    --section-mb: 100px;
  }

  .btn {
    padding: 17px 32px;
  }

  h1,
  .h1 {
    font-size: 32px;
  }

  .header {
    padding-top: 25px;
    padding-bottom: 13px;
    background-color: var(--white);
  }

  .header-logo {
    width: 110px;
    height: 24px;
  }

  .header-wrapper {
    position: static;
    transform: none;
  }

  .header-nav {
    position: fixed;
    top: var(--header-height);
    transition: 200ms;
    right: 0;
    padding: 40px;
    border-radius: 20px 0 0 20px;
    transform: translateX(100%);
    align-items: flex-start;
    height: calc(var(--vh) - var(--header-height));
    z-index: 10;
  }

  .header-nav.open {
    transform: translateX(0);
  }

  .header-nav-logo {
    display: none;
  }

  .header-nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-hamburger {
    display: block;
    width: 32px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }

  .header-hamburger span, .header-hamburger::before, .header-hamburger::after {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--blue-400);
    transition: 200ms;
    left: 0;
    transform-origin: center;
  }

  .header-hamburger span {
    top: 50%;
    transform: translateY(-1px);
  }

  .header-hamburger::before {
    content: "";
    top: 0;
  }

  .header-hamburger::after {
    content: "";
    bottom: 0;
  }

  .header-hamburger.open span {
    opacity: 0;
    transform: translateY(-50%);
  }

  .header-hamburger.open::before {
    top: 50%;
    transform: rotate(45deg);
  }

  .header-hamburger.open::after {
    bottom: auto;
    top: 50%;
    transform: rotate(-45deg);
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .section-description {
    font-size: 16px;
    margin-bottom: 15px;
    width: 100%;
  }

  .main-wrapper {
    flex-direction: column;
    gap: 43px;
  }

  .main-img {
    width: 100%;
    margin: 0;
  }

  .main-content {
    width: 100%;
    margin-bottom: 0;
  }

  .main-content .btn {
    width: 100%;
    max-width: 350px;
  }

  .main-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .main-desc {
    margin-bottom: 20px;
  }

  .main-line {
    margin-top: -20px;
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .case + .case {
    margin-top: 10px;
  }

  .case-list-item {
    width: 100%;
  }

  .case-adv {
    /*flex-direction: column;*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);

  }

  .case-adv-item {
    max-width: 100%;
  }

  .quest {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .quest-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .quest-img {
    width: 100%;
    margin: 0;
    max-width: 400px;
  }

  .quest-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .quest-desc {
    margin-bottom: 20px;
  }

  .quest-content .btn {
    width: 100%;
    max-width: 375px;
  }

  .contacts-list {
    flex-direction: column;
  }

  .contacts-block {
    width: 100%;
  }

  .footer {
    padding-top: 23px;
    padding-bottom: 23px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left {
    width: 100%;
    justify-content: space-between;
  }

  .footer-copy {
    text-align: end;
  }

  .footer-policy {
    width: 100%;
    justify-content: flex-end;
    gap: 24px;
  }

  .footer-policy-item {
    font-size: 14px;
    text-align:right;
  }
  .footer-policy-item:first-child {
    text-align:left;
  }

  .modal-header {
    padding: 23px 30px;
  }

  .modal-title {
    padding-right: 26px;
    font-size: 24px;
  }

  .modal-content {
    margin-left: 15px;
    margin-right: 15px;
  }

  .modal .close-btn {
    top: 23px;
    width: 24px;
    height: 24px;
  }

  .request-modal-form {
    width: 100%;
    min-width: 100%;
  }

  .request-modal-img {
    display: none;
  }

  .success-modal-bg img {
    height: 110%;
    margin-top: -4%;
    margin-right: -9%;
  }

  .team-block {
    flex-direction: column;
    gap: 15px;
  }

  .team-person-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .team-person-content {
    padding: 60px 10px 10px 10px;
  }

  .team-person .btn {
    text-align: center;
    white-space: normal;
  }

  .team-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .team-grid-item {
    min-height: 116px;
    padding: 20px;
    flex-direction: row-reverse;
    gap: 15px;
    justify-content: space-between;
  }

  .team-grid-item--big {
    grid-column: 1;
  }

  .team-grid-item-desc {
    display: none;
  }

  .team-grid-item-arrow {
    display: none;
  }

  .team-grid-item-title {
    padding-right: 0;
  }

  .team-grid-item-img {
    position: static !important;
    width: 80px !important;
    min-width: 80px !important;
  }

  .cookie-wrapper {
    padding: 20px 0;
    flex-direction: column;
    gap: 20px;
  }

  .breadcrumbs-item {
    display: none;
  }

  .breadcrumbs-item--back {
    display: flex;
  }

  .services-page {
    margin-top: 76px;
  }

  .services-page-bg {
    height: 320px;
  }

  .services-page-title {
    margin-bottom: 40px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .services-item {
    min-height: 220px;
  }

  .services-item-title {
    padding-right: 150px;
  }

  .services-item-img {
    top: 13px;
    right: 9px;
    width: 142px;
  }

  .policy-page-bg {
    height: 320px;
  }

}
@media screen and (max-width: 500px) {
  .success-modal-bg img {
    margin-right: -30%;
  }

  .case-adv {
    grid-template-columns: 1fr;
  }

  .case-adv-item-content {
    max-width: 100%;
    text-align: center;
  }

  .request-modal-content {
    padding: 15px;
  }

}

.smart-captcha {
  margin-bottom: 15px;
}

.form-error {
  color: #f82427;
  margin-bottom: 15px;
}

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

.tariffs-page {
  margin-top: 116px;
}

.tariffs-page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--top-bg-height, 740px);
  background: url("../img/service-bg.jpg") 50% 0 no-repeat var(--blue-700);
  background-size:cover;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .tariffs-page-bg {
    min-height: var(--top-bg-height, 755px);
  }

}
.tariffs-page-top {
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .tariffs-page-top {
    padding-bottom: 100px;
  }

}
.tariffs-page-title {
  margin-bottom: 30px;
}

.tariffs-page-text {
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .tariffs-page-text {
    font-size: 22px;
    margin-bottom: 30px;
  }

}
@media screen and (max-width: 768px) {
  .tariffs-page-text {
    font-size: 18px;
    margin-bottom: 20px;
  }

}
.tariffs-page-text.big {
  font-size: 32px;
}

@media screen and (max-width: 991px) {
  .tariffs-page-text.big {
    font-size: 26px;
  }

}
@media screen and (max-width: 768px) {
  .tariffs-page-text.big {
    font-size: 18px;
  }

}
.tariffs-page__item {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .tariffs-page__item {
    padding-top: 100px;
    padding-bottom: 100px;
  }

}
.tariffs-page__item + .tariffs-page__item {
  padding-top: 0;
}

.tariffs-page__item.pt-0 {
  padding-top: 0;
}

.tariffs-page__item.grey {
  background: var(--gray-950);
  z-index: 1;
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  .tariffs-page__item.grey {
    padding-top: 100px;
  }

}
.tariffs-page__item.grey::after {
  content: "";
  background: var(--gray-950);
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.tariffs__prices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}

.tariffs__prices-item {
  width: 100%;
  max-width: 25%;
  padding-left: 7px;
  padding-right: 7px;
  display: flex;
}

@media (max-width: 1300px) {
  .tariffs__prices-item {
    max-width: 50%;
    margin-bottom: 15px;
  }

}
@media screen and (max-width: 768px) {
  .tariffs__prices-item {
    max-width: 100%;
  }

}
.three-in-row .tariffs__prices-item {
  max-width: 33.3333333333%;
}

@media (max-width: 991px) {
  .three-in-row .tariffs__prices-item {
    max-width: 50%;
    margin-bottom: 15px;
  }

}
@media screen and (max-width: 768px) {
  .three-in-row .tariffs__prices-item {
    max-width: 100%;
  }

}
.tariffs__prices-item-back {
  width: 100%;
  height: 100%;
  background: var(--gray-950);
  border-radius: 8px;
}

.tariffs__prices-item-header {
  padding: 20px;
}

.tariffs__prices-item-title {
  text-align: center;
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.tariffs__prices-item-desc {
  text-align: center;
  color: var(--gray-400);
  font-size: 16px;
  line-height: 1.25;
  min-height: 2.5em;
}

.tariffs__prices-item-price {
  background: var(--green-700);
  padding: 20px;
}

.three-in-row .tariffs__prices-item-price {
  background: var(--blue-600);
  color: var(--white);
}

.tariffs__prices-item-price span {
  display: block;
  text-align: center;
}

.tariffs__prices-item-price span.value {
  font-size: 32px;
  line-height: 1.25;
  color: var(--gray-200);
}

.three-in-row .tariffs__prices-item-price span.value {
  color: var(--white);
}

.tariffs__prices-item-price span.desc {
  font-size: 16px;
  line-height: 1.25;
  color: var(--gray-400);
}

.three-in-row .tariffs__prices-item-price span.desc {
  color: var(--blue-800);
}

.tariffs__prices-item-info {
  padding: 5px 25px;
}

.tariffs__prices-item-info-item {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.tariffs__prices-item-info-item:last-child {
  border-bottom: none;
}

.tariffs__prices-item-info-item-label {
  font-size: 16px;
  line-height: 1.25;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.tariffs__prices-item-info-item-value {
  color: var(--gray-200);
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  gap: 10px;
}

.tariffs__prices-item-info-item-value span {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--gray-900);
  border-radius: 6px;
}

.tariffs__prices-item-info-item-value span.on {
  background: var(--green-500);
}

.tariffs__prices-item-info-item-value span.check {
  border-radius: 12px;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23.731 2.60596L14.3464 11.9905L23.731 21.375L21.875 23.231L12.4905 13.8464L3.10596 23.231L1.25 21.375L10.6345 11.9905L1.25 2.60596L3.10596 0.75L12.4905 10.1345L21.875 0.75L23.731 2.60596Z' fill='%23CCCCCC'/%3e%3c/svg%3e");
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.tariffs__prices-item-info-item-value span.check.checked {
  background: var(--green-500);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23.3757 3.67529L11.3442 23.7275L1.9187 16.0159L3.5813 13.9841L10.655 19.7717L21.1243 2.32471L23.3757 3.67529Z' fill='%231A1A1A'/%3e%3c/svg%3e");
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.gray-400 {
  color: var(--gray-400);
}

.swiper-carousel .swiper {
  overflow: hidden;
  position: relative;
}

.swiper-carousel .swiper-wrapper {
  display: flex;
}

.swiper-carousel .swiper-pagination {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  pointer-events: none;
  display: flex;
  justify-content: center;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .swiper-carousel .swiper-pagination {
    left: 30px;
    right: 30px;
    bottom: 30px;
  }

}
@media screen and (max-width: 768px) {
  .swiper-carousel .swiper-pagination {
    bottom: 15px;
  }

}
.swiper-carousel .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: var(--green-800);
  transition: 0.4s;
  transform: scale(0.6);
  pointer-events: auto;
  margin: 0 10px;
  border-radius: 50%;
  cursor: pointer;
}

.swiper-carousel .swiper-pagination-bullet-active {
  background: var(--green);
  transform: none;
  cursor: default;
}

.icon.swiper-arrow {
  width: 32px;
  height: 32px;
}

ol.styled {
  margin: 0 0 0 25px;
  counter-reset: section;
}

ol.styled li {
  border-left: 1px dashed var(--green);
  list-style-type: none;
  padding: 10px 0 60px 73px;
  position: relative;
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

ol.styled.solution-list li {
  padding: 10px 0 60px 50%; /* 73px*/
  border-left:1px dashed var(--green);
}
@media screen and (max-width: 991px) {
  ol.styled.solution-list li {
    padding: 10px 0 60px 73px;
  }
}
ol.styled.solution-list li .title {
  position:absolute;
  left:73px;
  width:calc(50% - 110px);
}
@media screen and (max-width: 991px) {
  ol.styled.solution-list li .title {
    position:relative;
    left:auto;
    width:auto;
    margin-bottom:15px;
  }
}
@media screen and (max-width: 768px) {
  ol.styled.solution-list li {
    padding-bottom:10px;
  }
  ol.styled.solution-list li::after {
    display:none;
  }
  ol.styled.solution-list li .title {
    position:relative;
    padding-right:35px;
    cursor:pointer;
  }
  ol.styled.solution-list li .title::after{
    content:"";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 15.9375L19.6875 6.25929L18.1142 4.6875L10 12.7939L1.8858 4.6875L0.3125 6.25929L10 15.9375Z' fill='%23F2F2F2'/%3e%3c/svg%3e");
    width:20px;
    height:20px;
    position:absolute;
    right:0;
    top:0;
    transition: 0.3s ease-out;
  }
  ol.styled.solution-list li.active .title::after {
    transform:rotate(-180deg);
  }
  ol.styled.solution-list li .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  ol.styled.solution-list li.active .content {
    max-height:1500px;
  }
}
ol.styled.solution-list li::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:30px;
  height:0;
  border-bottom:1px solid rgba(255,255,255,.3);
}
ol.styled li:last-child {
  border-left:none;
}
ol.styled.solution-list li:last-child:after {
  display:none;
}

@media screen and (max-width: 768px) {
  ol.styled li,
  ol.styled.solution-list li {
    padding-left: 55px;
  }

}
ol.styled li:last-child {
  margin-bottom: 0;
}

ol.styled li::before {
  content: counter(section);
  counter-increment: section;
  position: absolute;
  left: -25px;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--green);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gray-100);
  border-radius: 20px;
  padding-top: 5px;
}

ol.styled.blue li {
  border-left: 1px dashed var(--blue-800);
}
ol.styled.blue li:last-child {
  border-left: none;
}

ol.styled.blue li::before {
  background: var(--blue-800);
}

.service-page__item {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}

.service-page__item.mb-120 {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .service-page__item.mb-120 {
    margin-bottom: 100px;
  }

}
.service-page__item.pt-0 {
  padding-top: 0;
}

.service-page__item.grey {
  background: var(--gray-950);
  z-index: 1;
}

.service-page__item.grey::after {
  content: "";
  background: var(--gray-950);
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.service-page__item.blue {
  z-index: 1;
}

.service-page__item.blue::after {
  content: "";
  background: url("../img/service/blueBg.webp") 50% 0 no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.service-page__item.green {
  z-index: 1;
}

.service-page__item.green::after {
  content: "";
  background: url("../img/service/greenBg.webp") 50% 0 no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.service-page__item .services-page-text {
  max-width: 75%;
  margin-bottom: 0;
}

.service-page__item .services-page-img {
  position: absolute;
  right: 50px;
  bottom: -120px;
}

@media screen and (max-width: 768px) {
  .service-page__item .services-page-img {
    display: none;
  }

}
.service-page__item .services-page-img img {
  display: block;
}

@media screen and (max-width: 768px) {
  .service-page__item {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .service-page__item .services-page-text {
    max-width: 100%;
  }

}
.service-page__item ol.wide-ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 25px 0 0 0;
  counter-reset: section;
}

.service-page__item ol.wide-ol li {
  width: 100%;
  max-width: 25%;
  flex: 0 0 25%;
  list-style-type: none;
  text-align: center;
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  padding: 55px 10px 0;
  position: relative;
  text-wrap: balance;
}

@media (max-width: 991px) {
  .service-page__item ol.wide-ol li {
    font-size: 20px;
  }

}
@media screen and (max-width: 768px) {
  .service-page__item ol.wide-ol li {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 50px;
    padding: 40px 10px 0;
  }

}
.service-page__item ol.wide-ol li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 0;
  width: 100%;
  border-top: 1px dashed var(--green);
}

@media screen and (max-width: 768px) {
  .service-page__item ol.wide-ol li::before {
    display: none;
  }

}
.service-page__item ol.wide-ol li::after {
  content: counter(section);
  counter-increment: section;
  position: absolute;
  left: calc(50% - 25px);
  top: -25px;
  width: 50px;
  height: 50px;
  background: var(--green);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gray-100);
  border-radius: 20px;
  padding-top: 5px;
}

.service-page__item ol.wide-ol li:last-child::before {
  display: none;
}

.service-page__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.service-page__list-item {
  width: 100%;
  max-width: 50%;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .service-page__list-item {
    max-width: 100%;
  }

}
.service-page__list-item-back {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #ECECEC;
}

.service-page__list-item-icon {
  background: var(--blue-900);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 140px;
  height: 100%;
  min-height: 140px;
}

@media screen and (max-width: 768px) {
  .service-page__list-item-icon {
    flex: 0 0 96px;
  }

}
.green .service-page__list-item-icon {
  background: var(--green-900);
}

.service-page__list-item-desc {
  width: calc(100% - 140px);
  padding: 20px 40px;
  font-size: 24px;
  line-height: 1.25;
}

@media screen and (max-width: 991px) {
  .service-page__list-item-desc {
    padding: 20px 30px;
    font-size: 20px;
  }

}
@media screen and (max-width: 768px) {
  .service-page__list-item-desc {
    width: calc(100% - 96px);
    padding: 20px 24px;
    font-size: 16px;
  }

}
.service-page__cloud {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}

.service-page__cloud-item {
  width: 100%;
  max-width: 33.3333333333%;
  padding-left: 7px;
  padding-right: 7px;
  margin-bottom: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .service-page__cloud-item {
    max-width: 100%;
  }

}
.service-page__cloud-item-back {
  width: 100%;
  height: 100%;
  border: 1px solid #ECECEC;
  background: var(--white);
  padding: 19px;
}

.service-page__cloud-item-back:hover .service-page__cloud-item-image img {
  transform: scale(1.06);
}

.service-page__cloud-item-image {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.service-page__cloud-item-image img {
  display: block;
  aspect-ratio: 385/269;
  transition: 1s;
  width: 100%;
}

.service-page__cloud-item-title {
  font-size: 32px;
  line-height: 1.25;
}

.service-page__cloud-item-title a {
  color: var(--black);
  transition: 0.4s;
  text-decoration: none;
}

.service-page__cloud-item-title a:hover {
  color: var(--blue-700);
}

.service-page__cloud-item-title a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-page__advantages {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
}

.service-page__advantages-item {
  width: 100%;
  max-width: 25%;
  padding-left: 7px;
  padding-right: 7px;
  margin-bottom: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .service-page__advantages-item {
    max-width: 100%;
    margin-bottom: 60px;
  }

}
.service-page__advantages-item-back {
  width: 100%;
  height: 100%;
}

.service-page__advantages-item-image {
  margin-bottom: 35px;
}

.service-page__advantages-item-image img {
  display: block;
  margin: 0 auto;
}

.service-page__advantages-item-title {
  text-align: center;
  font-size: 32px;
  line-height: 1.25;
}

.service-page__work {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.service-page__work-header {
  width: 100%;
  max-width: 50%;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .service-page__work-header {
    max-width: 100%;
  }

}
.service-page__work-body {
  width: 100%;
  max-width: 50%;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .service-page__work-body {
    max-width: 100%;
  }

}
.service-page__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.service-page__info-body {
  width: 100%;
  max-width: 50%;
  padding-left: 8px;
  padding-right: 8px;
}

@media screen and (max-width: 991px) {
  .service-page__info-body {
    max-width: 100%;
  }

}
.service-page__info-text {
  font-size: 24px;
  line-height: 1.35;
}

.service-page__info-text p {
  margin-bottom: 40px;
}

.service-page__info-text p:last-child {
  margin-bottom: 0;
}

.service-page__info-image {
  width: 100%;
  max-width: 50%;
  padding-left: 8px;
  padding-right: 8px;
  margin-top: calc(var(--mt, 0) * -1);
  margin-bottom: calc((120px + var(--mb)) * -1);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

@media screen and (max-width: 991px) {
  .service-page__info-image {
    max-width: 100%;
    margin-top: 0;
  }

}
@media screen and (max-width: 768px) {
  .service-page__info-image {
    margin-bottom: calc((100px + var(--mb) * 0.5) * -1);
  }

}
.service-page__info-image img {
  display: block;
  max-width: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .service-page__info-image img {
    width: 344px;
    height: auto;
    margin: 0 auto;
  }

}
.service-page__faq {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.service-page__faq-header {
  width: 100%;
  max-width: 37.5%;
  padding-left: 8px;
  padding-right: 8px;
}

@media screen and (max-width: 991px) {
  .service-page__faq-header {
    max-width: 100%;
  }

}
.service-page__faq-header .section-title {
  line-height: 1;
}

.service-page__faq-list {
  width: 100%;
  max-width: 62.5%;
  padding-left: 8px;
  padding-right: 8px;
}

@media screen and (max-width: 991px) {
  .service-page__faq-list {
    max-width: 100%;
  }

}
.service-page__faq-item {
  margin-bottom: 20px;
}

.service-page__faq-item:last-child {
  margin-bottom: 0;
}

.service-page__faq-item-back {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
}

.service-page__faq-item-question {
  text-align: right;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .service-page__faq-item-question {
    text-align: left;
    font-size: 24px;
  }

}
.service-page__faq-item-question a {
  position: relative;
  padding-right: 70px;
  display: block;
}

.service-page__faq-item-question a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 20px;
  background: var(--green);
  margin-top: -26px;
}

.service-page__faq-item-question a::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 25.5L31.5 10.0149L28.9827 7.5L16 20.4703L3.01727 7.5L0.5 10.0149L16 25.5Z' fill='%23333333'/%3e%3c/svg%3e ");
  width: 32px;
  height: 32px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -16px;
  transition: 0.3s;
}

.active .service-page__faq-item-question a::after {
  transform: rotate(-180deg);
}

.service-page__faq-item-answer {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 20px;
  text-align: right;
  font-size: 24px;
  line-height: 1.25;
}

@media screen and (max-width: 991px) {
  .service-page__faq-item-answer {
    text-align: left;
    font-size: 16px;
  }

}
.active .service-page__faq-item-answer {
  display: block;
  max-height: 500px;
}

.service-page__faq-item-answer p {
  margin: 0;
}

.services-page.v2 {
  margin-top: 56px;
}

.services-page-bg.img {
  min-height: var(--top-bg-height, 740px);
  background: url("../img/service-bg.jpg") 50% 0 no-repeat var(--blue-700);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .services-page-bg.img {
    min-height: var(--top-bg-height, 755px);
  }

}
.v2 .services-page-bg.img {
  min-height: var(--top-bg-height, 800px);
}

@media screen and (max-width: 768px) {
  .v2 .services-page-bg.img {
    min-height: var(--top-bg-height, 840px);
  }

}
.services-page-top {
  display: flex;
  gap: 30px;
  min-height: 510px;
  padding-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .services-page-top {
    min-height: 530px;
    flex-wrap: wrap;
  }

}
.v2 .services-page-top {
  min-height: 618px;
}

@media screen and (max-width: 991px) {
  .v2 .services-page-top {
    min-height: 580px;
  }

}
.v2 .services-page-top .services-page-title {
  margin-bottom: 40px;
}

.services-page-top__desc {
  width: 100%;
  flex: 0 0 calc(57.5% - 30px);
  max-width: calc(57.5% - 30px);
}

@media screen and (max-width: 991px) {
  .services-page-top__desc {
    flex: 0 0 100%;
    max-width: 100%;
  }

}
.services-page-top__img {
  width: 100%;
  flex: 0 0 42.5%;
  max-width: 42.5%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 991px) {
  .services-page-top__img {
    flex: 0 0 100%;
    max-width: 100%;
  }

}
.services-page-top__img img {
  display: block;
  margin: 0 0 -106px auto;
  position: relative;
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .services-page-top__img img {
    width: 344px;
    height: auto;
    margin: 0 auto -98px;
  }

}
.services-page-title {
  margin-bottom: 60px;
}

.services-page-text {
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .services-page-text {
    font-size: 22px;
    margin-bottom: 30px;
  }

}
@media screen and (max-width: 768px) {
  .services-page-text {
    font-size: 18px;
    margin-bottom: 20px;
  }

}
.services-page-text.big {
  font-size: 32px;
}

@media screen and (max-width: 991px) {
  .services-page-text.big {
    font-size: 26px;
  }

}
@media screen and (max-width: 768px) {
  .services-page-text.big {
    font-size: 18px;
  }

}</pre></body></html>