@font-face {
  font-family: 'Noto Sans';
  src: url(../fonts/NotoSans/NotoSans-Regular.eot);
  src: local('Noto Sans Regular'),local('NotoSans-Regular'),url(../fonts/NotoSans/NotoSans-Regular.eot?#iefix) format('embedded-opentype'),url(../fonts/NotoSans/NotoSans-Regular.woff2) format('woff2'),url(../fonts/NotoSans/NotoSans-Regular.woff) format('woff'),url(../fonts/NotoSans/NotoSans-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'Noto Sans';
  src: url(../fonts/Noto/NotoSans-SemiBold.eot);
  src: local('Noto Sans SemiBold'),local('NotoSans-SemiBold'),url(../fonts/NotoSans/NotoSans-SemiBold.eot?#iefix) format('embedded-opentype'),url(../fonts/NotoSans/NotoSans-SemiBold.woff2) format('woff2'),url(../fonts/NotoSans/NotoSans-SemiBold.woff) format('woff'),url(../fonts/NotoSans/NotoSans-SemiBold.ttf) format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'Noto Sans';
  src: url(../fonts/Noto/NotoSans-Bold.eot);
  src: local('Noto Sans Bold'),local('NotoSans-Bold'),url(../fonts/NotoSans/NotoSans-Bold.eot?#iefix) format('embedded-opentype'),url(../fonts/NotoSans/NotoSans-Bold.woff2) format('woff2'),url(../fonts/NotoSans/NotoSans-Bold.woff) format('woff'),url(../fonts/NotoSans/NotoSans-Bold.ttf) format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}
/*!
 * a11yes-pro.css - Styles for Accessibility Tool (Pro Version)
 * Copyright (c) 2025 RozumBunch
 * Licensed under the MIT License.
 * https://opensource.org/licenses/MIT
 */
:root {
  --a11yes-foreground: #292A2D;
  --a11yes-secondary-foreground: #6B6B6B;
  --a11yes-background: #EEF0F3;
  --a11yes-secondary-background: #FFF;
  --a11yes-border-color: #D8DCE1;
  --a11yes-switch-background: #E9E9EB;
  --main-font: "Noto Sans",sans-serif;
  --red-900: #b40808;
  --red-800: #c03131;
  --red-700: #960707;
  --black-900: #000;
  --black-800: #121212;
  --black-700: #242424;
  --black-600: #363636;
  --black-500: #3d3d3d;
  --white-900: #fff;
  --white-800: #e8e8e8;
  --white-700: #ccc;
  --white-600: #b8b8b8;
  --white-500: #f1f5f9;
  --red-500: #fdf2f2;
  --green-500: #f1f6f5;
  --gradient-1-color-1: #ff3951;
  --gradient-1-color-2: #ffc226;
  --gradient-1: linear-gradient(to right, var(--gradient-1-color-1) 45%, var(--gradient-1-color-2) 100%);
  --gradient-2-color-1: #fd1d1d;
  --gradient-2-color-2: #fcb045;
  --gradient-2: linear-gradient(180deg, var(--gradient-2-color-1) -1.44%, var(--gradient-2-color-2) 100%);
  --gradient-3: linear-gradient(58.08deg, var(--gradient-1-color-1) 23.07%, var(--gradient-1-color-2) 50.94%)
}
.a11yes-window {
  position: fixed;
  top: 70px;
  right: 24px;
  width: 100%;
  max-width: 480px;
  max-height: calc(100dvh - 86px);
  display: flex;
  flex-direction: column;
  font-size: 16px;
  background-color: var(--a11yes-background);
  border: 1px solid var(--a11yes-border-color);
  box-shadow: 0 12px 35px 0 rgba(0,0,0,.08);
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s;
  z-index: 1000
}
.a11yes-window * {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
@media only screen and (max-width:640px) {
  .a11yes-window {
    width: 100%;
    max-width: calc(100% - 48px);
    right: auto;
    left: 50%;
    transform: translateX(-50%)
  }
}
.a11yes-window.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all
}
.a11yes-window img,
.a11yes-window svg {
  width: 20px;
  height: 20px;
  min-width: 20px
}
.a11yes-window svg path {
  fill: currentColor
}
.a11yes-window button {
  font-size: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer
}
.a11yes-window--no-icons img,
.a11yes-window--no-icons svg {
  display: none
}
.a11yes-window .a11yes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--a11yes-secondary-background);
  border-bottom: 1px solid var(--a11yes-border-color)
}
.a11yes-window .a11yes-close {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: .3s
}
.a11yes-window .a11yes-close:hover {
  background-color: var(--a11yes-border-color)
}
.a11yes-window .a11yes-close::after,
.a11yes-window .a11yes-close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--a11yes-foreground);
  border-radius: 2px
}
.a11yes-window .a11yes-close::before {
  transform: translate(-50%,-50%) rotate(45deg)
}
.a11yes-window .a11yes-close::after {
  transform: translate(-50%,-50%) rotate(-45deg)
}
.a11yes-window .a11yes-title {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  word-break: break-word
}
.a11yes-window .a11yes-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  overflow-y: auto
}
.a11yes-window .a11yes-reset {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--a11yes-secondary-foreground);
  text-decoration: underline;
  text-decoration-color: currentColor;
  transition: .3s
}
.a11yes-window .a11yes-reset:hover {
  color: var(--a11yes-foreground)
}
.a11yes-window .a11yes-group {
  padding: 16px;
  background-color: var(--a11yes-secondary-background);
  border-radius: 16px;
  border: 1px solid var(--a11yes-border-color);
  box-shadow: 0 0 16px 0 rgba(0,0,0,.25)
}
.a11yes-window .a11yes-group--radio {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 8px
}
.a11yes-window .a11yes-group--radio .a11yes-title {
  grid-column: span 2
}
.a11yes-window .a11yes-group--radio label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--a11yes-secondary-foreground);
  cursor: pointer;
  transition: .3s
}
.a11yes-window .a11yes-group--radio label:has(input:checked),
.a11yes-window .a11yes-group--radio label:hover {
  color: var(--a11yes-secondary-background);
  background-color: var(--a11yes-foreground);
  border-color: var(--a11yes-foreground)
}
.a11yes-window .a11yes-group--radio label:has(input:checked) {
  font-weight: 700
}
.a11yes-window .a11yes-group--radio label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden
}
.a11yes-window .a11yes-item {
  display: flex;
  align-items: center;
  gap: 16px
}
.a11yes-window .a11yes-item:not(:last-child):not(:only-child) {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--a11yes-border-color)
}
.a11yes-window .a11yes-minus,
.a11yes-window .a11yes-plus {
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid var(--a11yes-secondary-foreground);
  border-radius: 50%;
  transition: .3s
}
.a11yes-window .a11yes-minus::before,
.a11yes-window .a11yes-plus::after,
.a11yes-window .a11yes-plus::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 14px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px
}
.a11yes-window .a11yes-plus::after {
  width: 2px;
  height: 14px
}
.a11yes-window .a11yes-minus:hover,
.a11yes-window .a11yes-plus:hover {
  color: var(--a11yes-secondary-background);
  background-color: var(--a11yes-foreground);
  border-color: var(--a11yes-foreground)
}
.a11yes-window .a11yes-minus {
  margin-left: auto
}
.a11yes-window .a11yes-switch {
  width: 100%;
  position: relative;
  justify-content: space-between;
  text-align: left
}
.a11yes-window .a11yes-switch:first-of-type {
  margin-top: 12px
}
.a11yes-window .a11yes-switch.active::before {
  background-color: var(--a11yes-foreground)
}
.a11yes-window .a11yes-switch.active::after {
  content: '';
  right: 3px
}
.a11yes-window .a11yes-switch::before {
  content: '';
  display: block;
  width: 56px;
  min-width: 56px;
  height: 28px;
  border-radius: 19px;
  background-color: var(--a11yes-switch-background);
  order: 2;
  transition: .3s
}
.a11yes-window .a11yes-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  font-size: 14px;
  background-color: var(--a11yes-secondary-background);
  border-radius: 50%;
  transition: .3s
}
@media (hover:none) and (pointer:coarse) {
  .a11yes-window .a11yes-cursor {
    display: none
  }
}
.a11yes-window .a11yes-links {
  display: flex;
  flex-direction: column;
  gap: 8px
}
.a11yes-window .a11yes-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  color: var(--a11yes-foreground);
  text-decoration: underline;
  text-decoration-color: currentColor;
  border: 1px solid var(--a11yes-secondary-foreground);
  border-radius: 12px;
  transition: .3s
}
.a11yes-window .a11yes-link:hover {
  color: var(--a11yes-secondary-background);
  background-color: var(--a11yes-foreground);
  border-color: var(--a11yes-foreground);
  text-decoration-color: transparent
}
.a11yes-window .a11yes-footer {
  font-size: 14px;
  color: var(--a11yes-secondary-foreground);
  text-align: center
}
.a11yes-window .a11yes-footer a {
  color: var(--a11yes-foreground);
  text-decoration: underline;
  text-decoration-color: currentColor;
  transition: .3s
}
.a11yes-window .a11yes-footer a:hover {
  text-decoration-color: transparent
}
.a11yes-window .a11yes-tts-group {
  display: flex;
  flex-direction: column
}
.a11yes-window .a11yes-tts-header {
  margin-bottom: 12px
}
.a11yes-window .a11yes-tts-header .a11yes-title {
  margin: 0
}
.a11yes-window .a11yes-tts-toggle-switch {
  margin-top: 0!important
}
.a11yes-window .a11yes-tts-toggle-switch.active::before {
  background-color: var(--a11yes-foreground)
}
.a11yes-window .a11yes-tts-toggle-switch.active::after {
  content: '';
  right: 3px
}
.a11yes-window .a11yes-tts-content {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.a11yes-window .a11yes-tts-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start
}
.a11yes-window .a11yes-tts-controls button {
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid var(--a11yes-secondary-foreground);
  border-radius: 8px;
  background-color: var(--a11yes-secondary-background);
  color: var(--a11yes-foreground);
  cursor: pointer;
  transition: .3s;
  white-space: nowrap;
  flex: 0 1 auto
}
.a11yes-window .a11yes-tts-controls button:hover:not(:disabled) {
  color: var(--a11yes-secondary-background);
  background-color: var(--a11yes-foreground);
  border-color: var(--a11yes-foreground)
}
.a11yes-window .a11yes-tts-controls button:disabled {
  opacity: .5;
  cursor: not-allowed
}
.a11yes-window .a11yes-tts-settings {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.a11yes-window .a11yes-tts-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--a11yes-foreground)
}
.a11yes-window .a11yes-tts-voice {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid var(--a11yes-border-color);
  border-radius: 8px;
  background-color: var(--a11yes-secondary-background);
  color: var(--a11yes-foreground);
  font-size: 14px;
  cursor: pointer;
  min-width: 150px
}
.a11yes-window .a11yes-tts-rate {
  flex: 1;
  cursor: pointer
}
.a11yes-window .a11yes-tts-rate-value {
  min-width: 40px;
  text-align: right;
  font-size: 14px;
  color: var(--a11yes-secondary-foreground)
}
.a11yes-open {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a11yes-foreground);
  background: var(--a11yes-secondary-background);
  padding: 8px;
  border: 1px solid var(--a11yes-foreground);
  border-radius: 50%;
  transition: .3s;
  cursor: pointer
}
.a11yes-open--fixed {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100
}
.a11yes-open.active,
.a11yes-open:hover {
  color: var(--a11yes-secondary-background);
  background-color: var(--a11yes-foreground)
}
.a11yes-open svg {
  display: block
}
.a11yes-open svg path {
  fill: currentColor
}
.a11yes-highlight-enabled :hover {
  outline: solid 2px;
  outline-color: var(--a11yes-highlight-color)!important
}
.a11yes-remove-bg {
  background-image: none!important
}
.a11yes-bluefilter-shader {
  position: fixed;
  inset: 0;
  margin: 0;
  padding: 0;
  background: rgba(255,147,41,.35);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2147483646;
  display: none
}
.--red-900 {
  color: var(--red-900)!important
}
.--red-800 {
  color: var(--red-800)!important
}
.--red-700 {
  color: var(--red-700)!important
}
.--black-900 {
  color: var(--black-900)!important
}
.--black-700 {
  color: var(--black-700)!important
}
.--white-900 {
  color: var(--white-900)!important
}
.--white-800 {
  color: var(--white-800)!important
}
.--white-700 {
  color: var(--white-700)!important
}
.news-list,
.row--3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}
@media (min-width:768px) {
  .news-list,
  .row--3 {
    grid-template-columns: repeat(2,1fr)
  }
}
.news-list > div:last-of-type:nth-of-type(odd),
.news-list > li:last-of-type:nth-of-type(odd),
.row--3 > div:last-of-type:nth-of-type(odd),
.row--3 > li:last-of-type:nth-of-type(odd) {
  grid-column: 1/1
}
@media (min-width:768px) {
  .news-list > div:last-of-type:nth-of-type(odd),
  .news-list > li:last-of-type:nth-of-type(odd),
  .row--3 > div:last-of-type:nth-of-type(odd),
  .row--3 > li:last-of-type:nth-of-type(odd) {
    grid-column: 1/span 2
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html.no-scroll {
  overflow: hidden
}
body {
  font-size: 16px;
  color: var(--black-700);
  font-family: var(--main-font);
  font-feature-settings: "pnum" on,"lnum" on,"liga" off
}
.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden
}
main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 78px
}
section {
  margin-bottom: 64px
}
section:first-of-type {
  margin-top: 64px
}
section section {
  margin: 32px 0
}
section section .wrapper {
  padding: 0
}
section.mb-no {
  margin-bottom: 0
}
section.light-bg {
  padding: 32px 0;
  background-color: var(--white-500)
}
@media (min-width:768px) {
  section.light-bg {
    padding: 48px 0
  }
}
.wrapper {
  width: 100%;
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto
}
@media (min-width:768px) {
  .wrapper {
    padding-left: 32px;
    padding-right: 32px
  }
}
@media (min-width:1024px) {
  .news-list,
  .row--3 {
    grid-template-columns: repeat(3,1fr)!important
  }
  .news-list > div:last-of-type:nth-of-type(odd),
  .news-list > li:last-of-type:nth-of-type(odd),
  .row--3 > div:last-of-type:nth-of-type(odd),
  .row--3 > li:last-of-type:nth-of-type(odd) {
    grid-column: auto
  }
  main {
    padding-top: 86px
  }
  section {
    margin-bottom: 80px
  }
  section:first-of-type {
    margin-top: 80px
  }
  section.light-bg {
    padding: 64px 0
  }
  .wrapper {
    padding-left: 40px;
    padding-right: 40px
  }
}
.wrapper > :first-child {
  margin-top: 0
}
.wrapper > :last-child {
  margin-bottom: 0
}
.wrapper.narrow {
  max-width: 1010px
}
.wrapper section .wrapper.narrow {
  max-width: 930px
}
.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4 {
  color: var(--black-800);
  font-weight: 600
}
.h1 span,
.h2 span,
.h3 span,
.h4 span,
h1 span,
h2 span,
h3 span,
h4 span {
  color: var(--red-900)
}
.h1,
h1 {
  font-size: 36px;
  line-height: 130%;
  margin-bottom: 16px
}
@media (min-width:768px) {
  .h1,
  h1 {
    font-size: 44px;
    line-height: 125%;
    margin-bottom: 24px
  }
}
@media (min-width:1024px) {
  .h1,
  h1 {
    font-size: 56px;
    line-height: 120%;
    margin-bottom: 32px
  }
}
.h2,
h2 {
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 24px
}
@media (min-width:768px) {
  .h2,
  h2 {
    font-size: 32px
  }
}
@media (min-width:1024px) {
  .h2,
  h2 {
    font-size: 36px;
    margin-bottom: 32px
  }
}
.h3,
h3 {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 16px
}
@media (min-width:768px) {
  .h3,
  h3 {
    font-size: 22px
  }
}
@media (min-width:1024px) {
  .h3,
  h3 {
    font-size: 24px
  }
}
.h4,
.h5,
h4,
h5 {
  font-size: 18px;
  line-height: 130%
}
@media (min-width:768px) {
  .h4,
  .h5,
  h4,
  h5 {
    font-size: 19px
  }
}
@media (min-width:1024px) {
  .h4,
  .h5,
  h4,
  h5 {
    font-size: 20px
  }
}
.h6,
h6 {
  font-size: 16px;
  line-height: 130%
}
@media (min-width:768px) {
  .h6,
  h6 {
    font-size: 17px
  }
}
li,
p {
  line-height: 140%
}
.text-block li a:not(.btn),
p a:not(.btn) {
  display: inline;
  color: var(--red-900);
  text-decoration: underline;
  text-decoration-color: currentColor;
  transition: .3s
}
.text-block li a:not(.btn):hover,
p a:not(.btn):hover {
  text-decoration-color: transparent
}
.center {
  text-align: center
}
.center .btn,
.center .image-with-border {
  margin-left: auto!important;
  margin-right: auto!important
}
.center .image-with-border {
  width: 100%;
  max-width: 930px
}
.center.narrow .image-with-border {
  max-width: 738px
}
strong {
  font-weight: 600
}
ul {
  list-style: none;
  padding: 0;
  margin: 0
}
.btn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 196px;
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  transition: .3s;
  cursor: pointer
}
.btn--main {
  color: var(--white-900);
  background: var(--red-900)
}
.btn--main:hover {
  background-color: var(--red-800)
}
.btn--main:active {
  background-color: var(--red-700)
}
.btn--secondary {
  color: var(--white-900);
  background: var(--black-900)
}
.btn--secondary:hover {
  background: var(--black-700)
}
.btn--secondary:active {
  background: var(--black-800)
}
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 12px
}
button {
  background: 0 0;
  border: none;
  cursor: pointer
}
input,
select,
textarea {
  display: block;
  background: 0 0;
  border: none;
  border-radius: 0;
  outline: 0
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}
input[type=number] {
  -moz-appearance: textfield
}
textarea {
  font-family: inherit;
  resize: vertical
}
pre {
  display: block;
  width: 100%;
  background-color: #f1f1f1
}
pre code {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: Consolas,"courier new",monospace;
  overflow: auto
}
a,
button,
iframe,
img,
svg,
time,
video {
  display: block
}
a {
  color: inherit;
  text-decoration: none
}
img {
  width: 100%;
  height: auto
}
.image-with-border {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1
}
.image-with-border::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  z-index: -1
}
.image-with-border--left::before {
  left: -8px
}
figure {
  position: relative;
  max-width: 100%
}
figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(255,255,255,.75);
  padding: 4px 8px;
  font-size: 14px;
  line-height: 22px;
  margin-top: 16px
}
iframe,
video {
  aspect-ratio: 16/9
}
.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
  align-self: start
}
@media (min-width:768px) {
  .row {
    grid-template-columns: repeat(2,1fr)
  }
  .row--bottom {
    gap: 40px
  }
}
.row--bottom {
  grid-template-columns: 1fr
}
.row--bottom .text-block {
  max-width: 738px;
  margin: 0 auto
}
.row > * {
  margin: 0
}
.row > * :first-child {
  margin-top: 0
}
.row > * :last-child {
  margin-bottom: 0
}
.row--center > * {
  align-self: center
}
.row + .row {
  margin-top: 32px
}
.row:has(.w-60) {
  display: flex;
  flex-wrap: wrap
}
.row img {
  width: 100%
}
@media (max-width:767px) {
  .row .image-with-border,
  .row img {
    order: 2
  }
}
.column {
  display: flex;
  flex-direction: column;
  gap: 32px
}
@media (min-width:768px) {
  .row:has(.w-60) > :not(.w-60) {
    width: calc(42.5% - 24px)
  }
  .row .w-60 {
    width: 57.5%
  }
  .column {
    gap: 40px
  }
}
@media (min-width:1024px) {
  .h6,
  h6 {
    font-size: 18px
  }
  .column {
    gap: 56px
  }
}
.visually-hidden {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  margin: -1px!important;
  padding: 0!important;
  opacity: 0!important;
  clip: rect(0 0 0 0)!important;
  -webkit-clip-path: inset(50%)!important;
  clip-path: inset(50%)!important
}
.swiper-pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 2
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d9d9d9;
  cursor: pointer;
  transition: .3s
}
.swiper-pagination-bullet:hover {
  opacity: .6
}
.swiper-pagination-bullet-active {
  background-color: var(--red-900);
  opacity: 1!important;
  cursor: default
}
.swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  transition: .3s;
  z-index: 2;
  background-size: cover;
  border-radius: 50%
}
@media (max-width:1023px) {
  html.menu-opened {
    overflow: hidden
  }
  .swiper-button {
    display: none
  }
}
.swiper-button:hover {
  opacity: .6
}
.swiper-button-prev {
  background-image: url(../icons/arrow-prev.svg);
  left: 0
}
.swiper-button-next {
  background-image: url(../icons/arrow-next.svg);
  right: 0
}
@media (min-width:1400px) {
  .swiper-button {
    width: 64px;
    height: 64px
  }
  .swiper-button-prev {
    left: 16px
  }
  .swiper-button-next {
    right: 16px
  }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background-color: var(--white-900);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: .3s
}
@media (min-width:768px) {
  .header {
    padding: 24px 0
  }
}
.header.sticky {
  border-color: var(--white-700)
}
.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px
}
@media (min-width:560px) {
  .header .wrapper {
    gap: 16px
  }
}
@media (min-width:1140px) {
  .header .wrapper {
    gap: 20px
  }
}
.header__logo img {
  height: 32px;
  width: auto
}
.header__menu {
  display: flex;
  z-index: 2
}
@media (max-width:1139px) {
  .header__menu {
    position: absolute;
    top: 0;
    right: -100%;
    flex-direction: column;
    gap: 32px;
    width: calc(100vw - 80px);
    max-width: 306px;
    height: 100vh;
    height: 100dvh;
    padding: 160px 56px 64px;
    background-color: var(--white-900);
    border-left: 1px solid var(--white-600);
    transition: right .5s;
    overflow: auto
  }
  .header__menu.active {
    right: 0
  }
  .header__button {
    margin-left: auto
  }
}
@media (min-width:1140px) {
  .header__menu {
    gap: 20px;
    margin-left: auto
  }
}
.header__menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px
}
@media (min-width:1140px) {
  .header__menu ul {
    flex-direction: row;
    gap: 20px
  }
}
@media (min-width:1200px) {
  .header .wrapper,
  .header__menu,
  .header__menu ul {
    gap: 24px
  }
}
.header__menu ul a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  line-height: 140%;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: .3s
}
.header__menu ul a:hover:not(.current) {
  text-decoration-color: currentColor
}
.header__menu ul a.current {
  color: var(--red-900);
  font-weight: 600
}
.header__language {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  margin-top: auto;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: .3s
}
@media (min-width:1140px) {
  .header__menu ul a {
    font-size: 16px
  }
  .header__language {
    font-size: 16px;
    padding: 0 20px;
    border-left: 1px solid var(--black-900);
    border-right: 1px solid var(--black-900)
  }
}
@media (min-width:1200px) {
  .header__language {
    padding: 0 24px
  }
}
.header__language:is(a):hover {
  text-decoration-color: currentColor
}
.header__language:not(a) svg {
  filter: grayscale(1)
}
.header__button {
  height: 38px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 140%;
  font-weight: 600;
  padding: 8px 16px;
  color: var(--black-900);
  box-shadow: inset 0 0 0 1px var(--black-900);
  border-radius: 100px;
  transition: .3s
}
.header__button:hover {
  color: var(--white-900);
  background-color: var(--black-900)
}
.header .a11yes-open {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 50%
}
.header .burger {
  position: relative;
  display: block;
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--black-900);
  z-index: 3;
  cursor: pointer
}
.header .burger__item {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background-color: var(--white-900);
  border-radius: 2px;
  transition: .5s
}
.header .burger__item:first-of-type {
  top: 50%;
  transform: translate(-50%,calc(-50% - 4px))
}
.header .burger__item:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%,-50%)
}
.header .burger__item:last-of-type {
  top: 50%;
  transform: translate(-50%,calc(-50% + 4px))
}
.header .burger.active .burger__item:first-of-type {
  top: 50%;
  transform: translate(-50%,-50%) rotate(405deg)
}
.header .burger.active .burger__item:nth-of-type(2) {
  opacity: 0
}
.header .burger.active .burger__item:last-of-type {
  top: 50%;
  transform: translate(-50%,-50%) rotate(-405deg)
}
.header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--white-900);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s
}
.header__overlay.active {
  opacity: .8;
  visibility: visible;
  pointer-events: all
}
@media (min-width:1140px) {
  .header .burger,
  .header__overlay {
    display: none
  }
}
.footer {
  padding: 32px 0;
  color: var(--white-900);
  background-color: var(--black-800)
}
.footer a {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: .3s
}
.footer a:hover {
  text-decoration-color: currentColor
}
.footer--top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--white-600)
}
@media (min-width:1024px) {
  .swiper-pagination {
    bottom: 24px
  }
  .footer--top {
    flex-direction: row;
    justify-content: space-between
  }
  .footer__logo-wrapper,
  .footer__menu,
  .footer__socials {
    flex: 1
  }
}
.footer__logo {
  width: 100px
}
.footer__logo img {
  width: 100%
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px
}
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}
@media (min-width:1024px) {
  .footer__socials {
    justify-content: flex-end
  }
}
.footer__socials a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gradient-1-color-1);
  border-radius: 50%;
  overflow: hidden
}
.footer__socials a:hover::before {
  opacity: 0
}
.footer__socials a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: var(--gradient-1);
  z-index: 1;
  transition: .3s
}
.footer__socials a svg {
  position: relative;
  z-index: 2
}
.footer__copyright {
  text-align: center
}
.text-block.light {
  color: var(--white-900)
}
.text-block.light .h1,
.text-block.light .h2,
.text-block.light .h3,
.text-block.light h1,
.text-block.light h2,
.text-block.light h3 {
  color: inherit
}
.text-block :first-child {
  margin-top: 0!important
}
.text-block :last-child {
  margin-bottom: 0!important
}
.text-block > * {
  margin-top: 16px
}
.text-block .h2,
.text-block .h3,
.text-block figure,
.text-block h2,
.text-block h3,
.text-block img,
.text-block ul {
  margin: 24px 0
}
@media (min-width:768px) {
  .text-block .h2,
  .text-block .h3,
  .text-block figure,
  .text-block h2,
  .text-block h3,
  .text-block img,
  .text-block ul {
    margin: 32px 0
  }
  .border-list {
    gap: 32px 24px
  }
}
.text-block ul.gradient li::before {
  background-image: url(../icons/check-gradient.svg)
}
.text-block ul li {
  position: relative;
  padding-left: 32px
}
.text-block ul li:not(:first-of-type) {
  margin-top: 12px
}
.text-block ul li::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-image: url(../icons/check.svg);
  background-size: cover
}
.text-block ul li ul li:first-of-type {
  margin-top: 12px!important
}
.text-block figure img {
  margin: 0
}
.text-block .btn,
.text-block .btns {
  margin: 32px 0
}
@media (min-width:1024px) {
  .text-block .btn,
  .text-block .btns {
    margin: 40px 0
  }
}
.text-block .btns .btn {
  margin: 0
}
.text-left {
  text-align: left
}
.text-right {
  text-align: right
}
.text-right .btn,
.text-right .btns {
  margin-left: auto
}
.text-center {
  text-align: center
}
.text-center .btn,
.text-center .btns {
  margin-left: auto;
  margin-right: auto
}
.text-justify {
  text-align: justify
}
.post-content {
  max-width: 792px;
  padding-top: 40px;
  margin: 0 auto
}
.colored-list__item {
  display: flex;
  flex-direction: column;
  padding: 24px
}
.colored-list__item:nth-child(6n+1) {
  background: #f1f5f9
}
.colored-list__item:nth-child(6n+2) {
  background: #f1f6f5
}
.colored-list__item:nth-child(6n+3),
.colored-list__item:nth-child(6n+4) {
  background: #f9f9f9
}
.colored-list__item:nth-child(6n+5) {
  background: #f9ede4
}
.colored-list__item:nth-child(6n+6) {
  background: #fff9e7
}
.colored-list__item:has(.btn) p:last-of-type {
  margin-bottom: 24px
}
.colored-list__item h3 {
  margin-bottom: 0
}
.colored-list__item .btn {
  margin-top: auto
}
.border-list__item {
  position: relative;
  padding: 24px
}
.border-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-2);
  border-radius: 3px
}
.numbers-list__item {
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--white-600)
}
@media (min-width:768px) {
  .numbers-list__item {
    margin-bottom: 32px;
    padding-bottom: 32px
  }
  .numbers-list__item__number {
    margin-left: 50%
  }
}
@media (min-width:1024px) {
  .numbers-list__item {
    margin-bottom: 48px;
    padding-bottom: 48px
  }
}
.numbers-list__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none
}
.numbers-list__item__number {
  display: block;
  font-size: 64px;
  line-height: 130%;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}
