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

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, td, tfoot, th, thead, tr, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, mark, menu, menuitem, meter, nav, output, progress, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after {
  content: "";
  content: none;
}

q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
       appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  appearance: button;
  font: inherit;
}

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

a:hover,
a:active,
a:focus {
  outline: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

:root {
  --page-text: #000;
  --btn-bg: #315CF0;
}

/*main*/
html,
body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-style: normal;
  color: var(--page-text);
  min-width: 320px;
  background: #F4F6FE;
}
@media screen and (min-width: 1921px) {
  body {
    zoom: 1.25;
  }
}
body.menu-open {
  overflow: hidden;
}
body.search-open {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
}

.container {
  max-width: 1880px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(238, 240, 247, 0.8)), color-stop(57.22%, rgba(255, 255, 255, 0.8)));
  background: linear-gradient(180deg, rgba(238, 240, 247, 0.8) 50%, rgba(255, 255, 255, 0.8) 57.22%);
  backdrop-filter: blur(50px);
}
@media screen and (min-width: 1921px) {
  .wrapper {
    min-height: 80vh;
  }
}

.hidden {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .hidden {
    display: block !important;
  }
}

[data-aoe] {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: unset;
          animation-name: unset;
  opacity: 0;
}

.no-aoe [data-aoe] {
  -webkit-animation: none !important;
          animation: none !important;
  opacity: 1 !important;
}

.fadeInBottom {
  -webkit-animation-name: fadeInBottom;
          animation-name: fadeInBottom;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 32px, 0);
            transform: translate3d(0, 32px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 32px, 0);
            transform: translate3d(0, 32px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

header {
  background: #F4F6FE;
}

.breadcrumbs {
  padding: 28px 0 18px;
  color: #050505;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.breadcrumbs_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs a {
  font-family: "Unbounded", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  color: #050505;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .breadcrumbs a {
    gap: 10px;
  }
}
.breadcrumbs a::after {
  content: "";
  width: 15px;
  height: 1px;
  background: currentColor;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .breadcrumbs a::after {
    width: 15px;
  }
}
.breadcrumbs a:hover {
  color: var(--btn-bg);
}
.breadcrumbs span {
  font-family: "Unbounded", sans-serif;
  color: var(--btn-bg);
  font-weight: 700;
}

.search-panel {
  position: fixed;
  z-index: 250;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.search-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search-panel.is-open .search-panel__form {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.search-panel__form {
  width: 100%;
  min-height: clamp(78px, 5.8vw, 110px);
  padding: 0 clamp(20px, 2.1vw, 42px);
  border: 0;
  background: #EEF3FF;
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.search-panel__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  color: #9FB5FF;
}
.search-panel__input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #315CF0;
  font-size: clamp(20px, 1.3vw, 26px);
  font-weight: 500;
}
.search-panel__input::-webkit-input-placeholder {
  color: #9FB5FF;
  opacity: 1;
}
.search-panel__input::-moz-placeholder {
  color: #9FB5FF;
  opacity: 1;
}
.search-panel__input:-ms-input-placeholder {
  color: #9FB5FF;
  opacity: 1;
}
.search-panel__input::-ms-input-placeholder {
  color: #9FB5FF;
  opacity: 1;
}
.search-panel__input::placeholder {
  color: #9FB5FF;
  opacity: 1;
}
.search-panel__close {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--btn-bg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.search-panel__close:hover {
  background: transparent;
  color: #173ec9;
}
@media screen and (max-width: 600px) {
  .search-panel__close {
    width: 32px;
    height: 32px;
  }
  .search-panel__close svg {
    width: 18px;
    height: 18px;
  }
}

.fix-top-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #F4F6FE;
  -webkit-box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
}
.fix-top-menu.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.fix-top-menu__row {
  min-height: clamp(68px, 6.7vw, 96px);
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 1.6vw, 32px);
}
@media screen and (max-width: 1440px) {
  .fix-top-menu__row {
    grid-template-columns: minmax(230px, 320px) 1fr auto;
  }
}
@media screen and (max-width: 1024px) {
  .fix-top-menu__row {
    grid-template-columns: 20px 1fr auto;
  }
}
.fix-top-menu__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #35363A;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  .fix-top-menu__brand {
    justify-self: center;
  }
}
.fix-top-menu__brand img {
  width: clamp(42px, 4.75vw, 68px);
  height: clamp(42px, 4.75vw, 68px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.fix-top-menu__brand span {
  font-size: clamp(10px, 1.25vw, 15px);
  font-weight: 500;
  text-align: center;
}
.fix-top-menu__brand strong {
  font-weight: 800;
}
.fix-top-menu__burger {
  display: none;
  width: 20px;
  height: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333333;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .fix-top-menu__burger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.fix-top-menu__burger:hover {
  background: transparent;
  color: var(--btn-bg);
}
.fix-top-menu__nav {
  min-height: auto;
  display: block;
  grid-template-columns: none;
}
@media screen and (max-width: 1024px) {
  .fix-top-menu__nav {
    display: none;
  }
}
.fix-top-menu__nav .menu-header__list {
  grid-column: auto;
  gap: clamp(24px, 8.18vw - 93.8px, 60px);
}
.fix-top-menu__nav .menu-header__list a {
  font-size: clamp(13px, 0.85vw, 16px);
}
.fix-top-menu__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 28px;
}
@media screen and (max-width: 1440px) {
  .fix-top-menu__actions {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .fix-top-menu__actions {
    gap: 24px;
  }
}
@media screen and (max-width: 600px) {
  .fix-top-menu__actions {
    gap: 14px;
  }
}
.fix-top-menu__actions .menu-header__search {
  grid-column: auto;
  justify-self: auto;
  margin-right: 0;
}
.fix-top-menu__vision {
  width: 35px;
  height: 26px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobile-menu {
  position: fixed;
  z-index: 200;
  inset: 0;
  padding: clamp(20px, 2.7vw, 44px) clamp(16px, 3.1vw, 52px);
  background: rgba(0, 0, 0, 0.64);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu.is-open .mobile-menu__panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-menu__panel {
  width: min(100%, 320px);
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  padding: 42px 24px;
  background: #fff;
  color: #35363A;
  -webkit-transform: translateX(-24px);
          transform: translateX(-24px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.mobile-menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.mobile-menu__title {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.mobile-menu__close {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--btn-bg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.mobile-menu__close:hover {
  background: transparent;
  color: #173ec9;
}
.mobile-menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
.mobile-menu__nav a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  color: #35363A;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.mobile-menu__nav a:hover, .mobile-menu__nav a.is-active {
  color: var(--btn-bg);
}
.mobile-menu__nav a svg {
  width: clamp(42px, 4.2vw, 55px);
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #050505;
}
.mobile-menu__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 36px;
}
.mobile-menu__contacts a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #9FB5FF;
  font-size: 14px;
  line-height: 1.2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.mobile-menu__contacts a:hover {
  color: var(--btn-bg);
}
.mobile-menu__contacts a svg {
  width: 13px;
  height: 13px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media screen and (max-width: 600px) {
  .mobile-menu {
    padding: 0;
  }
  .mobile-menu__panel {
    width: 100%;
    height: 100vh;
    padding: 32px 24px;
  }
}
button, .btn {
  font-family: "Unbounded", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: transparent;
  outline: none;
  border: 1px solid var(--btn-bg);
  color: var(--btn-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 34px;
  font-size: 18px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
  height: 70px;
  text-transform: uppercase;
}
button:hover, .btn:hover {
  background: var(--btn-bg);
  color: #fff;
}
button_color, .btn_color {
  background: var(--btn-bg);
  color: #fff;
  gap: 14px;
}
button_color:hover, .btn_color:hover {
  background: #F4F6FE;
  color: var(--btn-bg);
}
button_color:hover span::before, .btn_color:hover span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.82269 0H16V14.1773H13.4223V4.40039L1.82269 16L9.53674e-07 14.1773L11.5996 2.57769H1.82269V0Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
  z-index: 2;
}
button_white, .btn_white {
  margin-top: 38px;
  background: #fff;
  border-color: #fff;
}
button_white:hover, .btn_white:hover {
  background: transparent;
  color: #fff;
}
button span, .btn span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}
button span::before, .btn span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.82269 0H16V14.1773H13.4223V4.40039L1.82269 16L9.53674e-07 14.1773L11.5996 2.57769H1.82269V0Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
  z-index: 2;
  background-size: cover;
}

h1, .h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(30px, 4vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

h2, .h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
h2 span, .h2 span {
  font-size: clamp(16px, 4vw, 48px);
}

h3, .h3 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
}

h4, .h4 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
}

p {
  margin-bottom: 18px;
  font-size: clamp(14px, 1vw, 16px);
}

svg {
  max-width: 100%;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 11px;
  margin-top: clamp(58px, 5vw, 96px);
}
.pagination__link {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #9FB5FF;
  border-radius: 4px;
  background: transparent;
  color: var(--btn-bg);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s, border-color 0.3s, color 0.3s;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
@media screen and (max-width: 991px) {
  .pagination__link:last-child, .pagination__link:first-child, .pagination__link:nth-child(2), .pagination__link:nth-last-child(2) {
    display: none;
  }
}
.pagination__link:hover, .pagination__link.is-active {
  border-color: var(--btn-bg);
  background: var(--btn-bg);
  color: #fff;
}
.pagination__link_gap {
  pointer-events: none;
}
.pagination__link_gap:hover {
  border-color: #9FB5FF;
  background: transparent;
  color: var(--btn-bg);
}

@media screen and (max-width: 620px) {
  .pagination {
    gap: 4px;
    margin-top: 42px;
  }
  .pagination__link {
    min-width: 36px;
    height: 36px;
    padding: 0 9px;
    font-size: 12px;
  }
}
.up-header {
  min-height: 95px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media screen and (max-width: 768px) {
  .up-header {
    grid-template-columns: auto 1fr auto;
  }
}
.up-header__brand {
  grid-column: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .up-header__brand {
    zoom: 0.55;
    margin: 0 auto;
  }
  .up-header__brand img {
    width: auto;
    height: auto;
  }
}
.up-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68px;
          flex: 0 0 68px;
  width: 68px;
  height: 68px;
}
.up-header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #3B3B3B;
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
}
.up-header__title strong {
  color: #171717;
  font-weight: 800;
}
.up-header__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: clamp(10px, 1.8vw, 30px);
}
.up-header__grid button {
  display: none;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  .up-header__grid button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .up-header__grid button {
    width: 15px;
  }
}
.up-header__vision {
  grid-column: 3;
  justify-self: end;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #35363A;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 1024px) {
  .up-header__vision span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .up-header__vision {
    width: 25px;
  }
}
.up-header__vision:hover {
  color: var(--btn-bg);
}
.up-header__vision svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.mobile-burger {
  width: 18px;
  cursor: pointer;
}

.menu-header {
  min-height: 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media screen and (max-width: 1024px) {
  .menu-header {
    display: none;
  }
}
.menu-header__list {
  grid-column: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(34px, 4vw, 78px);
}
.menu-header__list a {
  color: #3A3B40;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.menu-header__list a:hover {
  color: var(--btn-bg);
}
.menu-header__item {
  position: relative;
  padding: 17px 0;
}
.menu-header__item_has-submenu:hover .menu-header__submenu, .menu-header__item_has-submenu:focus-within .menu-header__submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.menu-header__submenu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  width: 426px;
  padding: 30px;
  border-radius: 30px;
  background: #F4F6FF;
  -webkit-box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
          box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.menu-header__submenu li:not(:last-child) {
  border-bottom: 1px solid #315CF0;
}
.menu-header__submenu a {
  display: block;
  padding: 12px 0;
  color: #333333;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: lowercase;
  white-space: normal;
}
.menu-header__submenu a:hover, .menu-header__submenu a:focus {
  color: #315CF0;
}
.menu-header__search {
  grid-column: 3;
  justify-self: end;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #315CF0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  margin-right: 14px;
}
.menu-header__search:hover {
  background: transparent;
  color: #173ec9;
}
.menu-header__search svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.main-banner {
  padding: 14px 0 36px;
}

.main-banner-slider {
  position: relative;
  width: 100%;
  height: clamp(695px, 43.75vw, 840px);
  overflow: hidden;
  border-radius: 30px;
  background: #172044;
}
@media screen and (min-width: 1921px) {
  .main-banner-slider {
    zoom: 0.8;
  }
}
.main-banner-slider__slide {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 2.5vw, 40px);
}
.main-banner-slider__slide img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.main-banner-slider__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(10, 12, 28, 0.72)), color-stop(44%, rgba(29, 20, 55, 0.5)), to(rgba(15, 15, 24, 0.2)));
  background: linear-gradient(90deg, rgba(10, 12, 28, 0.72) 0%, rgba(29, 20, 55, 0.5) 44%, rgba(15, 15, 24, 0.2) 100%);
  z-index: 2;
}
.main-banner-slider__slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 8, 14, 0)), to(rgba(7, 8, 14, 0.55)));
  background: linear-gradient(180deg, rgba(7, 8, 14, 0) 0%, rgba(7, 8, 14, 0.55) 100%);
  z-index: 2;
}
.main-banner-slider__content {
  position: relative;
  z-index: 3;
  width: min(100%, 1010px);
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
}
.main-banner-slider__content .btn {
  height: clamp(30px, 3.65vw, 70px);
  padding: 0 clamp(12px, 1.8vw, 34px);
  border-radius: clamp(8px, 0.95vw, 15px);
  font-size: clamp(10px, 0.95vw, 18px);
}
.main-banner-slider__content .btn span {
  width: clamp(10px, 0.85vw, 16px);
  height: clamp(10px, 0.85vw, 16px);
}
.main-banner-slider__content p {
  max-width: 920px;
  margin: 0 0 clamp(40px, 2.3vw, 44px);
  font-size: clamp(20px, 2.5vw, 24px);
}
.main-banner-slider__nav {
  position: absolute;
  right: clamp(20px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 40px);
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 1.15vw, 22px);
}
.main-banner-slider__arrow {
  width: clamp(30px, 3.65vw, 70px);
  height: clamp(30px, 3.65vw, 70px);
  padding: 0;
  border: 0;
  border-radius: clamp(8px, 0.95vw, 18px);
  background: var(--btn-bg);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.main-banner-slider__arrow svg {
  width: clamp(10px, 1.3vw, 25px);
  height: clamp(10px, 1.04vw, 20px);
}
.main-banner-slider__arrow:hover {
  background: #173ec9;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.main-banner-slider__arrow.swiper-button-disabled {
  opacity: 0.55;
  cursor: default;
  -webkit-transform: none;
          transform: none;
}

.main-caterory {
  padding: 40px 0;
}
.main-caterory .container {
  position: relative;
}
.main-caterory_header {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .main-caterory_header {
    grid-template-columns: 1fr;
  }
}
.main-caterory h2 {
  grid-column: 1;
  margin: 0 0 16px;
  line-height: 1.15;
  text-transform: uppercase;
}
.main-caterory p {
  grid-column: 1;
  max-width: min(1280px, 100% - 360px);
  margin: 0;
  color: #16181D;
  font-size: clamp(18px, 1.35vw, 28px);
  line-height: 1.35;
}
@media (max-width: 991px) {
  .main-caterory p {
    max-width: 1280px;
  }
}
.main-caterory .btn {
  height: 70px;
  padding: 0 38px;
  border-radius: 20px;
  background: transparent;
  font-size: 20px;
  color: var(--btn-bg);
}
.main-caterory .btn:hover {
  background: var(--btn-bg);
  color: #fff;
}
.main-caterory_all {
  position: absolute;
  top: 84px;
  right: 20px;
}
@media (max-width: 991px) {
  .main-caterory_all {
    position: static;
    margin: 30px auto 0;
  }
}
@media (max-width: 768px) {
  .main-caterory_all {
    width: 100%;
  }
}
.main-caterory_row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 58px;
}
@media screen and (max-width: 1400px) {
  .main-caterory_row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .main-caterory_row {
    grid-template-columns: 1fr;
  }
}
.main-caterory_stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 700px;
}
@media screen and (max-width: 1400px) {
  .main-caterory_stack {
    grid-column: 1/-1;
  }
}
.main-caterory_card {
  position: relative;
  min-height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: clamp(20px, 2.1vw, 40px);
  border-radius: 28px;
  background: #E7ECFA;
  color: #050505;
  isolation: isolate;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (max-width: 1024px) {
  .main-caterory_card {
    min-height: 672px;
  }
}
.main-caterory_card-title, .main-caterory_card-text,
.main-caterory_card h3 {
  position: relative;
  z-index: 2;
}
.main-caterory_card-text {
  max-width: 430px;
  font-size: 18px;
  line-height: 1.2;
  margin: 20px 0 0;
}
.main-caterory_card-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 88px;
  height: 88px;
}
.main-caterory_card-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/arrow.png") center center no-repeat;
  z-index: 2;
}
.main-caterory_card_one {
  position: relative;
  overflow: visible;
}
.main-caterory_card_one::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("../img/card-bg-1.png") top center no-repeat;
}
@media screen and (max-width: 1024px) {
  .main-caterory_card_one::before {
    background: url("../img/card-bg1a.png") top left no-repeat;
  }
}
.main-caterory_card_two {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  overflow: visible;
}
.main-caterory_card_two::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("../img/card-bg-2.png") bottom center no-repeat;
}
@media screen and (max-width: 1024px) {
  .main-caterory_card_two::before {
    background: url("../img/card-bg2a.png") bottom right no-repeat;
  }
}
.main-caterory_card_three {
  position: relative;
  overflow: visible;
}
.main-caterory_card_three::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("../img/card-bg-3.png") top center no-repeat;
}
@media screen and (max-width: 1024px) {
  .main-caterory_card_three::before {
    background: url("../img/card-bg3a.png") top right no-repeat;
  }
}
.main-caterory_card_small {
  min-height: 0;
  height: 100%;
  padding: 40px 42px 82px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #E2E8F7;
}
@media screen and (max-width: 1024px) {
  .main-caterory_card_small {
    height: 326px;
  }
}
@media screen and (max-width: 768px) {
  .main-caterory_card_small {
    padding: 20px;
  }
}

