@charset "UTF-8";
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/Raleway/Raleway-Regular.woff2) format("woff2"), url(../fonts/Raleway/Raleway-Regular.woff) format("woff"), url(../fonts/Raleway/Raleway-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/Raleway/Raleway-SemiBold.woff2) format("woff2"), url(../fonts/Raleway/Raleway-SemiBold.woff) format("woff"), url(../fonts/Raleway/Raleway-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/Raleway/Raleway-Bold.woff2) format("woff2"), url(../fonts/Raleway/Raleway-Bold.woff) format("woff"), url(../fonts/Raleway/Raleway-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/Montserrat/Montserrat-regular.woff2) format("woff2"), url(../fonts/Montserrat/Montserrat-regular.woff) format("woff"), url(../fonts/Montserrat/Montserrat-regular.ttf) format("truetype");
}
@font-face {
  font-family: "ProximaNova";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/ProximaNova/ProximaNova-Regular.woff2) format("woff2"), url(../fonts/ProximaNova/ProximaNova-Regular.woff) format("woff"), url(../fonts/ProximaNova/ProximaNova-Regular.ttf) format("truetype");
}
:root {
  --ffMain: "Raleway", sans-serif;
  --ffHeader: sans-serif;
  --tr: 0.3s;
  --radius: 100px;
}

:root {
  --main: #000000;
  --second: #1E1E1E;
  --white: #fff;
  --gray: #3d3d3d;
  --gray-lighter: #E7E9EA;
  --gray-light: #999999;
  --gray-medium: #BCBCBC;
  --accent: #183054;
  --accent-hover: #0eafc5;
  --accent-active: rgba(14, 175, 197, 0.7);
  --accent-disabled: #c0bfbf;
  --accent2: #dc8b2d;
  --accent2-active: #c27b29;
  --outline: #c0c0c0;
  --bg-page: #f8f8f8;
  --bg-block: #f8f8f8;
  --error: #FF0000;
}

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

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

:focus,
:active {
  outline: none;
}

:focus-visible {
  outline: none;
}

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

input[type=submit] {
  cursor: pointer;
}

button {
  background: none;
  cursor: pointer;
  transition: var(--tr);
}

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

a {
  color: inherit;
  transition: var(--tr);
}

a,
a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
  list-style-position: inside;
}

ol li {
  list-style-position: inside;
}

img {
  display: block;
}

img,
svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

body {
  font-family: var(--ffMain);
  color: var(--main);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "pnum" on, "lnum" on;
  line-height: 1.5;
  background: var(--bg-page);
}
body._lock {
  overflow: hidden;
  padding: 0 calc(16px - (100vw - 100%)) 0 0;
}

.transition-disabled * {
  transition: none !important;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.visually-hidden {
  position: fixed;
  transform: scale(0);
}

.overflow-hidden {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1328px;
  width: 100%;
}
@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }
}

.container-thin {
  margin: 0 auto;
  padding: 0 52px;
  max-width: 1168px;
  width: 100%;
}
@media (max-width: 767px) {
  .container-thin {
    padding: 0 20px;
  }
}

.section {
  margin: 124px 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section {
    margin: 72px 0;
  }
}

.section_last {
  margin-bottom: 102px;
}
@media (max-width: 991px) {
  .section_last {
    margin-bottom: 102px;
  }
}

.section_overflow {
  overflow: unset;
}

.section__header {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  align-items: baseline;
  gap: 24px 40px;
  margin-bottom: 38px;
}
@media (max-width: 991px) {
  .section__header {
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .section__header {
    grid-template-columns: auto;
    row-gap: 14px;
    margin-bottom: 24px;
  }
  .section__header + .btns-group {
    padding-top: 8px;
  }
}

/* Стили анимации пульсации кругов */
@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}
/* Стили кроссбраузерной анимации пульсации кругов */
@-webkit-keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}
/* Стили анимации блика для кнопок */
@keyframes sheens {
  0%, 79% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
    transform: rotateZ(60deg) translate(-5em, 7.5em);
  }
  80% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
    transform: rotateZ(60deg) translate(-5em, 7.5em);
  }
  95% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateZ(60deg) translate(1em, -11em);
    transform: rotateZ(60deg) translate(1em, -11em);
  }
  to {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: rotateZ(60deg) translate(1em, -9em);
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}
/* Стили кроссбраузерной анимации блика для кнопок */
@-webkit-keyframes sheens {
  0%, 79% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
    transform: rotateZ(60deg) translate(-5em, 7.5em);
  }
  80% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
    transform: rotateZ(60deg) translate(-5em, 7.5em);
  }
  95% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateZ(60deg) translate(1em, -11em);
    transform: rotateZ(60deg) translate(1em, -11em);
  }
  to {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: rotateZ(60deg) translate(1em, -9em);
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}
/* Стили анимации полоски в квизе */
@keyframes moveIt {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 48px center;
  }
}
/* Стили кроссбраузерной анимации полоски в квизе */
@-webkit-keyframes moveIt {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 48px center;
  }
}
@keyframes showElem {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sendPreloader {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.logo {
  display: inline-flex;
}

@media (max-width: 767px) {
  .logo__img {
    width: 103px;
  }
}

.main-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
@media (max-width: 991px) {
  .main-menu {
    flex-direction: column;
    gap: 56px;
  }
}
@media (max-width: 767px) {
  .main-menu {
    gap: 32px;
  }
}

.main-menu__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}
@media (min-width: 1024px) {
  .main-menu__link:hover {
    color: var(--accent-hover);
  }
}
.main-menu__link:active {
  color: var(--accent-active);
}
@media (max-width: 991px) {
  .main-menu__link {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .main-menu__link {
    font-size: 24px;
    line-height: 32px;
  }
}

.main-menu__link_active {
  color: var(--accent-hover);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.social__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}
.social__link svg {
  fill: var(--gray);
  transition: var(--tr);
}
@media (min-width: 1024px) {
  .social__link:hover svg {
    fill: var(--accent-hover);
  }
}
.social__link:active svg {
  fill: var(--accent-active);
}

/*
* Пример использования компонента кнопки
* <button class="btn btn_primary">Акцентная кнопка</button>
* <button class="btn btn_second btn_icon">Кнопка с иконкой вторичного цвета</button>
* <button class="btn btn_primary btn_icon btn_icon-arrow btn_icon-left">Кнопка с иконкой с левой стороны акцентного цвета</button>
*/
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 42px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--tr);
}

.btn_primary {
  color: #fff;
  background: var(--accent);
}
@media (min-width: 1024px) {
  .btn_primary:hover {
    background: var(--accent-hover);
  }
}
.btn_primary:active {
  background: var(--accent-active);
}
.btn_primary:disabled {
  background: var(--accent-disabled);
  cursor: auto;
}

.btn_primary-invert {
  color: var(--accent);
  background: #fff;
}
@media (min-width: 1024px) {
  .btn_primary-invert:hover {
    color: #fff;
    background: var(--accent-hover);
  }
}
.btn_primary-invert:active {
  color: #fff;
  background: var(--accent-active);
  opacity: 0.7;
}
.btn_primary-invert:disabled {
  color: #fff;
  background: var(--accent-disabled);
  cursor: auto;
}

.btn_size_sm {
  padding: 8px 25px;
  font-size: 14px;
  line-height: 17px;
}

.btn_size_md {
  padding: 13px 25px;
}

.btn_text_sm {
  font-size: 12px;
  line-height: 17px;
}

.btn-outline {
  display: inline-flex;
  justify-content: center;
  padding: 10px 28px;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--tr);
  transition-duration: opacity, color, background-color;
}
@media (min-width: 1024px) {
  .btn-outline:hover {
    color: var(--white);
    background: var(--accent);
  }
  .btn-outline:active {
    opacity: 0.7;
  }
}
.btn-outline:active:not(span) {
  color: var(--white);
  background: var(--accent);
}
.btn-outline:disabled {
  color: var(--accent-disabled);
  border-color: var(--accent-disabled);
  cursor: auto;
}
@media (max-width: 767px) {
  .btn-outline {
    padding: 8px 22px;
  }
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  background: var(--accent);
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .btn-icon:hover {
    background: var(--accent-hover);
  }
}
.btn-icon:active {
  background: var(--accent-active);
}
.btn-icon.btn-icon_disabled, .btn-icon:disabled {
  background: var(--accent-disabled);
}
.btn-icon.btn-icon_disabled:hover, .btn-icon:disabled:hover {
  background: var(--accent-disabled);
}
.btn-icon.btn-icon_disabled:active, .btn-icon:disabled:active {
  background: var(--accent-disabled);
}

.btn-icon_size_sm {
  width: 33px;
  height: 33px;
}

