:root {
  --font-family: "HelveticaNeueCyr", sans-serif;
  --content-width: 1290px;
  --container-offset: 30px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --orange: #F39200;
  --grey: #706F6F;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "HelveticaNeueCyr";
  font-weight: 400;
  src: url("../fonts/HelveticaNeueCyr-Roman.otf") format("opentype");
}
@font-face {
  font-family: "HelveticaNeueCyr";
  font-weight: 550;
  src: url("../fonts/HelveticaNeueCyr-Medium.otf") format("opentype");
}
@font-face {
  font-family: "HelveticaNeueCyr";
  font-weight: 700;
  src: url("../fonts/HelveticaNeueCyr-Bold.otf") format("opentype");
}
@font-face {
  font-family: "HelveticaNeueCyr";
  font-weight: 300;
  src: url("../fonts/HelveticaNeueCyr-Light.otf") format("opentype");
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  color: #706F6F;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  background-color: #F8F8F8;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}
a:focus-visible {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

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

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

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

.section-title {
  font-size: 48px;
  font-weight: 550;
  line-height: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.btn {
  height: 43px;
  max-width: 265px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0 34px;
  background-color: #fff;
  font-size: 16px;
  line-height: 100%;
  color: #706F6F;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn svg {
  -webkit-transition: margin-left 0.3s ease-out;
  transition: margin-left 0.3s ease-out;
}
.btn svg path {
  fill: #706F6F;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn:hover {
  background-color: #706F6F;
  color: #fff;
  padding: 0 30px 0 34px;
}
.btn:hover svg {
  margin-left: 4px;
}
.btn:hover svg path {
  fill: #fff;
}
.btn--orange {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  background-color: var(--orange);
  color: #fff;
}
.btn--orange svg path {
  fill: #fff;
}

.header {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0px;
  background-color: rgba(112, 111, 111, 0.8);
}
.header.active {
  background-color: rgb(112, 111, 111);
}
.header.active .header-submenu {
  opacity: 1;
}
.header.active .header-link-arrow {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.header-wrap {
  height: 66px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 5;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.header-wrap.open {
  background-color: rgb(112, 111, 111);
}
@media (max-width: 1290px) {
  .header-wrap {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header-wrap {
    padding: 0 15px;
  }
}
.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header-logo__image {
  max-height: 43px;
}
@media (max-width: 1290px) {
  .header-logo__image {
    max-height: 33px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.header-left {
  padding: 15px 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1290px) {
  .header-left {
    gap: 20px;
  }
}
@media (max-width: 1170px) {
  .header-left {
    padding: 0;
  }
}
.header-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 3px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1170px) {
  .header-info__item {
    display: none;
  }
}
.header-info__item-subtitle {
  color: #fff;
  font-size: 12px;
  line-height: 100%;
  opacity: 0.7;
  margin-bottom: 3px;
}
.header-info__item-title {
  color: #fff;
  font-size: 16px;
  line-height: 17px;
}
.header-info__item-icon {
  margin-bottom: 2px;
}
.header-right {
  height: 100%;
}
@media (max-width: 1170px) {
  .header-right {
    display: none;
  }
}
.header-links {
  padding-top: 24px;
  height: 100%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 1290px) {
  .header-links {
    gap: 20px;
  }
}
.header-link {
  cursor: pointer;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 550;
  line-height: 100%;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  height: 100%;
  position: relative;
}
@media (max-width: 1170px) {
  .header-link {
    font-size: 24px;
  }
}
.header-link-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.header-link-arrow {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (max-width: 1170px) {
  .header-link-arrow {
    margin-top: 3px;
  }
}
.header-link-arrow path {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-link:hover, .header-link.active {
  color: var(--orange);
}
.header-link:hover::after, .header-link.active::after {
  height: 4px;
}
.header-link:hover .header-link-arrow path, .header-link.active .header-link-arrow path {
  stroke: var(--orange);
}
.header-link::after {
  content: "";
  height: 0px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: var(--orange);
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
}
.header-submenu {
  position: absolute;
  top: 66px;
  left: 0;
  display: none;
  width: 100%;
  padding: 20px 0 23px;
  opacity: 0;
  background-color: rgb(112, 111, 111);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-submenu-links {
  position: relative;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 15px;
  margin-right: 375px;
}
.header-submenu-links::after {
  content: "";
  height: 100%;
  width: 2px;
  background-color: var(--orange);
  position: absolute;
  top: 0;
  right: -12px;
}
.header-submenu-link {
  color: #FFF;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.header-submenu-link:hover {
  color: var(--orange);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--grey);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow-y: auto;
  padding: 115px 30px 30px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .menu {
    padding: 115px 15px 25px;
  }
}
.menu.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.menu-btn {
  cursor: pointer;
  width: 30px;
  height: 19px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  left: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.menu-btn span, .menu-btn::before, .menu-btn::after {
  content: "";
  opacity: 1;
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transform: rotate(0deg) translate(0px, 0px);
  -ms-transform: rotate(0deg) translate(0px, 0px);
  transform: rotate(0deg) translate(0px, 0px);
}
.menu-btn.active {
  width: 30px;
  left: -3px;
}
.menu-btn.active span {
  opacity: 0;
}
.menu-btn.active::before, .menu-btn.active::after {
  width: 30px;
}
.menu-btn.active::before {
  -webkit-transform: rotate(45deg) translate(3px, 8px);
  -ms-transform: rotate(45deg) translate(3px, 8px);
  transform: rotate(45deg) translate(3px, 8px);
}
.menu-btn.active::after {
  -webkit-transform: rotate(-45deg) translate(3px, -8px);
  -ms-transform: rotate(-45deg) translate(3px, -8px);
  transform: rotate(-45deg) translate(3px, -8px);
}
@media (max-width: 1170px) {
  .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menu-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 24px;
  color: #fff;
  list-style: none;
}
.menu-top__item {
  margin: 15px 0;
}
.menu-top__item:first-child {
  margin-top: 0;
}
.menu-top__item:last-child {
  margin-bottom: 0;
}
.menu-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.menu-services {
  margin: 0px;
}
.menu-services.open .header-link-arrow {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.menu-services__submenu {
  margin-top: 15px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}
.menu-services__submenu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu-services__submenu-link {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

.footer {
  background-color: #706F6F;
  padding: 30px 30px 15px;
  color: #fff;
}
@media (max-width: 800px) {
  .footer {
    padding: 50px 15px 20px;
  }
}
.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }
}
.footer-top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.footer-top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .footer-top__right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 100px;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-links__menu, .footer-links__submenu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 800px) {
  .footer-links__submenu {
    gap: 15px;
  }
}
@media (max-width: 800px) {
  .footer-links__menu {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .footer-links {
    gap: 30px;
  }
}
@media (max-width: 800px) {
  .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer-link {
  font-size: 18px;
  font-weight: 550;
  line-height: 100%;
  color: #fff;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media (max-width: 800px) {
  .footer-link {
    font-size: 24px;
  }
}
.footer-link:hover {
  opacity: 0.7;
}
.footer-link--opacity {
  opacity: 0.5;
}
@media (max-width: 800px) {
  .footer-link--opacity {
    margin-bottom: 5px;
  }
}
.footer-link--submenu {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .footer-link--logo {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.footer-logo__image {
  max-height: 43px;
}
.footer-copyright {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  opacity: 0.5;
}
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 3px;
  color: #fff;
}
@media (max-width: 800px) {
  .footer-contact {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
.footer-contact__subtitle {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  opacity: 0.7;
}
.footer-contact__title {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.footer-contact a:hover {
  opacity: 0.7;
}
.footer-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.4;
  margin: 15px 0;
}
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer__link {
  color: #F1EBE4;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.footer__link:hover {
  text-decoration: none;
}
.footer__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #F1EBE4;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  gap: 5px;
}

.start-section {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.start-bg {
  position: relative;
  height: 100%;
  width: 100%;
}
.start-bg__pagination {
  margin: 0;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
}
.start-bg__pagination.clients-swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}
.start-bg__pagination-wrap {
  position: relative;
}
.start-bg__pagination-shadow {
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  fill: #000;
  opacity: 0.5;
  -webkit-filter: blur(6px);
  filter: blur(6px);
}
.start-bg-wrapper {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.start-bg__wrap {
  position: relative;
  height: 100%;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.start-bg__image {
  height: 100%;
  width: 100%;
}
.start-bg__info {
  background-color: #fff;
  padding: 35px 40px 40px 20px;
}
@media (max-width: 1100px) {
  .start-bg__info {
    padding: 25px 10px 25px 15px;
  }
}
.start-bg__info-dec {
  width: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--orange);
}
@media (max-width: 1100px) {
  .start-bg__info-dec {
    width: 20px;
  }
}
@media (max-width: 768px) {
  .start-bg__info-dec {
    width: 10px;
  }
}
.start-bg__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 1060px;
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 0px;
}
@media (max-width: 1100px) {
  .start-bg__info-wrap {
    max-width: 860px;
  }
}
@media (max-width: 900px) {
  .start-bg__info-wrap {
    max-width: 740px;
  }
}
@media (max-width: 768px) {
  .start-bg__info-wrap {
    margin-right: 15px;
  }
}
.start-bg__info-text {
  font-family: "HelveticaNeueCyr";
  font-size: 44px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
  cursor: default;
}
@media (max-width: 1100px) {
  .start-bg__info-text {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .start-bg__info-text {
    font-size: 28px;
  }
}
.start-bg__arrows {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 17px);
}
.start-bg__arrow {
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.start-bg__arrow svg g rect {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.start-bg__arrow svg path {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
  .start-bg__arrow svg g rect {
    fill: var(--orange);
    fill-opacity: 0.5;
  }
  .start-bg__arrow svg path {
    stroke: #fff;
  }
}
.start-bg__arrow:hover svg g rect {
  fill: var(--orange);
  fill-opacity: 0.5;
}
.start-bg__arrow:hover svg path {
  stroke: #fff;
}
.start-bg__arrow--next:hover svg path {
  d: path("M21 18L29 26L21 34");
}
@media (max-width: 1024px) {
  .start-bg__arrow--next svg path {
    d: path("M21 18L29 26L21 34");
  }
}
.start-bg__arrow--prev:hover svg path {
  d: path("M29 18L21 26L29 34");
}
@media (max-width: 1024px) {
  .start-bg__arrow--prev svg path {
    d: path("M29 18L21 26L29 34");
  }
}

.page--ios .start-bg__arrows, .page--android .start-bg__arrows {
  width: 100%;
}

.text-section {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .text-section {
    margin-top: 40px;
  }
}
.text-section__title {
  font-size: 36px;
  font-weight: 550;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .text-section__title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .text-section__title {
    font-size: 24px;
  }
}
.text-section__desc {
  margin-top: 30px;
  position: relative;
  padding-left: 15px;
}
@media (max-width: 1024px) {
  .text-section__desc {
    margin-top: 25px;
  }
}
.text-section__desc::before {
  content: "";
  top: 0px;
  left: 0px;
  position: absolute;
  height: 100%;
  width: 5px;
  background-color: var(--orange);
}
.text-section__desc-subtitle {
  font-size: 18px;
  font-weight: 550;
  line-height: 120%;
  margin-bottom: 16px;
}
.text-section__desc-text {
  font-size: 16px;
  line-height: 120%;
}
.text-section__desc-text p {
  margin: 10px 0;
}

.services-section {
  margin-top: 40px;
}
.services-section__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
.services-section__card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 15px);
  flex: 0 0 calc(50% - 15px);
}
@media (max-width: 768px) {
  .services-section__card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

.service-card {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service-card__img {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 300px;
  flex-basis: 300px;
  z-index: 2;
  overflow: hidden;
  max-height: 300px;
}
.service-card__img img {
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.service-card__info {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 35px;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.service-card__info-top {
  padding: 0 20px;
}
.service-card__info-title {
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 550;
  line-height: 100%;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #706F6F));
  background: linear-gradient(to right, #fff, #fff 50%, #706F6F 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-transition: background-position 0.3s ease-out;
  transition: background-position 0.3s ease-out;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .service-card__info-title {
    background-position: 0 100%;
  }
}
.service-card__info-title-wrap {
  display: block;
  padding: 10px 10px 10px 0;
  position: relative;
  margin-bottom: 20px;
}
.service-card__info-title-wrap::before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: -20px;
  background-color: var(--orange);
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
@media (max-width: 1024px) {
  .service-card__info-title-wrap::before {
    width: 100%;
  }
}
.service-card__info-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 100%;
}
.service-card__info-desc__subtitle {
  opacity: 0.5;
}
.service-card__info-bottom {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.service-card__info-price__subtitle {
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 1px;
  opacity: 0.5;
}
.service-card__info-price__title {
  color: var(--orange);
  font-size: 24px;
  line-height: 100%;
  font-weight: 550;
}
.service-card__btn {
  background-color: var(--orange);
  width: 152px;
  height: 43px;
  color: #fff;
  font-size: 16px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (max-width: 1024px) {
  .service-card__btn {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.service-card:hover .service-card__btn {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.service-card:hover .service-card__info-title-wrap::before {
  width: 100%;
}
.service-card:hover .service-card__info-title {
  background-position: 0 100%;
}
.service-card:hover .service-card__img img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

@media (max-width: 1190px) {
  .services-section .service-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    overflow: hidden;
  }
  .services-section .service-card__img img {
    width: 100%;
  }
}

.advantages-section {
  margin: 100px 0 90px;
}
@media (max-width: 1024px) {
  .advantages-section {
    margin: 80px 0 60px;
  }
}
@media (max-width: 768px) {
  .advantages-section {
    margin: 80px 0 40px;
  }
}

.advantages-wrap {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[2];
  grid-template-rows: repeat(2, 1fr);
  grid-auto-columns: 260px;
  gap: 50px;
  place-content: center;
}
@media (max-width: 1024px) {
  .advantages-wrap {
    margin-top: 30px;
  }
}
@media (max-width: 899px) {
  .advantages-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
  }
}

.advantage-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 13px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 900px) {
  .advantage-item:nth-child(even) {
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .advantage-item:nth-child(odd) {
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
@media (max-width: 899px) {
  .advantage-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 500px) {
  .advantage-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.advantage-item__text {
  font-size: 18px;
  font-weight: 550;
  line-height: 100%;
}
.advantage-item__icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 95px;
  height: 95px;
}

.clients-section {
  background-color: #fff;
  padding: 60px 0 70px;
}
@media (max-width: 900px) {
  .clients-section {
    padding: 40px 0 15px;
  }
}
.clients-wrap {
  margin-top: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 50px;
}
@media (max-width: 1100px) {
  .clients-wrap {
    gap: 50px;
  }
}
@media (max-width: 900px) {
  .clients-desktop {
    display: none;
  }
}
.clients-mobile {
  display: none;
}
@media (max-width: 900px) {
  .clients-mobile {
    display: block;
  }
}
.clients-swiper {
  overflow: hidden;
  margin-top: 50px;
}
.clients-swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.clients-swiper-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.clients-swiper-pagination {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
}
.clients-swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 2px;
  background-color: #706F6F;
}
.clients-swiper-pagination .swiper-pagination-bullet-active {
  height: 4px;
  background-color: var(--orange) !important;
}

.client-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 108px;
}
@media (max-width: 1100px) {
  .client-item {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.client-item__image {
  max-height: 108px;
}

.contact-us-section {
  background-color: var(--orange);
  padding: 44px 80px;
}
@media (max-width: 1140px) {
  .contact-us-section {
    padding: 60px 0;
  }
}

.contact-us-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
.contact-us-left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
@media (max-width: 900px) {
  .contact-us-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.contact-us-image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding-right: 20px;
}
@media (max-width: 900px) {
  .contact-us-image {
    display: none;
  }
}
.contact-us-title {
  font-size: 48px;
  font-weight: 550;
  line-height: 100%;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .contact-us-title {
    font-size: 28px;
  }
}
.contact-us-text {
  font-size: 18px;
  font-weight: 550;
  line-height: 120%;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .contact-us-text {
    font-size: 16px;
  }
}
.contact-us-input {
  max-width: 416px;
  padding: 15px 16px;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.contact-us-input:hover {
  border: 1px solid rgb(255, 255, 255);
}
.contact-us-input::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.8;
}
.contact-us-input::-moz-placeholder {
  color: #fff;
  opacity: 0.8;
}
.contact-us-input:-ms-input-placeholder {
  color: #fff;
  opacity: 0.8;
}
.contact-us-input::-ms-input-placeholder {
  color: #fff;
  opacity: 0.8;
}
.contact-us-input::placeholder {
  color: #fff;
  opacity: 0.8;
}
.contact-us-input:focus-visible {
  outline: none;
  border: 1px solid rgb(255, 255, 255);
}
.contact-us-input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.contact-us-input-label {
  line-height: 120%;
}
.contact-us-btn {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .contact-us-btn {
    margin-top: 0px;
  }
}

.form-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form-contact {
    margin-top: 30px;
  }
}

.contacts {
  padding-top: 66px;
  min-height: calc(100vh - 308px);
  background-color: #F8F8F8;
}
.contacts-container {
  max-width: 1350px;
  margin: 0px auto;
}
.contacts-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: calc(100vh - 66px - 308px);
  padding: 15px 0;
}
@media (max-width: 1024px) {
  .contacts-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: unset;
    padding: 0;
  }
}
.contacts-inner {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .contacts-inner {
    padding: 15px 30px 60px;
  }
}
@media (max-width: 768px) {
  .contacts-inner {
    padding: 15px 15px 60px;
    gap: 20px;
  }
}
.contacts-inner-wrap {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
@media (max-width: 1200px) {
  .contacts-inner-wrap {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
  }
}
@media (max-width: 1024px) {
  .contacts-inner-wrap {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.contacts-image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .contacts-image-bg {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    max-width: 380px;
    left: unset;
    top: unset;
    right: -105px;
    bottom: 15px;
  }
}
.contacts-title {
  color: #706F6F;
  font-size: 44px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .contacts-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .contacts-title {
    font-size: 28px;
  }
}
.contacts-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .contacts-info:not(:last-child) {
    margin-bottom: 10px;
  }
}
.contacts-info__subtitle {
  color: #706F6F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  opacity: 0.7;
}
.contacts-info__title {
  color: #706F6F;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.contacts-map {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
@media (min-width: 1025px) {
  .contacts-map {
    height: 450px;
    margin: auto 0;
  }
}
@media (max-width: 1200px) {
  .contacts-map {
    -ms-flex-preferred-size: 55%;
    flex-basis: 55%;
  }
}
@media (max-width: 1024px) {
  .contacts-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    height: 550px;
  }
}
@media (max-width: 768px) {
  .contacts-map {
    height: 485px;
  }
}

.about {
  padding-top: 66px;
  min-height: 100vh;
  background-color: #F8F8F8;
}
.about-wrapper {
  margin-top: 15px;
}

.services {
  margin-top: 66px;
  padding-top: 15px;
  min-height: calc(100vh - 66px);
  background-color: #F8F8F8;
}
.services-title {
  font-size: 44px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .services-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .services-title {
    font-size: 28px;
  }
}
.services-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin: 20px 0 40px;
}
@media (max-width: 768px) {
  .services-wrap {
    gap: 15px;
  }
}
.services-wrap__card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(32.55% - 10px);
  flex: 0 0 calc(32.55% - 10px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  overflow: hidden;
}
@media (max-width: 1340px) {
  .services-wrap__card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(30% - 10px);
    flex: 0 0 calc(30% - 10px);
  }
}
@media (max-width: 1170px) {
  .services-wrap__card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .services-wrap__card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.services-wrap__card .service-card__img img {
  width: 100%;
}
.services-wrap__card .service-card__info {
  padding: 40px 0 25px;
}
.services-wrap__card .service-card__info-title-wrap::before {
  width: 0;
}
@media (max-width: 1024px) {
  .services-wrap__card .service-card__info-title-wrap::before {
    width: 100%;
  }
}

.service {
  padding-top: 66px;
  min-height: 100vh;
  background-color: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .service-desc {
    gap: 15px;
  }
}
.service-desc__title {
  font-size: 44px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .service-desc__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .service-desc__title {
    font-size: 28px;
  }
}
.service-desc__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 550;
  line-height: 120%;
}
.service-desc__order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.service-desc__order-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}
.service-desc__order-subtitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  opacity: 0.5;
}
.service-desc__order-price {
  font-size: 24px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
  color: var(--orange);
}
.service-desc-wrapper {
  padding: 15px 30px 0;
}
@media (max-width: 768px) {
  .service-desc-wrapper {
    padding: 15px 15px 0px;
  }
}
.service-wrapper {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 330px 1fr;
  grid-template-columns: 330px 1fr;
}
@media (max-width: 1024px) {
  .service-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.service-menu {
  height: 100%;
  background-color: #FFF;
  padding: 40px 30px;
}
@media (max-width: 768px) {
  .service-menu {
    padding: 40px 15px 20px;
  }
}
.service-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .service-menu__item {
    margin-bottom: 5px;
  }
}
.service-menu__item.open .service-menu__item-icon {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.service-menu__item-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.service-menu__item-icon path {
  -webkit-transition: stroke 0.3s ease-out;
  transition: stroke 0.3s ease-out;
}
@media (min-width: 1025px) {
  .service-menu__item:hover .service-menu__item-title {
    color: var(--orange);
  }
  .service-menu__item:hover .service-menu__item-icon path {
    stroke: var(--orange);
  }
}
.service-menu__item-wrap:not(:first-child) {
  padding-top: 5px;
}
.service-menu__item-wrap.without-list {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .service-menu__item-wrap.without-list {
    margin-bottom: 20px;
  }
}
.service-menu__item-title {
  color: #706F6F;
  font-size: 18px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.service-menu__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin-bottom: 15px;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}
.service-menu__item-list__title {
  color: #706F6F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (min-width: 1025px) {
  .service-menu__item-list__title:hover {
    color: var(--orange);
  }
}

.page-404 {
  margin-top: 66px;
  padding: 20px 30px;
  min-height: calc(100vh - 307px - 66px);
  background-color: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .page-404 {
    padding: 20px 15px;
    min-height: calc(100vh - 66px);
  }
}
.page-404__subtitle {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
.page-404__title {
  color: #F49200;
  font-size: 256px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 256px */
  text-transform: uppercase;
  margin-top: -20px;
}
@media (max-width: 1024px) {
  .page-404__title {
    margin-top: -10px;
    font-size: 192px;
  }
}
@media (max-width: 768px) {
  .page-404__title {
    font-size: 128px;
  }
}
.page-404__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 10px;
}
.page-404 .btn {
  margin-top: 5px;
}

.documents {
  margin-top: 66px;
  min-height: calc(100vh - 66px);
  background-color: #F8F8F8;
  padding: 15px 0 60px;
}
@media (max-width: 768px) {
  .documents {
    padding: 15px 0 60px;
  }
}
.documents-title {
  font-size: 44px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .documents-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .documents-title {
    font-size: 28px;
  }
}
.documents-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .documents-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.document {
  height: 100%;
  max-height: 580px;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(32.55% - 10px);
  flex: 0 0 calc(32.55% - 10px);
  overflow: hidden;
}
@media (max-width: 1340px) {
  .document {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(30% - 10px);
    flex: 0 0 calc(30% - 10px);
  }
}
@media (max-width: 1170px) {
  .document {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    max-height: 650px;
  }
}
@media (max-width: 768px) {
  .document {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    max-width: 360px;
    height: 510px;
  }
}
@media (min-width: 1025px) {
  .document:hover::after {
    opacity: 1;
  }
  .document:hover .document-title, .document:hover .document-btn {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.document-image {
  width: 100%;
  height: 100%;
}
@media (max-width: 1170px) {
  .document-image {
    -o-object-fit: fill;
    object-fit: fill;
    max-height: 650px;
  }
}
@media (max-width: 768px) {
  .document-image {
    max-height: 800px;
  }
}
.document::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(112, 111, 111, 0.7)), to(rgba(112, 111, 111, 0.7)));
  background: linear-gradient(0deg, rgba(112, 111, 111, 0.7) 0%, rgba(112, 111, 111, 0.7) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.document-title {
  position: absolute;
  bottom: 103px;
  left: 0px;
  z-index: 5;
  width: calc(100% - 20px);
  background-color: var(--orange);
  padding: 19px 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 550;
  line-height: 100%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (max-width: 1024px) {
  .document-title {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .document-title {
    width: calc(100% - 30px);
    bottom: 78px;
  }
}
.document-btn {
  position: absolute;
  bottom: 30px;
  right: 0px;
  z-index: 5;
  background-color: var(--orange);
  padding: 16px 34px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 100%;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 1025px) {
  .document-btn:hover {
    color: var(--grey);
    background-color: #fff;
  }
}
@media (max-width: 1024px) {
  .document-btn {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .document-btn {
    bottom: 20px;
  }
}

.cms-content {
  color: #706F6F;
  margin-bottom: 30px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.cms-content h1:not([class]) {
  font-weight: 550;
  font-size: 44px;
  line-height: 100%;
  margin: 50px 0 20px;
}
@media (max-width: 1024px) {
  .cms-content h1:not([class]) {
    font-size: 36px;
    margin: 40px 0 15px;
  }
}
@media (max-width: 768px) {
  .cms-content h1:not([class]) {
    font-size: 28px;
  }
}
.cms-content h1:first-child {
  margin: 15px 0 20px;
}
.cms-content h2:not([class]) {
  font-weight: 550;
  font-size: 36px;
  line-height: 100%;
  margin: 50px 0 20px;
}
@media (max-width: 1024px) {
  .cms-content h2:not([class]) {
    font-size: 30px;
    margin: 40px 0 15px;
  }
}
@media (max-width: 768px) {
  .cms-content h2:not([class]) {
    font-size: 24px;
  }
}
.cms-content h3:not([class]), .cms-content h4:not([class]), .cms-content h5:not([class]), .cms-content h6:not([class]) {
  font-weight: 550;
  font-size: 24px;
  line-height: 100%;
  margin: 50px 0 20px;
}
@media (max-width: 1024px) {
  .cms-content h3:not([class]), .cms-content h4:not([class]), .cms-content h5:not([class]), .cms-content h6:not([class]) {
    margin: 40px 0 15px;
  }
}
.cms-content p:not([class]) {
  font-size: 16px;
  line-height: 120%;
  margin: 10px 0;
}
.cms-content p:not([class]) strong {
  font-weight: 550;
  font-size: 18px;
  line-height: 120%;
  display: inline;
}
.cms-content p:not([class]) img + img {
  margin-left: 30px;
}
@media (max-width: 768px) {
  .cms-content p:not([class]) img + img {
    margin-left: 0;
  }
}
.cms-content a:not([class]) {
  text-decoration: underline;
  color: var(--orange);
}
.cms-content a:not([class]):hover {
  text-decoration: none;
}
.cms-content ul:not([class]) {
  margin: 10px 0;
  padding-left: 25px;
}
.cms-content ol:not([class]) {
  margin: 10px 0;
  padding-left: 22px;
}
.cms-content li:not([class]):not(:last-of-type) {
  margin-bottom: 10px;
}
.cms-content blockquote:not([class]) {
  margin: 50px 0;
  padding-left: 15px;
  position: relative;
}
.cms-content blockquote:not([class])::before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: var(--orange);
}
.cms-content blockquote:not([class]) p {
  margin: 5px 0;
}
.cms-content blockquote:not([class]) p em {
  display: inline-block;
  margin-bottom: 16px;
}
.cms-content blockquote:not([class]) p em, .cms-content blockquote:not([class]) p strong {
  font-size: 18px;
}
.cms-content img {
  max-width: initial;
  width: 100%;
  margin: 10px 0;
  max-height: 570px;
}
@media (max-width: 768px) {
  .cms-content img {
    height: 240px;
  }
}
.cms-content img.alignnone {
  max-height: 420px;
  min-height: 250px;
  height: 100%;
  max-width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .cms-content img.alignnone {
    height: 240px;
    width: 100%;
    max-width: 100%;
  }
}
.cms-content img.alignright {
  float: right;
  width: initial;
  max-width: 100%;
  margin-left: 10px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cms-content img.alignright {
    width: 100%;
  }
}
.cms-content img.alignleft {
  float: left;
  width: initial;
  max-width: 100%;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cms-content img.alignleft {
    width: 100%;
  }
}
.cms-content img.aligncenter {
  max-width: 100%;
  width: initial;
  margin: 20px auto;
  display: block;
  max-height: 570px;
}
@media (max-width: 768px) {
  .cms-content img.aligncenter {
    width: 100%;
  }
}
.cms-content .table-wrapper {
  width: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.cms-content .table-wrapper::-webkit-scrollbar {
  display: none;
}
.cms-content table:not([class]) {
  width: 100% !important;
  margin: 20px 0 50px;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  border-collapse: collapse;
}
@media (max-width: 1024px) {
  .cms-content table:not([class]) {
    width: 900px !important;
  }
}
.cms-content table:not([class]) strong {
  font-weight: 550;
}
.cms-content table:not([class]) p {
  font-size: 18px;
  line-height: 150%;
  margin: 0;
}
.cms-content table:not([class]) td {
  padding: 10px;
}
.cms-content table:not([class]) tr:first-child td {
  white-space: nowrap;
}
.cms-content table:not([class]) tr:nth-child(odd):not(:first-child) {
  background-color: #fff;
}
.cms-content table:not([class]) tr:nth-child(odd):not(:first-child) td:first-child {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
.cms-content table:not([class]) tr:nth-child(odd):not(:first-child) td:last-child {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}
.cms-content .wp-video {
  width: 100% !important;
  margin: 50px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.cms-content .wp-video.playing::after, .cms-content .wp-video.playing::before {
  display: none;
}
.cms-content .wp-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(112, 111, 111, 0.5)), to(rgba(112, 111, 111, 0.5)));
  background: linear-gradient(0deg, rgba(112, 111, 111, 0.5) 0%, rgba(112, 111, 111, 0.5) 100%);
}
.cms-content .wp-video::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="72" height="83" viewBox="0 0 72 83" fill="none"><path d="M72 41.5L0.749996 82.6362L0.75 0.363789L72 41.5Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.cms-content .wp-video video {
  width: 100% !important;
  height: auto !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal {
  overflow-y: auto;
  overflow-x: hidden;
  margin: auto;
  max-width: 910px;
  max-height: 450px;
  background-color: #fff;
  padding: 40px 30px 33px;
  position: relative;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
@media (max-width: 768px) {
  .modal {
    padding: 30px 15px;
    max-height: calc(100vh - 60px);
  }
}
.modal-after {
  max-height: 400px;
  width: 100%;
  height: 100%;
  padding: 30px;
}
@media (max-width: 768px) {
  .modal-after {
    width: 100%;
    height: 50%;
    padding: 60px 15px;
  }
}
@media (max-width: 450px) {
  .modal-after {
    height: 40%;
  }
}
.modal-after__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.modal-after__title {
  text-align: center;
  color: #706F6F;
  font-size: 44px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
}
@media (max-width: 768px) {
  .modal-after__title {
    font-size: 36px;
  }
}
.modal-after__text {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.modal::-webkit-scrollbar {
  width: 3px;
}
.modal::-webkit-scrollbar-thumb {
  background: var(--grey);
}
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  padding: 30px;
  overflow-x: hidden;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.modal-wrapper[is-open=true] {
  opacity: 1;
  pointer-events: all;
}
.modal-wrapper[is-open=true] .modal {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media (max-width: 768px) {
  .modal-wrapper {
    padding: 15px;
  }
}
.modal__content {
  position: relative;
}
.modal__close {
  position: absolute;
  z-index: 5;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .modal__close {
    right: 15px;
  }
}
.modal__title-order {
  font-size: 44px;
  font-style: normal;
  font-weight: 550;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .modal__title-order {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .modal__title-order {
    font-size: 24px;
  }
}

.form-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .form-order {
    margin-top: 20px;
  }
}
.form-order .btn {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.form-order__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .form-order__wrap {
    gap: 15px;
    margin-bottom: 20px;
  }
}
.form-order__input {
  border: 1px solid rgba(112, 111, 111, 0.3);
  padding: 15px 16px;
  color: #706F6F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.form-order__input::-webkit-input-placeholder {
  color: #706F6F;
  opacity: 0.8;
}
.form-order__input::-moz-placeholder {
  color: #706F6F;
  opacity: 0.8;
}
.form-order__input:-ms-input-placeholder {
  color: #706F6F;
  opacity: 0.8;
}
.form-order__input::-ms-input-placeholder {
  color: #706F6F;
  opacity: 0.8;
}
.form-order__input::placeholder {
  color: #706F6F;
  opacity: 0.8;
}
.form-order__input:hover {
  border: 1px solid rgb(112, 111, 111);
}
.form-order__input:focus-visible {
  outline: none;
  border: 1px solid rgb(112, 111, 111);
}
.form-order__input-wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 15px);
  flex: 0 0 calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 768px) {
  .form-order__input-wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.form-order__input-label {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.form-order-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 7px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-order-policy__link {
  color: var(--orange);
  text-decoration: underline;
}
.form-order-policy__link:hover {
  text-decoration: none;
}
.form-order-policy input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.form-order input:checked ~ .checkmark:after {
  display: block;
}

.checkmark {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 11px;
  width: 11px;
  border: 1px solid rgba(103, 103, 103, 0.3137254902);
}
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 3px;
  top: 0px;
  width: 4px;
  height: 7px;
  border: solid var(--orange);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkmark.error {
  border: 1px solid red;
}
/*# sourceMappingURL=main.css.map */