.main-news {
  padding: clamp(44px, 3.3vw, 62px) 0 clamp(56px, 3.75vw, 72px);
}
.main-news .main-caterory_header {
  grid-template-columns: minmax(0, 1fr) auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.main-news h2 {
  margin-bottom: 18px;
}
.main-news p {
  max-width: 1320px;
  margin: 0;
  font-size: clamp(18px, 1.35vw, 24px);
}
.main-news_controls {
  grid-column: 2;
  grid-row: 1/3;
  align-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(14px, 1.15vw, 22px);
}
.main-news_controls .btn {
  height: clamp(58px, 4vw, 74px);
  padding: 0 clamp(24px, 1.95vw, 36px);
  border-radius: clamp(16px, 1.05vw, 20px);
  background: transparent;
  font-size: clamp(14px, 1.05vw, 20px);
  color: var(--btn-bg);
}
.main-news_controls .btn:hover {
  background: var(--btn-bg);
  color: #fff;
}
.main-news_arrow {
  width: clamp(58px, 4vw, 74px);
  height: clamp(58px, 4vw, 74px);
  padding: 0;
  border: 0;
  border-radius: clamp(14px, 0.95vw, 18px);
  background: var(--btn-bg);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.main-news_arrow:hover {
  background: #173ec9;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.main-news_arrow.swiper-button-disabled {
  opacity: 0.55;
  cursor: default;
  -webkit-transform: none;
          transform: none;
}
.main-news_row {
  overflow: hidden;
  margin-top: clamp(34px, 3vw, 58px);
}
.main-news_row .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.main-news_card {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  border-radius: 28px;
  background: #fff;
  color: #111318;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.main-news_card-media {
  display: block;
  height: clamp(260px, 21vw, 396px);
  overflow: hidden;
  border-radius: 28px;
  background: #DDE5F7;
}
.main-news_card-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
}
.main-news_card:hover .main-news_card-media img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.main-news_card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: clamp(26px, 1.9vw, 36px) clamp(24px, 2.2vw, 42px) clamp(28px, 1.9vw, 36px);
}
.main-news_card-text {
  margin: 20px 0;
  color: #4A4D55;
  font-size: 16px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.main-news_card-meta {
  margin-top: auto;
  color: var(--btn-bg);
  font-size: 15px;
  line-height: 1.25;
}

@media screen and (max-width: 900px) {
  .main-news .main-caterory_header {
    grid-template-columns: 1fr;
  }
  .main-news_controls {
    grid-column: 1;
    grid-row: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 28px;
  }
  .main-news_card {
    min-height: 0;
  }
}
@media screen and (max-width: 620px) {
  .main-news_controls .btn {
    width: 100%;
  }
  .main-news_card {
    border-radius: 22px;
  }
  .main-news_card-media {
    border-radius: 22px;
  }
  .main-news_card-title {
    font-size: 18px;
  }
  .main-news_card-text {
    font-size: 15px;
  }
}
.block-company {
  margin: 70px 0;
}
.block-company_row {
  overflow: hidden;
}
.block-company_row .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block-company_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
}
.block-company_item img {
  display: block;
  max-width: 100%;
  height: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.block-filter {
  padding: clamp(40px, 4.6vw, 80px) 0;
}
.block-filter_row {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr)) minmax(170px, 236px) auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(16px, 1.5vw, 24px);
}
.block-filter__field {
  position: relative;
}
.block-filter__field.is-open {
  z-index: 5;
}
.block-filter__field.is-open .block-filter__toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.block-filter__field.is-open .block-filter__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
}
.block-filter__field input {
  width: 100%;
  height: clamp(58px, 4vw, 70px);
  padding: 0 64px 0 22px;
  border: 2px solid var(--btn-bg);
  border-radius: 20px;
  background: transparent;
  color: #35363A;
  font-size: 22px;
  line-height: 1;
  outline: none;
  cursor: pointer;
}
.block-filter__field input::-webkit-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.block-filter__field input::-moz-placeholder {
  color: #35363A;
  opacity: 1;
}
.block-filter__field input:-ms-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.block-filter__field input::-ms-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.block-filter__field input::placeholder {
  color: #35363A;
  opacity: 1;
}
.block-filter__toggle {
  position: absolute;
  top: 0;
  right: 16px;
  width: 44px;
  height: clamp(58px, 4vw, 70px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--btn-bg);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, color 0.3s;
  transition: transform 0.3s, color 0.3s, -webkit-transform 0.3s;
}
.block-filter__toggle:hover {
  background: transparent;
  color: #173ec9;
}
.block-filter__toggle svg {
  width: 20px;
  height: auto;
}
.block-filter__dropdown {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 26px 24px;
  border: 1px solid var(--btn-bg);
  border-radius: 30px;
  background: #F4F6FE;
  -webkit-box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.block-filter__dropdown button {
  width: 100%;
  height: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 0 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #35363A;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
}
.block-filter__dropdown button:not(:last-child) {
  margin-bottom: 12px;
  border-bottom: 1px solid var(--btn-bg);
}
.block-filter__dropdown button:hover, .block-filter__dropdown button.is-selected {
  background: transparent;
  color: var(--btn-bg);
  font-weight: 700;
}
.block-filter__submit {
  width: 100%;
  min-width: 170px;
  height: clamp(58px, 4vw, 70px);
  border: 0;
  border-radius: 20px;
  background: var(--btn-bg);
  color: #fff;
  font-size: 18px;
}
.block-filter__submit:hover {
  background: #173ec9;
}
.block-filter__reset {
  -ms-flex-item-align: center;
      align-self: center;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--btn-bg);
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.block-filter__reset:hover {
  background: transparent;
  color: #173ec9;
}

@media screen and (max-width: 1500px) {
  .block-filter_row {
    grid-template-columns: repeat(4, minmax(190px, 1fr)) minmax(150px, 220px);
  }
  .block-filter__reset {
    grid-column: 5/6;
    justify-self: center;
  }
}
@media screen and (max-width: 1200px) {
  .block-filter_row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(150px, 170px);
    gap: 10px;
  }
  .block-filter__field input {
    padding: 0 38px 0 16px;
    font-size: clamp(16px, 1.35vw, 18px);
  }
  .block-filter__toggle {
    right: 8px;
    width: 32px;
  }
  .block-filter__toggle svg {
    width: 20px;
  }
  .block-filter__dropdown {
    padding: 20px 18px;
  }
  .block-filter__dropdown button {
    font-size: clamp(16px, 1.35vw, 18px);
  }
  .block-filter__submit {
    min-width: 150px;
    font-size: clamp(16px, 1.35vw, 18px);
  }
  .block-filter__reset {
    font-size: clamp(16px, 1.35vw, 18px);
  }
}
@media screen and (max-width: 1199px) {
  .block-filter_row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .block-filter__field:nth-of-type(odd) {
    grid-column: 1/3;
  }
  .block-filter__field:nth-of-type(even) {
    grid-column: 3/5;
  }
  .block-filter__submit {
    grid-column: 1/2;
    justify-self: stretch;
    width: 100%;
  }
  .block-filter__reset {
    grid-column: 2/3;
    justify-self: center;
    width: auto;
  }
}
@media screen and (max-width: 620px) {
  .block-filter_row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: clamp(20px, 6vw, 44px);
       -moz-column-gap: clamp(20px, 6vw, 44px);
            column-gap: clamp(20px, 6vw, 44px);
  }
  .block-filter__field:nth-of-type(n), .block-filter__field {
    grid-column: 1/-1;
  }
  .block-filter__submit {
    grid-column: 1/2;
    justify-self: start;
    width: 100%;
  }
  .block-filter__submit, .block-filter__reset {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .block-filter__reset {
    grid-column: 2/3;
    justify-self: center;
  }
}
.filter-3 {
  max-width: 1380px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr auto auto;
}
@media screen and (max-width: 1200px) {
  .filter-3 .block-filter__field:nth-of-type(odd),
  .filter-3 .block-filter__field:nth-of-type(even),
  .filter-3 .block-filter__submit,
  .filter-3 .block-filter__reset {
    grid-column: auto;
  }
}
@media screen and (max-width: 991px) {
  .filter-3 {
    grid-template-columns: 1fr 1fr;
  }
  .filter-3 .block-filter__field:nth-of-type(odd),
  .filter-3 .block-filter__field:nth-of-type(even) {
    grid-column: 1/3;
  }
}