.numbers-list__item .text-block {
  align-self: center
}
.numbers-list__item .text-block .btn {
  margin-top: 24px
}
.links-list {
  display: flex;
  flex-direction: column;
  gap: 24px
}
.custom-link {
  display: flex;
  gap: 24px;
  padding: 16px;
  background-color: var(--white-500);
  transition: .3s
}
.custom-link:hover {
  box-shadow: inset 0 0 0 1px var(--white-600)
}
.custom-link:hover i {
  background-color: var(--red-900)
}
.custom-link__content {
  flex: 1;
  align-self: center
}
.custom-link__file {
  display: block;
  color: var(--black-600);
  font-size: 14px;
  line-height: 140%;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px
}
.custom-link__title {
  display: block;
  color: var(--black-800);
  font-size: 18px;
  line-height: 140%
}
.custom-link__text {
  margin-top: 8px
}
.custom-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: var(--black-700);
  border-radius: 50%;
  transition: .3s
}
.cta {
  position: relative
}
.cta--1::after,
.cta--1::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1
}
.cta--1::before {
  bottom: 0;
  left: -103px;
  width: 380px;
  height: 349px;
  background-image: url(../icons/background/cubes-1.svg)
}
.cta--1::after {
  bottom: 5px;
  right: -50px;
  width: 264px;
  height: 243px;
  background-image: url(../icons/background/cubes-2.svg)
}
.cta--2 .cta__content::after,
.cta--2 .cta__content::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1
}
.cta--2 .cta__content::before {
  top: -50px;
  left: -32px;
  width: 174px;
  height: 137px;
  background-image: url(../icons/background/figure-1.svg)
}
@media (min-width:768px) {
  .cta {
    max-width: 738px;
    margin: 0 auto
  }
  .cta--2 .cta__content::before {
    left: -200px;
    width: 285px;
    height: 225px
  }
}
.cta--2 .cta__content::after {
  bottom: -34px;
  right: -26px;
  width: 177px;
  height: 134px;
  background-image: url(../icons/background/figure-2.svg)
}
.cta__content {
  position: relative;
  width: calc(100% - 32px);
  margin: -24px auto 0;
  z-index: 2
}
@media (min-width:560px) {
  .cta--2 .cta__content::before {
    top: -40px
  }
  .cta__content {
    margin-top: -48px;
    max-width: 548px
  }
  .contact form.narrow {
    max-width: 384px
  }
}
.cta__content--inner {
  padding: 32px 24px;
  border: 1px solid var(--black-900);
  background-color: var(--white-900)
}
.cta__content strong {
  display: block;
  font-size: 20px;
  margin-bottom: 16px
}
@media (min-width:768px) {
  .cta--2 .cta__content::after {
    bottom: -87px;
    right: -153px;
    width: 265px;
    height: 200px
  }
  .cta__content {
    margin-top: -95px
  }
  .cta__content strong {
    font-size: 24px
  }
}
.cta__content .btn {
  margin: 0 auto
}
.faq {
  overflow: hidden;
  border-bottom: 1px solid var(--white-700)
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0
}
.faq__question:hover i {
  background-color: var(--white-700)
}
.faq__question.active i svg {
  transform: rotate(180deg)
}
.faq__question i {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 4px;
  transition: .3s
}
.faq__question i svg {
  transition: .3s
}
.faq__question h3 {
  flex: 1;
  text-align: left;
  font-size: 18px;
  line-height: 26px;
  font-family: var(--main-font);
  font-weight: 600
}
.faq__answer {
  display: none;
  color: var(--black-500);
  padding-bottom: 16px
}
.faq__answer > :not(:first-child) {
  margin-top: 16px
}
.post {
  margin-top: 40px!important
}
.post__title {
  margin-bottom: 16px
}
@media (min-width:768px) {
  .post {
    margin-top: 56px!important
  }
  .post__title {
    margin-bottom: 24px
  }
}
.post__date {
  display: block;
  font-size: 18px
}
.post__image {
  margin: 24px 0
}
.pricing__item {
  display: flex;
  flex-direction: column;
  padding: 24px
}
.pricing__item:first-of-type {
  background-color: var(--white-500)
}
.pricing__item:nth-of-type(2) {
  background-color: var(--red-500)
}
.pricing__item:nth-of-type(3) {
  background-color: var(--green-500)
}
.pricing__item .text-block {
  margin-bottom: 24px
}
.pricing__item .text-block h3 {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: var(--gradient-1-color-1)
}
.pricing__item .text-block ul {
  margin: 16px 0
}
.pricing__item .btn {
  width: 100%;
  margin-top: auto
}
.news-list .article {
  display: flex;
  flex-direction: column
}
.news-list .article__image {
  aspect-ratio: 357/272;
  overflow: hidden
}
.news-list .article__image:hover img {
  transform: scale(1.1)
}
.news-list .article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: .3s
}
.news-list .article__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  border-bottom: 1px solid var(--white-600);
  border-left: 1px solid var(--white-600);
  border-right: 1px solid var(--white-600)
}
.news-list .article__content h3,
.news-list .article__content p,
.news-list .article__content time {
  margin-bottom: 16px
}
.news-list .article__content h3 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  font-size: 24px
}
@media (min-width:768px) {
  .post__content {
    max-width: 548px;
    margin: 0 auto
  }
  .news-list .article__content h3,
  .news-list .article__content p {
    margin-bottom: 20px
  }
  .news-list .article__content h3 {
    font-size: 28px
  }
}
.news-list .article__content p {
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden
}
.news-list .article__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--white-600)
}
.news-list .article__content ul li:not(:last-child) {
  display: flex
}
.news-list .article__content ul li:not(:last-child)::after {
  content: ","
}
.news-list .article__content a {
  transition: .3s
}
.news-list .article__content a:hover {
  color: var(--red-900)
}
@media (min-width:768px) {
  .news-list.all .article:first-of-type {
    flex-direction: row;
    grid-column: 1/span 2
  }
  .news-list.all .article:first-of-type .article__image {
    width: 50%
  }
  .news-list.all .article:first-of-type .article__content {
    border-left: none;
    border-top: 1px solid var(--white-600)
  }
}
.f3-widget-paginator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px
}
@media (min-width:768px) {
  .f3-widget-paginator {
    margin-top: 40px
  }
}
.f3-widget-paginator li.current,
.f3-widget-paginator li:not(.previous):not(.next) a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: .3s
}
.f3-widget-paginator li:not(.previous):not(.next) a {
  color: var(--black-900);
  box-shadow: inset 0 0 0 1px var(--black-900)
}
.f3-widget-paginator li:not(.previous):not(.next) a:hover {
  color: var(--white-900);
  background-color: var(--black-500)
}
.f3-widget-paginator li.current {
  color: var(--white-900);
  background-color: var(--black-900)
}
.f3-widget-paginator li.next a:hover path,
.f3-widget-paginator li.previous a:hover path {
  fill: var(--red-900)
}
.f3-widget-paginator li.next a path,
.f3-widget-paginator li.previous a path {
  transition: .3s
}
.contact {
  padding: 32px 16px;
  border-radius: 16px;
  background-color: var(--color-5)
}
@media (min-width:768px) {
  .contact {
    padding: 48px 32px
  }
}
@media (min-width:1024px) {
  .news-list .article__content h3,
  .news-list .article__content p {
    margin-bottom: 20px
  }
  .news-list .article__content h3 {
    font-size: 36px
  }
  .news-list .article__content p {
    font-size: 18px
  }
  .news-list.all .article:first-of-type {
    grid-column: 1/span 3
  }
  .f3-widget-paginator {
    margin-top: 48px
  }
  .f3-widget-paginator li.current,
  .f3-widget-paginator li:not(.previous):not(.next) a {
    width: 48px;
    height: 48px
  }
  .contact {
    padding: 80px 64px
  }
}
.contact__content {
  max-width: 588px;
  text-align: center;
  margin: 0 auto
}
.contact h2 {
  text-align: center;
  margin-bottom: 10px
}
@media (min-width:768px) {
  .contact h2 {
    margin-bottom: 16px
  }
  .contact form {
    max-width: 800px
  }
}
.contact p {
  margin-bottom: 32px
}
.contact form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto
}
.contact form .form-group,
.contact form h2,
.contact form.narrow .form-group {
  width: 100%
}
@media (min-width:768px) {
  .contact form .form-group {
    width: calc(50% - 10px)
  }
  .contact form .form-group.full-width {
    width: 100%
  }
}
.contact form label,
.contact form legend {
  width: 100%;
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: var(--black-700);
  margin-bottom: 8px;
  text-align: left
}
.contact form fieldset {
  border: none
}
.contact form input,
.contact form select,
.contact form textarea {
  width: 100%;
  font-size: 14px;
  line-height: 22px;
  padding: 15px 16px;
  background-color: #f4f4f4;
  border-bottom: 1px solid var(--black-700);
  transition: .3s
}
.contact form input::placeholder,
.contact form select::placeholder,
.contact form textarea::placeholder {
  color: #a8a8a8
}
.contact form input:focus,
.contact form select:focus,
.contact form textarea:focus {
  border-color: var(--red-800)
}
.contact form textarea {
  min-height: 138px;
  resize: vertical
}
.contact form .required {
  color: var(--red-900);
  margin-left: 2px
}
.contact form .checkbox-buttons__item {
  position: relative;
  display: flex;
  align-items: center
}
.contact form .checkbox-buttons__item input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px
}
.contact form .checkbox-buttons__item input:checked + label::after {
  opacity: 1
}
.contact form .checkbox-buttons__item input:focus-visible + label::before {
  outline: 2px solid var(--red-800);
  outline-offset: 2px
}
.contact form .checkbox-buttons__item label {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 32px;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  cursor: pointer
}
.contact form .checkbox-buttons__item label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--red-900);
  border-radius: 2px
}
.contact form .checkbox-buttons__item label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  width: 16px;
  height: 16px;
  background-image: url(../icons/tick.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: .3s
}
.contact form .actions {
  width: 100%
}
.contact form .btn-group {
  width: 100%;
  display: flex;
  justify-content: center
}
.contact .btn {
  margin: 0 auto
}
/*# sourceMappingURL=app.css.map */