.btn-burger {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
}
.btn-burger::before, .btn-burger::after {
  content: "";
  transition: var(--tr);
}
.btn-burger__line {
  opacity: 1;
  transition: var(--tr);
}
.btn-burger::before, .btn-burger::after, .btn-burger__line {
  position: absolute;
  display: block;
  width: 11px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
}
.btn-burger::before {
  transform: translateY(-4px);
}
.btn-burger::after {
  transform: translateY(4px);
}
@media (min-width: 1024px) {
  .btn-burger:hover {
    background: var(--accent-hover);
  }
}
.btn-burger:active {
  background: var(--accent-active);
}

.btn-burger_active .btn-burger__line {
  opacity: 0;
}
.btn-burger_active::before {
  transform: translateY(0) rotate(45deg) scale(1.3, 1);
}
.btn-burger_active::after {
  transform: translateY(0) rotate(-45deg) scale(1.3, 1);
}

.btn-navigation {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 39px;
  height: 39px;
  background: var(--accent-hover);
  border-radius: 50%;
  transition: var(--tr);
}
@media (min-width: 1024px) {
  .btn-navigation:hover {
    background: var(--accent);
  }
}
.btn-navigation:active {
  background: var(--accent-active);
}
.btn-navigation:disabled {
  background: var(--accent-disabled);
  cursor: auto;
}
.btn-navigation svg {
  fill: var(--white);
}

.link {
  color: var(--accent-hover);
  text-decoration: underline transparent;
  -webkit-text-decoration: underline transparent;
  text-decoration-skip-ink: none;
  text-underline-offset: 1px;
  -webkit-transition: text-decoration-color 0.3s, color 0.3s;
}
.link:active {
  color: var(--accent-active);
  text-decoration-color: currentcolor;
}
@media (min-width: 1024px) {
  .link:hover {
    text-decoration-color: currentcolor;
  }
}

.link-icon {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}
.link-icon svg {
  fill: var(--accent);
  margin-left: 7px;
  transform: rotate(-45deg);
  transition: var(--tr);
}
.link-icon:active {
  opacity: 0.7;
}
.link-icon:active svg {
  transform: rotate(0);
}
@media (min-width: 1024px) {
  .link-icon:hover svg {
    transform: rotate(0);
  }
}

.link-icon_left svg {
  margin: 0;
  margin-right: 10px;
  transform: rotate(45deg);
}

.form__elem_invalid .form-elem__area {
  border-color: var(--error);
}
.form__elem_invalid .form-elem__label {
  color: var(--error);
}
.form__elem_invalid .form__error {
  position: static;
  visibility: visible;
  opacity: 1;
}

.form__error {
  position: absolute;
  display: block;
  margin-top: 4px;
  visibility: hidden;
  opacity: 0;
  color: var(--error);
  font-size: 12px;
  line-height: 14px;
}

.form-elem {
  position: relative;
  width: 100%;
}

.form-elem textarea {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  resize: none;
}
@media (max-width: 991px) {
  .form-elem textarea {
    max-height: 220px;
  }
}

.form-elem__area {
  width: 100%;
  padding: 13px 16px;
  color: var(--main);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid var(--gray-lighter);
  border-radius: 5px;
  transition: var(--tr);
}
.form-elem__area:hover, .form-elem__area:active {
  border-color: var(--accent-hover);
}
.form-elem__area:not(:placeholder-shown) + .form-elem__label, .form-elem__area:focus + .form-elem__label {
  font-size: 12px;
  line-height: 14px;
  background: #fff;
  transform: translate(0, -23px);
}
@media (max-width: 767px) {
  .form-elem__area {
    font-size: 14px;
  }
}

.form-elem__label {
  position: absolute;
  top: 16px;
  left: 8px;
  padding: 0 8px;
  color: var(--gray-light);
  font-size: 16px;
  font-weight: 400;
  pointer-events: none;
  transition: var(--tr);
}
@media (max-width: 767px) {
  .form-elem__label {
    font-size: 14px;
  }
}

.form-file {
  position: relative;
  width: 100%;
}

.form-file__area {
  position: fixed;
  transform: scale(0);
}
.form-file__area:disabled + .form-file__label {
  cursor: auto;
}
.form-file__area:disabled + .form-file__label .form-file__icon {
  background: var(--accent-disabled);
}

.form-file__label {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  color: var(--gray-light);
  border: 1px dashed var(--accent-disabled);
  border-radius: 5px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .form-file__label:hover .form-file__icon {
    background: var(--accent);
  }
}
@media (max-width: 767px) {
  .form-file__label {
    font-size: 14px;
  }
}

.form-file__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  background: var(--accent-hover);
  border-radius: 50%;
  transition: var(--tr);
}
.form-file__icon::before, .form-file__icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  background: #fff;
}
.form-file__icon::after {
  transform: rotate(90deg);
}

.form-file__files {
  display: none;
  gap: 8px;
  margin-top: 32px;
}

.form-file__files_visible {
  display: grid;
}

.form-file__file {
  display: grid;
  grid-template-columns: 1fr 19px;
  gap: 16px;
  padding: 17px 16px;
  color: #1E1E1E;
  font-size: 14px;
  line-height: 18px;
  background: var(--bg-block);
  border-radius: 5px;
  transition: var(--tr);
}

.form-file__remove .form-file__icon {
  transform: rotate(45deg);
}
@media (min-width: 1024px) {
  .form-file__remove:hover .form-file__icon {
    background: var(--accent);
  }
}

.modal {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: var(--tr);
  transition-duration: calc(var(--tr) * 2);
}

.modal_show {
  visibility: visible;
  opacity: 1;
  transition-duration: var(--tr);
}
.modal_show .modal__body {
  transform: translate(0, 0);
  transition-duration: var(--tr);
}

.modal_shown {
  overflow-y: auto;
}

.modal__body {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;
  min-height: 100%;
  transform: translate(0, 100vh);
  transition: var(--tr);
  transition-duration: calc(var(--tr) * 2);
}

.modal__body_top {
  align-items: flex-start;
  transform: translate(0, -100vh);
}

.modal__content {
  position: relative;
  width: 100%;
  background: #fff;
}

.modal__content_bg_gray {
  background: var(--bg-block);
}

.modal__big-icon {
  width: 177px;
  height: 177px;
  margin: 40px auto 24px auto;
}

.modal__title {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}

.modal__form {
  margin: 32px 0 0 0;
}

.modal__attention {
  font-size: 14px;
  color: var(--main);
  line-height: 1.3;
  margin: 14px 0 0 0;
}