.block-support {
  padding: 26px 0 clamp(54px, 5vw, 96px);
  position: relative;
}
.block-support__header {
  margin: 0 0 clamp(34px, 3.2vw, 58px);
}
.block-support__header h2 {
  margin: 0 0 30px;
}
.block-support__header p {
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.35;
}
.block-support__all {
  min-width: 266px;
  height: 76px;
  padding: 0 34px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--btn-bg);
  border-radius: 20px;
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: var(--btn-bg);
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  position: absolute;
  top: 100px;
  right: 20px;
}
@media screen and (max-width: 1200px) {
  .block-support__all {
    right: 40px;
  }
}
.block-support__all:hover {
  background: var(--btn-bg);
  color: #fff;
}
.block-support_catalog .block-support__header {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 32px;
}
.block-support_catalog .block-support__header-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (min-width: 1200px) {
  .block-support_catalog.block-support_filter .block-support__header-content p {
    max-width: calc(100% - 430px);
  }
}
.block-support_row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 1.4vw, 26px);
}
@media screen and (max-width: 1200px) {
  .block-support_row {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .block-support_row {
    grid-template-columns: 1fr;
  }
}
.block-support__card {
  position: relative;
  min-height: clamp(220px, 14vw, 256px);
  grid-column: span 2;
  display: grid;
  grid-template-columns: clamp(48px, 4.6vw, 82px) 1fr;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 18px clamp(18px, 1.5vw, 28px);
  padding: clamp(20px, 2.5vw, 34px);
  border-radius: 28px 28px 10px 28px;
  background: #E7ECFA;
  color: #050505;
  overflow: hidden;
  isolation: isolate;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (max-width: 1200px) {
  .block-support__card {
    grid-column: span -1;
  }
}
@media screen and (max-width: 991px) {
  .block-support__card {
    grid-column: auto;
  }
}
.block-support_row .block-support__card:nth-child(-n+3)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 72% auto;
  opacity: 0.95;
  background-image: url("../img/card-bg.png");
}
@media screen and (max-width: 1200px) {
  .block-support_row .block-support__card:nth-child(-n+3)::before {
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  .block-support_row .block-support__card:nth-child(-n+3)::before {
    background-image: url("../img/card-bg-mobile.png");
  }
}
.block-support__card_wide {
  grid-column: span 3;
  background: #E2E8F7;
}
@media screen and (max-width: 1200px) {
  .block-support__card_wide {
    grid-column: span 3;
  }
}
@media screen and (max-width: 991px) {
  .block-support__card_wide {
    grid-column: auto;
  }
}
.block-support__icon {
  position: relative;
  z-index: 2;
  width: clamp(50px, 4.6vw, 80px);
  height: clamp(50px, 4.6vw, 80px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.block-support__icon svg {
  height: auto;
}
.block-support__body {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
}
@media screen and (max-width: 1200px) {
  .block-support__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
.block-support__title {
  max-width: 520px;
  margin: 0 0 14px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(13px, 1.2vw, 24px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.block-support__lead, .block-support__section {
  font-size: clamp(10px, 0.72vw, 14px);
  line-height: 1.25;
  text-transform: uppercase;
}
.block-support__lead {
  max-width: 480px;
  margin: 0 0 12px;
}
@media screen and (max-width: 1200px) {
  .block-support__lead {
    margin: 0;
  }
}
.block-support__section {
  font-weight: 700;
}
.block-support__text {
  max-width: 760px;
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.34;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  grid-column: 1/-1;
}
.block-support__text strong {
  font-weight: 700;
  text-transform: uppercase;
}
.block-support__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68px;
  height: 68px;
  z-index: 3;
}
.block-support__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/arrow.png") center center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1200px) {
  .block-support_filter .block-support__header {
    grid-template-columns: 1fr 33.3333333333%;
  }
  .block-support_filter .block-support__header-content p {
    max-width: none;
  }
  .block-support__all {
    height: 70px;
    font-size: 18px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 991px) {
  .block-support__all {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .block-support_filter .block-support__header {
    grid-template-columns: 1fr;
  }
  .block-support_filter .block-support__header-content p {
    max-width: none;
  }
  .block-support__all {
    position: relative;
    right: 0;
    top: 40px;
    width: 100%;
  }
}
.question-form {
  padding: clamp(42px, 4.8vw, 92px) 0 clamp(58px, 5.2vw, 98px);
}
.question-form h2 {
  margin: 0 0 clamp(34px, 4.2vw, 74px);
}
.question-form .question-form__title {
  margin-bottom: 10px;
}
.question-form__lead {
  max-width: 1440px;
  margin: 0 0 clamp(34px, 3.2vw, 62px);
  color: #050505;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 400;
  line-height: 1.3;
}
.question-form__body {
  padding: clamp(28px, 2.4vw, 48px) clamp(24px, 2.3vw, 44px) clamp(36px, 3.2vw, 62px);
  border-radius: clamp(24px, 2vw, 34px);
  background: #fff;
}

@media screen and (max-width: 620px) {
  .question-form h2 {
    margin-bottom: 26px;
  }
  .question-form .question-form__title {
    margin-bottom: 10px;
  }
  .question-form__lead {
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.42;
  }
  .question-form__body {
    padding: 24px 16px 32px;
  }
}
.form-success-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.form-success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.form-success-modal__dialog {
  position: relative;
  width: min(100%, 810px);
  min-height: 500px;
  padding: 138px 42px 72px;
  border-radius: 34px;
  background: #F4F6FE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.form-success-modal__close {
  position: absolute;
  top: 26px;
  right: 28px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--btn-bg);
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}
.form-success-modal__close:hover {
  background: transparent;
  color: #173ec9;
}
.form-success-modal__title {
  margin: 0 0 78px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}
.form-success-modal__title span,
.form-success-modal__title strong {
  display: block;
}
.form-success-modal__title span {
  color: #050505;
}
.form-success-modal__title strong {
  color: var(--btn-bg);
  font-weight: 700;
}
.form-success-modal__button {
  width: min(100%, 292px);
  height: 88px;
  border-radius: 24px;
  font-size: 24px;
  text-transform: none;
}

@media screen and (max-width: 620px) {
  .form-success-modal__dialog {
    width: min(100%, 350px);
    min-height: 498px;
    padding: 132px 24px 72px;
    border-radius: 32px;
  }
  .form-success-modal__close {
    top: 24px;
    right: 24px;
    font-size: 30px;
  }
  .form-success-modal__title {
    margin-bottom: 54px;
    font-size: 26px;
    line-height: 1.25;
  }
  .form-success-modal__button {
    width: 100%;
    height: 64px;
    border-radius: 18px;
    font-size: 22px;
  }
}
.page-banner-up {
  padding: 10px 0 40px;
}
.page-banner-up_row {
  min-height: clamp(280px, 28vw, 512px);
  padding: clamp(44px, 7.4vw, 142px) clamp(28px, 3vw, 56px);
  border-radius: 28px;
  background: var(--btn-bg) url("../img/page-banner-up.png") center center no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 1921px) {
  .page-banner-up_row {
    min-height: 20vw;
    background-size: 110%;
  }
}
.page-banner-up__content {
  max-width: 1220px;
  position: relative;
  z-index: 1;
}
.page-banner-up h1 {
  margin: 0 0 18px;
  color: #fff;
}
.page-banner-up p {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 28px);
}

@media screen and (max-width: 991px) {
  .page-banner-up_row {
    min-height: 360px;
    background-position: 60% center;
  }
  .page-banner-up h1 {
    max-width: 640px;
  }
  .page-banner-up p {
    max-width: 580px;
  }
  .page-banner-up p br {
    display: none;
  }
}
@media screen and (max-width: 620px) {
  .page-banner-up {
    padding-bottom: 20px;
  }
  .page-banner-up_row {
    min-height: 310px;
    padding: 94px 10px;
    border-radius: 22px;
    background-position: left center;
  }
}
.subsidy-tags_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  padding: 20px 0 0;
}
.subsidy-tags__item {
  min-height: 30px;
  padding: 0px 9px;
  border-radius: 7px;
  background: #EAF0FF;
  color: #050505;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.subsidy-tags__item:hover {
  background: var(--btn-bg);
  color: #fff;
}

.subsidy-order {
  padding: 60px 0;
}
.subsidy-order_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(34px, 4.2vw, 60px);
}
.subsidy-order__head h2 {
  margin: 0 0 18px;
}
.subsidy-order__head p {
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.25;
}
.subsidy-order__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .subsidy-order__grid {
    grid-template-columns: 1fr;
  }
}
.subsidy-order__item {
  padding: 25px clamp(20px, 1.25vw, 40px);
  border-radius: 80px;
  background: #fff;
  display: grid;
  grid-template-columns: clamp(50px, 5.25vw, 100px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 1.25vw, 30px);
}
@media screen and (max-width: 991px) {
  .subsidy-order__item {
    min-height: 100px;
  }
}
.subsidy-order__item span {
  font-family: "Unbounded", sans-serif;
  width: clamp(50px, 5.25vw, 100px);
  height: clamp(50px, 5.25vw, 100px);
  border-radius: 50%;
  background: #9EB2FF;
  color: #fff;
  font-size: clamp(24px, 1.5vw, 40px);
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subsidy-order__item strong {
  color: #35363A;
  font-size: clamp(14px, 1.25vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.subsidy-order__decor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subsidy-order__decor picture {
  width: 100%;
}
.subsidy-order__decor picture img {
  height: auto;
}

.package-documents {
  padding: 60px 0 100px;
}
.package-documents_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(34px, 3.1vw, 58px);
}
.package-documents__head {
  margin: 0 0 60px;
}
.package-documents__head h2 {
  max-width: 1640px;
  margin: 0 0 16px;
}
.package-documents__head p {
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.25;
}
.package-documents__list {
  --package-gap: clamp(42px, 5.2vw, 100px);
  --package-pad-y: clamp(34px, 2.4vw, 48px);
  --package-pad-x: clamp(32px, 2.1vw, 40px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  -webkit-column-gap: var(--package-gap);
     -moz-column-gap: var(--package-gap);
          column-gap: var(--package-gap);
  row-gap: clamp(30px, 2.45vw, 47px);
  padding: var(--package-pad-y) var(--package-pad-x);
  overflow: visible;
  border-radius: 30px;
  background: transparent;
  isolation: isolate;
  z-index: 0;
}
.package-documents__list::before, .package-documents__list::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.package-documents__list::before {
  top: clamp(-52px, -2.3vw, -38px);
  bottom: clamp(-52px, -2.3vw, -38px);
  left: 0;
  right: 0;
  z-index: -1;
  background-image: url("../img/subsidy-order__up2.png"), url("../img/subsidy-order__down2.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: 100% auto, 100% auto;
}
.package-documents__list::after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 0;
}
.package-documents__item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: clamp(30px, 2.7vw, 52px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  min-height: clamp(52px, 3.2vw, 62px);
}
.package-documents__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background-color: var(--btn-bg);
  background-image: url("../img/chek.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .package-documents__item span {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-size: 10px 10px;
  }
}
.package-documents__item p {
  margin: 0;
  color: #050505;
  font-size: clamp(14px, 1.25vw, 26px);
  font-weight: 400;
  line-height: 1.25;
}

@media screen and (max-width: 1200px) {
  .package-documents__list {
    --package-gap: 32px;
    --package-pad-y: 34px;
    --package-pad-x: 28px;
  }
  .package-documents__item p br {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .package-documents {
    padding: 40px 0 70px;
  }
  .package-documents__list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 26px;
    --package-gap: 26px;
  }
}
@media screen and (max-width: 768px) {
  .package-documents {
    padding: 32px 0 54px;
  }
  .package-documents_row {
    gap: 30px;
  }
  .package-documents__head h2 {
    margin-bottom: 18px;
  }
  .package-documents__head p {
    font-size: 18px;
    line-height: 1.45;
  }
  .package-documents__head p br {
    display: none;
  }
  .package-documents__list {
    --package-pad-y: 28px;
    --package-pad-x: 18px;
  }
  .package-documents__item {
    grid-template-columns: 30px 1fr;
    gap: 14px;
    min-height: 48px;
  }
}
.block-info {
  padding: 60px 0 110px;
}
.block-info_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.block-info__head h2 {
  margin: 0 0 30px;
}
.block-info__head p {
  max-width: 1040px;
  margin: 0;
  color: #050505;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
}
@media screen and (max-width: 991px) {
  .block-info__head p {
    font-size: 20px;
  }
}
.block-info__grid {
  display: grid;
  grid-template-columns: minmax(0, 536fr) minmax(0, 504fr) minmax(0, 828fr);
  gap: clamp(20px, 1.25vw, 24px);
}
.block-info__card, .block-info__note, .block-info__image {
  border-radius: 16px;
}
.block-info__card, .block-info__note {
  background: #fff;
}
.block-info__card {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .block-info__card {
    padding: 40px 10px 40px 40px;
  }
}
.block-info__card h3 {
  margin: 0 0 30px;
  color: var(--btn-bg);
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 500;
}
.block-info__card ul {
  display: grid;
  list-style: disc;
  gap: 30px 15px;
  margin: 0;
  color: #333;
}
.block-info__card ul li {
  font-size: 23px;
}
@media screen and (min-width: 1920px) {
  .block-info__card ul li {
    font-size: 22px;
  }
}
.block-info__card strong {
  font-weight: 700;
}
.block-info__card_who {
  grid-column: 1;
}
.block-info__card_amounts {
  grid-column: 3;
}
.block-info__card_reasons {
  grid-column: 1/3;
}
.block-info__card_reasons ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.block-info__card_extra {
  grid-column: 3;
}
.block-info__image {
  grid-column: 2;
  overflow: hidden;
  background: #eef6f9;
  min-height: 100%;
  opacity: 0.6;
}
.block-info__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-info__note {
  grid-column: 1/-1;
  padding: clamp(28px, 2vw, 40px) clamp(32px, 2.35vw, 48px);
}
.block-info__note p {
  max-width: 1450px;
  margin: 0;
  color: #050505;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
}

@media screen and (max-width: 1200px) {
  .block-info {
    padding: 48px 0 80px;
  }
  .block-info__grid {
    grid-template-columns: 1fr;
  }
  .block-info__card, .block-info__image, .block-info__note {
    grid-column: auto;
  }
  .block-info__image {
    min-height: 0;
  }
  .block-info__image img {
    min-height: 0;
    aspect-ratio: 16/7;
  }
  .block-info__card h3 {
    margin-bottom: 28px;
  }
  .block-info__card_reasons ul {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .block-info__image img {
    min-height: 0;
    aspect-ratio: 3/4;
  }
}
.block-doc {
  padding: 70px 0 110px;
}
.block-doc_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.block-doc__head {
  margin-bottom: clamp(38px, 3.2vw, 62px);
}
.block-doc__head h2 {
  margin: 0 0 16px;
  max-width: 1680px;
}
.block-doc__head p {
  max-width: 1120px;
  margin: 0;
  color: #050505;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 400;
  line-height: 1.3;
}
.block-doc__file {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  min-height: 104px;
  padding: 24px clamp(32px, 2.1vw, 42px);
  border-radius: 30px;
  background: #fff;
  color: #050505;
  -webkit-transition: color 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, box-shadow 0.3s, transform 0.3s;
  transition: color 0.3s, box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}
.block-doc__file + .block-doc__file {
  margin-top: 20px;
}
.block-doc__file:hover {
  color: var(--btn-bg);
  -webkit-box-shadow: 0 18px 40px rgba(49, 92, 240, 0.08);
          box-shadow: 0 18px 40px rgba(49, 92, 240, 0.08);
}
.block-doc__file:hover .block-doc__file-download {
  color: var(--btn-bg);
}
.block-doc__file-icon {
  width: 52px;
  height: 53px;
  background-image: url("../img/block-doc-pdf.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.block-doc__file-title {
  color: inherit;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}
.block-doc__file-download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #b8b8b8;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.block-doc__file-download svg {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media screen and (max-width: 768px) {
  .block-doc {
    padding: 46px 0 72px;
  }
  .block-doc__head {
    margin-bottom: 30px;
  }
  .block-doc__head h2 {
    margin-bottom: 18px;
  }
  .block-doc__head p {
    font-size: 18px;
    line-height: 1.42;
  }
  .block-doc__file {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 22px 20px;
    border-radius: 22px;
  }
  .block-doc__file-icon {
    width: 48px;
    height: 48px;
  }
  .block-doc__file-download {
    grid-column: 2;
    justify-self: start;
  }
}
.news {
  padding: 60px 0;
}
.news__header {
  margin-bottom: clamp(38px, 3.35vw, 64px);
}
.news__header h1 {
  margin-bottom: 12px;
}
.news__header p {
  max-width: 1440px;
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.35;
}
.news__filter {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: clamp(52px, 3.2vw, 64px);
}
.news__search {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 260px;
}
.news__search input {
  width: 100%;
  height: 70px;
  padding: 0 38px;
  border: 2px solid var(--btn-bg);
  border-radius: 20px;
  background: transparent;
  color: #35363A;
  font-size: 20px;
  outline: none;
}
.news__search input::-webkit-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.news__search input::-moz-placeholder {
  color: #35363A;
  opacity: 1;
}
.news__search input:-ms-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.news__search input::-ms-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.news__search input::placeholder {
  color: #35363A;
  opacity: 1;
}
.news__submit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 216px;
          flex: 0 0 216px;
  width: 216px;
  height: 70px;
  border: 0;
  border-radius: 20px;
  background: var(--btn-bg);
  color: #fff;
  font-size: 18px;
}
.news__submit:hover {
  background: #173ec9;
}
.news__period {
  position: relative;
  min-width: 260px;
}
.news__period.is-open {
  z-index: 6;
}
.news__period.is-open .news__period-toggle svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.news__period.is-open .news__calendar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 14px);
          transform: translate(-50%, 14px);
}
.news__period-toggle {
  width: 100%;
  height: 70px;
  padding: 0 28px 0 32px;
  border: 2px solid var(--btn-bg);
  border-radius: 20px;
  background: transparent;
  color: #050505;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 18px;
}
.news__period-toggle:hover {
  background: transparent;
  color: #050505;
}
.news__period-toggle span {
  width: auto;
  height: auto;
  white-space: nowrap;
}
.news__period-toggle span::before {
  content: none;
  display: none;
}
.news__period-toggle svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: var(--btn-bg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.news__period-toggle.has-period {
  font-size: 20px;
}
.news__calendar {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 352px;
  max-width: calc(100vw - 40px);
  padding: 18px 18px 24px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 34px 42px rgba(0, 0, 0, 0.16);
          box-shadow: 0 34px 42px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translate(-50%, 2px);
          transform: translate(-50%, 2px);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.news__reset {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-item-align: center;
      align-self: center;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--btn-bg);
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news__reset:hover {
  background: transparent;
  color: #173ec9;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(44px, 3.3vw, 60px) clamp(18px, 1.55vw, 28px);
}
@media screen and (max-width: 1200px) {
  .news__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 991px) {
  .news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.news-card {
  overflow: hidden;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
  border-radius: 30px;
  background: #fff;
  color: #111318;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
}
.news-card:hover .news-card__media img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.news-card__media {
  display: block;
  height: 380px;
  overflow: hidden;
  border-radius: 28px;
  background: #DDE5F7;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
}
.news-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px;
}
@media screen and (min-width: 1920px) {
  .news-card h4 {
    font-size: 16px;
  }
}
.news-card__text {
  margin: 16px 0 24px;
  color: #4A4D55;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news-card__meta, .news-card__tag {
  color: var(--btn-bg);
  font-size: 15px;
  line-height: 1.25;
}
.news-card__meta {
  margin-top: auto;
  margin-bottom: 16px;
}

.news .vc,
.news .vanilla-calendar {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #333333;
  font-family: "Unbounded", sans-serif;
}
.news .vc button,
.news .vanilla-calendar button {
  font-family: "Unbounded", sans-serif;
  text-transform: none;
}
.news .vc-controls {
  margin-bottom: 22px;
}
.news .vc-header,
.news .vanilla-calendar-header {
  margin-bottom: 0;
}
.news .vc-header__content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
.news .vc-arrow,
.news .vanilla-calendar-arrow {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #B8C0C8;
}
.news .vc-arrow::before,
.news .vanilla-calendar-arrow::before {
  background-image: none !important;
  background: none !important;
}
.news .vc-arrow::after,
.news .vanilla-calendar-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}
.news .vc-arrow:hover,
.news .vanilla-calendar-arrow:hover {
  background: transparent;
  color: #9FA9B4;
}
.news .vc-arrow_prev::after {
  -webkit-transform: translate(-35%, -50%) rotate(-135deg);
          transform: translate(-35%, -50%) rotate(-135deg);
}
.news .vc-arrow_next::after {
  -webkit-transform: translate(-65%, -50%) rotate(45deg);
          transform: translate(-65%, -50%) rotate(45deg);
}
.news .vc-month,
.news .vc-year,
.news .vanilla-calendar-month,
.news .vanilla-calendar-year {
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.news .vc-wrapper {
  gap: 22px;
}
.news .vc-week,
.news .vc-dates__row {
  grid-template-columns: repeat(7, minmax(32px, 1fr));
  gap: 6px 8px;
}
.news .vc-dates {
  gap: 6px;
}
.news .vc-week__day,
.news .vanilla-calendar-week__day {
  color: #A8B0C0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.news .vc-week__day[data-vc-week-day-off] {
  color: #A8B0C0;
}
.news .vc-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news .vc-date__btn,
.news .vanilla-calendar-day__btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #333333;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}
.news .vc-date__btn:hover,
.news .vanilla-calendar-day__btn:hover {
  background: #EEF3FF;
  color: var(--btn-bg);
}
.news .vc-date__btn_selected, .news .vc-date__btn_selected:hover,
.news .vanilla-calendar-day__btn_selected,
.news .vanilla-calendar-day__btn_selected:hover {
  background: var(--btn-bg);
  color: #fff;
}
.news .vc-date[data-vc-date-weekend] .vc-date__btn,
.news .vc-date[data-vc-date-holiday] .vc-date__btn,
.news .vanilla-calendar-day__btn_weekend {
  background: transparent !important;
  color: #333333;
}
.news .vc-date[data-vc-date-weekend] .vc-date__btn:hover,
.news .vc-date[data-vc-date-holiday] .vc-date__btn:hover,
.news .vanilla-calendar-day__btn_weekend:hover {
  background: #EEF3FF !important;
  color: var(--btn-bg);
}
.news .vc-date[data-vc-date-selected] .vc-date__btn,
.news .vc-date[data-vc-date-selected] .vc-date__btn:hover {
  border-radius: 50%;
  background: var(--btn-bg) !important;
  color: #fff;
}
.news .vc-date[data-vc-date-today] .vc-date__btn,
.news .vc-date[data-vc-date-today] .vc-date__btn:hover {
  border-radius: 50%;
  background: var(--btn-bg) !important;
  color: #fff !important;
}
.news .vc-date[data-vc-date-selected=middle] .vc-date__btn,
.news .vc-date[data-vc-date-selected=middle] .vc-date__btn:hover {
  border-radius: 0;
  background: transparent !important;
  color: var(--btn-bg) !important;
}
.news .vc-date[data-vc-date-selected=first] .vc-date__btn,
.news .vc-date[data-vc-date-selected=first-and-last] .vc-date__btn {
  border-radius: 50%;
}
.news .vc-date[data-vc-date-selected=last] .vc-date__btn {
  border-radius: 50%;
}
.news .vc-date[data-vc-date-disabled] .vc-date__btn,
.news .vanilla-calendar-day__btn_disabled {
  color: #333333;
}
.news .vc-date[data-vc-date-month=prev] .vc-date__btn,
.news .vc-date[data-vc-date-month=next] .vc-date__btn {
  color: #333333;
}

@media screen and (max-width: 1200px) {
  .news__filter {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, calc(100% - 84px)) 70px;
    gap: 14px;
  }
  .news__search, .news__period {
    min-width: 0;
  }
  .news__search {
    grid-column: 1/3;
    width: 100%;
  }
  .news__search input {
    padding: 0 18px;
  }
  .news__submit {
    position: relative;
    grid-column: 2/3;
    justify-self: end;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
    min-width: 0;
    width: 70px;
    padding: 0;
    background: var(--btn-bg) url("../img/search.svg") center/30px 30px no-repeat;
    font-size: 0;
    color: transparent;
    grid-row: 3/3;
  }
  .news__submit:hover {
    background: var(--btn-bg) url("../img/search.svg") center/30px 30px no-repeat;
  }
  .news__submit::before {
    content: none;
  }
  .news__submit::after {
    content: none;
  }
  .news__period {
    grid-column: 1/-1;
    width: 100%;
  }
  .news__period-toggle {
    padding: 0 24px;
  }
  .news__calendar {
    left: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  .news__period.is-open .news__calendar {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  .news__reset {
    grid-row: 3/3;
  }
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 32px;
  }
  .news__filter {
    grid-template-columns: minmax(0, calc(100% - 70px)) 58px;
    gap: 12px;
  }
  .news__search input, .news__submit, .news__period-toggle {
    height: 58px;
    border-radius: 16px;
    font-size: 16px;
  }
  .news__submit {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58px;
            flex: 0 0 58px;
    -ms-flex-preferred-size: 58px;
        flex-basis: 58px;
    min-width: 0;
    width: 58px;
    background-size: 27px 27px;
    font-size: 0;
  }
  .news__submit::before {
    content: none;
  }
  .news__submit::after {
    content: none;
  }
  .news__search input {
    padding: 0 18px;
  }
  .news__period-toggle {
    padding: 0 18px;
  }
  .news__submit, .news__period, .news__reset {
    grid-column: auto;
  }
  .news__submit {
    grid-column: 2/3;
    width: 58px;
  }
  .news__period, .news__reset {
    grid-column: 1/-1;
  }
  .news__reset {
    justify-self: start;
    font-size: 16px;
  }
  .news__calendar {
    padding: 14px 10px 18px;
    border-radius: 18px;
  }
  .news .vc,
  .news .vanilla-calendar {
    min-width: 0;
  }
  .news .vc-column {
    min-width: 0;
  }
  .news .vc-controls {
    margin-bottom: 16px;
  }
  .news .vc-month,
  .news .vc-year,
  .news .vanilla-calendar-month,
  .news .vanilla-calendar-year {
    font-size: 14px;
  }
  .news .vc-wrapper {
    gap: 16px;
  }
  .news .vc-week,
  .news .vc-dates__row {
    grid-template-columns: repeat(7, minmax(24px, 1fr));
    gap: 3px 3px;
  }
  .news .vc-dates {
    gap: 3px;
  }
  .news .vc-week__day,
  .news .vanilla-calendar-week__day {
    font-size: 12px;
  }
  .news .vc-date__btn,
  .news .vanilla-calendar-day__btn {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
  .news__grid {
    grid-template-columns: 1fr;
  }
  .news-card {
    border-radius: 0 0 22px 22px;
  }
  .news-card__media {
    height: 260px;
    border-radius: 22px;
  }
  .news-card__title {
    min-height: 0;
  }
}
.page-banner {
  padding: 10px 0 42px;
}
.page-banner .main-banner_wrapp {
  width: 100%;
}
.page-banner_row {
  position: relative;
  min-height: clamp(420px, 38.8vw, 746px);
  overflow: hidden;
  padding: clamp(32px, 4.2vw, 82px);
  border-radius: 30px;
  background: #172044;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.page-banner_row img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-banner_row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(rgba(7, 8, 17, 0.72)), color-stop(48%, rgba(16, 16, 38, 0.48)), to(rgba(7, 8, 17, 0.28)));
  background: linear-gradient(90deg, rgba(7, 8, 17, 0.72) 0%, rgba(16, 16, 38, 0.48) 48%, rgba(7, 8, 17, 0.28) 100%);
}
.page-banner_row::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 46%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 8, 14, 0)), to(rgba(7, 8, 14, 0.62)));
  background: linear-gradient(180deg, rgba(7, 8, 14, 0) 0%, rgba(7, 8, 14, 0.62) 100%);
}
.page-banner_title {
  font-family: "Unbounded", sans-serif;
  max-width: 960px;
  font-size: clamp(20px, 2.78vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 18px;
  color: #fff;
}
.page-banner .main-banner-slider__content {
  width: min(100%, 1250px);
  min-height: auto;
  padding-top: clamp(170px, 17vw, 330px);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page-banner .main-banner-slider__content p {
  max-width: 960px;
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.news-detail {
  padding: 0 0 clamp(70px, 5.2vw, 100px);
}
.news-detail_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 31.9%);
  gap: clamp(20px, 1.55vw, 30px);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1200px) {
  .news-detail_row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.news-detail__body, .news-detail__aside {
  border-radius: 28px;
  background: #E4ECFC;
}
.news-detail__body {
  min-width: 0;
  padding: clamp(26px, 2.2vw, 42px);
}
.news-detail__content {
  min-width: 0;
  min-height: 100%;
  padding: clamp(34px, 2.25vw, 48px) clamp(28px, 2.25vw, 48px);
  border-radius: 24px;
  background: #F4F6FF;
}
.news-detail__meta {
  margin-bottom: 22px;
  color: #33363D;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 22px;
}
.news-detail__meta span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.news-detail h1 {
  max-width: 1030px;
  margin: 0 0 18px;
  color: #050505;
  font-size: clamp(20px, 1.25vw, 28px);
  line-height: 1.14;
}
.news-detail p {
  margin: 0 0 26px;
  color: #1E2026;
  font-size: 16px;
  line-height: 1.42;
}
.news-detail p strong {
  font-weight: 800;
}
.news-detail__tags {
  margin: 30px 0 clamp(54px, 4vw, 78px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 22px;
}
.news-detail__tags a {
  color: var(--btn-bg);
  font-size: clamp(10px, 1vw, 14px);
  line-height: 1.25;
}
.news-detail__tags a:hover {
  color: #173ec9;
}
.news-detail__gallery-head {
  margin-bottom: clamp(34px, 3vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 22px;
}
.news-detail__gallery-head p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #050505;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 600;
  line-height: 1.25;
}
.news-detail__gallery-title {
  color: #050505;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
.news-detail__gallery-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.news-detail__arrow {
  width: 74px;
  height: 74px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--btn-bg);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  transition: background 0.3s, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.news-detail__arrow:hover {
  background: #173ec9;
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.news-detail__arrow.swiper-button-disabled {
  opacity: 0.55;
  cursor: default;
  -webkit-transform: none;
          transform: none;
}
.news-detail__all {
  min-width: 260px;
  height: 74px;
  padding: 0 34px;
  border: 1px solid var(--btn-bg);
  border-radius: 18px;
  color: var(--btn-bg);
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.news-detail__all:hover {
  background: var(--btn-bg);
  color: #fff;
}
.news-detail__slider {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 44px;
}
.news-detail__slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.news-detail__photo {
  min-width: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 60px) / 4);
          flex: 0 0 calc((100% - 60px) / 4);
  width: calc((100% - 60px) / 4);
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
  background: #DCE5F5;
  display: block;
}
.news-detail__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
}
.news-detail__photo:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.news-detail__back {
  font-family: "Unbounded", sans-serif;
  color: var(--btn-bg);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-detail__back:hover {
  color: #173ec9;
}
.news-detail__aside {
  overflow: hidden;
  position: relative;
  min-height: 100%;
  background: #E9F3FF;
}
@media screen and (max-width: 1200px) {
  .news-detail__aside {
    display: none;
  }
}
.news-detail__aside img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

@media screen and (max-width: 991px) {
  .news-detail_row, .news-detail__body, .news-detail__content, .news-detail__slider {
    min-width: 0;
    max-width: 100%;
  }
  .news-detail__gallery-head {
    grid-template-columns: 1fr;
  }
  .news-detail__gallery-controls {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .news-detail__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 3);
            flex: 0 0 calc((100% - 40px) / 3);
    width: calc((100% - 40px) / 3);
  }
  .news-detail__slider {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .news-detail__photo {
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 620px) {
  .news-detail_row {
    display: block;
  }
  .news-detail__body {
    padding: 16px;
    border-radius: 22px;
  }
  .news-detail__content {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .news-detail__gallery-controls {
    gap: 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    zoom: 0.6;
  }
  .news-detail__arrow {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }
  .news-detail__all {
    min-width: 0;
    height: 58px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 15px;
  }
  .news-detail__back {
    font-size: 10px;
  }
}
@media screen and (max-width: 519px) {
  .news-detail__photo {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .news-detail__photo {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
}
.page-info-more {
  padding: clamp(46px, 5vw, 92px) 0 clamp(58px, 6vw, 112px);
}
.page-info-more__head {
  max-width: 1040px;
  margin: 0 0 clamp(26px, 2.2vw, 42px);
}
.page-info-more__head h2 {
  margin: 0 0 22px;
}
.page-info-more__head p {
  max-width: 980px;
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.35;
}
@media screen and (min-width: 1921px) {
  .page-info-more__head p {
    font-size: 18px;
  }
}
.page-info-more__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: clamp(18px, 1.45vw, 28px);
}
@media screen and (min-width: 1921px) {
  .page-info-more__row {
    grid-template-columns: 1fr 1fr 600px;
  }
}
.page-info-more__card, .page-info-more__photo {
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
}
.page-info-more__card {
  padding: clamp(24px, 2.1vw, 42px);
  background: #fff;
  color: #050505;
}
@media screen and (min-width: 1921px) {
  .page-info-more__card {
    font-size: 24px;
  }
}
.page-info-more__card h3 {
  margin: 0 0 clamp(22px, 1.7vw, 34px);
  color: var(--btn-bg);
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
}
.page-info-more__card h4 {
  margin: 0 0 8px;
  color: #35363A;
  text-transform: uppercase;
}
.page-info-more__card ul {
  margin: 0;
  padding-left: 16px;
  list-style: disc;
  color: #050505;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.18;
}
@media screen and (min-width: 1921px) {
  .page-info-more__card ul {
    font-size: 18px;
  }
}
.page-info-more__photo {
  position: relative;
  min-height: 100%;
  background: #dfe5f4;
}
.page-info-more__photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-info-more__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.72)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.page-info-more__photo figcaption {
  position: absolute;
  left: clamp(20px, 1.7vw, 34px);
  right: clamp(20px, 1.7vw, 34px);
  bottom: clamp(20px, 1.6vw, 32px);
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 800;
  line-height: 1.18;
}
@media screen and (min-width: 1921px) {
  .page-info-more__photo figcaption {
    font-size: 18px;
  }
}
.page-info-more__photo figcaption span {
  display: block;
  text-transform: uppercase;
}
.page-info-more__card_activity {
  grid-column: 1/3;
}
.page-info-more__card_team {
  grid-column: 3/3;
}
.page-info-more__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(22px, 1.65vw, 34px);
  margin: 0;
}
.page-info-more__list div {
  margin: 0;
}
.page-info-more__list dt {
  margin: 0;
  color: #35363A;
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
@media screen and (min-width: 1921px) {
  .page-info-more__list dt {
    font-size: 18px;
  }
}
.page-info-more__list dd {
  margin: 4px 0 0;
  color: #050505;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.28;
}
@media screen and (min-width: 1921px) {
  .page-info-more__list dd {
    font-size: 18px;
  }
}
.page-info-more__list a {
  color: inherit;
}
.page-info-more__list a:hover {
  color: var(--btn-bg);
}
.page-info-more__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 3.2vw, 72px);
}

@media screen and (max-width: 1200px) {
  .page-info-more__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-info-more__card_general, .page-info-more__photo {
    grid-column: span 1;
  }
  .page-info-more__card_contacts, .page-info-more__card_activity, .page-info-more__card_team {
    grid-column: 1/-1;
  }
  .page-info-more__photo {
    aspect-ratio: 1.25/1;
  }
}
@media screen and (max-width: 991px) {
  .page-info-more__row, .page-info-more__columns {
    grid-template-columns: 1fr;
  }
  .page-info-more__card_general, .page-info-more__photo, .page-info-more__card_contacts, .page-info-more__card_activity, .page-info-more__card_team {
    grid-column: 1/-1;
  }
  .page-info-more__photo {
    aspect-ratio: 1/0.78;
  }
}
@media screen and (max-width: 520px) {
  .page-info-more__card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .page-info-more__photo {
    border-radius: 16px;
  }
  .page-info-more__list {
    gap: 20px;
  }
}
.progress {
  padding: clamp(44px, 5.2vw, 100px) 0 clamp(64px, 7vw, 136px);
}
.progress_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.progress__head {
  margin: 0 0 clamp(36px, 3.1vw, 60px);
}
.progress__head h2 {
  margin: 0 0 10px;
  color: #050505;
}
.progress__head p {
  max-width: 1120px;
  margin: 0;
  color: #050505;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.35;
}
.progress__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: clamp(28px, 2vw, 40px) 20px;
}
.progress__grid h3 {
  grid-column: 1/-1;
  margin: 0;
  color: #9FB5FF;
  font-size: clamp(24px, 3.3vw, 60px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.progress__image {
  position: relative;
  min-height: clamp(178px, 10.7vw, 206px);
  border-radius: 60px;
  overflow: hidden;
}
.progress__image img {
  width: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.progress__card {
  min-height: clamp(176px, 10.7vw, 206px);
  padding: clamp(26px, 2.15vw, 42px) clamp(40px, 4vw, 84px);
  border-radius: 100px;
  background: #fff;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(24px, 2.1vw, 40px);
}
.progress__card p {
  margin: 0;
  color: #9FB5FF;
  font-size: clamp(20px, 2.22vw, 34px);
  font-weight: 700;
  line-height: 1.23;
  text-transform: uppercase;
}
.progress__value {
  min-width: clamp(170px, 11vw, 230px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #35363A;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.progress__value span {
  width: 100%;
  padding: 0 0 8px;
  border-bottom: 6px solid #9FB5FF;
  color: #9FB5FF;
  font-size: clamp(30px, 5.9vw, 80px);
  line-height: 0.84;
  text-align: center;
}
.progress__value small {
  margin: 14px 0 0;
  font-size: clamp(14px, 1.25vw, 20px);
  line-height: 1;
}

@media screen and (min-width: 1921px) {
  .progress__head h2 {
    font-size: 58px;
  }
  .progress__head p {
    font-size: 21px;
  }
  .progress__grid h3 {
    font-size: 58px;
  }
  .progress__card p {
    font-size: 28px;
  }
  .progress__value {
    min-width: 190px;
  }
  .progress__value span {
    font-size: 82px;
  }
  .progress__value small {
    font-size: 19px;
  }
}
@media screen and (max-width: 1440px) {
  .progress__grid h3 {
    white-space: normal;
  }
  .progress__card {
    padding-right: clamp(32px, 3vw, 54px);
    padding-left: clamp(32px, 3vw, 54px);
  }
  .progress__card_top {
    padding-left: clamp(38px, 3.4vw, 64px);
  }
  .progress__value {
    min-width: clamp(190px, 15vw, 230px);
  }
}
@media screen and (max-width: 1200px) {
  .progress {
    padding-top: 18px;
  }
  .progress__head {
    margin: 0 0 18px;
  }
  .progress__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .progress__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    min-height: 110px;
    border-radius: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .progress__image img {
    width: 100%;
    max-width: none;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .progress__grid h3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .progress__card {
    min-height: 110px;
    padding: 22px clamp(34px, 7vw, 70px);
    border-radius: 80px;
    gap: 18px;
  }
  .progress__card:not(.progress__card_top):not(:last-child) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .progress__card_top {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .progress__card:not(.progress__card_top):last-child {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .progress__value {
    min-width: clamp(116px, 22vw, 160px);
  }
  .progress__value span {
    padding-bottom: 4px;
    border-bottom-width: 2px;
  }
  .progress__value small {
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .progress__card {
    grid-template-columns: 1fr;
    justify-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    min-height: 220px;
    padding: 46px 24px 50px;
    border-radius: 36px;
    gap: 26px;
  }
  .progress__card p {
    max-width: 520px;
    line-height: 1.05;
    text-align: center;
  }
  .progress__card:not(.progress__card_top):not(:last-child) p {
    max-width: 100%;
  }
  .progress__value {
    min-width: 0;
    width: auto;
  }
  .progress__value span {
    min-width: 112px;
    width: auto;
    padding: 0 0 4px;
  }
  .progress__value small {
    margin-top: 6px;
  }
  .progress__image img {
    width: auto;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .news_banner .news_banner__content {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }
  .news_banner .news_banner__divider {
    width: min(220px, 48vw);
    height: 2px;
  }
}
.honors {
  padding: 0 0 clamp(64px, 7vw, 136px);
}
.honors_row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .honors_row {
    grid-template-columns: 1fr;
  }
}
.honors_title {
  font-family: "Unbounded", sans-serif;
  max-width: 560px;
  color: #050505;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
  text-transform: uppercase;
}
.honors__card {
  min-height: clamp(320px, 21.4vw, 414px);
  padding: clamp(42px, 4.1vw, 70px) 30px;
  border-radius: 28px;
  background: #EAF0FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
}
.honors_h2 {
  font-family: "Unbounded", sans-serif;
  position: relative;
  z-index: 1;
  margin: 0;
  color: #35363A;
  text-align: left;
  max-width: 520px;
  font-size: clamp(20px, 3vw, 50px);
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .honors_h2 {
    font-size: clamp(20px, 5vw, 50px);
    text-align: center;
    max-width: 720px;
  }
}
.honors__card_main {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .honors__card_main {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.honors__media, .honors__overlay {
  position: absolute;
  inset: 0;
}
.honors__media {
  opacity: 0.7;
}
.honors__overlay {
  z-index: 1;
  pointer-events: none;
}
.honors__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(86px, 8.4vw, 160px);
  height: clamp(86px, 8.4vw, 160px);
  margin: 0 0 clamp(20px, 3.8vw, 40px);
  -o-object-fit: contain;
     object-fit: contain;
}

.news_banner {
  position: relative;
  min-height: clamp(142px, 9.6vw, 196px);
  margin: clamp(34px, 3vw, 58px) 0 0;
  padding: clamp(28px, 3vw, 58px) clamp(28px, 4.6vw, 88px);
  border-radius: clamp(22px, 1.5vw, 30px);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news_banner__image, .news_banner__effect {
  position: absolute;
  inset: 0;
}
.news_banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
  opacity: 0.72;
}
.news_banner__effect {
  z-index: 1;
  opacity: 0.86;
  pointer-events: none;
  mix-blend-mode: lighten;
}
.news_banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.86fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(22px, 1.65vw, 32px);
}
.news_banner__title {
  color: #35363A;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(10px, 1.76vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}
.news_banner__divider {
  width: 4px;
  height: clamp(58px, 3.4vw, 66px);
  border-radius: 4px;
  background-color: #35363A;
}

.support {
  padding: 0 0 clamp(64px, 7vw, 136px);
}
.support_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.support__head {
  margin: 0 0 clamp(46px, 3.4vw, 66px);
}
.support__head .h2 {
  margin: 0 0 8px;
  color: #050505;
}
.support__subtitle {
  color: #050505;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.35;
}
.support__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.support__item {
  position: relative;
  min-height: clamp(112px, 7vw, 132px);
  padding: clamp(24px, 2.1vw, 38px) clamp(54px, 4.4vw, 84px) clamp(24px, 2.1vw, 38px) clamp(38px, 2.8vw, 82px);
  border: 4px solid #A9BDFF;
  border-radius: 90px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.3fr) minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(28px, 2.8vw, 52px);
  overflow: hidden;
}
.support__media, .support__effect {
  position: absolute;
  inset: 0;
}
.support__media {
  opacity: 1;
}
.support__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
.support__effect {
  z-index: 1;
  pointer-events: none;
}
.support__label, .support__text {
  position: relative;
  z-index: 2;
  color: #050505;
  text-transform: uppercase;
}
.support__label {
  color: #35363A;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(14px, 1.9vw, 30px);
  font-weight: 700;
  line-height: 1.25;
}
.support__text {
  font-size: clamp(12px, 1.35vw, 24px);
  line-height: 1.35;
}

@media screen and (max-width: 1200px) {
  .support__head {
    margin: 0 0 28px;
  }
  .support__list {
    gap: 32px;
  }
  .support__item {
    min-height: auto;
    padding: 26px 20px;
    grid-template-columns: 1fr;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 6px;
  }
  .support__media img {
    -o-object-position: 30% 0;
       object-position: 30% 0;
  }
}
.baza-page {
  padding: clamp(44px, 4vw, 76px) 0 clamp(70px, 5.2vw, 100px);
}
.baza-page_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 31.9%);
  gap: clamp(20px, 1.55vw, 30px);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1200px) {
  .baza-page_row {
    grid-template-columns: 1fr;
  }
}
.baza-page__body, .baza-page__aside {
  border-radius: 28px;
}
.baza-page__body {
  min-width: 0;
  padding: clamp(16px, 2.2vw, 42px);
  border: 2px solid #9FB5FF;
}
.baza-page__content {
  min-width: 0;
  min-height: 100%;
}
.baza-page__header {
  margin-bottom: clamp(52px, 4vw, 74px);
}
.baza-page__header .h2 {
  margin: 0 0 12px;
  color: #050505;
}
.baza-page__lead {
  max-width: 790px;
  color: #050505;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.35;
}
.baza-page__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: clamp(12px, 1vw, 24px);
  margin: 0 auto clamp(42px, 3.6vw, 64px);
}
@media screen and (max-width: 1200px) {
  .baza-page__filter {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.baza-page__search {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
@media screen and (max-width: 1200px) {
  .baza-page__search {
    width: 100%;
  }
}
.baza-page__search input {
  width: 100%;
  height: 70px;
  padding: 0 28px;
  border: 2px solid var(--btn-bg);
  border-radius: 20px;
  background: #fff;
  color: #35363A;
  font-size: 16px;
  outline: none;
}
.baza-page__search input::-webkit-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.baza-page__search input::-moz-placeholder {
  color: #35363A;
  opacity: 1;
}
.baza-page__search input:-ms-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.baza-page__search input::-ms-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.baza-page__search input::placeholder {
  color: #35363A;
  opacity: 1;
}
.baza-page__submit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 216px;
          flex: 0 0 216px;
  width: 216px;
  height: 70px;
  border: 0;
  border-radius: 20px;
  background: var(--btn-bg);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .baza-page__submit {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.baza-page__submit:hover {
  background: #173ec9;
}
.baza-page__reset {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--btn-bg);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (max-width: 768px) {
  .baza-page__reset {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.baza-page__reset:hover {
  background: transparent;
  color: #173ec9;
}
.baza-page__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  margin: 0;
}
.baza-page .pagination {
  margin-top: clamp(58px, 4.7vw, 88px);
}
.baza-page__aside {
  overflow: hidden;
  position: relative;
  min-height: 100%;
  background: #E9F3FF;
}
@media screen and (max-width: 1200px) {
  .baza-page__aside {
    display: none;
  }
}
.baza-page__aside img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.baza-page-card {
  position: relative;
  min-width: 0;
  color: #050505;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.baza-page-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.baza-page-card__content {
  padding: clamp(26px, 2vw, 40px);
  padding-right: 90px;
  border-radius: 28px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.baza-page-card__title, .baza-page-card__subtitle, .baza-page-card__category, .baza-page-card__text {
  display: block;
}
.baza-page-card__title {
  margin-bottom: 4px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
.baza-page-card__subtitle {
  margin-bottom: 12px;
  font-size: clamp(10px, 1.15vw, 12px);
  line-height: 1.25;
  text-transform: uppercase;
}
.baza-page-card__category {
  margin-bottom: 12px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(10px, 1.15vw, 12px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.baza-page-card__text {
  font-size: clamp(12px, 1.15vw, 14px);
  line-height: 1.35;
}
.baza-page-card__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
}
.baza-page-card__arrow img {
  display: block;
}

.contact-page {
  padding: clamp(32px, 4vw, 64px) 0;
}
.contact-page_title {
  margin-bottom: clamp(24px, 3vw, 48px);
}
.contact-page_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(16px, 2vw, 32px);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1200px) {
  .contact-page_row {
    grid-template-columns: 1fr;
  }
}
.contact-page__info {
  background: #E7EDFC;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(20px, 2vw, 32px);
}
@media screen and (max-width: 1200px) {
  .contact-page__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact-page__info {
    grid-template-columns: 1fr;
  }
}
.contact-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}
@media screen and (max-width: 1200px) {
  .contact-page__item {
    grid-column: 1/2;
  }
  .contact-page__item:last-child {
    grid-column: 2/2;
    grid-row: 1/3;
  }
}
@media screen and (max-width: 768px) {
  .contact-page__item {
    grid-column: auto;
  }
  .contact-page__item:last-child {
    grid-column: auto;
    grid-row: auto;
  }
}
.contact-page__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.contact-page__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.contact-page__item-body strong {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(16px, 1vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: #050505;
}
.contact-page__item-body span {
  font-size: clamp(16px, 1vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: #35363A;
}
.contact-page__map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
}
@media screen and (max-width: 768px) {
  .contact-page__map {
    min-height: 140px;
  }
}

.about-page {
  padding: clamp(32px, 4vw, 64px) 0;
}
.about-page_title {
  margin-bottom: 16px;
}
.about-page_intro {
  max-width: 960px;
  margin-bottom: clamp(28px, 3vw, 48px);
  font-size: clamp(20px, 1vw, 24px);
}
.about-page_row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1200px) {
  .about-page_row {
    grid-template-columns: 1fr;
  }
}
.about-page__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}
@media screen and (max-width: 1200px) {
  .about-page__cards {
    grid-template-columns: 1fr;
  }
}
.about-page__card {
  background: #E7EDFC;
  border-radius: 20px;
  padding: clamp(18px, 2vw, 28px) clamp(16px, 1.8vw, 24px);
}
.about-page__card:nth-child(3) {
  background: #E7EDFC url("../img/aside.png") no-repeat center/cover;
}
@media (max-width: 1200px) {
  .about-page__card:nth-child(3) {
    background-size: auto;
    background-position: right;
  }
}
.about-page__card:nth-child(5) {
  background: #E7EDFC url("../img/aside2.png") no-repeat center/cover;
}
@media (max-width: 1200px) {
  .about-page__card:nth-child(5) {
    background-image: url("../img/aside2_mobile.png");
    background-size: contain;
    background-position: right;
  }
}
.about-page__card_wide {
  grid-column: 1/-1;
}
.about-page__card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.about-page__card-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52px;
          flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #315CF0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-page__card-title {
  color: #050505;
}
.about-page__card-text p {
  margin-bottom: 10px;
  font-size: clamp(16px, 0.9vw, 18px);
  line-height: 1.55;
  color: #35363A;
}
.about-page__card-text p:last-child {
  margin-bottom: 0;
}
.about-page__card-text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.about-page__card-text ul li {
  font-size: clamp(16px, 0.9vw, 18px);
  line-height: 1.5;
  color: #35363A;
}
.about-page__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.about-page__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.about-page__contact-item svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 2px;
}
.about-page__contact-item span {
  font-size: clamp(16px, 0.9vw, 18px);
  line-height: 1.5;
  color: #35363A;
}
.about-page__aside {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #EEF3FF;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 36px);
}
.about-page__aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/aside3.png") no-repeat center/cover;
  z-index: 0;
}
.about-page__aside-text {
  position: relative;
  z-index: 1;
}
.about-page__aside-text hr {
  border: none;
  border-top: 2px solid #315CF0;
  margin-bottom: 24px;
}
.about-page__aside-title {
  font-size: clamp(18px, 2.5vw, 30px);
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.feedback-page {
  padding: clamp(32px, 4vw, 64px) 0;
}
.feedback-page_title {
  margin-bottom: clamp(24px, 3vw, 48px);
}
.feedback-page__form {
  background: #fff;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 40px);
  width: 100%;
}
.feedback-page__form .feedback-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1200px) {
  .feedback-page__form .feedback-page__grid {
    grid-template-columns: 1fr;
  }
}
.feedback-page__col-left {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.feedback-page__form .feedback-page__col-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}
.feedback-page__form .feedback-page__col-right .site-form__textarea {
  min-height: 0;
  height: 100%;
}
@media (max-width: 1200px) {
  .feedback-page__form .feedback-page__col-right .site-form__textarea {
    min-height: 450px;
  }
}
.feedback-page__form .feedback-page__col-right .site-form__error {
  -ms-flex-item-align: start;
      align-self: start;
}

.site-form__file-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-form__file-wrap .site-form__input {
  padding-right: 52px;
}

.site-form__file-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--btn-bg);
}

.site-form__file {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.page-search {
  padding: clamp(44px, 4vw, 76px) 0 clamp(70px, 5.2vw, 100px);
}
.page-search_row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 31.9%);
  gap: clamp(20px, 1.55vw, 30px);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1200px) {
  .page-search_row {
    grid-template-columns: 1fr;
  }
}
.page-search__main {
  min-width: 0;
  padding: clamp(24px, 2.2vw, 42px);
  border-radius: 28px;
  background: #EAF0FF;
}
.page-search__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 216px);
  gap: 12px;
  margin-bottom: clamp(34px, 3vw, 52px);
}
@media screen and (max-width: 768px) {
  .page-search__form {
    grid-template-columns: 1fr;
  }
}
.page-search__field {
  min-width: 0;
}
.page-search__field input {
  width: 100%;
  height: 70px;
  padding: 0 28px;
  border: 2px solid var(--btn-bg);
  border-radius: 20px;
  background: #fff;
  color: #35363A;
  outline: none;
}
.page-search__field input::-webkit-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.page-search__field input::-moz-placeholder {
  color: #35363A;
  opacity: 1;
}
.page-search__field input:-ms-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.page-search__field input::-ms-input-placeholder {
  color: #35363A;
  opacity: 1;
}
.page-search__field input::placeholder {
  color: #35363A;
  opacity: 1;
}
.page-search__submit {
  width: 100%;
  height: 70px;
  border: 0;
  border-radius: 20px;
  background: var(--btn-bg);
  color: #fff;
}
.page-search__submit:hover {
  background: #173ec9;
}
.page-search__results {
  padding: clamp(28px, 2.35vw, 48px);
  border-radius: 28px;
  background: #F8FAFF;
}
@media screen and (max-width: 768px) {
  .page-search__results .btn {
    font-size: 12px;
  }
}
.page-search__top, .page-search__bottom, .page-search__sort {
  color: #35363A;
  font-size: clamp(12px, 0.85vw, 14px);
  line-height: 1.45;
}
.page-search__top {
  margin-bottom: 24px;
}
.page-search__bottom {
  margin-top: 28px;
}
.page-search__pagination, .page-search__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
}
.page-search__pagination a, .page-search__sort a {
  color: #35363A;
}
.page-search__pagination a::after, .page-search__sort a::after {
  content: "|";
  margin: 0 6px;
  color: #35363A;
}
.page-search__pagination a:last-child::after, .page-search__sort a:last-child::after {
  display: none;
}
.page-search__pagination a:hover, .page-search__sort a:hover {
  color: var(--btn-bg);
}
.page-search__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(26px, 2.2vw, 42px);
}
.page-search__all {
  margin: clamp(44px, 4vw, 76px) auto 0;
}
.page-search__aside {
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  background: #E9F3FF;
}
@media screen and (max-width: 1200px) {
  .page-search__aside {
    display: none;
  }
}
.page-search__aside img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.page-search-result {
  display: block;
  color: #35363A;
}
.page-search-result:hover .page-search-result__title {
  color: var(--btn-bg);
}
.page-search-result__title, .page-search-result__text, .page-search-result__date {
  display: block;
}
.page-search-result__title {
  margin-bottom: 6px;
  color: #35363A;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.page-search-result__text {
  max-width: 1020px;
  color: #5B5B5B;
  font-size: 14px;
  line-height: 1.35;
}
.page-search-result__date {
  margin-top: 18px;
  color: #35363A;
  font-size: 10px;
  line-height: 1.3;
}

.page-tags-link {
  padding: 10px 0;
}
.page-tags-link_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.page-tags-link__title {
  font-family: "Unbounded", sans-serif;
  color: #35363A;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.page-tags-link__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
}
.page-tags-link__items a {
  color: var(--btn-bg);
  font-size: 20px;
  line-height: 1.2;
}
.page-tags-link__items a:hover {
  font-weight: 700;
}

.subsidy-tags._big {
  padding: 20px 0 30px;
}
.subsidy-tags._big .subsidy-tags__item {
  font-size: clamp(18px, 2vw, 26px);
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  padding: 20px;
}
.subsidy-tags._big .active {
  background: #315CF0;
  color: #fff;
}

footer {
  margin-top: 48px;
  padding: 52px 0 50px;
  border-radius: 28px 28px 0 0;
  background: var(--btn-bg);
  color: #fff;
}

.footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
.footer a {
  color: inherit;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .footer__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 460px) {
  .footer__top {
    display: block;
  }
}
.footer__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-size: 12px;
  line-height: 1.05;
  font-weight: 500;
}
.footer__brand span {
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .footer__brand span {
    text-align: center;
  }
}
@media screen and (max-width: 460px) {
  .footer__brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 30px;
  }
}
.footer__brand img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  width: 60px;
  height: 55px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer__brand strong {
  font-weight: 800;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(22px, 2vw, 34px);
  padding-top: 20px;
}
@media screen and (max-width: 991px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-top: 0;
  }
}
@media screen and (max-width: 460px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer__nav a {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__nav a:hover {
  opacity: 0.72;
}
.footer__down {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 42px;
  font-size: 13px;
  line-height: 1.25;
}
@media screen and (max-width: 991px) {
  .footer__down {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.footer__down a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__down a:first-of-type {
  justify-self: start;
}
@media screen and (max-width: 1024px) {
  .footer__down a:first-of-type {
    justify-self: center;
  }
}
@media screen and (max-width: 991px) {
  .footer__down a:first-of-type {
    justify-self: start;
  }
}
.footer__down a:last-child {
  justify-self: end;
}
@media screen and (max-width: 991px) {
  .footer__down a:last-child {
    justify-self: start;
  }
}
.footer__down a:hover {
  opacity: 0.72;
}

.site-form__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
  width: 100%;
}
.site-form__field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto 24px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
  min-width: 0;
}
.site-form__field::after {
  content: "";
  grid-column: 1/-1;
  grid-row: 3;
  min-height: 24px;
}
.site-form__field_full {
  grid-column: 1/-1;
}
.site-form__label {
  font-family: "Unbounded", sans-serif;
  grid-column: 1/-1;
  grid-row: 1;
  margin: 0 0 12px;
  color: #35363A;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 700;
  line-height: 1.2;
}
.site-form__label_required::after {
  content: " *";
  color: #FF3333;
  font-weight: 700;
}
.site-form__input, .site-form__textarea {
  grid-column: 1/-1;
  grid-row: 2;
  width: 100%;
  min-width: 0;
  border: 2px solid #6F8DFF;
  border-radius: 20px;
  background: #fff;
  color: #35363A;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  outline: none;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.site-form__input::-webkit-input-placeholder, .site-form__textarea::-webkit-input-placeholder {
  color: #9E9E9E;
  text-transform: uppercase;
  opacity: 1;
}
.site-form__input::-moz-placeholder, .site-form__textarea::-moz-placeholder {
  color: #9E9E9E;
  text-transform: uppercase;
  opacity: 1;
}
.site-form__input:-ms-input-placeholder, .site-form__textarea:-ms-input-placeholder {
  color: #9E9E9E;
  text-transform: uppercase;
  opacity: 1;
}
.site-form__input::-ms-input-placeholder, .site-form__textarea::-ms-input-placeholder {
  color: #9E9E9E;
  text-transform: uppercase;
  opacity: 1;
}
.site-form__input::placeholder, .site-form__textarea::placeholder {
  color: #9E9E9E;
  text-transform: uppercase;
  opacity: 1;
}
.site-form__input:focus, .site-form__textarea:focus {
  border-color: var(--btn-bg);
  -webkit-box-shadow: 0 0 0 3px rgba(49, 92, 240, 0.12);
          box-shadow: 0 0 0 3px rgba(49, 92, 240, 0.12);
}
.site-form__input:focus::-webkit-input-placeholder, .site-form__textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.site-form__input:focus::-moz-placeholder, .site-form__textarea:focus::-moz-placeholder {
  opacity: 0;
}
.site-form__input:focus:-ms-input-placeholder, .site-form__textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.site-form__input:focus::-ms-input-placeholder, .site-form__textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.site-form__input:focus::placeholder, .site-form__textarea:focus::placeholder {
  opacity: 0;
}
.site-form__input {
  height: clamp(60px, 4.3vw, 88px);
  padding: 0 clamp(18px, 1.6vw, 32px);
}
.site-form__textarea {
  min-height: clamp(150px, 9.6vw, 186px);
  padding: clamp(18px, 1.4vw, 28px) clamp(18px, 1.6vw, 32px);
  resize: vertical;
}
.site-form__error {
  grid-column: 1/-1;
  grid-row: 3;
  justify-self: end;
  align-self: start;
  min-height: 24px;
  margin-top: 5px;
  color: #FF3333;
  font-size: clamp(14px, 1vw, 20px);
  line-height: 1.2;
}
.site-form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin: 6px 0 24px;
  color: #5B5B5B;
  font-size: clamp(16px, 1.05vw, 22px);
  line-height: 1.25;
  cursor: pointer;
}
.site-form__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.site-form__check input:checked + span::before {
  opacity: 1;
}
.site-form__check input:focus-visible + span {
  -webkit-box-shadow: 0 0 0 3px rgba(49, 92, 240, 0.18);
          box-shadow: 0 0 0 3px rgba(49, 92, 240, 0.18);
}
.site-form__check span {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 1px solid #DDE3F5;
  border-radius: 3px;
  background: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.site-form__check span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 11px;
  height: 7px;
  border-left: 3px solid var(--btn-bg);
  border-bottom: 3px solid var(--btn-bg);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}
.site-form__check em {
  font-style: normal;
}
.site-form__check a {
  color: var(--btn-bg);
}
.site-form__check a:hover {
  text-decoration: underline;
}
.site-form__captcha {
  display: block;
  width: min(100%, 410px);
  height: auto;
  margin: 0 0 26px;
}
.site-form_subsidy .site-form__section + .site-form__section {
  margin-top: clamp(18px, 1.7vw, 32px);
}
.site-form_subsidy .site-form__section h3 {
  margin: 0 0 26px;
  color: #35363A;
  font-size: clamp(18px, 1.1vw, 22px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.site-form_subsidy .site-form__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}
.site-form_subsidy .site-form__grid_three {
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr) minmax(0, 1.08fr);
}
.site-form_subsidy .site-form__label {
  margin-bottom: 10px;
}
.site-form_subsidy .site-form__error {
  white-space: nowrap;
}
.site-form_subsidy .site-form__textarea {
  min-height: clamp(170px, 10.4vw, 200px);
}
.site-form_subsidy .site-form__check {
  margin-top: 28px;
}
.site-form_subsidy .btn {
  min-width: 306px;
  height: 72px;
  border-radius: 18px;
  font-size: 20px;
}

@media screen and (max-width: 1024px) {
  .site-form__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-form__field:first-child, .site-form__field_full {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 1200px) {
  .site-form_subsidy .site-form__grid_three {
    grid-template-columns: 1fr;
  }
  .site-form_subsidy .form-grid-three {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .site-form__grid {
    grid-template-columns: 1fr;
  }
  .site-form__field:nth-child(n) {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 768px) {
  .page-banner-up .btn {
    font-size: 12px;
  }
}