:root {
  --font-primary: "Sans", sans-serif;
  --color-primary: #1458e4;
  --color-second: #dbf9cd;
  --color-third: #8ef6e1;
  --color-white: #ffffff;
  --color-gray: #8799a5;
  --color-gray-light: #eaecf1;
  --color-font: #1e1e24;
}

@font-face {
  font-family: "Sans";
  font-display: swap;
  src: url("../fonts/GoogleSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Sans";
  font-display: swap;
  src: url("../fonts/GoogleSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Sans";
  font-display: swap;
  src: url("../fonts/GoogleSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Sans";
  font-display: swap;
  src: url("../fonts/GoogleSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "icomoon";
  font-display: swap;
  src: url("../fonts/icomoon.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/* reset */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

a,
a:visited {
  display: inline-block;
  text-decoration: none;
}

nav,
footer,
header,
aside,
main,
section {
  display: block;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  appearance: none;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

ul li,
ol li {
  list-style: none;
}
ul li::marker, ul li::-webkit-details-marker,
ol li::marker,
ol li::-webkit-details-marker {
  display: none;
}

img {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
optgroup,
select {
  font-family: inherit;
  font-size: inherit;
}

a,
button {
  color: inherit;
}

button,
select {
  text-transform: none;
}

address {
  font-style: normal;
}

button:focus.focus,
a:focus.focus,
input[type=radio]:focus.focus + label,
input[type=range]:focus.focus,
input[type=checkbox]:focus.focus + label,
input[type=file]:focus.focus + label {
  box-shadow: white 0 0 0 2px, lightskyblue 0 0 0 5px;
}

.icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: top;
}

[class^=icon-]:before,
[class^=icon-] [class^=path]:before,
[class*=" icon-"]:before,
[class*=" icon-"] [class*=path]:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-check:before {
  content: "\e907";
}

.icon-add:before {
  content: "\e900";
}

.icon-arrow:before {
  content: "\e901";
}

.icon-arrow-1:before {
  content: "\e902";
}

.icon-mailL:before {
  content: "\e903";
}

.icon-map:before {
  content: "\e904";
}

.icon-phone:before {
  content: "\e905";
}

.icon-star:before {
  content: "\e906";
}

.container-fluid,
.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container-fluid,
  .container {
    padding: 0 32px;
  }
}
.container {
  max-width: 1494px;
}

.grid,
.grid-rows {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
@media (min-width: 1280px) {
  .grid,
  .grid-rows {
    gap: 10px;
  }
}

.grid-rows {
  grid-auto-rows: 1fr;
}

@media (min-width: 768px) {
  .grid-md {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .grid-md {
    gap: calc(10px + 0 * (100vw - 360px) / 1134);
  }
}
@media (min-width: 768px) and (min-width: 1494px) {
  .grid-md {
    gap: 10px;
  }
}

.grid-md > *,
.grid > *,
.grid-rows > * {
  grid-column: span 12;
}

.col-6 {
  grid-column: span 6;
}

@media (min-width: 768px) {
  .col-md {
    grid-column: auto;
  }
  .col-md-3 {
    grid-column: span 3;
  }
  .col-md-4 {
    grid-column: span 4;
  }
  .col-md-5 {
    grid-column: span 5;
  }
  .col-md-6 {
    grid-column: span 6;
  }
  .col-md-7 {
    grid-column: span 7;
  }
  .col-md-8 {
    grid-column: span 8;
  }
}
@media (min-width: 1024px) {
  .col-lg-6 {
    grid-column: span 6;
  }
}
@media (min-width: 1280px) {
  .col-xl-auto {
    grid-column: auto;
  }
  .col-xl-4 {
    grid-column: span 4;
  }
  .col-xl-6 {
    grid-column: span 6;
  }
  .col-xl-8 {
    grid-column: span 8;
  }
  .col-xl-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1536px) {
  .col-xxl-4 {
    grid-column: span 4;
  }
}
@media print, (prefers-reduced-motion: reduce) {
  .no-motion {
    animation-play-state: paused !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
.no-transition,
.no-transition *,
.no-transition *::before,
.no-transition *::after {
  transition: none !important;
  animation: none !important;
}

html {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  height: 100%;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-font);
  background-color: var(--color-white);
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) {
  body {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1536px) {
  body {
    font-size: 1.0625rem;
  }
}

body.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  min-height: 100%;
  margin: 0 auto;
}
.wrapper-page {
  margin-top: 70px;
}
@media (min-width: 1280px) {
  .wrapper-page {
    margin-top: 152px;
  }
}

.main {
  flex: 1 0 auto;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.footer {
  flex: 0 0 auto;
}

p + p {
  margin-top: 0.625em;
}

.post__content h3, .post__content h4, .post__content h5, .post__content h6 {
  margin: 0.67em 0;
}
.post__content ol, .post__content ul {
  padding-left: 1.375em;
  margin: 0.625em 0;
}
.post__content ol li {
  list-style: decimal;
}
.post__content ul li {
  list-style: disc;
}
.post__content a {
  text-decoration: underline;
  transition: 0.2s ease 0s;
}
@media (pointer: fine) {
  .post__content a:hover {
    text-decoration: none;
    color: #1877F2;
  }
}

.title-1,
.title-2,
.title-3,
.title-4,
.title-5,
.title-6 {
  font-weight: 500;
}

.title-1 {
  line-height: 1.1;
}
.title-1 {
  font-size: calc(32px + 24 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .title-1 {
    font-size: 56px;
  }
}

.title-2 {
  line-height: 1.1;
  margin-bottom: 24px;
}
.title-2 {
  font-size: calc(28px + 22 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .title-2 {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .title-2 {
    margin-bottom: 30px;
  }
}
.title-3 {
  line-height: 1.1;
  margin-bottom: 12px;
}
.title-3 {
  font-size: calc(20px + 10 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .title-3 {
    font-size: 30px;
  }
}
@media (min-width: 1280px) {
  .title-3 {
    margin-bottom: 30px;
  }
}

.btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 4px;
  transition: 0.2s;
}
.btn::before {
  transition: 0.2s ease 0s;
}
.btn .icon {
  flex-shrink: 0;
}

.btn-wide {
  min-height: 47px;
  padding: 5px 22px;
  color: var(--color-white);
}
@media (min-width: 1024px) {
  .btn-wide {
    padding: 5px 30px;
    min-height: 60px;
    font-size: 1rem;
    font-weight: 500;
  }
}
.btn-wide::before {
  margin-left: 10px;
  order: 1;
  transform: rotate(45deg);
}

.btn-100 {
  width: 100%;
}
@media (min-width: 768px) {
  .btn-100 {
    width: auto;
  }
}

.btn-cube {
  height: 48px;
  width: 48px;
  padding: 5px 5px;
}
@media (min-width: 1024px) {
  .btn-cube {
    height: 60px;
    width: 60px;
  }
}
.btn-cube::before {
  transform: rotate(-135deg);
}
@media (pointer: fine) {
  .btn-cube:hover {
    border-radius: 50%;
  }
}

.btn-blue {
  background-color: var(--color-primary);
}
@media (pointer: fine) {
  .btn-blue:hover {
    background-color: #4582ff;
    border-radius: 30px;
  }
}

.btn-bd {
  border: 1px solid var(--color-white);
}
@media (pointer: fine) {
  .btn-bd:hover {
    border-radius: 30px;
  }
}

.btn-icon {
  display: flex;
  flex-direction: row-reverse;
}
.btn-icon::before {
  margin-right: 0;
  margin-left: 10px;
  font-size: 1.25rem;
  transform: rotate(45deg);
}

.select-wrap {
  position: relative;
}

.select,
.select-wrap {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .select,
  .select-wrap {
    font-size: 0.875rem;
  }
}
@media (min-width: 1280px) {
  .select,
  .select-wrap {
    font-size: 1rem;
  }
}

.select-wrap:after,
.select-custom {
  z-index: 3;
}

.select-wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 34px;
  display: block;
  padding: 3px;
  border: solid #C0C5D1;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) translateY(-6px);
  pointer-events: none;
}

.select-wrap.selected:after {
  border-color: var(--color-font);
}

.select-wrap.isActive:after,
.select-wrap.oupen:after {
  transform: rotate(135deg) translateY(6px);
}

.select {
  position: relative;
  display: block;
  -webkit-appearance: none;
  appearance: none;
}

.select-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.select-custom__btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.select,
.select-custom,
.select-custom__btn,
.select-custom__options {
  border-radius: 4px;
}

.select,
.select-custom,
.select-custom__btn,
.select-custom__options,
.select:focus,
.select-custom.isActive .select-custom__btn {
  background-color: var(--color-white);
}

.select:invalid,
.select-custom__btn.default {
  color: transparent;
  background-color: #5A89DC;
}

.select,
.select-custom__btn {
  padding: 19px 30px 0px 30px;
  color: var(--color-font);
  border: 2px solid transparent;
  transition: 0.2s ease 0s;
}
@media (min-width: 1280px) {
  .select,
  .select-custom__btn {
    padding: 22px 40px 0px 30px;
  }
}
.select.invalid,
.select-custom__btn.invalid {
  border-color: #ff9494;
}

.select:focus,
.select-custom.isActive .select-custom__btn {
  color: var(--color-font);
  transition: 0.2s ease 0s;
}

.select option {
  color: var(--color-font);
}

@media (pointer: fine) {
  .select-wrap:hover:after {
    border-color: var(--color-font);
  }
  .select:hover,
  .select-custom__btn:hover {
    background-color: var(--color-white);
  }
  .select-custom {
    display: block;
  }
  .select:focus + .select-custom {
    display: none;
  }
}
.select-custom__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  display: none;
  width: 100%;
  padding: 10px 0px 20px 10px;
  line-height: 28px;
  color: var(--color-font);
}

.select-custom.isActive .select-custom__options {
  display: block;
}

.select-custom__option {
  position: relative;
  padding: 5px 5px 5px 20px;
  cursor: pointer;
}

.select-custom__option:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.select-custom__option.isHover {
  background-color: var(--color-second);
  color: var(--color-font);
}

.select-custom__btn::before,
.select-custom__option::before {
  margin-right: 10px;
}

.select-search {
  margin-bottom: 20px;
  padding-right: 20px;
}

.select-search__input {
  width: 100%;
  padding: 0px 10px 10px 20px;
  border-bottom: 1px solid #7b7979;
}

.select-options-viewport {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.select-options-viewport::-webkit-scrollbar {
  width: 6px;
}

.select-options-viewport::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.select-options-viewport::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.select-options-viewport::-webkit-scrollbar-thumb:hover {
  background: #26a69a;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  appearance: none;
}

[required].invalid {
  border: 2px solid #ff9494;
  transition: 0.2s ease 0s;
}
[required].invalid + .check__box-1 {
  border: 2px solid #ff9494;
  transition: 0.2s ease 0s;
}

.form__item .error {
  position: absolute;
  bottom: -10px;
  font-size: 0.625rem;
  line-height: 1;
  color: #ff9494;
  opacity: 0;
  transition: 0.2s ease 0s;
}

.form__item .error.active {
  opacity: 1;
}

.form__item .error::before {
  vertical-align: middle;
  margin-right: 10px;
}

.form {
  position: relative;
}

._sending::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/loading.gif) no-repeat rgba(59, 59, 59, 0.8) center/50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease 0s;
}

._sending.show::after {
  opacity: 1;
  visibility: visible;
}

.form__item {
  position: relative;
}
.form__item-rating {
  position: relative;
}
.form__item--icon-page::before {
  position: absolute;
  top: 50%;
  left: 20px;
  font-size: 22px;
  transform: translateY(-50%);
}
.form__item--icon-page.focus::before {
  color: #587AFF;
}
.form__item--req::before {
  content: "\e906";
  z-index: 4;
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  font-size: 15px;
  line-height: 1;
  color: var(--color-primary);
  font-family: "icomoon";
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
}

input:placeholder-shown {
  text-overflow: ellipsis;
}

input:hover::placeholder,
input:focus::placeholder,
textarea:hover::placeholder,
textarea:focus::placeholder {
  color: var(--color-font);
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 70px #fff inset;
  -webkit-text-fill-color: var(--color-font);
}

input:-internal-autofill-selected {
  background-color: #fff !important;
}

.form__input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 17px 30px 0px 30px;
  font-size: 0.8125rem;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: 0.2s ease 0s;
}
@media (min-width: 1280px) {
  .form__input {
    height: 64px;
    padding-top: 33px;
    padding: 23px 30px 0px 30px;
    font-size: 1rem;
  }
}
.form__input--page {
  color: var(--color-font);
}
.form__input--page:placeholder-shown {
  background-color: #5A89DC;
}
.form__input--page::placeholder {
  opacity: 0;
}
.form__input--page:focus {
  background-color: var(--color-white);
}
.form__input--page:focus::placeholder {
  opacity: 1;
}
.form__input--page:focus + .form__label {
  color: var(--color-font);
}
@media (pointer: fine) {
  .form__input--page:hover {
    background-color: var(--color-white);
  }
  .form__input--page:hover + .form__label {
    color: var(--color-font);
  }
}

.select-wrap {
  transition: 0.2s ease 0s;
}
@media (pointer: fine) {
  .select-wrap:hover + .form__label {
    color: var(--color-font);
  }
}

.select-wrap.focus + .form__label,
.select-wrap.selected + .form__label,
.select-wrap.isActive + .form__label,
.form__input--page:focus + .form__label,
.form__label {
  position: absolute;
  top: 10px;
  left: 30px;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.2;
  color: var(--color-font);
  opacity: 0.6;
  transition: 0.2s ease 0s;
  pointer-events: none;
}
@media (min-width: 1280px) {
  .select-wrap.focus + .form__label,
  .select-wrap.selected + .form__label,
  .select-wrap.isActive + .form__label,
  .form__input--page:focus + .form__label,
  .form__label {
    font-size: 12px;
    top: 12px;
  }
}

.select-wrap + .form__label,
input:placeholder-shown + .form__label,
textarea:placeholder-shown + .form__label {
  z-index: 3;
  left: 30px;
  top: 18px;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  opacity: 1;
}
@media (min-width: 1280px) {
  .select-wrap + .form__label,
  input:placeholder-shown + .form__label,
  textarea:placeholder-shown + .form__label {
    top: 23px;
  }
}

textarea {
  resize: vertical;
  max-height: 500px;
}

.form-accept {
  margin-bottom: 40px;
}

.form-accept a {
  margin-left: 5px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.check-1 {
  position: relative;
  display: flex;
}
.check-1:not(:last-child) {
  margin-bottom: 15px;
}

.check__box-1 {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  border: 1px solid var(--color-white);
  border-radius: 4px;
  transition: 0.2s ease 0s;
}
.check__box-1::before {
  display: none;
  font-size: 9px;
}

.check__input-1:checked + .check__box-1 {
  background-color: var(--color-font);
  border-color: var(--color-font);
}
.check__input-1:checked + .check__box-1::before {
  display: block;
}

.check__input-1:focus.focus + .check__box-1 {
  box-shadow: white 0 0 0 2px, lightskyblue 0 0 0 5px;
}

@media (pointer: fine) {
  .check-1:hover .check__box-1 {
    border-width: 2px;
  }
}
.socials {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.socials li {
  margin: 0px 5px 10px 5px;
}
.socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  border-radius: 4px;
  transition: 0.2s ease 0s;
  background-color: var(--color-primary);
}
@media (min-width: 1024px) {
  .socials a {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
.socials img {
  display: block;
  width: 19px;
  height: 19px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .socials img {
    width: 24px;
    height: 24px;
  }
}
@media (pointer: fine) {
  .socials a:hover {
    background-color: #4582ff;
    border-radius: 30px;
  }
}
.v-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
}

.hidden {
  display: none !important;
}

._over {
  z-index: 1;
}

._cover {
  position: relative;
}

._cover img,
.bg-img img {
  object-fit: cover;
}

._over,
.bg-img,
.img-overlay,
._cover img,
.bg-img img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.over-af::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.over-af--1::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

._icon {
  border-radius: 50%;
}
._icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p {
  padding-top: calc(52px + 88 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .p {
    padding-top: 140px;
  }
}
.p {
  padding-bottom: calc(52px + 88 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .p {
    padding-bottom: 140px;
  }
}

.pt {
  padding-top: calc(52px + 88 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .pt {
    padding-top: 140px;
  }
}

.pb {
  padding-bottom: calc(52px + 88 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .pb {
    padding-bottom: 140px;
  }
}

.underline {
  text-decoration: underline 1px transparent solid;
  text-underline-offset: 5px;
  transition: 0.2s ease;
}
@media (pointer: fine) {
  .underline:hover {
    text-decoration-color: currentColor;
  }
}

.br {
  border-radius: 4px;
}

.counter-slide {
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .counter-slide {
    display: none;
  }
}

.ta-c {
  text-align: center;
}

.mb-24 {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .mb-24 {
    margin-bottom: 30px;
  }
}

.no-scroll {
  overflow-y: auto !important;
}

.has-dialog {
  overflow: hidden;
}

.dialog-backdrop {
  position: fixed;
  z-index: 100;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease 0s;
}
.dialog-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: calc(100% - 20px);
  max-width: 400px;
  max-height: 100%;
  transition: 0.3s ease 0s;
  transform: translate(0%, -20%);
}
.modal.active {
  transform: translate(0%, 0);
}
@media (min-width: 460px) {
  .modal {
    width: calc(100% - 80px);
    max-width: 780px;
  }
}

.modal__content {
  padding: 30px 15px;
  background-color: #EFEBFC;
  border-radius: 15px;
  overflow: auto;
}
@media (min-width: 600px) {
  .modal__content {
    padding: 40px;
  }
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: #C0C5D1;
}
.modal__close svg {
  width: 14px;
  height: 14px;
}
@media (min-width: 460px) and (min-height: 570px) {
  .modal__close {
    top: -20px;
    right: -20px;
    color: #fff;
  }
}

.modal__img {
  margin-bottom: 20px;
}

.modal__title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #3D414C;
}
@media (min-width: 380px) {
  .modal__title {
    font-size: 20px;
    line-height: 28px;
  }
}

.modal__text {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
  color: #3D414C;
}
@media (min-width: 380px) {
  .modal__text {
    font-size: 16px;
    line-height: 26px;
  }
}

.modal__btn {
  width: 100%;
}

.dialog-backdrop-1 {
  background: rgba(0, 0, 0, 0.3);
}

.modal-1__content {
  padding: 15px;
  border: 1px solid #000;
  background-color: #fff;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.12), 0 15px 12px rgba(0, 0, 0, 0.22);
}

#_header {
  width: 100%;
  max-width: inherit;
}

.head {
  z-index: 4;
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  top: 0;
  width: 100%;
  max-width: inherit;
  transition: transform 0.2s ease 0s;
}
@media (min-width: 1280px) {
  .head {
    top: 20px;
  }
}
.head.scroll {
  top: 0;
  backdrop-filter: blur(20px);
}
.head.scroll .head__wrap {
  background-color: rgba(234, 236, 241, 0.3);
}
.head.scroll .head__mail {
  color: var(--color-font);
}
.head.scroll .menu-leng > li {
  color: var(--color-font);
}
.head.scroll .logo__img--active {
  display: block;
}
.head.scroll .logo__img--primary {
  display: none;
}
.head.scroll .burger::before, .head.scroll .burger::after, .head.scroll .burger span {
  background-color: var(--color-font);
}
.head {
  min-height: 70px;
}

.overlay,
.nav-mobile {
  position: fixed;
  top: 70px;
  right: 0px;
}

.nav-mobile {
  height: calc(100vh - 70px);
  height: calc(100dvh - 70px);
}

.scroll-mt {
  scroll-margin-top: 70px;
}
@media (min-width: 1280px) {
  .scroll-mt {
    scroll-margin-top: 77px;
  }
}

@media (min-width: 1280px) {
  .head {
    min-height: 77px;
  }
  .overlay,
  .nav-mobile {
    top: 77px;
  }
  .nav-mobile {
    height: calc(100vh - 77px);
    height: calc(100svh - 77px);
  }
  .head.scroll .logo__img--primary {
    display: none;
  }
  .head.scroll .logo__img--active {
    display: inline;
  }
}
.head__wrap {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 0px;
  transition: transform 0.3s, background-color 0.2s;
}
@media (min-width: 1280px) {
  .head__wrap {
    padding: 10px 0;
  }
}

.head__body {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 20px;
  margin-right: auto;
}

.logo__img img {
  height: 27px;
  width: auto;
}
@media (min-width: 1024px) {
  .logo__img img {
    height: 40px;
  }
}
@media (min-width: 1536px) {
  .logo__img img {
    height: 50px;
  }
}
@media (min-width: 1024px) {
  .head.scroll .logo__img img {
    height: 40px;
  }
}

.logo__img--active {
  display: none;
}

.logo__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav-menu {
  flex-grow: 1;
  display: none;
}
@media (min-width: 1024px) {
  .nav-menu {
    display: block;
  }
}

.head__inner {
  display: none;
  margin-right: 4px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.3);
}
@media (min-width: 1024px) {
  .head__inner {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1536px) {
  .head__inner {
    padding: 0 4px;
  }
}

.head__mail {
  position: relative;
  display: none;
  align-items: center;
  padding: 5px 16px;
  margin-right: 9px;
  transition: 0.2s ease 0s;
  min-height: 50px;
  border-radius: 4px;
  color: var(--color-white);
}
@media (min-width: 1400px) {
  .head__mail {
    display: flex;
  }
}
.head__mail::before {
  margin-right: 10px;
}
.head__mail::after {
  content: "";
  position: absolute;
  right: -4px;
  display: block;
  width: 1px;
  height: 30px;
  background-color: var(--color-white);
}
@media (pointer: fine) {
  .head__mail:hover {
    color: var(--color-font);
    background-color: var(--color-second);
  }
}

.head__btn {
  min-height: 40px;
}
@media (min-width: 1280px) {
  .head__btn {
    min-height: 50px;
  }
}

.socials-mob {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .head.active .head__wrap {
    color: #fff;
    background-color: var(--color-font);
  }
}
.menu-leng-mob {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
.menu-leng-mob a {
  padding: 12px 16px;
  border-radius: 4px;
  transition: 0.2s ease 0s;
}
@media (pointer: fine) {
  .menu-leng-mob a:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
}
.menu-leng-mob .current-lang {
  background-color: rgba(255, 255, 255, 0.15);
}

.menu-leng {
  position: relative;
}
.menu-leng li {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 5px 17px;
  border-radius: 4px;
  color: var(--color-white);
}
@media (min-width: 1280px) {
  .menu-leng li {
    min-height: 50px;
  }
}

.menu-leng .sub-menu {
  top: 100%;
  top: calc(100% + 4px);
  left: 0;
  display: grid;
  row-gap: 4px;
}
.menu-leng .sub-menu li {
  color: var(--color-font);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 4px;
  transition: 0.2s ease 0s;
}
@media (pointer: fine) {
  .menu-leng .sub-menu li:hover {
    background-color: var(--color-second);
  }
}
.menu-leng .sub-menu::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 0px;
  display: block;
  width: 100%;
  height: 6px;
}

.menu-leng .current-lang {
  display: none;
}

.menu-lang .menu-item-has-children {
  color: var(--color-white);
}

.menu-lang li.current-menu-parent::after {
  background-color: transparent;
}

.menu a {
  display: flex;
  align-items: center;
  width: 100%;
  transition: 0.2s;
}
.sub-menu img,
.menu img {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.sub-menu__img {
  display: block;
  padding: 15px;
  margin-right: 15px;
  background-color: var(--color-second);
  transition: 0.2s ease 0s;
}

.overlay {
  z-index: 2;
  left: 0;
  bottom: 0;
  display: none;
}
.overlay.active {
  display: block;
}

.overlay__body {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  background-color: rgba(36, 57, 73, 0.6);
}

.nav-mobile {
  z-index: 3;
  width: 100%;
  overflow: auto;
  transition: 0.2s ease 0s;
  transform: translateX(100%);
}
@media (min-width: 768px) {
  .nav-mobile {
    max-width: 400px;
  }
}
.nav-mobile.active {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  body.lock {
    overflow: visible;
  }
  .overlay,
  .overlay.active,
  .nav-mobile {
    display: none;
  }
}
.nav-mobile__body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  padding: 5px 20px 32px 20px;
  font-size: 0.875rem;
  background-color: var(--color-font);
  color: var(--color-white);
  overflow: hidden;
}

.nav-page-mob {
  flex-grow: 1;
}

.menu-page-mob {
  flex-grow: 1;
  margin-bottom: 32px;
  color: #fff;
  font-weight: 500;
  line-height: 1.35;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}
.menu-page-mob > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.menu-page-mob .menu-item-has-children > a {
  justify-content: space-between;
}
.menu-page-mob .menu-item-has-children > a::after {
  content: "\e901";
  display: block;
  font-size: 20px;
  font-family: "icomoon";
  transform: rotate(45deg);
}
.menu-page-mob > li > a {
  padding: 13px 0;
}
.menu-page-mob .sub-menu__img {
  display: none;
}

.menu-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
.menu-page > li {
  position: relative;
  display: flex;
  margin-right: 4px;
  padding: 0px 16px;
  border-radius: 4px;
  background-color: var(--color-white);
  transition: 0.3s ease 0s;
}
@media (min-width: 1280px) {
  .menu-page > li {
    padding: 5px 16px;
  }
}
.menu-page > li.menu-item-has-children {
  position: static;
}
.menu-page > li.menu-item-has-children > a::after {
  content: "\e900";
  font-family: "icomoon";
  margin-left: 10px;
  transition: 0.2s ease 0s;
}
.menu-page > li.menu-item-has-children a.active::after {
  transform: rotate(45deg);
}
@media (pointer: fine) {
  .menu-page > li.menu-item-has-children:hover > a::after {
    transform: rotate(45deg);
  }
}
@media (pointer: fine) {
  .menu-page > li:hover {
    background-color: var(--color-second);
  }
}
.menu-page > li > a {
  padding: 10px 0px;
  transition: 0.3s ease 0s;
}
.sub-menu li {
  position: relative;
  display: flex;
  align-items: center;
}
.sub-menu li::before {
  color: var(--color-35d5b4);
  font-size: 20px;
  margin-right: 15px;
}
.menu-page-mob .sub-menu {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-font);
  transition: left 0.3s ease;
  z-index: 10;
  padding: 10px 24px;
}
.menu-page-mob .sub-menu.show {
  left: 0;
}
.menu-page-mob .sub-menu li {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.menu-page-mob .sub-menu li a {
  padding: 13px 0;
  color: #fff;
}

.back-item {
  padding: 14px 0;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-second);
  cursor: pointer;
}
.back-item::before {
  content: "\e901";
  font-family: "icomoon";
  margin-right: 10px;
  transform: rotate(-134deg);
}

.menu-desktop .sub-menu {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.menu-desktop .sub-menu.show {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.menu-page .sub-menu {
  top: calc(100% - 8px);
  left: 0px;
  display: grid;
  gap: 20px 40px;
  grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
  width: 100%;
  padding: 40px 40px 60px 40px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 4px;
  background-color: var(--color-white);
  border: solid #ededed;
  border-width: 0px 1px 1px 1px;
  box-shadow: 0 4px 20px 0 rgba(30, 30, 36, 0.15);
  transform: translateY(-20px);
  transition: 0.2s ease 0s;
}
.menu-page .sub-menu > :first-child {
  grid-column: 1/-1;
}
.menu-page .sub-menu.show {
  transform: translateY(0px);
}
.menu-page .sub-menu::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 0px;
  display: block;
  width: 100%;
  height: 6px;
}
.menu-page .sub-menu li {
  border-bottom: 1px solid rgba(30, 30, 36, 0.1);
}
@media (pointer: fine) {
  .menu-page .sub-menu li:hover .sub-menu__img {
    background-color: #4582ff;
  }
  .menu-page .sub-menu li:hover > a::after {
    transform: rotate(45deg);
  }
}
.menu-page .sub-menu a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 0;
}
.menu-page .sub-menu a::after {
  content: "\e901";
  font-family: "icomoon";
  margin-left: auto;
  font-size: 24px;
  transition: 0.2s ease 0s;
}
.menu-page .sub-menu .submenu-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}
.menu-page .sub-menu .sub-menu__img {
  flex-shrink: 0;
}
.menu-page .sub-menu .sub-menu__text {
  margin-right: 10px;
}

@media (pointer: fine) {
  .menu-desktop li:hover > .sub-menu {
    transform: translateY(0px);
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
}
.wrap__burger {
  margin-left: 19px;
}

.burger {
  position: relative;
  z-index: 3;
  display: inline-block;
  width: 18px;
  height: 16px;
}

@media (min-width: 1024px) {
  .wrap__burger {
    display: none;
  }
  .burger {
    display: none;
  }
}
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: 0.3s ease 0s;
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.burger.active::before,
.burger.active::after {
  background-color: var(--color-white) !important;
}

.burger.active::before {
  top: 7px;
  transform: rotate(45deg);
}

.burger.active::after {
  bottom: 7px;
  transform: rotate(-45deg);
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  top: 7px;
  background-color: var(--color-white);
  transition: 0.3s ease 0s;
}

.burger.active span {
  transform: scale(0);
}

@media (min-width: 1024px) {
  .footer {
    padding: 0px 10px 10px 10px;
    background-color: var(--color-primary);
  }
}

.footer__wrap {
  color: var(--color-white);
  background-color: var(--color-font);
}
.footer__wrap {
  padding-top: calc(52px + 28 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .footer__wrap {
    padding-top: 80px;
  }
}
.footer__wrap {
  padding-bottom: calc(24px + 56 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .footer__wrap {
    padding-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .footer__wrap {
    border-radius: 4px;
  }
}

.footer__row {
  row-gap: 12px;
}
@media (min-width: 768px) {
  .footer__row {
    margin-bottom: 24px;
  }
}
@media (min-width: 1280px) {
  .footer__row {
    margin-bottom: 0;
  }
}

.footer__col-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__logo {
  position: relative;
  margin-bottom: 12px;
}
.footer__logo img {
  height: 27px;
  width: auto;
}
@media (min-width: 768px) {
  .footer__logo img {
    height: 41px;
  }
}
@media (min-width: 1024px) {
  .footer__logo img {
    height: 51px;
  }
}

.footer__title {
  margin-bottom: 16px;
  color: var(--color-second);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer__title {
    margin-bottom: 20px;
  }
}

.footer__menu li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .footer__menu li {
    margin-bottom: 16px;
  }
}
.footer__menu li::before {
  margin-right: 10px;
  color: var(--color-second);
}

.footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.footer__menu-list li {
  width: calc(50% - 5px);
}

.footer__socials {
  margin-top: 24px;
  margin-bottom: 42px;
}
@media (min-width: 768px) {
  .footer__socials {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .footer__socials {
    margin-top: 40px;
  }
}
.copy {
  opacity: 0.5;
}

@media (min-width: 1280px) {
  .copy--sm {
    display: none;
  }
}

.copy--xl {
  display: none;
}
@media (min-width: 1280px) {
  .copy--xl {
    display: block;
  }
}

.wrap-btn-up {
  display: flex;
  justify-content: flex-end;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .wrap-btn-up {
    padding: 0 10px;
  }
}

.btn-up {
  display: none;
  position: fixed;
  bottom: 90px;
  color: var(--color-35d5b4);
  transition: 0.1s ease 0s;
  border: 2px solid rgba(178, 178, 178, 0.5);
}
.btn-up::before {
  display: inline-block;
  margin-right: 0px;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .btn-up {
    font-size: 24px;
  }
}
.btn-up.show {
  display: block;
}
@media (pointer: fine) {
  .btn-up:hover {
    border-color: var(--color-35d5b4);
  }
}

.hero {
  flex-shrink: 0;
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
}
.hero__marquee {
  height: 100%;
}

.hero__content {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .hero__content {
    padding: 50px 0;
  }
}
@media (min-width: 1536px) {
  .hero__content {
    padding: 88px 0;
  }
}

.hero__body {
  flex-grow: 1;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
}

.hero__row {
  align-items: start;
  column-gap: 32px;
}

.hero__info {
  order: 1;
  padding: 24px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  .hero__info {
    order: 0;
  }
}
@media (min-width: 1280px) {
  .hero__info {
    padding: 40px;
    margin-right: 50px;
  }
}

.hero__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__list li:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 1px solid #fff;
}
.hero__list li:not(:first-child) {
  padding-top: 12px;
}
@media (min-width: 768px) {
  .hero__list li:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
  }
  .hero__list li:not(:first-child) {
    padding-top: 20px;
  }
}

.counter__namber {
  position: relative;
  display: flex;
  align-items: flex-start;
  font-weight: 600;
  line-height: 100%;
  margin-right: 10px;
  white-space: nowrap;
}
.counter__namber {
  font-size: calc(32px + 28 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .counter__namber {
    font-size: 60px;
  }
}
.counter__namber span {
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
}

.counter__text {
  line-height: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}

.hero__title {
  margin-bottom: 15px;
}
.hero__title i {
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.hero__text {
  margin-bottom: 24px;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .hero__text {
    margin-bottom: 30px;
    font-size: 1.25rem;
  }
}

.hiro__control {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .hiro__control {
    gap: 10px;
    grid-template-columns: repeat(2, min-content);
  }
}

.partners__title {
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .partners__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .partners__title {
    margin-bottom: 40px;
  }
}

.marquee-wrap {
  overflow: hidden;
}

.marquee {
  --width: 0;
  --time: 0;
  --speed: 15;
  display: flex;
  animation: marquee var(--time) linear infinite;
}

.marquee-img {
  flex-shrink: 0;
  display: flex;
}
.marquee-img img {
  flex-shrink: 0;
}

.marquee-img--1 img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

.marquee-img--2 img {
  object-fit: contain;
}

.marquee-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1.8;
  width: 110px;
  padding: 15px 25px;
  margin-right: 10px;
  border: 1px solid #ededed;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .marquee-img-wrap {
    width: 220px;
    padding: 30px 50px;
  }
}

@media (pointer: fine) {
  .marquee:hover {
    animation-play-state: paused;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--width));
  }
}
.solution {
  position: relative;
}
.solution {
  margin-bottom: calc(52px + 88 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .solution {
    margin-bottom: 140px;
  }
}

.solution__container {
  padding: 40px 0px 46px 0px;
}
@media (min-width: 768px) {
  .solution__container {
    display: grid;
    align-items: start;
    padding: 0px;
  }
}
@media (min-width: 1280px) {
  .solution__container {
    padding: 0 32px;
  }
}

@media (min-width: 768px) {
  .solution__img-sm {
    display: none;
  }
}

.solution__img-md {
  display: none;
}
@media (min-width: 768px) {
  .solution__img-md {
    display: block;
  }
}

.solution__body {
  position: relative;
}
@media (min-width: 768px) {
  .solution__body {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 80px;
    padding: 60px 0;
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
  }
}

.solution__col-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px 16px 125px 16px;
}
@media (min-width: 768px) {
  .solution__col-title {
    grid-column: span 4;
    width: 50%;
    height: 100%;
    padding-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .solution__col-title {
    grid-column: span 4;
    width: 40%;
    height: 100%;
    padding: 80px;
  }
}

.solution__title {
  text-align: center;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .solution__title {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .solution__slider {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 50%;
    margin-left: auto;
    padding: 60px 0px 40px 0px;
  }
}
@media (min-width: 1280px) {
  .solution__slider {
    padding: 80px 80px 80px 0px;
  }
}

.solution__list {
  position: relative;
  display: flex;
  gap: 8px;
  margin-bottom: 70px;
  padding: 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
@media (min-width: 768px) {
  .solution__list {
    position: relative;
    display: grid;
    gap: 10px;
    margin-bottom: 0px;
  }
}

.solution__item {
  flex-shrink: 0;
  display: flex;
  padding: 4px;
  width: 80vw;
  height: 100%;
  border-radius: 4px;
  background-color: var(--color-white);
  border-radius: 4px;
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .solution__item {
    width: auto;
  }
}
@media (pointer: fine) {
  .solution__item:hover .solution__link-icon {
    transform: rotate(45deg);
  }
  .solution__item:hover .solution__link {
    border-left-color: var(--color-font);
  }
}

.solution__counter {
  margin-bottom: 12px;
}

.solution__icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  background-color: var(--color-second);
  transition: 0.2s ease 0s;
}
@media (min-width: 768px) {
  .solution__icon {
    padding: 10px 20px;
  }
}
@media (min-width: 1280px) {
  .solution__icon {
    padding: 10px 30px;
  }
}
@media (pointer: fine) and (min-width: 768px) {
  .solution__item:hover .solution__icon {
    padding: 10px 30px;
  }
}
@media (pointer: fine) and (min-width: 1280px) {
  .solution__item:hover .solution__icon {
    padding: 10px 50px;
  }
}
.solution__icon img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .solution__icon img {
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 1280px) {
  .solution__icon img {
    width: 60px;
    height: 60px;
  }
}

.solution__desc {
  display: flex;
  padding: 8px;
}
@media (min-width: 768px) {
  .solution__desc {
    padding: 10px;
  }
}
@media (min-width: 1280px) {
  .solution__desc {
    padding: 26px;
  }
}

.solution__wrap {
  padding-right: 8px;
  transition: 0.2s ease 0s;
}
@media (min-width: 768px) {
  .solution__wrap {
    padding-right: 30px;
  }
}
@media (min-width: 1280px) {
  .solution__wrap {
    padding-right: 60px;
  }
}
@media (pointer: fine) and (min-width: 768px) {
  .solution__item:hover .solution__wrap {
    padding-right: 10px;
  }
}
@media (pointer: fine) and (min-width: 1280px) {
  .solution__item:hover .solution__wrap {
    padding-right: 20px;
  }
}

.solution__title-3 {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .solution__title-3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

.solution__link {
  padding-left: 8px;
  font-size: 20px;
  border-left: 1px solid #ededed;
}
@media (min-width: 1024px) {
  .solution__link {
    padding-left: 20px;
    font-size: 24px;
  }
}

.solution__link-icon {
  transition: 0.2s ease 0s;
}

.solution__btn {
  position: relative;
}
@media (min-width: 768px) {
  .solution__btn {
    display: none;
  }
}

.solution__btn-xl {
  display: none;
}
@media (min-width: 768px) {
  .solution__btn-xl {
    display: inline-flex;
  }
}

.industry__counter {
  margin-top: 33px;
}

.industry {
  padding-bottom: 10px;
  background-color: var(--color-font);
  color: var(--color-white);
}

.industry__title {
  text-align: center;
}
@media (min-width: 1536px) {
  .industry__title {
    margin-bottom: 40px;
  }
}

.industry__body {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .industry__body {
    height: 100vh;
    height: 100svh;
  }
}

.industry__list {
  display: flex;
  gap: 8px;
  padding: 0px 16px;
  counter-reset: list;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .industry__list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    column-gap: 10px;
    padding-left: 10px;
    overflow: visible;
    scroll-snap-type: none;
    will-change: transform;
    touch-action: pan-y;
  }
}

.industry__item {
  z-index: 0;
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 85vw;
  scroll-snap-align: center;
  aspect-ratio: 0.82;
  display: flex;
  flex-direction: column;
  padding: 3px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .industry__item {
    width: 350px;
    aspect-ratio: 0.62;
  }
}
.industry__item::after {
  counter-increment: list;
  content: "[" counter(list, decimal-leading-zero) "]";
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 0.875rem;
  color: var(--color-second);
  text-transform: uppercase;
  opacity: 0.7;
  transition: 0.2s ease 0s;
}
.industry__item .bg-img {
  z-index: -1;
}
@media (pointer: fine) {
  .industry__item:hover .bg-img::after {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .industry__item:hover .industry__text {
    opacity: 1;
    position: static;
  }
  .industry__item:hover .industry__item-row {
    color: var(--color-second);
  }
  .industry__item:hover::before {
    opacity: 1;
  }
  .industry__item:hover .industry__link::before {
    transform: rotate(45deg);
  }
}

.industry__item-row {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 27px;
}

.industry__item-h {
  padding-right: 10px;
  font-weight: 600;
  transition: 0.2s ease 0s;
}

.industry__link-box {
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.industry__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 20px;
}
.industry__link::before {
  opacity: 1;
  transition: 0.2s ease 0s;
}

.industry__text {
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  padding: 25px;
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: 0.3s ease 0s;
}

.banner__title {
  text-align: center;
}

@media (min-width: 1536px) {
  .banner__col-left {
    padding-right: 84px;
  }
}

.banner__list {
  margin-bottom: 16px;
}

.banner__item {
  display: flex;
  justify-content: space-between;
  padding: 4px;
  border: 1px solid #ededed;
}

.banner__text {
  padding: 8px;
}
@media (min-width: 768px) {
  .banner__text {
    padding: 20px;
    font-size: 1.0625rem;
  }
}
@media (min-width: 1024px) {
  .banner__text {
    padding: 30px;
    font-size: 1.25rem;
  }
}

.banner__icon {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3px;
  background-color: var(--color-second);
}
@media (min-width: 768px) {
  .banner__icon {
    padding: 20px;
  }
}
.banner__icon img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .banner__icon img {
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 1536px) {
  .banner__icon img {
    width: 60px;
    height: 60px;
  }
}

.banner video {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .banner video {
    margin-bottom: 40px;
  }
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.wp-video {
  position: relative;
}

.wp-video::after {
  content: "";
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url("../img/play.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.wp-video.is-playing::after {
  opacity: 0;
}

.wp-video video[autoplay] + ::after,
.wp-video video[autoplay] ~ ::after {
  display: none;
}

.banner__btn {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .banner__btn {
    margin-top: 40px;
  }
}

.demo {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.demo__col-left {
  margin-bottom: 50px;
}
@media (min-width: 1280px) {
  .demo__col-left {
    margin-right: 80px;
  }
}

.demo__title {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .demo__title {
    text-align: left;
  }
}

.demo__text {
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .demo__text {
    margin-bottom: 40px;
    text-align: left;
  }
}

.f-progress-container {
  display: flex;
  align-items: center;
}

.f-progress-info {
  margin-right: 15px;
  font-size: 0.875rem;
  opacity: 0.7;
}

.f-progress-wrapper {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.f-progress-bar {
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #acdefa 100%);
  transition: width 0.3s ease;
}

.f-step {
  transition: opacity 0.2s ease;
}

.f-title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .f-title {
    margin-bottom: 40px;
    text-align: left;
    font-size: 1.875rem;
  }
}

.f-nav {
  display: flex;
  column-gap: 10px;
}

.f-btn-next {
  flex-grow: 1;
  cursor: pointer;
  opacity: 1;
}
@media (min-width: 768px) {
  .f-btn-next {
    flex-grow: 0;
  }
}

.f-btn-next:disabled {
  cursor: not-allowed;
  cursor: default;
  opacity: 0.5;
}
@media (pointer: fine) {
  .f-btn-next:disabled:hover {
    border-radius: 4px;
  }
}

.f-step:not(.active) {
  display: none;
}

.f-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .f-group {
    justify-content: flex-start;
  }
}

.f-row {
  margin-bottom: 40px;
}

.check__label {
  cursor: pointer;
  color: var(--color-font);
  background-color: var(--color-white);
}
.check__label::after {
  content: "\e907";
  font-family: "icomoon";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  font-size: 9px;
  width: 0px;
  margin-left: 0px;
  opacity: 0;
  transform: scale(0);
  transition: 0.2s ease;
}
.check__label img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (pointer: fine) {
  .check__label:hover {
    border-radius: 30px;
  }
}

.check__input:checked + .check__label {
  color: var(--color-white);
  background-color: var(--color-font);
}

.check__input:checked + .check__label::after {
  opacity: 1;
  transform: scale(1);
  width: 24px;
  margin-left: 20px;
}

.check__text {
  display: block;
  margin-left: 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.form-accept a {
  margin-left: 5px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.f-btn-submit {
  flex-grow: 1;
  background-color: var(--color-font);
}
@media (min-width: 768px) {
  .f-btn-submit {
    flex-grow: 0;
  }
}

.form-box {
  position: relative;
}

.reply {
  display: grid;
  row-gap: 24px;
  justify-items: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.2s ease 0s;
}
@media (min-width: 1536px) {
  .reply {
    padding: 48px;
  }
}

.reply__img {
  flex-shrink: 0;
  position: relative;
  width: 60px;
  height: 60px;
}

.reply__title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
}

.reply__text {
  text-align: center;
}

.reply__btn {
  align-self: stretch;
}
@media (min-width: 1024px) {
  .reply__btn {
    align-self: center;
  }
}

.wrapper-page .logo__img--active {
  display: block;
}
.wrapper-page .logo__img--primary {
  display: none;
}
.wrapper-page .burger::before,
.wrapper-page .burger::after,
.wrapper-page .burger span {
  background-color: var(--color-font);
}
.wrapper-page .head__inner {
  background-color: var(--color-gray-light);
}
.wrapper-page .head__mail {
  color: var(--color-font);
}
.wrapper-page .menu-leng li {
  color: var(--color-font);
  background-color: var(--color-gray-light);
}
.wrapper-page .menu-page > li {
  background-color: var(--color-gray-light);
  transition: 0.2s ease 0s;
}
@media (pointer: fine) {
  .wrapper-page .menu-page > li:hover {
    background-color: var(--color-second);
  }
}

.top__grid {
  padding-top: 36px;
  padding-bottom: 32px;
  border-top: 1px solid var(--color-gray-light);
}
@media (min-width: 1280px) {
  .top__grid {
    padding-bottom: 60px;
  }
}

.top__back {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
}
.top__back::before {
  display: inline-block;
  margin-right: 30px;
  font-size: 19px;
  transform: rotate(-135deg);
}

.top__title {
  margin-bottom: 24px;
}
@media (min-width: 1280px) {
  .top__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 1280px) {
  .top__container {
    padding: 0;
  }
}

.top__body {
  position: relative;
  min-height: 460px;
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .top__body {
    padding: 32px;
  }
}
@media (min-width: 1280px) {
  .top__body {
    min-height: 600px;
    padding: 80px;
  }
}

.top__desc {
  position: relative;
  padding: 24px;
  color: var(--color-white);
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .top__desc {
    width: 390px;
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .top__desc {
    padding: 40px;
    font-size: 1.25rem;
  }
}

.top__text {
  padding: 12px 0;
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
@media (min-width: 1024px) {
  .top__text {
    padding: 20px 0;
  }
}

.buns__title {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.buns__item-desc {
  padding: 8px;
}
@media (min-width: 768px) {
  .buns__item-desc {
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .buns__item-desc {
    padding: 30px;
  }
}

.buns__item-h {
  margin-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .buns__item-h {
    margin-bottom: 10px;
    font-size: 1.5em;
  }
}

.cont-grid {
  row-gap: 24px;
}
@media (min-width: 768px) {
  .cont-grid {
    column-gap: 20px;
  }
}
@media (min-width: 1280px) {
  .cont-grid {
    column-gap: 60px;
  }
}

@media (min-width: 1280px) {
  .one-img__text {
    font-size: 20px;
  }
}

.one-img {
  color: var(--color-white);
  background-color: var(--color-font);
}
.one-img img {
  border-radius: 4px;
}

.sec-list {
  background-color: var(--color-gray-light);
}

.sec-list__title {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .sec-list__title {
    margin-bottom: 30px;
  }
}

@media (min-width: 1280px) {
  .sec-list__text {
    font-size: 20px;
  }
}

.block__list {
  padding-left: 15px;
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .block__list {
    margin-top: 30px;
  }
}
.block__list li {
  list-style-type: square;
}
.block__list li::marker {
  color: var(--color-primary);
}

.two-img__title {
  margin-bottom: calc(24px + 34 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .two-img__title {
    margin-bottom: 58px;
  }
}

.two-img__img {
  padding: 17px;
  background-color: var(--color-gray-light);
}
.two-img__img {
  margin-bottom: calc(24px + 26 * (100vw - 360px) / 1134);
}
@media (min-width: 1494px) {
  .two-img__img {
    margin-bottom: 50px;
  }
}
@media (min-width: 1280px) {
  .two-img__img {
    padding: 35px;
  }
}
.two-img__img img {
  aspect-ratio: 1.78;
  object-fit: cover;
  border-radius: 4px;
}
/*# sourceMappingURL=style.min.css.map */