.modal__submit {
  margin: 15px 0 0 0;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 33px;
  height: 33px;
  background: var(--accent);
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .modal__close:hover {
    background: var(--accent-hover);
  }
}
.modal__close:active {
  background: var(--accent-active);
}
.modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
}
.modal__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal .callback__desc {
  color: var(--second);
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .modal .callback__desc {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .modal .callback__desc {
    margin-bottom: 32px;
  }
}
.modal .callback__form {
  row-gap: 32px;
}
.modal .callback__form .form-elem:nth-child(n) {
  margin: 0;
}
@media (max-width: 767px) {
  .modal .callback__attention {
    padding-top: 0;
  }
}

.modal-message .modal__content {
  max-width: 698px;
  position: static;
}

.modal-message .container {
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 576px) {
  .modal-message .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.modal-message__inner {
  padding-top: 48px;
  padding-bottom: 35px;
}

.modal-message .callback__title {
  margin-bottom: 24px;
  padding-right: 0;
}

.modal-message .callback__desc {
  margin-bottom: 35px;
}

.modal-message .modal__button {
  min-width: 158px;
}

.modal-message .modal__close {
  top: 48px;
  right: 48px;
  background-color: transparent;
  width: 53px;
  height: 53px;
  opacity: 0;
  transition: all 0.4s ease-out;
}
@media (max-width: 576px) {
  .modal-message .modal__close {
    top: 8px;
    right: 8px;
  }
}

.modal_shown.modal-message .modal__close {
  opacity: 1;
}

.modal-message .modal__close span {
  background-color: var(--accent);
  width: 31px;
  height: 4px;
  border-radius: 4px;
}

.pagination {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.pagination__prev,
.pagination__next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: var(--accent-hover);
  border-radius: 50%;
}
.pagination__prev:active,
.pagination__next:active {
  background: var(--accent);
}
@media (min-width: 1024px) {
  .pagination__prev:hover,
  .pagination__next:hover {
    background: var(--accent);
  }
}
.pagination__prev svg,
.pagination__next svg {
  fill: var(--white);
  width: 10px;
  height: 11px;
}

.pagination__list {
  display: flex;
  align-items: center;
  margin: 0 16px;
}

.pagination__item + .pagination__item {
  margin-left: 8px;
}
.pagination__item:not([href]) {
  cursor: default;
}

.pagination__link {
  display: block;
  text-align: center;
  min-width: 31px;
  color: var(--accent-disabled);
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}
.pagination__link:active {
  color: var(--accent-hover);
}
@media (min-width: 1024px) {
  .pagination__link:hover {
    color: var(--accent-hover);
  }
}

.pagination__link_active {
  color: var(--accent-hover);
}

.accordion-vertical {
  display: grid;
  grid-template-columns: 1fr 3fr;
  background: var(--white);
}
@media (max-width: 1023px) {
  .accordion-vertical {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .accordion-vertical {
    display: block;
    background: none;
  }
}

.accordion-vertical__controls {
  margin-right: 16px;
  padding: 32px;
  padding-right: 0;
  border-right: 1px solid var(--accent-disabled);
}
@media (max-width: 1023px) {
  .accordion-vertical__controls {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .accordion-vertical__controls {
    position: relative;
    z-index: 1;
    padding: 0;
    padding-bottom: 24px;
    border: none;
  }
}

.accordion-vertical__toggle {
  display: none;
}
@media (max-width: 767px) {
  .accordion-vertical__toggle {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    width: 100%;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    background: var(--white);
    border-radius: 100px;
  }
  .accordion-vertical__toggle svg {
    stroke: var(--accent);
    transition: var(--tr);
    transition-property: transform;
  }
}

.accordion-vertical__toggle_active svg {
  transform: rotate(-180deg);
}
.accordion-vertical__toggle_active + .accordion-vertical__controls-list {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.accordion-vertical__controls-list {
  display: grid;
  gap: 14px;
}
@media (max-width: 991px) {
  .accordion-vertical__controls-list {
    gap: 6px;
  }
}
@media (max-width: 767px) {
  .accordion-vertical__controls-list {
    position: absolute;
    top: 100%;
    width: 100%;
    padding: 16px 0;
    background: var(--accent);
    border-radius: 20px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--tr);
    transition-property: transform, opacity, visibility;
  }
}

.accordion-vertical__control {
  display: block;
  padding: 14px 16px;
  width: 100%;
  color: var(--accent-disabled);
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  line-height: 17px;
  background-image: linear-gradient(to left, var(--accent), var(--accent) 100%, transparent 100%, transparent 200%);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 0 100%;
  transition: background-size 0.3s, color 0.2s;
}
.accordion-vertical__control:active {
  color: var(--accent-hover);
}
@media (min-width: 1024px) {
  .accordion-vertical__control:hover {
    color: var(--accent-hover);
  }
}
@media (max-width: 767px) {
  .accordion-vertical__control {
    padding: 14px 24px;
    color: var(--white);
  }
}

.accordion-vertical__control_active {
  color: var(--white);
  background-size: 100% 100%;
  transition: background-size 0.3s, color 0.2s 0.2s;
}
.accordion-vertical__control_active:active {
  color: var(--white);
}
@media (min-width: 1024px) {
  .accordion-vertical__control_active:hover {
    color: var(--white);
  }
}

.accordion-vertical__contents {
  background: var(--white);
  transition-duration: var(--tr);
  transition-property: height;
}
@media (max-width: 767px) {
  .accordion-vertical__contents {
    margin: 0 -20px;
  }
}

.accordion-vertical__content {
  display: none;
  padding: 32px;
  padding-top: 35px;
  padding-bottom: 24px;
  padding-left: 14px;
}
@media (max-width: 767px) {
  .accordion-vertical__content {
    padding: 32px 20px;
  }
}

.accordion-vertical__content_visible {
  display: block;
  animation: fade 0.3s both ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.content-navigate {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .content-navigate {
    margin-top: 32px;
  }
}

@media (max-width: 991px) {
  .content-navigate__pagination {
    display: none;
  }
}

.content-navigate__show-more {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin-top: 56px;
  margin-bottom: 124px;
}
@media (max-width: 767px) {
  .text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 424px) {
  .text {
    font-size: 14px;
    line-height: 24px;
  }
}
.text h1:not([class]) {
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
.text h2:not([class]) {
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
}
.text h3:not([class]) {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
.text h4:not([class]) {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
.text h5:not([class]) {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
.text p:not([class]) {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .text p:not([class]) {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 424px) {
  .text p:not([class]) {
    font-size: 14px;
    line-height: 24px;
  }
}
.text a:not([class]) {
  color: var(--accent-hover);
  text-decoration: underline transparent;
  -webkit-text-decoration: underline transparent;
  text-decoration-skip-ink: none;
  text-underline-offset: 1px;
  -webkit-transition: text-decoration-color 0.3s, color 0.3s;
}
.text a:not([class]):active {
  color: var(--accent-active);
  text-decoration-color: currentcolor;
}
@media (min-width: 1024px) {
  .text a:not([class]):hover {
    text-decoration-color: currentcolor;
  }
}
.text .announcement {
  margin: 56px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}
.text p:not([class]) {
  margin: 24px 0;
}
.text ol:not([class]) li,
.text ul:not([class]) li {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  position: relative;
  margin-bottom: 24px;
  padding-left: 36px;
}
@media (max-width: 767px) {
  .text ol:not([class]) li,
  .text ul:not([class]) li {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 424px) {
  .text ol:not([class]) li,
  .text ul:not([class]) li {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 424px) {
  .text ol:not([class]) li,
  .text ul:not([class]) li {
    margin-bottom: 16px;
  }
}
.text ol:not([class]) ul,
.text ol:not([class]) ol,
.text ul:not([class]) ul,
.text ul:not([class]) ol {
  margin: 24px 0;
  max-width: 856px;
}
.text ol:not([class]) ul li,
.text ol:not([class]) ol li,
.text ul:not([class]) ul li,
.text ul:not([class]) ol li {
  margin-bottom: 16px;
  padding-left: 24px;
}
.text ol:not([class]) ul li::before,
.text ol:not([class]) ol li::before,
.text ul:not([class]) ul li::before,
.text ul:not([class]) ol li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='2' viewBox='0 0 8 2' fill='none'%3E%3Cline y1='1' x2='8' y2='1' stroke='%23183054'/%3E%3C/svg%3E");
  position: absolute;
  top: -5px;
  left: -3px;
  min-width: 40px;
  background-image: none;
}
.text ol:not([class]) {
  counter-reset: ol;
  margin: 56px 0;
  max-width: 955px;
  list-style-type: none;
}
.text ol:not([class]) > li {
  counter-increment: ol;
}
.text ol:not([class]) > li::before {
  content: counter(ol) ".";
  position: absolute;
  top: 0;
  left: 2px;
  color: var(--accent);
  font-weight: bold;
  min-width: 40px;
}
.text ul:not([class]) {
  margin: 56px 0;
  max-width: 955px;
  list-style-type: none;
}
.text ul:not([class]) > li::before {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 6px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23183054'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  content: " ";
}
.text blockquote:not([class]) {
  margin: 56px 0;
  padding: 32px;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  background: var(--white);
  border-left: 9px solid var(--accent-hover);
}
.text blockquote:not([class]) figure {
  display: flex;
  margin-top: 32px;
  margin-bottom: 0;
}
.text blockquote:not([class]) figure img {
  margin-right: 16px;
  width: 56px;
  height: 58px;
  object-fit: cover;
}
.text blockquote:not([class]) figure figcaption {
  margin: 0;
  color: #1D1D1D;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  opacity: 1;
}
.text blockquote:not([class]) p {
  margin: 0;
}
.text blockquote:not([class]) cite {
  display: block;
  margin-top: 8px;
  font-weight: 400;
  font-style: normal;
}
.text .blockquote {
  margin: 56px 0;
  padding: 32px;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  background: var(--white);
  border-left: 9px solid var(--accent-hover);
}
.text .blockquote._big-quote {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .text .blockquote._big-quote {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 424px) {
  .text .blockquote._big-quote {
    font-size: 14px;
    line-height: 24px;
  }
}
.text .blockquote__figure {
  display: flex;
  margin-top: 32px;
}
.text .blockquote__img {
  margin-right: 16px;
  width: 56px;
  height: 58px;
  object-fit: cover;
}
.text .blockquote__caption {
  margin: 0;
  color: #1D1D1D;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  opacity: 1;
}
.text .blockquote p {
  margin: 0;
}
.text .blockquote cite {
  display: block;
  margin-top: 8px;
  font-weight: 400;
  font-style: normal;
}
.text img:not([class]) {
  margin: 56px 0;
}
.text figure:not([class]) {
  margin: 56px 0;
}
.text figure:not([class]) img {
  margin: 0;
}
.text figcaption:not([class]) {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  line-height: 18px;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .text {
    margin-top: 48px;
    margin-bottom: 72px;
  }
  .text p:not([class]):first-child {
    margin: 48px 0;
  }
  .text p:not([class]) {
    margin: 26px 0;
  }
  .text ol:not([class]),
  .text ul:not([class]) {
    margin: 48px 0;
  }
  .text .blockquote {
    margin: 48px 0;
  }
  .text blockquote:not([class]) {
    margin: 48px 0;
  }
  .text img:not([class]) {
    margin: 48px 0;
  }
  .text figure:not([class]) {
    margin: 48px 0;
  }
  .text figure:not([class]) img {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .text {
    margin-top: 40px;
    font-size: 14px;
    line-height: 24px;
  }
  .text p:not([class]):first-child {
    margin: 40px 0;
    font-size: 16px;
    line-height: 24px;
  }
  .text p:not([class]) {
    margin: 24px 0;
  }
  .text ol:not([class]),
  .text ul:not([class]) {
    margin: 40px 0;
    font-size: 14px;
    line-height: 24px;
  }
  .text ol:not([class]) ol li, .text ol:not([class]) ul li,
  .text ul:not([class]) ol li,
  .text ul:not([class]) ul li {
    margin-bottom: 8px;
  }
  .text ol:not([class]) li,
  .text ul:not([class]) li {
    font-size: 14px;
    line-height: 24px;
  }
  .text blockquote:not([class]) {
    margin: 40px 0;
    margin-right: -20px;
    padding: 24px 20px 32px 24px;
    font-size: 18px;
    line-height: 28px;
  }
  .text blockquote:not([class]) figcaption {
    font-size: 14px;
    line-height: 24px;
  }
  .text .blockquote {
    margin: 40px 0;
    margin-right: -20px;
    padding: 24px 20px 32px 24px;
    font-size: 18px;
    line-height: 28px;
  }
  .text .blockquote__caption {
    font-size: 14px;
    line-height: 24px;
  }
  .text img:not([class]) {
    margin: 40px 0;
  }
  .text figure:not([class]) {
    margin: 40px 0;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin: 32px 0;
}
@media (max-width: 424px) {
  .video-wrapper {
    margin: 24px 0;
  }
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.title {
  color: var(--main);
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
}
@media (max-width: 767px) {
  .title {
    font-size: 28px;
    line-height: 34px;
  }
}

.title-page {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
@media (max-width: 991px) {
  .title-page {
    margin-bottom: 32px;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .title-page {
    font-size: 28px;
    line-height: 34px;
  }
}

.title-section {
  margin-bottom: 40px;
  color: var(--main);
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
}
@media (max-width: 991px) {
  .title-section {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .title-section {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 34px;
  }
}

@media (max-width: 991px) {
  .title-section_bug_disign {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .title-section_bug_disign {
    margin-bottom: 29px;
  }
}

.text-slider {
  position: relative;
  margin: 56px 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .text-slider {
    margin: 48px 0;
  }
}
@media (max-width: 767px) {
  .text-slider {
    margin: 40px 0;
    padding: 0 25px;
  }
}

.text-slider__picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .text-slider__picture-img {
    min-height: 413px;
  }
}
@media (max-width: 767px) {
  .text-slider__picture-img {
    min-height: 237px;
  }
}

.text-slider__controls {
  position: absolute;
  top: 100%;
  right: 4px;
  transform: translateY(30px);
  display: grid;
  grid-template-columns: 39px 39px;
  grid-template-rows: 39px;
  gap: 16px;
}
@media (max-width: 991px) {
  .text-slider__controls {
    right: 0;
    transform: translateY(22px);
  }
}
@media (max-width: 767px) {
  .text-slider__controls {
    position: static;
    display: block;
    transform: unset;
  }
  .text-slider__controls .swiper-button-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-25px, -50%);
    z-index: 1;
  }
  .text-slider__controls .swiper-button-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(25px, -50%);
    z-index: 1;
  }
}

.text-slider__thumbs-wrapper {
  margin-top: 24px;
  margin-right: 20%;
  min-height: 50px;
}
@media (max-width: 991px) {
  .text-slider__thumbs-wrapper {
    margin-top: 14px;
    margin-right: 53%;
  }
}
@media (max-width: 767px) {
  .text-slider__thumbs-wrapper {
    margin-top: 8px;
    margin-right: 0;
  }
}

.text-slider__thumbs {
  overflow: hidden;
}
.text-slider__thumbs .swiper-slide {
  display: flex;
  border: 1px solid transparent;
  overflow: hidden;
  cursor: pointer;
}
.text-slider__thumbs .swiper-slide-thumb-active {
  border-color: var(--accent-hover);
}

.text-slider__thumb-img {
  width: 102%;
  height: 102%;
  max-width: unset;
  max-height: unset;
  object-fit: cover;
}

.header {
  position: relative;
  z-index: 2;
  background-color: var(--bg-block);
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.75s ease;
  will-change: box-shadow, transform;
}
.header.hidden {
  transform: translateY(-105%);
}

.header_sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0px 4px 12px rgba(152, 139, 139, 0.1);
}
.header_sticky.header_color_accent {
  box-shadow: none;
}
@media (max-width: 991px) {
  .header_sticky .header__top {
    background: var(--white);
  }
}

.header_color_accent {
  background-color: var(--accent);
}
.header_color_accent .header__top,
.header_color_accent .header__bottom {
  background: var(--accent);
}
.header_color_accent .header__logo svg {
  fill: var(--white);
}
.header_color_accent .header__logo-desc {
  color: var(--white);
}
.header_color_accent .header__logo-desc::before {
  background: var(--white);
}
.header_color_accent .header__callback {
  color: var(--accent);
  background: var(--white);
}
.header_color_accent .header__search {
  background: var(--white);
}
.header_color_accent .header__search svg {
  stroke: var(--accent);
}
.header_color_accent .header__burger {
  background: var(--white);
}
.header_color_accent .header__burger .btn-burger__line, .header_color_accent .header__burger::before, .header_color_accent .header__burger::after {
  background: var(--accent);
}
.header_color_accent .header__nav {
  color: var(--white);
}
.header_color_accent .header__social svg {
  fill: var(--white);
}

.header__top {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .header__top {
    background: var(--bg-page);
  }
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(218, 222, 227, 0.6);
}
@media (max-width: 991px) {
  .header__top-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .header__top-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  fill: var(--gray);
}
@media (max-width: 991px) {
  .header__logo {
    padding-left: 8px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    padding-left: 0;
  }
}

.header__logo-desc {
  display: flex;
  align-items: center;
  margin-left: 16px;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
}
@media (max-width: 767px) {
  .header__logo-desc {
    font-size: 11px;
  }
}

.header__controls {
  display: flex;
  gap: 16px;
}

@media (max-width: 767px) {
  .header__callback {
    display: none;
  }
}

.header__search svg {
  stroke: var(--white);
}
@media (max-width: 991px) {
  .header__search {
    display: none;
  }
}

.header__burger {
  display: none;
}
@media (max-width: 991px) {
  .header__burger {
    display: flex;
  }
}

@media (max-width: 991px) {
  .header__bottom {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    width: 100%;
    height: 100dvh;
    background: var(--accent);
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    overflow-y: auto;
    transition: var(--tr);
    transition-property: visibility, opacity, transform;
  }
}
@media (max-width: 767px) {
  .header__bottom {
    padding-top: 84px;
  }
}

@media (max-width: 991px) {
  .header__bottom_active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
}

.header__bottom-top {
  display: none;
}
@media (max-width: 991px) {
  .header__bottom-top {
    display: block;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--white);
  }
}
@media (max-width: 767px) {
  .header__bottom-top {
    padding-bottom: 24px;
  }
}

.header__form-search {
  position: relative;
}

@media (max-width: 991px) {
  .header__form-search-input {
    padding: 12px 24px;
    padding-right: 48px;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    background: var(--white);
    border-radius: 50px;
  }
  .header__form-search-input::placeholder {
    color: var(--main);
  }
}
@media (max-width: 767px) {
  .header__form-search-input {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .header__form-search-submit {
    position: absolute;
    right: 0;
    padding-right: 24px;
    height: 100%;
  }
  .header__form-search-submit svg {
    stroke: var(--accent);
  }
}

.header__bottom-bottom {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 0 40px;
}
@media (max-width: 991px) {
  .header__bottom-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .header__bottom-bottom {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.header__nav {
  color: var(--gray);
}
@media (max-width: 991px) {
  .header__nav {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .header__nav {
    margin-bottom: 32px;
  }
}

.header__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .header__social {
    margin-top: auto;
  }
  .header__social svg {
    fill: var(--bg-block);
  }
}

.header__social-callback {
  display: none;
}
@media (max-width: 767px) {
  .header__social-callback {
    display: inline-flex;
    padding: 10px 34px;
  }
}

.footer {
  margin-top: auto;
}

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 96px;
}
@media (max-width: 991px) {
  .footer__cols {
    column-gap: 48px;
  }
}
@media (max-width: 767px) {
  .footer__cols {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 1023px) {
  .footer__col {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .footer__col {
    max-width: unset;
  }
}

.footer__title {
  display: block;
  margin-bottom: 8px;
  color: var(--main);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .footer__title {
    font-size: 14px;
  }
}

.footer__paragraph {
  color: var(--accent);
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .footer__paragraph {
    font-size: 14px;
  }
}

.footer__link {
  color: var(--accent-hover);
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .footer__link {
    font-size: 14px;
  }
}

.footer__social {
  flex-shrink: 0;
  margin-top: 8px;
}
@media (max-width: 991px) {
  .footer__social {
    margin-top: 0;
  }
}

.footer__bottom {
  padding: 26px 0;
  background: var(--accent);
}
@media (max-width: 991px) {
  .footer__bottom {
    padding: 24px 0;
  }
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
}
@media (max-width: 767px) {
  .footer__bottom-inner {
    row-gap: 24px;
  }
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  color: var(--white);
  font-size: 14px;
}
@media (max-width: 991px) {
  .footer__bottom-links {
    column-gap: 32px;
  }
}
@media (max-width: 767px) {
  .footer__bottom-links {
    gap: 24px;
  }
}

.footer__bottom-link {
  font-family: "ProximaNova", sans-serif;
  color: #fff;
  line-height: 19px;
  text-decoration: underline transparent;
  text-decoration-skip-ink: none;
  text-underline-offset: 1px;
}
.footer__bottom-link:active {
  text-decoration-color: currentcolor;
  opacity: 0.7;
}
@media (min-width: 1024px) {
  .footer__bottom-link:hover {
    text-decoration-color: currentcolor;
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .footer__bottom-link {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .footer__logo {
    margin-right: 26px;
  }
}

.section-search {
  padding: 0;
}

.section-search_modal {
  position: relative;
  padding-top: 40px;
  padding-bottom: 48px;
}

.section-search__title {
  margin-bottom: 48px;
  color: var(--main);
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
@media (max-width: 767px) {
  .section-search__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 38px;
  }
}

.section-search__form {
  display: grid;
  grid-template-columns: 1fr 158px;
  gap: 24px;
}
@media (max-width: 991px) {
  .section-search__form {
    grid-template-columns: 1fr 167px;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .section-search__form {
    position: relative;
    display: block;
  }
}

.section-search__input {
  padding: 10px 14px;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #E7E9EA;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .section-search__input {
    padding-right: 54px;
    font-size: 14px;
  }
}

.section-search__submit svg {
  display: none;
}
@media (max-width: 767px) {
  .section-search__submit {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-left: 10px;
    padding-right: 29px;
    font-size: 0;
    background: none;
  }
  .section-search__submit svg {
    display: block;
    stroke: var(--accent);
  }
}

.section-search__close {
  top: 40px;
  right: 0;
}

.callback {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
}
@media (max-width: 991px) {
  .callback {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .callback {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.callback_padding_bottom {
  padding-bottom: 64px;
}
@media (max-width: 991px) {
  .callback_padding_bottom {
    padding-top: 64px;
  }
}

.callback__header {
  max-width: 631px;
}
@media (max-width: 1023px) {
  .callback__header {
    max-width: unset;
  }
}

.callback__title {
  margin-bottom: 48px;
  padding-right: 48px;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  color: var(--second);
}
@media (max-width: 1023px) {
  .callback__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .callback__title {
    font-size: 28px;
    line-height: 34px;
  }
}

.callback__desc {
  margin-bottom: 34px;
  max-width: 631px;
  font-size: 16px;
  line-height: 24px;
  color: var(--second);
}
@media (max-width: 767px) {
  .callback__desc {
    margin-bottom: 24px;
    font-size: 14px;
  }
}

.callback__form {
  display: grid;
  grid-template-columns: minmax(auto, 631px) minmax(auto, 617px);
  gap: 48px 32px;
}
@media (max-width: 1439px) {
  .callback__form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .callback__form {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .callback__form .form-elem:nth-child(2), .callback__form .form-elem:nth-child(3) {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .callback__form {
    gap: 24px;
  }
  .callback__form .form-elem:nth-child(2), .callback__form .form-elem:nth-child(3) {
    margin-top: 18px;
  }
  .callback__form .form-elem:nth-child(4) {
    margin-top: 10px;
  }
}

.callback__message {
  grid-column: 2;
  grid-row: 1/5;
}
@media (max-width: 991px) {
  .callback__message {
    grid-column: unset;
    grid-row: unset;
  }
}

.callback__attention {
  grid-column: 1;
  display: grid;
  grid-template-columns: 158px 1fr;
  align-items: center;
  gap: 16px 24px;
  padding-top: 10px;
}
@media (max-width: 1439px) {
  .callback__attention {
    align-items: start;
    column-gap: 32px;
  }
}
@media (max-width: 991px) {
  .callback__attention {
    padding-top: 8px;
  }
}
@media (max-width: 767px) {
  .callback__attention {
    justify-items: start;
    grid-template-columns: 1fr;
    padding-top: 10px;
  }
}

.callback__attention-desc {
  color: #1E1E1E;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 1023px) {
  .callback__attention-desc {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .callback__attention-desc {
    order: -1;
    margin-top: 8px;
    line-height: 24px;
  }
}

.callback__close {
  top: 40px;
}
@media (max-width: 991px) {
  .callback__close {
    top: 64px;
  }
}
@media (max-width: 767px) {
  .callback__close {
    top: 48px;
  }
}

.main-article {
  position: relative;
  display: flex;
  color: #fff;
  overflow: hidden;
}

.main-article__link {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: rgba(0, 0, 0, 0.2);
}
@media (min-width: 1024px) {
  .main-article__link:hover {
    background: var(--accent);
  }
}
.main-article__link:active {
  background: var(--accent);
}
@media (max-width: 991px) {
  .main-article__link {
    padding: 24px;
  }
}

.main-article__link_blackout_dark {
  background: rgba(0, 0, 0, 0.5);
}

.main-article__picture-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-article__mark {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.main-article__mark::before {
  content: "";
  display: block;
  margin-right: 12px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.main-article__title {
  margin-bottom: 16px;
  max-width: 550px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 767px) {
  .main-article__title {
    font-size: 20px;
    line-height: 28px;
  }
}

.main-article__title_size_lg {
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
@media (max-width: 767px) {
  .main-article__title_size_lg {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 374px) {
  .main-article__title_size_lg {
    font-size: 20px;
    line-height: 28px;
  }
}

.main-article__desc {
  margin-bottom: 48px;
  max-width: 500px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .main-article__desc {
    display: none;
  }
}

.main-article__footer {
  margin-top: auto;
  display: grid;
  justify-content: start;
  grid-template-columns: auto auto;
  gap: 16px;
  font-size: 12px;
  line-height: 14px;
  opacity: 0.8;
}

.main-article__date {
  opacity: 0.6;
}

.main-article__views {
  display: flex;
  align-items: center;
  opacity: 0.6;
}
.main-article__views::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11' fill='none'%3E%3Cpath d='M0.458496 5.49992C0.458496 5.49992 2.29183 1.83325 5.50016 1.83325C8.7085 1.83325 10.5418 5.49992 10.5418 5.49992C10.5418 5.49992 8.7085 9.16659 5.50016 9.16659C2.29183 9.16659 0.458496 5.49992 0.458496 5.49992Z' stroke='white' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 6.875C6.25939 6.875 6.875 6.25939 6.875 5.5C6.875 4.74061 6.25939 4.125 5.5 4.125C4.74061 4.125 4.125 4.74061 4.125 5.5C4.125 6.25939 4.74061 6.875 5.5 6.875Z' stroke='white' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin-right: 9px;
}

.main-articles {
  margin-top: 72px;
  margin-bottom: 112px;
}
@media (max-width: 1023px) {
  .main-articles {
    margin-top: 16px;
    margin-bottom: 72px;
  }
}
@media (max-width: 991px) {
  .main-articles {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .main-articles {
    margin-top: 24px;
  }
}

.main-articles__title {
  position: fixed;
  transform: scale(0);
}

.main-articles__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33% - 12px);
  grid-template-rows: minmax(545px, auto) minmax(268px, auto);
  grid-auto-rows: minmax(268px, auto);
  gap: 24px;
  padding-bottom: 20px;
  margin-bottom: -20px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #fff;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.main-articles__list::-webkit-scrollbar {
  height: 3px;
}
.main-articles__list::-webkit-scrollbar-thumb {
  background: var(--accent);
  outline: 2px solid var(--accent);
}
.main-articles__list::-webkit-scrollbar-track {
  background: #fff;
}
@media (max-width: 1023px) {
  .main-articles__list {
    margin-bottom: 0;
    grid-template-columns: unset;
    grid-auto-columns: calc(50% - 12px);
  }
}
@media (max-width: 991px) {
  .main-articles__list {
    grid-auto-columns: calc(50% - 10px);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .main-articles__list {
    grid-auto-columns: 100%;
    grid-template-rows: minmax(329px, auto);
  }
}

.main-articles__item {
  scroll-snap-align: start;
}
.main-articles__item:first-child {
  grid-column: span 2;
}
.main-articles__item:first-child {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .main-articles__item:first-child {
    grid-column: unset;
  }
  .main-articles__item:last-child {
    grid-row: span 2;
  }
}

.article-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(330px, auto);
  gap: 20px 17px;
}
@media (max-width: 991px) {
  .article-cards {
    grid-template-columns: 1fr;
    column-gap: 16px;
  }
}
@media (max-width: 767px) {
  .article-cards {
    grid-auto-rows: minmax(335px, auto);
  }
}

.article-cards_col_3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1439px) {
  .article-cards_col_3 {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .article-cards_col_3 {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(368px, auto);
  }
}
@media (max-width: 767px) {
  .article-cards_col_3 {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(324px, auto);
    gap: 16px;
  }
}

.btns-group {
  display: flex;
  flex-wrap: wrap;
  margin-top: -12px;
  margin-right: -16px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .btns-group {
    margin-right: -8px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .btns-group {
    margin-right: -12px;
  }
}

.btns-group__input {
  position: fixed;
  transform: scale(0);
}
.btns-group__input:checked + .btns-group__item {
  color: var(--white);
  background: var(--accent);
}

.btns-group__item {
  margin-right: 16px;
  margin-top: 12px;
  padding-left: 23px;
  padding-right: 22px;
  letter-spacing: 0.12em;
}
@media (max-width: 991px) {
  .btns-group__item {
    margin-right: 8px;
  }
}
@media (max-width: 767px) {
  .btns-group__item {
    margin-right: 12px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.articles-slider_width_lg .swiper-slide {
  min-height: 556px;
}
@media (max-width: 767px) {
  .articles-slider_width_lg .swiper-slide {
    min-height: unset;
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--white);
}

.article-card_view_line .article-card__link {
  display: grid;
  grid-template-columns: 5.1fr 7fr;
}
@media (max-width: 991px) {
  .article-card_view_line .article-card__link {
    display: flex;
  }
}
.article-card_view_line .article-card__content {
  padding-bottom: 37px;
}
@media (max-width: 991px) {
  .article-card_view_line .article-card__content {
    padding: 24px;
  }
}
.article-card_view_line .article-card__title {
  margin-bottom: 32px;
  padding-right: 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 991px) {
  .article-card_view_line .article-card__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .article-card_view_line .article-card__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 991px) {
  .article-card_hidden {
    display: none;
  }
}

.article-card__link {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .article-card__link:hover .article-card__title {
    color: var(--accent-hover);
  }
  .article-card__link:hover .article-card__look svg {
    transform: rotate(0);
  }
}
.article-card__link:active .article-card__title {
  color: var(--accent-hover);
}
.article-card__link:active .article-card__look svg {
  transform: rotate(0);
}

.article-card__content {
  display: flex;
  flex-direction: column;
  padding: 32px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .article-card__content {
    padding: 24px;
  }
}

@media (max-width: 991px) {
  .article-card__content_space_lg {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .article-card__content_space_lg {
    padding-bottom: 24px;
  }
}

.article-card__picture {
  display: block;
  width: 100%;
  height: 476px;
}
@media (max-width: 991px) {
  .article-card__picture {
    height: 300px;
  }
}

.article-card__picture_size_sm {
  height: 163px;
}

.article-card__picture_size_md {
  height: 228px;
}
@media (max-width: 991px) {
  .article-card__picture_size_md {
    height: 228px;
  }
}

.article-card__picture_size_lg {
  height: 500px;
}
@media (max-width: 767px) {
  .article-card__picture_size_lg {
    height: 242px;
  }
}

.article-card__picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__mark {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-card__mark::before {
  content: "";
  display: block;
  margin-right: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent-hover);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .article-card__mark {
    font-size: 11px;
  }
}

.article-card__title {
  margin-bottom: 20px;
  padding-right: 32px;
  color: var(--accent);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  transition: var(--tr);
}
@media (max-width: 767px) {
  .article-card__title {
    padding-right: 0;
    font-size: 20px;
    line-height: 28px;
  }
}

.article-card__title_size_sm {
  margin-bottom: 52px;
  padding-right: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 767px) {
  .article-card__title_size_sm {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 22px;
  }
}

.article-card__title_size_lg {
  margin-bottom: 26px;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
@media (max-width: 991px) {
  .article-card__title_size_lg {
    margin-bottom: 34px;
  }
}
@media (max-width: 767px) {
  .article-card__title_size_lg {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 32px;
  }
}

.article-card__desc {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .article-card__desc {
    margin-bottom: 24px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .article-card__desc_margin_lg {
    margin-bottom: 42px;
  }
}
@media (max-width: 767px) {
  .article-card__desc_margin_lg {
    margin-bottom: 32px;
  }
}

.article-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
@media (max-width: 767px) {
  .article-card__footer {
    gap: 16px 8px;
  }
}

.article-card__date {
  font-size: 12px;
  line-height: 14px;
  opacity: 0.6;
}

.article-card__views {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  opacity: 0.6;
}
.article-card__views::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='12' viewBox='0 0 11 12' fill='none'%3E%3Cpath d='M0.458496 6.00004C0.458496 6.00004 2.29183 2.33337 5.50016 2.33337C8.7085 2.33337 10.5418 6.00004 10.5418 6.00004C10.5418 6.00004 8.7085 9.66671 5.50016 9.66671C2.29183 9.66671 0.458496 6.00004 0.458496 6.00004Z' stroke='%230F0F0F' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 7.375C6.25939 7.375 6.875 6.75939 6.875 6C6.875 5.24061 6.25939 4.625 5.5 4.625C4.74061 4.625 4.125 5.24061 4.125 6C4.125 6.75939 4.74061 7.375 5.5 7.375Z' stroke='%230F0F0F' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 11px;
  height: 12px;
  margin-right: 9px;
}

.article-card__look {
  margin-left: auto;
}
@media (max-width: 767px) {
  .article-card__look {
    width: 100%;
  }
}

.article-card__look_left {
  margin-left: unset;
}

.article-card__source {
  color: var(--main);
  font-size: 14px;
  line-height: 18px;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .article-card__source {
    font-size: 12px;
    line-height: 16px;
  }
}

.main-cases {
  display: grid;
  grid-template-columns: 7fr 3.9fr;
  align-items: start;
  gap: 40px 124px;
}
@media (max-width: 1439px) {
  .main-cases {
    column-gap: 40px;
  }
}
@media (max-width: 991px) {
  .main-cases {
    grid-template-columns: 100%;
  }
}

.case-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--white);
}

.case-card__link {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .case-card__link:hover .case-card__more {
    background: var(--accent);
  }
}
.case-card__link:active .case-card__more {
  background: var(--accent);
}

.case-card__top {
  position: relative;
  margin-bottom: 16px;
  margin-right: 18px;
}
@media (max-width: 991px) {
  .case-card__top {
    margin: 0;
  }
}

.case-card__picture {
  display: block;
  height: 111px;
}

.case-card__picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__more {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .case-card__more {
    display: none;
  }
}

.case-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .case-card__content {
    padding: 24px;
  }
}

.case-card__title {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 991px) {
  .case-card__title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .case-card__title {
    font-size: 16px;
    line-height: 22px;
  }
}

.case-card__footer {
  margin-top: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(192, 191, 191, 0.3);
}
@media (max-width: 991px) {
  .case-card__footer {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.case-card__source {
  font-size: 14px;
  line-height: 18px;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .case-card__source {
    font-size: 12px;
    line-height: 16px;
  }
}

.other-cases {
  display: block;
  padding: 32px;
  padding-bottom: 28px;
  background: var(--white);
}
@media (max-width: 991px) {
  .other-cases {
    padding: 0;
    background: none;
  }
}

.other-cases__title {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 991px) {
  .other-cases__title {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .other-cases__title {
    font-size: 20px;
    line-height: 28px;
  }
}

.other-cases__slider .swiper-wrapper {
  display: grid;
  gap: 32px;
  margin: 0;
}
@media (max-width: 991px) {
  .other-cases__slider {
    overflow: hidden;
  }
  .other-cases__slider .swiper-wrapper {
    display: flex;
    gap: unset;
  }
}

.other-cases__scrollbar {
  display: none;
}
@media (max-width: 991px) {
  .other-cases__scrollbar {
    display: block;
  }
}

.info-section {
  margin-top: 124px;
  margin-bottom: 124px;
}
@media (max-width: 1023px) {
  .info-section {
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .info-section {
    margin: 72px 0;
  }
}
@media (max-width: 767px) {
  .info-section {
    margin-bottom: 30px;
  }
}

.info-section__inner {
  padding: 64px 32px;
  color: var(--white);
  background-color: var(--accent);
  background-image: url(../img/info-section/info-section.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (max-width: 1439px) {
  .info-section__inner {
    padding: 40px 32px;
    background-image: url(../img/info-section/info-section-mb.png);
  }
}
@media (max-width: 767px) {
  .info-section__inner {
    padding: 24px;
    background-image: unset;
  }
}

.info-section__content {
  max-width: 680px;
}

.info-section__title {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
@media (max-width: 1023px) {
  .info-section__title {
    margin-bottom: 32px;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .info-section__title {
    margin-bottom: 29px;
    max-width: unset;
    font-size: 30px;
    line-height: 38px;
  }
}

.info-section__desc {
  max-width: 740px;
  margin-bottom: 48px;
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .info-section__desc {
    max-width: 450px;
  }
}
@media (max-width: 767px) {
  .info-section__desc {
    margin-bottom: 32px;
    max-width: unset;
    font-size: 16px;
    line-height: 24px;
  }
}

.top-publication {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--white);
}

.top-publication__link {
  flex-grow: 1;
  display: flex;
}
.top-publication__link:hover .top-publication__title {
  color: var(--accent-hover);
}

.top-publication__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .top-publication__content {
    padding-left: 16px;
  }
}

.top-publication__picture {
  flex-shrink: 0;
  display: block;
  width: 108px;
  height: 108px;
}

.top-publication__picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-publication__title {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 18px;
  line-height: 22px;
  transition: var(--tr);
}

.top-publication__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.top-publication__date {
  font-size: 12px;
  line-height: 14px;
  opacity: 0.6;
}

.top-publication__views {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  opacity: 0.6;
}
.top-publication__views::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='12' viewBox='0 0 11 12' fill='none'%3E%3Cpath d='M0.458496 6.00004C0.458496 6.00004 2.29183 2.33337 5.50016 2.33337C8.7085 2.33337 10.5418 6.00004 10.5418 6.00004C10.5418 6.00004 8.7085 9.66671 5.50016 9.66671C2.29183 9.66671 0.458496 6.00004 0.458496 6.00004Z' stroke='%230F0F0F' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 7.375C6.25939 7.375 6.875 6.75939 6.875 6C6.875 5.24061 6.25939 4.625 5.5 4.625C4.74061 4.625 4.125 5.24061 4.125 6C4.125 6.75939 4.74061 7.375 5.5 7.375Z' stroke='%230F0F0F' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 11px;
  height: 12px;
  margin-right: 9px;
}

.top-publications {
  padding: 32px;
  background: var(--white);
  border-radius: 5px;
}
@media (max-width: 1023px) {
  .top-publications {
    margin-left: -24px;
    margin-right: -24px;
    padding: 24px;
  }
}

.top-publications__title {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
@media (max-width: 767px) {
  .top-publications__title {
    font-size: 20px;
    line-height: 28px;
  }
}

.top-publications__list {
  display: grid;
  gap: 32px 30px;
}
@media (max-width: 1023px) {
  .top-publications__list {
    grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
    row-gap: 38px;
  }
}
@media (max-width: 767px) {
  .top-publications__list {
    row-gap: 24px;
  }
}
@media (max-width: 374px) {
  .top-publications__list {
    grid-template-columns: 1fr;
  }
}

.top-publications__item {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(192, 191, 191, 0.3);
}
.top-publications__item:last-child {
  padding-bottom: 0;
  border: none;
}
@media (max-width: 1023px) {
  .top-publications__item {
    padding-bottom: 0;
    border: none;
  }
}

.news {
  margin-top: 74px;
  margin-bottom: 124px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .news {
    margin-top: 45px;
    margin-bottom: 72px;
  }
}
@media (max-width: 767px) {
  .news {
    margin-top: 20px;
  }
}

.news__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 42px 24px;
}
@media (max-width: 1023px) {
  .news__inner {
    grid-template-columns: 1fr;
  }
}

.news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: minmax(772px, auto);
  grid-auto-rows: minmax(268px, auto);
  gap: 24px;
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #fff;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.news__list::-webkit-scrollbar {
  height: 3px;
}
.news__list::-webkit-scrollbar-thumb {
  background: var(--accent);
  outline: 2px solid var(--accent);
}
.news__list::-webkit-scrollbar-track {
  background: #fff;
}
@media (max-width: 1023px) {
  .news__list {
    grid-auto-flow: column;
    grid-template-columns: unset;
    grid-auto-columns: calc(50% - 12px);
    grid-template-rows: minmax(545px, auto) minmax(268px, auto);
    grid-auto-rows: minmax(268px, auto);
    padding-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .news__list {
    grid-auto-columns: calc(50% - 10px);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .news__list {
    grid-auto-columns: 100%;
    grid-template-rows: minmax(329px, auto);
  }
}

.news-detail {
  margin-top: 45px;
}
@media (max-width: 991px) {
  .news-detail {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .news-detail {
    margin-top: 20px;
  }
}

.news-detail__back {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .news-detail__back {
    display: none;
  }
}

.news-detail__pciture {
  display: block;
  width: 100%;
  height: 556px;
}
@media (max-width: 991px) {
  .news-detail__pciture {
    height: 325px;
  }
}
@media (max-width: 767px) {
  .news-detail__pciture {
    height: 248px;
  }
}

.news-detail__pciture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1439px) {
  .news-detail__container {
    padding: 0;
  }
}

.news-detail__info {
  position: relative;
  margin-top: -56px;
  margin-bottom: 56px;
  padding: 32px;
  padding-right: 108px;
  background: var(--white);
}
@media (max-width: 991px) {
  .news-detail__info {
    margin-top: 0;
    margin-bottom: 48px;
    padding-right: 68px;
  }
}
@media (max-width: 767px) {
  .news-detail__info {
    padding: 24px;
    margin-bottom: 40px;
  }
}

.news-detail__mark {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.news-detail__mark::before {
  content: "";
  display: block;
  margin-right: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent-hover);
  border-radius: 50%;
  transition: background var(--tr);
}
.news-detail__mark:hover {
  color: var(--accent-active);
}
.news-detail__mark:hover::before {
  background: var(--accent-active);
}
@media (max-width: 767px) {
  .news-detail__mark {
    font-size: 11px;
  }
}

.news-detail__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
@media (max-width: 767px) {
  .news-detail__title {
    font-size: 30px;
    line-height: 38px;
  }
}

.news-detail__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 34px;
}
@media (max-width: 767px) {
  .news-detail__footer {
    margin-top: 30px;
  }
}

.news-detail__date {
  margin-right: 16px;
  font-size: 12px;
  line-height: 14px;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .news-detail__date {
    margin-top: 14px;
  }
}

.news-detail__views {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  opacity: 0.6;
}
.news-detail__views::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='12' viewBox='0 0 11 12' fill='none'%3E%3Cpath d='M0.458496 6.00004C0.458496 6.00004 2.29183 2.33337 5.50016 2.33337C8.7085 2.33337 10.5418 6.00004 10.5418 6.00004C10.5418 6.00004 8.7085 9.66671 5.50016 9.66671C2.29183 9.66671 0.458496 6.00004 0.458496 6.00004Z' stroke='%230F0F0F' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 7.375C6.25939 7.375 6.875 6.75939 6.875 6C6.875 5.24061 6.25939 4.625 5.5 4.625C4.74061 4.625 4.125 5.24061 4.125 6C4.125 6.75939 4.74061 7.375 5.5 7.375Z' stroke='%230F0F0F' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 11px;
  height: 12px;
  margin-right: 9px;
}
@media (max-width: 767px) {
  .news-detail__views {
    margin-top: 14px;
  }
}

.news-detail__source {
  margin-right: 32px;
  color: var(--main);
  font-size: 12px;
  line-height: 14px;
}
@media (max-width: 767px) {
  .news-detail__source {
    width: 100%;
    font-size: 12px;
    line-height: 16px;
  }
}

.news-detail__source-link {
  color: var(--accent-hover);
}

.articles {
  margin-top: 74px;
  margin-bottom: 124px;
}
@media (max-width: 991px) {
  .articles {
    margin-top: 54px;
    margin-bottom: 72px;
  }
}
@media (max-width: 767px) {
  .articles {
    margin-top: 20px;
  }
}

.articles__btns-group {
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .articles__btns-group {
    margin-bottom: 24px;
  }
}

.articles__list {
  display: grid;
  gap: 40px;
}
@media (max-width: 991px) {
  .articles__list {
    gap: 24px;
  }
}

.article-detail {
  margin-top: 45px;
}
@media (max-width: 991px) {
  .article-detail {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .article-detail {
    margin-top: 20px;
  }
}

.article-detail__back {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .article-detail__back {
    display: none;
  }
}

.article-detail__mark {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-detail__mark::before {
  content: "";
  display: block;
  margin-right: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent-hover);
  border-radius: 50%;
  transition: background var(--tr);
}
.article-detail__mark:hover {
  color: var(--accent-active);
}
.article-detail__mark:hover::before {
  background: var(--accent-active);
}
@media (max-width: 767px) {
  .article-detail__mark {
    font-size: 11px;
  }
}

.article-detail__title {
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
@media (max-width: 991px) {
  .article-detail__title {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .article-detail__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 38px;
  }
}

.article-detail__picture {
  display: block;
  width: 100%;
  height: 530px;
}
@media (max-width: 767px) {
  .article-detail__picture {
    height: 318px;
  }
}

.article-detail__picture-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail {
  padding-top: 64px;
  background-image: linear-gradient(to bottom, var(--accent), var(--accent) 78%, var(--bg-block) 78%, var(--bg-block));
}
@media (max-width: 991px) {
  .case-detail {
    padding-top: 52px;
    background-image: linear-gradient(to bottom, var(--accent), var(--accent) 62%, var(--bg-block) 62%, var(--bg-block));
  }
}
@media (max-width: 767px) {
  .case-detail {
    padding-top: 20px;
    background-image: linear-gradient(to bottom, var(--accent), var(--accent) 78%, var(--bg-block) 78%, var(--bg-block));
  }
}

.case-detail__back {
  color: var(--white);
  margin-bottom: 40px;
}
.case-detail__back svg {
  fill: var(--white);
}
@media (max-width: 991px) {
  .case-detail__back {
    display: none;
  }
}

.case-detail__mark {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-detail__mark::before {
  content: "";
  display: block;
  margin-right: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent-hover);
  border-radius: 50%;
  transition: background var(--tr);
}
.case-detail__mark:hover {
  color: var(--accent-active);
}
.case-detail__mark:hover::before {
  background: var(--accent-active);
}
@media (max-width: 767px) {
  .case-detail__mark {
    font-size: 11px;
  }
}

.case-detail__title {
  margin-bottom: 40px;
  color: var(--white);
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
}
@media (max-width: 991px) {
  .case-detail__title {
    margin-bottom: 48px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .case-detail__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 38px;
  }
}

.case-detail__pciture {
  display: block;
  width: 100%;
}

.case-detail__pciture-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-result__all-results {
  color: var(--accent);
  line-height: 24px;
}
@media (max-width: 767px) {
  .search-result__all-results {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.search-result__info {
  font-family: "Montserrat", sans-serif;
  color: var(--accent);
  line-height: 24px;
}
@media (max-width: 991px) {
  .search-result__info {
    font-size: 14px;
  }
}

.search-result__item {
  padding-top: 36px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--gray-medium);
}
@media (max-width: 991px) {
  .search-result__item {
    padding-top: 24px;
    padding-bottom: 18px;
  }
}
@media (max-width: 767px) {
  .search-result__item {
    padding-top: 29px;
  }
}

.search-result__snippet {
  margin-bottom: 16px;
  padding-right: 102px;
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 1023px) {
  .search-result__snippet {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .search-result__snippet {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 22px;
  }
}

.search-result__mark {
  color: var(--accent-hover);
  background: none;
}

.search-result__link {
  line-height: 24px;
}
.search-result__link:hover {
  color: var(--accent-hover);
}
.search-result__link:active {
  color: var(--accent-active);
}
@media (max-width: 767px) {
  .search-result__link {
    font-size: 14px;
  }
}

.search-result__pagination {
  margin-top: 41px;
}

.search {
  margin-top: 74px;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .search {
    margin-top: 54px;
  }
}
@media (max-width: 767px) {
  .search {
    margin-top: 20px;
  }
}

.search__form {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .search__form {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .search__pagination {
    display: none;
  }
}

.search__show-more {
  display: none;
}
@media (max-width: 767px) {
  .search__show-more {
    display: flex;
    margin-top: 40px;
    width: 100%;
  }
}

.requisites {
  display: grid;
  grid-template-columns: repeat(2, 33%);
  gap: 40px 56px;
}
@media (max-width: 1023px) {
  .requisites {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.requisites__item:first-child .requisites__title {
  margin-bottom: 15px;
  transform: translateY(-2px);
  font-size: 16px;
  line-height: 24px;
}

.requisites__title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}
@media (max-width: 991px) {
  .requisites__title {
    margin-bottom: 8px;
  }
}

.requisites__text {
  font-size: 16px;
  line-height: 24px;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 991px) {
  .partner-list {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .partner-list {
    gap: 16px;
  }
}
@media (max-width: 374px) {
  .partner-list {
    grid-template-columns: 1fr;
  }
}

.partner-list__card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px;
  min-height: 151px;
  background: var(--white);
}
@media (min-width: 1024px) {
  .partner-list__card:hover {
    transform: scale(1.1);
  }
}
.partner-list__card img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .partner-list__card {
    padding: 16px;
  }
}

.info-partners {
  padding-top: 52px;
  margin-top: 124px;
  margin-bottom: 124px;
}
@media (max-width: 1023px) {
  .info-partners {
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .info-partners {
    margin: 72px 0;
  }
}
@media (max-width: 767px) {
  .info-partners {
    margin: 64px 0;
  }
}

.info-partners__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 412px;
  align-items: end;
}
@media (max-width: 1023px) {
  .info-partners__inner {
    display: block;
  }
}

.info-partners__left {
  padding: 80px 32px;
  color: var(--white);
  background: var(--accent);
}
@media (max-width: 1439px) {
  .info-partners__left {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .info-partners__left {
    padding: 24px;
  }
}

.info-partners__title {
  margin-bottom: 48px;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
@media (max-width: 1023px) {
  .info-partners__title {
    margin-bottom: 32px;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .info-partners__title {
    margin-bottom: 29px;
    max-width: unset;
    font-size: 30px;
    line-height: 38px;
  }
}

.info-partners__desc {
  max-width: 740px;
  margin-bottom: 48px;
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .info-partners__desc {
    margin-bottom: 32px;
    max-width: 410px;
  }
}
@media (max-width: 767px) {
  .info-partners__desc {
    max-width: unset;
    font-size: 16px;
    line-height: 24px;
  }
}

.info-partners__right {
  position: relative;
  height: 100%;
  background: var(--white);
}
@media (max-width: 1023px) {
  .info-partners__right {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 33%;
    height: 0;
    background: none;
  }
}
@media (max-width: 767px) {
  .info-partners__right {
    display: none;
  }
}

.info-partners__picture {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
}

.info-partners-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners {
  margin-top: 76px;
  margin-bottom: 124px;
}
@media (max-width: 991px) {
  .partners {
    margin-top: 56px;
    margin-bottom: 72px;
  }
}
@media (max-width: 767px) {
  .partners {
    margin-top: 20px;
    margin-bottom: 64px;
  }
}

.partners__title {
  margin-bottom: 48px;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
@media (max-width: 767px) {
  .partners__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 38px;
  }
}

.partners__desc {
  max-width: 1064px;
}
.partners__desc p + p {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .partners__desc {
    font-size: 14px;
    line-height: 24px;
  }
}
.partners__desc iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.partners__desc iframe:not(:first-child) {
  margin-top: 24px;
}

.partners__list {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .partners__list {
    margin-top: 24px;
  }
}

.not-found {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  min-height: 100%;
}

.not-found__container {
  padding: 47px 75px 40px 49px;
  max-width: 650px;
  background: var(--white);
}
@media (max-width: 767px) {
  .not-found__container {
    padding: 24px;
  }
}

.not-found__status {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 14px;
}

.not-found__title {
  margin-bottom: 33px;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
}
@media (max-width: 767px) {
  .not-found__title {
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 38px;
  }
}

.not-found__desc {
  margin-bottom: 32px;
  color: #858585;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .not-found__desc {
    margin-bottom: 32px;
    font-size: 14px;
  }
}

.not-found__back {
  padding-top: 13px;
  padding-bottom: 13px;
  min-width: 163px;
}

@media (max-width: 767px) {
  .space-special-mb {
    margin: 64px 0;
  }
}

.swiper {
  position: relative;
  width: 100%;
}

.swiper-container {
  width: 100%;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  position: relative;
  display: flex;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 39px;
  height: 39px;
  background: var(--accent-hover);
  border-radius: 50%;
}
.swiper-button-prev:active,
.swiper-button-next:active {
  background: var(--accent);
}
@media (min-width: 1024px) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: var(--accent);
  }
}
.swiper-button-prev svg,
.swiper-button-next svg {
  fill: var(--white);
}

.swiper-button-disabled {
  background: var(--accent-disabled);
  cursor: auto;
}
.swiper-button-disabled:hover {
  background: var(--accent-disabled);
}

.swiper-scrollbar {
  margin-top: 32px;
  height: 3px;
  background: var(--white);
}
@media (max-width: 991px) {
  .swiper-scrollbar {
    margin-top: 24px;
  }
}

.swiper-scrollbar-drag {
  position: relative;
  top: -2px;
  background: var(--accent);
  height: 7px;
  cursor: pointer;
}

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