@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

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

body {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  color: #2d3241;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.accent-red {
  color: #d9291b;
}

.accent-blue {
  color: #3178df;
}

.btn-red {
  display: inline-block;
  padding: 2px 10px;
  background: #d9291b;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .btn-red {
    font-size: 16px;
  }
}
.btn-red:hover {
  background: #a80c00;
}

.btn-border {
  display: inline-block;
  padding: 2px 10px;
  background: transparent;
  border-radius: 5px;
  color: #d9291b;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #d9291b;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .btn-border {
    font-size: 16px;
  }
}
.btn-border:hover {
  color: #fff;
  background: #a80c00;
}

.form-input {
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 20px;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: #2d3241;
  outline: none;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (min-width: 1400px) {
  .form-input {
    height: 65px;
    font-size: 16px;
  }
}
.form-input::placeholder {
  color: #909090;
}
.form-input:not(:placeholder-shown) {
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.05);
}
.form-input:focus {
  border-color: #3178df;
}
.form-input.is-error {
  border-color: #d9291b;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background: #d9291b;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter Tight", sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
@media (min-width: 1400px) {
  .form-submit {
    height: 70px;
    font-size: 18px;
  }
}
.form-submit:hover {
  background: #a80c00;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-consent span {
  font-size: 12px;
  color: #909090;
  line-height: 1.3;
}
@media (min-width: 1400px) {
  .form-consent span {
    font-size: 14px;
  }
}
.form-consent span a {
  color: #3178df;
}

.form-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-checkbox + .form-checkmark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: 0.2s;
}
.form-checkbox + .form-checkmark svg {
  opacity: 0;
  transition: opacity 0.2s;
  width: 11px;
  height: 7px;
}
.form-checkbox:checked + .form-checkmark svg {
  opacity: 1;
}

.breadcrumbs {
  font-size: 14px;
  line-height: 1.3;
  color: #909090;
  margin-bottom: 11px;
}
@media (min-width: 992px) {
  .breadcrumbs {
    margin-bottom: 18px;
  }
}
@media (min-width: 1400px) {
  .breadcrumbs {
    font-size: 16px;
  }
}
.breadcrumbs a {
  color: #909090;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: #3178df;
}

.page-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #2d3241;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .page-title {
    font-size: 34px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1400px) {
  .page-title {
    font-size: 44px;
    margin-bottom: 14px;
  }
}

.base-page {
  padding: 0 15px;
  margin-top: 15px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .base-page {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 25px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .base-page {
    margin-bottom: 110px;
  }
}
.base-page__body {
  /*max-width: 920px;*/
  margin-top: 20px;
}
@media (min-width: 992px) {
  .base-page__body {
    margin-top: 30px;
  }
}
@media (min-width: 1400px) {
  .base-page__body {
    /*max-width: 1040px;*/
    margin-top: 40px;
  }
}
.base-page__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #909090;
  max-width: 920px;
  margin: 0;
}
@media (min-width: 992px) {
  .base-page__lead {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .base-page__lead {
    font-size: 22px;
    max-width: 1040px;
  }
}

.form-group.hidden {
  display: none;
}

span.error_checkbox.error {
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
  margin-top: -12px;
  padding-left: 30px;
}

@media (min-width: 992px) {
  header.header.catalog-active {
    position: relative;
    z-index: 122;
  }
}
.header {
  z-index: 100;
  background: #fff;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .header {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.header__row {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  border-bottom: 1px solid #d8d8d8;
}
@media (min-width: 992px) {
  .header__row {
    display: none;
  }
}
.header__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__icon {
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.header__icon img {
  height: 20px;
  width: auto;
}
.header__badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  background: #d9291b;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 3px;
}
@media (min-width: 992px) {
  .header__badge {
    min-width: 12px;
    height: 12px;
    font-size: 10px;
    top: 8px;
    right: auto;
    left: 10px;
  }
}
@media (min-width: 1400px) {
  .header__badge {
    min-width: 16px;
    height: 16px;
    font-size: 12px;
    top: 10px;
    right: auto;
    left: 12px;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__catalog {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border-radius: 5px;
  padding: 8px 14px;
  height: 35px;
  font-size: 14px;
  font-weight: 700;
  color: #3178df;
}
.header__catalog img {
  width: 14px;
  height: 14px;
}
.header__burger {
  width: 35px;
  height: 35px;
  background: #3178df;
  border: none;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.header__burger span {
  display: block;
  width: 18px;
  height: 3px;
  background: #fff;
  border-radius: 1.5px;
}
.header__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 0 19px;
}
@media (min-width: 992px) {
  .header__info {
    display: none;
  }
}
.header__logo {
  display: block;
  flex-shrink: 0;
}
.header__logo img {
  width: 161px;
  height: auto;
}
@media (min-width: 992px) {
  .header__logo img {
    width: 180px;
  }
}
@media (min-width: 1400px) {
  .header__logo img {
    width: 243px;
  }
}
.header__phone {
  text-align: right;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .header__phone {
    text-align: left;
  }
}
.header__phone-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #2d3241;
  line-height: 1.3;
}
@media (min-width: 1400px) {
  .header__phone-number {
    font-size: 22px;
  }
}
.header__phone-text {
  display: block;
  font-size: 14px;
  color: #909090;
  line-height: 1.3;
  margin-top: 2px;
}
@media (min-width: 1400px) {
  .header__phone-text {
    font-size: 16px;
  }
}
.header__desktop {
  display: none;
}
@media (min-width: 992px) {
  .header__desktop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 8px;
    padding-bottom: 18px;
  }
}
@media (min-width: 1400px) {
  .header__desktop {
    gap: 25px;
    padding-bottom: 25px;
  }
}
@media (min-width: 992px) {
  .header__logo-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
}
@media (min-width: 1400px) {
  .header__logo-wrap {
    gap: 25px;
  }
}
.header__desc {
  font-size: 12px;
  color: #909090;
  line-height: 1.2;
  max-width: 148px;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .header__desc {
    font-size: 15px;
    max-width: 200px;
  }
}
.header__search {
  position: relative;
  flex: 1;
  max-width: 267px;
}
@media (min-width: 1400px) {
  .header__search {
    max-width: 360px;
  }
}
.header__search input {
  width: 100%;
  height: 45px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 0 40px 0 15px;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: #2d3241;
  outline: none;
  background: #fff;
}
@media (min-width: 1400px) {
  .header__search input {
    height: 60px;
    font-size: 16px;
  }
}
.header__search input::placeholder {
  color: #909090;
}
.header__search input:focus {
  border-color: #3178df;
}
.header__search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  background: none;
  border: 0;
  padding: 0;
}
@media (min-width: 1400px) {
  .header__search-icon {
    width: 20px;
    height: 20px;
  }
  .header__search-icon svg {
    width: 20px;
    height: 20px;
  }
}
.header__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (min-width: 1400px) {
  .header__contacts {
    gap: 20px;
  }
}
.header__socials {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.header__socials a {
  display: block;
  width: 35px;
  height: 35px;
  opacity: 1;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .header__socials a {
    width: 50px;
    height: 50px;
  }
}
.header__socials a:hover {
  opacity: 0.8;
}
.header__socials a img {
  width: 100%;
  height: 100%;
}
.header__callback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 45px;
  background: #d9291b;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: 0.3s;
  margin-left: 32px;
}
@media (min-width: 1400px) {
  .header__callback {
    width: 200px;
    height: 60px;
    font-size: 16px;
    margin-left: 67px;
  }
}
.header__callback:hover {
  background: #a80c00;
}
.header__nav {
  display: none;
}
@media (min-width: 992px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 19px;
  }
}
@media (min-width: 1400px) {
  .header__nav {
    gap: 35px;
    margin-bottom: 28px;
  }
}
.header__nav-catalog {
  color: #3178df;
  height: 36px;
  width: 126px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #eff6ff;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .header__nav-catalog {
    height: 48px;
    width: 170px;
    gap: 12px;
    font-size: 18px;
  }
}
.header__nav-catalog:hover {
  background: #3178df;
  color: #fff;
}
.header__nav-catalog:hover svg rect {
  fill: #fff;
}
.header__nav-catalog svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .header__nav-catalog svg {
    width: 18px;
    height: 18px;
  }
}
.header__nav-catalog svg rect {
  transition: 0.5s;
}
.header__nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
@media (min-width: 1400px) {
  .header__nav-right {
    gap: 24px;
  }
}
.header__nav-city {
  font-size: 14px;
  font-weight: 400;
  color: #2d3241;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .header__nav-city {
    font-size: 18px;
    margin-right: 25px;
    gap: 13px;
  }
}
.header__nav-city:hover {
  color: #909090;
}
.header__nav-city svg {
  flex-shrink: 0;
  width: 15px;
  height: 18px;
}
@media (min-width: 1400px) {
  .header__nav-city svg {
    width: 19px;
    height: auto;
  }
}
.header__nav-icon {
  display: flex;
  align-items: center;
  position: relative;
  transition: opacity 0.2s;
}
.header__nav-icon:hover {
  opacity: 0.7;
}
.header__nav-icon img {
  height: 18px;
  width: auto;
}
@media (min-width: 1400px) {
  .header__nav-icon img {
    height: 22px;
  }
}
.header__nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #2d3241;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .header__nav-cart {
    font-size: 18px;
    gap: 13px;
  }
}
.header__nav-cart:hover {
  color: #909090;
}
.header__nav-cart img {
  height: 18px;
  width: auto;
}
@media (min-width: 1400px) {
  .header__nav-cart img {
    height: 22px;
  }
}

/* search result in form */
.pr-form__item {
  padding: 5px 0;
  display: flex;
}

.pr-form__img {
  width: 70px;
}

.pr-form__info {
  width: calc(100% - 70px);
}

.pr-form__title {
  font-size: 14px;
  color: #1c1b17;
  margin-bottom: 4px;
}

@media (min-width: 992px) {
  .pr-form__title {
    font-size: 16px;
  }
}
.pr-form__prices {
  margin-bottom: 0;
  position: relative;
}

.pr-form__prices p {
  margin-top: 0;
  margin-bottom: 0;
}

.pr-form__current-price {
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  color: #1c1b17;
}

@media (min-width: 1199px) {
  .pr-form__current-price {
    font-size: 16px;
  }
}
.pr-form__old-price {
  font-size: 11px;
  line-height: 150%;
  color: #8b8b8b;
  position: relative;
  display: inline-block;
}

.pr-form__old-price::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #dc413b;
  top: 9px;
  left: 0;
  position: absolute;
}

@media (min-width: 1199px) {
  .pr-form__old-price {
    font-size: 12px;
  }
}
.pr-form__acticle {
  font-size: 12px;
  line-height: 130%;
  color: #8b8b8b;
  position: absolute;
  bottom: 17px;
  right: 30px;
}

.ui-menu .ui-menu-item-wrapper.ui-state-active {
  border: 1px solid #f4f4f4;
  background: #f4f4f4;
}

.ui-widget.ui-widget-content {
  border: 1px solid #e9e5e5 !important;
  padding: 1px;
  box-sizing: border-box;
}

.nav__item.is-open .nav__link svg {
  transform: rotate(180deg);
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #2d3241;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.nav__link:hover {
  color: #909090;
}
.nav__sub-link {
  display: block;
  color: #2d3241;
  transition: background 0.15s, color 0.15s;
}

.header__nav .nav {
  display: contents;
}
.header__nav .nav__item {
  position: relative;
}
.header__nav .nav__item > .nav__link svg {
  width: 8px;
  height: auto;
  margin-top: 2px;
}
@media (min-width: 1400px) {
  .header__nav .nav__item > .nav__link svg {
    width: 12px;
  }
}
.header__nav .nav__item:hover > .nav__link {
  color: #909090;
}
.header__nav .nav__item:hover > .nav__link svg {
  transform: rotate(180deg);
}
.header__nav .nav__item:hover > .nav__link svg path {
  stroke: #909090;
}
.header__nav .nav__item:hover .nav__sub {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
.header__nav .nav__link {
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 1400px) {
  .header__nav .nav__link {
    font-size: 18px;
  }
}
.header__nav .nav__link:active, .header__nav .nav__link.active {
  color: #d9291b;
}
.header__nav .nav__sub {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: opacity 0s, visibility 0s;
}
.header__nav .nav__sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
}
.header__nav .nav__sub-link {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  white-space: nowrap;
  background: #fff;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}
@media (min-width: 1400px) {
  .header__nav .nav__sub-link {
    font-size: 16px;
  }
}
.header__nav .nav__sub-link:first-child {
  border-top: 1px solid #d8d8d8;
  border-radius: 5px 5px 0 0;
  padding-top: 14px;
}
.header__nav .nav__sub-link:last-child {
  border-bottom: 1px solid #d8d8d8;
  border-radius: 0 0 5px 5px;
  padding-bottom: 14px;
}
.header__nav .nav__sub-link:hover {
  background: #eff6ff;
  color: #3178df;
}

.mob-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}
.mob-menu__nav .nav__item {
  display: flex;
  flex-direction: column;
}
.mob-menu__nav .nav__link {
  font-size: 18px;
  font-weight: 700;
  gap: 8px;
}
.mob-menu__nav .nav__link svg {
  margin-top: 2px;
}
.mob-menu__nav .nav__sub {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 14px 0 0 16px;
}
.mob-menu__nav .nav__sub-link {
  font-size: 15px;
  font-weight: 400;
  color: #909090;
  padding-bottom: 4px;
}
.mob-menu__nav .nav__sub-link:hover {
  color: #3178df;
}

.catalog-menu {
  display: block;
  position: fixed;
  z-index: 120;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.35s;
}
.catalog-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}
.catalog-menu__close {
  width: 35px;
  height: 35px;
  background: #3178df;
  border: none;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 200;
}
.catalog-menu__close span {
  position: absolute;
  width: 15px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.catalog-menu__close span:first-child {
  transform: rotate(45deg);
}
.catalog-menu__close span:last-child {
  transform: rotate(-45deg);
}
.catalog-menu__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.catalog-menu.is-open .catalog-menu__overlay {
  opacity: 1;
}
.catalog-menu__panel {
  position: relative;
  z-index: 2;
  background: #fff;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 991px) {
  .catalog-menu {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .catalog-menu__panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 297px;
    max-width: 80%;
    max-height: 100vh;
    padding: 20px 0;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .catalog-menu.is-open .catalog-menu__panel {
    transform: translateX(0);
  }
  .catalog-menu__inner {
    display: block;
    padding: 40px 17px 0 17px;
    flex: 1;
    overflow-y: auto;
    position: relative;
  }
  .catalog-menu__categories {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .catalog-menu.is-sub-open .catalog-menu__categories {
    display: none;
  }
  .catalog-menu__cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 23px 0;
    border-bottom: 1px solid rgba(144, 144, 144, 0.2);
    background: transparent;
    color: #2d3241;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    border-radius: 0;
    min-height: 0;
  }
  .catalog-menu__cat:last-child {
    border-bottom: none;
  }
  .catalog-menu__cat-text {
    flex: 1;
  }
  .catalog-menu__cat-arrow {
    flex-shrink: 0;
    width: 6px;
    height: 12px;
    opacity: 0.2;
    transform: rotate(0deg);
  }
  .catalog-menu__cat-arrow path {
    stroke: #2d3241;
  }
  .catalog-menu__cat:hover, .catalog-menu__cat.is-active {
    background: transparent;
    color: #2d3241;
  }
  .catalog-menu__cat:hover .catalog-menu__cat-arrow, .catalog-menu__cat.is-active .catalog-menu__cat-arrow {
    transform: rotate(0deg);
  }
  .catalog-menu__cat:hover .catalog-menu__cat-arrow path, .catalog-menu__cat.is-active .catalog-menu__cat-arrow path {
    stroke: #2d3241;
  }
  .catalog-menu__content {
    display: none;
  }
  .catalog-menu.is-sub-open .catalog-menu__content.is-active {
    display: block;
    grid-template-columns: none;
  }
  .catalog-menu__back {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: none;
    padding: 6px 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: #909090;
    cursor: pointer;
    margin-bottom: 12px;
  }
  .catalog-menu__back svg {
    flex-shrink: 0;
    opacity: 0.4;
  }
  .catalog-menu__mobile-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: #3178df;
    margin-bottom: 28px;
  }
  .catalog-menu__center {
    display: block;
    margin-bottom: 50px;
  }
  .catalog-menu__brands {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
  }
  .catalog-menu__brand {
    font-size: 16px;
    line-height: 20.8px;
    padding: 5px 0;
    display: block;
  }
  .catalog-menu__purpose-list {
    margin-bottom: 0;
  }
  .catalog-menu__section-title {
    font-weight: bold;
    margin-bottom: 18px;
    font-size: 18px;
  }
  .catalog-menu__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #2d3241;
    transition: color 0.2s;
    align-self: flex-start;
    margin: 20px 0;
  }
  .catalog-menu__all:hover {
    color: #3178df;
  }
  .catalog-menu__banner {
    width: 200px;
  }
}
@media (min-width: 992px) {
  .catalog-menu {
    left: 0;
    right: 0;
    top: 121px;
    bottom: 0;
  }
  .catalog-menu__close {
    display: none;
  }
  .catalog-menu__panel {
    padding: 25px 0 35px;
    max-height: calc(100vh - 161px);
    transform: translateY(-100%);
  }
  .catalog-menu.is-open .catalog-menu__panel {
    transform: translateY(0);
  }
  .catalog-menu__inner {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    display: grid;
    grid-template-columns: 236px 1fr;
    gap: 25px;
    align-items: start;
  }
  .catalog-menu__content {
    display: none;
    grid-template-columns: 1fr 200px;
    gap: 25px;
    align-items: start;
  }
  .catalog-menu__content.is-active {
    display: grid;
  }
  .catalog-menu__back, .catalog-menu__mobile-title {
    display: none;
  }
  .catalog-menu__categories {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .catalog-menu__cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 66px;
    padding: 13px 22px;
    border-radius: 5px;
    background: #eff6ff;
    color: #2d3241;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    transition: background 0.2s, color 0.2s;
  }
  .catalog-menu__cat-text {
    flex: 1;
    min-width: 0;
  }
  .catalog-menu__cat-arrow {
    flex-shrink: 0;
    width: 6px;
    height: 12px;
    transition: stroke 0.2s, transform 0.2s;
  }
  .catalog-menu__cat-arrow path {
    stroke: #2d3241;
    transition: stroke 0.2s;
  }
  .catalog-menu__cat:hover, .catalog-menu__cat.is-active {
    background: #eff6ff;
    color: #3178df;
  }
  .catalog-menu__cat:hover .catalog-menu__cat-arrow, .catalog-menu__cat.is-active .catalog-menu__cat-arrow {
    transform: translateX(3px);
  }
  .catalog-menu__cat:hover .catalog-menu__cat-arrow path, .catalog-menu__cat.is-active .catalog-menu__cat-arrow path {
    stroke: #3178df;
  }
  .catalog-menu__center {
    display: flex;
    gap: 20px;
  }
  .catalog-menu__section-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #2d3241;
    margin-bottom: 15px;
  }
  .catalog-menu__wrap {
    max-width: calc(100% - 180px);
  }
  .catalog-menu__brands {
    display: flex;
    flex-direction: column;
    max-height: 353px;
    flex-wrap: wrap;
    gap: 5px 20px;
  }
  .catalog-menu__brand {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: #2d3241;
    padding: 3px 0;
    transition: color 0.2s;
  }
  .catalog-menu__brand:hover {
    color: #3178df;
  }
  .catalog-menu__purpose {
    display: flex;
    flex-direction: column;
    width: 150px;
  }
  .catalog-menu__purpose-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 30px;
  }
  .catalog-menu__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2d3241;
    transition: color 0.2s;
    align-self: flex-start;
  }
  .catalog-menu__all:hover {
    color: #3178df;
  }
}
@media (min-width: 1400px) {
  .catalog-menu {
    top: 161px;
  }
  .catalog-menu__panel {
    padding: 30px 0 45px;
  }
  .catalog-menu__inner {
    gap: 60px;
    grid-template-columns: 265px 1fr;
  }
  .catalog-menu__content {
    grid-template-columns: 1fr 200px;
    gap: 35px;
  }
  .catalog-menu__cat {
    font-size: 18px;
  }
  .catalog-menu__center {
    gap: 65px;
  }
  .catalog-menu__section-title {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .catalog-menu__brands {
    gap: 5px 65px;
  }
  .catalog-menu__brand {
    font-size: 16px;
    line-height: 20.8px;
  }
  .catalog-menu__all {
    font-size: 18px;
  }
  .catalog-menu__banner {
    padding: 0;
  }
  .catalog-menu__banner-text {
    font-size: 18px;
  }
  .catalog-menu__banner-btn {
    width: 64px;
    height: 64px;
    right: 20px;
    bottom: 20px;
  }
}

.header__nav-catalog-icon-close {
  display: none;
}

.header__nav-catalog.is-open {
  background: #3178df;
  color: #fff;
}
.header__nav-catalog.is-open .header__nav-catalog-icon-open {
  display: none;
}
.header__nav-catalog.is-open .header__nav-catalog-icon-close {
  display: block;
}

.header__catalog-icon-close {
  display: none;
}

.header__catalog.is-open {
  background: #3178df;
  color: #fff;
}
.header__catalog.is-open .header__catalog-icon-open {
  display: none;
}
.header__catalog.is-open .header__catalog-icon-close {
  display: block;
}

.catalog-menu__banner {
  background: #eff6ff;
  border-radius: 5px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.catalog-menu__banner-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin-bottom: 16px;
  padding: 30px 16px 0 16px;
}
.catalog-menu__banner-text span {
  color: #d9291b;
}
.catalog-menu__banner-image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.catalog-menu__banner-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.catalog-menu__banner-btn {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.catalog-menu__banner-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}
.catalog-menu__banner-btn svg path {
  stroke: #2d3241;
  transition: stroke 0.2s;
}
.catalog-menu__banner:hover .catalog-menu__banner-btn {
  background: #3178df;
}
.catalog-menu__banner:hover .catalog-menu__banner-btn svg {
  transform: translate(2px, -2px);
}
.catalog-menu__banner:hover .catalog-menu__banner-btn svg path {
  stroke: #fff;
}

.catalog-header {
  padding: 10px 0 28px;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .catalog-header {
    padding: 11px 0 44px;
  }
}
@media (min-width: 1400px) {
  .catalog-header {
    padding: 18px 0 33px;
  }
}
.catalog-header__inner {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .catalog-header__inner {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.catalog-header__subcats {
  overflow: visible !important;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .catalog-header__subcats {
    margin-bottom: 35px;
  }
}
@media (min-width: 1400px) {
  .catalog-header__subcats {
    margin-bottom: 45px;
  }
}
@media (min-width: 992px) {
  .catalog-header__subcats .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    transform: none !important;
  }
}
@media (min-width: 1400px) {
  .catalog-header__subcats .swiper-wrapper {
    gap: 14px;
  }
}
.catalog-header__subcats .swiper-slide {
  width: auto !important;
}
@media (min-width: 992px) {
  .catalog-header__subcats .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}
.catalog-header__subcat {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 65px;
  padding: 8px 14px 8px 0;
  background: #eff6ff;
  border-radius: 5px;
  color: #2d3241;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  white-space: normal;
  width: 219px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
@media (min-width: 992px) {
  .catalog-header__subcat {
    width: auto;
  }
}
@media (min-width: 1400px) {
  .catalog-header__subcat {
    height: 85px;
    padding: 10px 18px 10px 0;
    gap: 25px;
    font-size: 18px;
  }
}
.catalog-header__subcat:hover {
  background: #e5efff;
  color: #3178df;
}
.catalog-header__subcat-img {
  flex-shrink: 0;
  width: 45px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .catalog-header__subcat-img {
    width: 59px;
    height: 85px;
  }
}
.catalog-header__subcat-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.catalog-header__subcat-text {
  flex: 1;
  min-width: 0;
  max-width: 145px;
}
@media (min-width: 768px) {
  .catalog-header__subcat-text {
    max-width: 100%;
  }
}
.catalog-header__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .catalog-header__head {
    margin-bottom: 15px;
  }
}
@media (min-width: 1400px) {
  .catalog-header__head {
    gap: 10px 30px;
    margin-bottom: 23px;
  }
}
.catalog-header__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 992px) {
  .catalog-header__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .catalog-header__title {
    font-size: 44px;
  }
}
.catalog-header__count {
  font-size: 16px;
  line-height: 1.3;
  color: #909090;
}
@media (min-width: 992px) {
  .catalog-header__count {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .catalog-header__count {
    font-size: 22px;
  }
}
.catalog-header__desc {
  max-width: 1540px;
  font-size: 16px;
  line-height: 1.3;
  color: #2d3241;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .catalog-header__desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .catalog-header__desc {
    font-size: 18px;
    margin-bottom: 35px;
  }
}
.catalog-header__desc a {
  color: #d9291b;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s;
}
.catalog-header__desc a:hover {
  color: rgb(171.643442623, 32.4303278689, 21.356557377);
}
.catalog-header__tags {
  overflow: visible !important;
}
@media (min-width: 992px) {
  .catalog-header__tags .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    transform: none !important;
  }
}
@media (min-width: 1400px) {
  .catalog-header__tags .swiper-wrapper {
    gap: 10px;
  }
}
.catalog-header__tags .swiper-slide {
  width: auto !important;
}
@media (min-width: 992px) {
  .catalog-header__tags .swiper-slide {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .catalog-header__tags .swiper-slide.is-hidden {
    display: none;
  }
}
@media (max-width: 991px) {
  .catalog-header__tags .swiper-slide.is-hidden {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .catalog-header__tags .catalog-header__tag.is-extra {
    display: none;
  }
  .catalog-header__tags.is-expanded .catalog-header__tag.is-extra {
    display: inline-flex;
  }
  .catalog-header__tags.is-expanded .catalog-header__tag--more {
    display: none;
  }
}
.catalog-header__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 15px;
  background: #eff6ff;
  border-radius: 20px;
  color: #3178df;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
@media (min-width: 1400px) {
  .catalog-header__tag {
    height: 40px;
    padding: 0 18px;
    font-size: 18px;
  }
}
.catalog-header__tag:hover {
  background: #3178df;
  color: #fff;
}
.catalog-header__tag.is-active {
  background: #2d3241;
  color: #fff;
}
.catalog-header__tag.is-active:hover {
  background: #2d3241;
}
.catalog-header__tag--more {
  color: #d9291b;
}
.catalog-header__tag--more:hover {
  background: #d9291b;
  color: #fff;
}
@media (max-width: 991px) {
  .catalog-header__tag--more {
    display: none;
  }
}

.catalog-body {
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .catalog-body {
    padding-bottom: 92px;
  }
}
@media (min-width: 1400px) {
  .catalog-body {
    padding-bottom: 135px;
  }
}
.catalog-body__inner {
  padding: 0 15px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (min-width: 992px) {
  .catalog-body__inner {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1400px) {
  .catalog-body__inner {
    gap: 50px;
  }
}

.catalog-filter {
  width: 250px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .catalog-filter {
    display: none;
  }
}
.catalog-filter__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  margin-bottom: 29px;
}
@media (min-width: 1400px) {
  .catalog-filter__title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.catalog-filter__section {
  /*border-bottom: 1px solid rgba(144, 144, 144, 0.2);*/
  border-bottom: 0;
  padding: 0 0 30px 0;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 0;
}
.catalog-filter__section:first-of-type {
  padding-top: 0;
}
.catalog-filter__section:last-of-type {
  border-bottom: none;
}
@media (min-width: 1400px) {
  .catalog-filter__section {
    padding: 0 0 40px 0;
  }
}
.catalog-filter__section-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  margin: 0 0 15px;
}
@media (min-width: 1400px) {
  .catalog-filter__section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.catalog-filter__section--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.catalog-filter__section--inline .catalog-filter__section-title {
  margin-bottom: 0;
}
.catalog-filter__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.catalog-filter .js-filter-collapse .checkbox.is-hidden {
  display: none;
}
.catalog-filter__more {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.3;
  color: #3178df;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .catalog-filter__more {
    font-size: 16px;
  }
}
.catalog-filter__more:hover {
  color: rgb(29.7142857143, 95.6428571429, 191.2857142857);
}
.catalog-filter .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  margin: 0;
  position: relative;
}
.catalog-filter .checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #d7d7d7;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  margin: 0;
}
.catalog-filter .checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 11px;
  height: 7px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'><path d='M1 3L4.5 6L10 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
}
.catalog-filter .checkbox input[type=checkbox]:checked {
  background: #3178df;
  border-color: #3178df;
}
.catalog-filter .checkbox input[type=checkbox]:checked::after {
  opacity: 1;
}
.catalog-filter .checkbox:hover input[type=checkbox] {
  border-color: #3178df;
}
.catalog-filter .checkbox__text {
  font-size: 16px;
  line-height: 1.3;
  color: #2d3241;
}
.catalog-filter .checkbox.termo .checkbox__text {
  font-weight: 700;
  color: #3178df;
}
.catalog-filter__range {
  margin-top: 18px;
}
.catalog-filter__range-slider {
  margin: 12px 10px 26px;
}
.catalog-filter__range-inputs {
  display: flex;
  align-items: center;
  gap: 14px;
}
.catalog-filter__range-input {
  position: relative;
  flex: 1;
  min-width: 0;
}
.catalog-filter__range-input input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  background: #fff;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  color: #2d3241;
  outline: none;
  transition: border-color 0.2s;
}
.catalog-filter__range-input input::placeholder {
  color: #909090;
}
.catalog-filter__range-input input:focus {
  border-color: #3178df;
}
.catalog-filter__range-sep {
  flex-shrink: 0;
  color: #909090;
  font-size: 16px;
  line-height: 1;
}
.catalog-filter__toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  flex-shrink: 0;
}
.catalog-filter__toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.catalog-filter__toggle-slider {
  position: absolute;
  inset: 0;
  background: #e5e5e5;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
}
.catalog-filter__toggle-slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
input:checked + .catalog-filter__toggle-slider {
  background: #3178df;
}
input:checked + .catalog-filter__toggle-slider::before {
  transform: translateX(20px);
}
.catalog-filter__apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-top: 28px;
  background: #3178df;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.catalog-filter__apply:hover {
  background: rgb(31.0857142857, 100.0571428571, 200.1142857143);
}
.catalog-filter__clear {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px auto 0;
  background: transparent;
  border: none;
  padding: 6px 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #3178df;
  cursor: pointer;
  transition: color 0.2s;
  width: 100%;
  justify-content: center;
}
.catalog-filter__clear .catalog-filter__clear-icon {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 1px;
}
.catalog-filter__clear .catalog-filter__clear-icon rect {
  fill: #3178df;
  transition: color 0.2s;
}
.catalog-filter__clear:hover {
  color: rgb(29.7142857143, 95.6428571429, 191.2857142857);
}
.catalog-filter__clear:hover .catalog-filter__clear-icon rect {
  fill: rgb(29.7142857143, 95.6428571429, 191.2857142857);
}
.catalog-filter__banner {
  display: block;
  position: relative;
  margin-top: 30px;
  background: #eff6ff;
  border-radius: 5px;
  overflow: hidden;
  color: #2d3241;
  height: 130px;
  padding: 16px;
  display: flex;
  gap: 16px;
}
@media (min-width: 991px) {
  .catalog-filter__banner {
    display: block;
    min-height: 232px;
    height: auto;
  }
}
@media (min-width: 1400px) {
  .catalog-filter__banner {
    padding: 25px 22px;
    min-height: 291px;
  }
}
.catalog-filter__banner-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .catalog-filter__banner-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 31px;
  }
}
.catalog-filter__banner-icon img {
  width: 15px;
  height: auto;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .catalog-filter__banner-icon img {
    width: 20px;
  }
}
.catalog-filter__banner:hover .catalog-filter__banner-icon {
  transform: scale(1.1);
}
.catalog-filter__banner-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin-bottom: 9px;
  max-width: 224px;
  position: relative;
  z-index: 2;
}
@media (min-width: 991px) {
  .catalog-filter__banner-text {
    max-width: 196px;
    margin-bottom: 14px;
  }
}
@media (min-width: 1400px) {
  .catalog-filter__banner-text {
    font-size: 18px;
  }
}
.catalog-filter__banner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #d9291b;
  position: relative;
  z-index: 2;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .catalog-filter__banner-link {
    font-size: 18px;
  }
}
.catalog-filter__banner-link > span {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 3px;
}
.catalog-filter__banner-arrow {
  font-style: normal;
  text-decoration: none;
  display: inline-block;
}
.catalog-filter__banner:hover .catalog-filter__banner-link {
  color: rgb(171.643442623, 32.4303278689, 21.356557377);
}
.catalog-filter__banner-image {
  position: absolute;
  right: 0;
  top: 10px;
  height: auto;
  width: 68px;
  z-index: 1;
  pointer-events: none;
  bottom: 0;
}
@media (min-width: 991px) {
  .catalog-filter__banner-image {
    width: 62px;
    top: auto;
  }
}
@media (min-width: 1400px) {
  .catalog-filter__banner-image {
    width: 85px;
  }
}

.catalog-filter__range-slider.noUi-target {
  background: #e5e5e5;
  border: none;
  border-radius: 12px;
  box-shadow: none;
  height: 6px;
}

.catalog-filter__range-slider .noUi-connects {
  border-radius: 12px;
}

.catalog-filter__range-slider .noUi-connect {
  background: #3178df;
}

.catalog-filter__range-slider .noUi-handle {
  width: 20px;
  height: 20px;
  right: -10px;
  top: -7px;
  background: #3178df;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.15s;
}

.catalog-filter__range-slider .noUi-handle::before,
.catalog-filter__range-slider .noUi-handle::after {
  display: none;
}

.catalog-filter__range-slider .noUi-handle:hover,
.catalog-filter__range-slider .noUi-handle.noUi-active {
  transform: scale(1.1);
}

.catalog-filter__range-slider .noUi-handle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(49, 120, 223, 0.25);
}

.catalog-filter-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 50px;
  padding: 0 50px;
  background: #3178df;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background 0.2s;
}
.catalog-filter-trigger:hover {
  background: rgb(33.1428571429, 106.6785714286, 213.3571428571);
}
@media (min-width: 992px) {
  .catalog-filter-trigger {
    display: none;
  }
}
.catalog-filter-trigger__count {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 27px;
  height: 27px;
  padding: 0 6px;
  background: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9291b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.catalog-filter-trigger__icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-filter-trigger__icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.catalog-filter__close {
  display: none;
}

@media (max-width: 991px) {
  .catalog-filter {
    display: block;
    position: fixed;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
    inset: 0;
    width: auto;
    transition: visibility 0s linear 0.35s;
  }
  .catalog-filter.is-open {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s linear 0s;
  }
  .catalog-filter__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.35s ease;
    cursor: pointer;
  }
  .catalog-filter.is-open .catalog-filter__overlay {
    opacity: 1;
  }
  .catalog-filter__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 360px;
    max-width: 90%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .catalog-filter.is-open .catalog-filter__panel {
    transform: translateX(0);
  }
  .catalog-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    flex-shrink: 0;
  }
  .catalog-filter__title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3241;
    margin-bottom: 0;
  }
  .catalog-filter__close {
    width: 35px;
    height: 35px;
    background: #3178df;
    border: none;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  .catalog-filter__close span {
    position: absolute;
    width: 15px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
  }
  .catalog-filter__close span:first-child {
    transform: rotate(45deg);
  }
  .catalog-filter__close span:last-child {
    transform: rotate(-45deg);
  }
  .catalog-filter__body {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    padding: 0 20px 20px;
    -webkit-overflow-scrolling: touch;
  }
  .catalog-filter__footer {
    flex-shrink: 0;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(144, 144, 144, 0.15);
    background: #fff;
  }
  .catalog-filter__footer .catalog-filter__apply {
    margin-top: 0;
    height: 50px;
  }
  .catalog-filter__footer .catalog-filter__clear {
    margin-top: 12px;
  }
  .catalog-filter__banner {
    display: none;
  }
  body.no-scroll {
    overflow: hidden;
  }
}
.catalog-filter-banner-mobile {
  display: none;
}
@media (max-width: 991px) {
  .catalog-filter-banner-mobile {
    display: flex;
    margin-top: 66px;
  }
}

.catalog-filter-banner-desktop {
  display: block;
}
@media (max-width: 991px) {
  .catalog-filter-banner-desktop {
    display: none;
  }
}

.catalog-products {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.catalog-products__active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .catalog-products__active-filters {
    margin-bottom: 30px;
  }
}
.catalog-products__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  height: 35px;
  background: #f3f3f3;
  border-radius: 20px;
  color: #2d3241;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border: none;
  cursor: pointer;
  font-family: "Inter Tight", sans-serif;
  transition: background 0.2s, color 0.2s;
}
@media (min-width: 1400px) {
  .catalog-products__chip {
    font-size: 16px;
    padding: 11px 16px;
    height: 40px;
  }
}
.catalog-products__chip svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s;
  position: relative;
  top: 1px;
}
.catalog-products__chip:hover {
  background: #3178df;
  color: #fff;
}
.catalog-products__chip:hover svg path {
  stroke: #fff;
}
.catalog-products__chip--clear {
  color: #d9291b;
}
.catalog-products__chip--clear:hover {
  background: #d9291b;
  color: #fff;
}
.catalog-products__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .catalog-products__grid {
    gap: 16px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1400px) {
  .catalog-products__grid {
    gap: 20px;
    margin-bottom: 50px;
  }
}
.catalog-products__grid > .product-card {
  flex: 0 0 calc((100% - 14px) / 2);
  max-width: calc((100% - 14px) / 2);
}
@media (min-width: 992px) {
  .catalog-products__grid > .product-card {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}
@media (min-width: 1400px) {
  .catalog-products__grid > .product-card {
    flex: 0 0 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
  }
}
.catalog-products__grid > .product-card:nth-child(n+3) {
  display: flex;
}
.catalog-products__banner {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #eff6ff;
  border-radius: 5px;
  color: #2d3241;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .catalog-products__banner {
    gap: 30px;
    padding: 30px 35px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1400px) {
  .catalog-products__banner {
    gap: 50px;
    padding: 40px 50px;
    margin-bottom: 50px;
  }
}
.catalog-products__banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.catalog-products__grid .catalog-products__banner {
  margin-bottom: 0;
}
.catalog-products__banner-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .catalog-products__banner-icon {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 1400px) {
  .catalog-products__banner-icon {
    width: 80px;
    height: 80px;
  }
}
.catalog-products__banner-icon svg {
  width: 22px;
  height: 22px;
  color: #3178df;
}
.catalog-products__banner-content {
  flex: 1;
  min-width: 0;
}
.catalog-products__banner-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .catalog-products__banner-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
@media (min-width: 1400px) {
  .catalog-products__banner-title {
    font-size: 24px;
  }
}
.catalog-products__banner-text {
  font-size: 14px;
  line-height: 1.4;
  color: #2d3241;
}
@media (min-width: 992px) {
  .catalog-products__banner-text {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .catalog-products__banner-text {
    font-size: 18px;
  }
}
.catalog-products__banner-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.3s, transform 0.3s;
}
@media (min-width: 1400px) {
  .catalog-products__banner-link {
    width: 64px;
    height: 64px;
  }
}
.catalog-products__banner-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}
.catalog-products__banner-link svg path {
  stroke: #2d3241;
  transition: stroke 0.2s;
}
.catalog-products__banner:hover .catalog-products__banner-link {
  background: #3178df;
}
.catalog-products__banner:hover .catalog-products__banner-link svg {
  transform: translate(2px, -2px);
}
.catalog-products__banner:hover .catalog-products__banner-link svg path {
  stroke: #fff;
}
.catalog-products__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media (min-width: 992px) {
  .catalog-products__pagination {
    justify-content: flex-end;
    gap: 6px;
  }
}
.catalog-products__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 37px;
  height: 37px;
  padding: 0 8px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #909090;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.catalog-products__page:hover {
  color: #3178df;
}
.catalog-products__page.is-active {
  background: #f3f4f5;
  color: #2d3241;
  cursor: default;
}
.catalog-products__page.is-active:hover {
  color: #2d3241;
}
.catalog-products__page--arrow svg {
  width: 12px;
  height: 12px;
}
.catalog-products__page--arrow svg path {
  stroke: #909090;
  transition: stroke 0.2s;
}
.catalog-products__page--arrow:hover svg path {
  stroke: #2d3241;
}
.catalog-products__page--dots {
  cursor: default;
  padding: 0 4px;
  min-width: auto;
}
.catalog-products__page--dots:hover {
  color: #2d3241;
}

.catalog-products__banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 16px;
  padding: 22px 20px;
  background: #eff6ff;
  border-radius: 5px;
  color: #2d3241;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .catalog-products__banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
    padding: 0 30px 0 0;
    min-height: 100px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1400px) {
  .catalog-products__banner {
    padding-right: 40px;
    margin-bottom: 50px;
    min-height: 120px;
  }
}
.catalog-products__grid .catalog-products__banner {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0;
}
.catalog-products__banner:hover {
  transform: none;
  box-shadow: none;
}
.catalog-products__banner-ribbon {
  display: none;
}
@media (min-width: 992px) {
  .catalog-products__banner-ribbon {
    display: block;
    flex-shrink: 0;
    width: 163px;
    height: 100px;
    pointer-events: none;
  }
  .catalog-products__banner-ribbon img {
    display: block;
  }
}
@media (min-width: 1400px) {
  .catalog-products__banner-ribbon {
    width: 196px;
    height: 120px;
  }
}
.catalog-products__banner-text {
  flex: 1;
  min-width: 0;
  color: #2d3241;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
}
@media (min-width: 992px) {
  .catalog-products__banner-text {
    font-size: 22px;
    text-align: left;
    max-width: 605px;
  }
}
@media (min-width: 1400px) {
  .catalog-products__banner-text {
    font-size: 30px;
  }
}
.catalog-products__banner-text > span {
  display: block;
  color: #3178df;
}
.catalog-products__banner-text .accent {
  color: #d9291b;
}
.catalog-products__banner .form-submit {
  width: 100%;
  max-width: 280px;
  height: 50px;
  font-size: 15px;
  padding: 0 20px;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .catalog-products__banner .form-submit {
    width: auto;
    max-width: none;
    height: 50px;
    font-size: 16px;
    padding: 0 28px;
    white-space: nowrap;
    max-width: 100%;
    width: 194px;
  }
}
@media (min-width: 1400px) {
  .catalog-products__banner .form-submit {
    height: 60px;
    font-size: 18px;
    padding: 0 35px;
    width: 264px;
  }
}

.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.35s;
}
.mob-menu.is-active {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s;
}
.mob-menu.is-active .mob-menu__overlay {
  opacity: 1;
}
.mob-menu.is-active .mob-menu__panel {
  transform: translateX(0);
}
.mob-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mob-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 297px;
  max-width: 80%;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 19px 15px 30px;
}
.mob-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}
.mob-menu__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #2d3241;
}
.mob-menu__location svg {
  flex-shrink: 0;
}
.mob-menu__close {
  width: 35px;
  height: 35px;
  background: #3178df;
  border: none;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mob-menu__close span {
  position: absolute;
  width: 15px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.mob-menu__close span:first-child {
  transform: rotate(45deg);
}
.mob-menu__close span:last-child {
  transform: rotate(-45deg);
}
.mob-menu__search {
  position: relative;
  margin-top: 40px;
  margin-bottom: 25px;
}
.mob-menu__search-input {
  width: 100%;
  height: 45px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 0 40px 0 15px;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: #2d3241;
  outline: none;
  background: #fff;
}
.mob-menu__search-input::placeholder {
  color: #909090;
}
.mob-menu__search-input:focus {
  border-color: #3178df;
}
.mob-menu__search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.mob-menu__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mob-menu__phone-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.mob-menu__phone-info {
  display: flex;
  flex-direction: column;
}
.mob-menu__phone {
  font-size: 18px;
  font-weight: 700;
  color: #2d3241;
  line-height: 1.3;
}
.mob-menu__phone-text {
  font-size: 14px;
  color: #909090;
  line-height: 1.3;
  margin-top: 2px;
}
.mob-menu__socials {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.mob-menu__social {
  display: block;
  width: 35px;
  height: 35px;
}
.mob-menu__social img {
  width: 100%;
  height: 100%;
}
.mob-menu__callback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 45px;
  background: #d9291b;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.3s;
}
.mob-menu__callback:hover {
  background: #b52216;
}

@media (min-width: 992px) {
  .main-hero {
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@keyframes hero-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .hero {
    flex: 1;
    min-width: 0;
  }
}
.hero__swiper {
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .hero .swiper-slide {
    position: relative;
    background: #eff6ff;
    border-radius: 5px;
    min-height: 467px;
  }
}
@media (min-width: 1400px) {
  .hero .swiper-slide {
    min-height: 630px;
  }
}
.hero__pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0 22px;
  position: absolute;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero__pagination {
    bottom: 15px;
    left: 0;
    right: 0;
  }
}
.hero__pagination .swiper-pagination-bullet {
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 992px) {
  .hero__pagination .swiper-pagination-bullet {
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
  }
}
.hero__pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #d9291b;
  border-radius: 5px;
}
.hero__pagination .swiper-pagination-bullet-active::before {
  animation: hero-progress var(--hero-autoplay, 5s) linear forwards;
}
.hero__content {
  background: #eff6ff;
  padding: 33px 15px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .hero__content {
    background: transparent;
    padding: 51px 43px 0;
  }
}
@media (min-width: 1400px) {
  .hero__content {
    padding: 68px 55px 0;
  }
}
.hero__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
  margin-bottom: 13px;
}
@media (min-width: 992px) {
  .hero__title {
    font-size: 34px;
    margin-bottom: 16px;
    max-width: 390px;
  }
}
@media (min-width: 1400px) {
  .hero__title {
    font-size: 46px;
    line-height: 1.1;
    max-width: 530px;
    margin-bottom: 25px;
  }
}
.hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #909090;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .hero__subtitle {
    font-size: 18px;
    max-width: 390px;
    min-height: 97px;
  }
}
@media (min-width: 1400px) {
  .hero__subtitle {
    font-size: 24px;
    max-width: 530px;
    margin-bottom: 35px;
    min-height: 129px;
  }
}
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background: #d9291b;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.3s;
}
@media (min-width: 992px) {
  .hero__cta {
    width: 250px;
  }
}
@media (min-width: 1400px) {
  .hero__cta {
    width: 295px;
    height: 70px;
    font-size: 18px;
  }
}
.hero__cta:hover {
  background: #a80c00;
}
.hero__image {
  background: #eff6ff;
  text-align: center;
  overflow: hidden;
  padding-top: 0;
  /*margin-top: -75px;*/
  margin-top: -10px;
}
@media (min-width: 992px) {
  .hero__image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    margin-top: 0;
    padding-top: 0;
    background: transparent;
    overflow: visible;
  }
}
.hero__image img {
  max-width: 90%;
  height: auto;
  margin: 0 auto;
  max-height: 400px;
}
@media (min-width: 992px) {
  .hero__image img {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    margin-left: auto;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.info-cards {
  padding: 20px 15px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .info-cards {
    padding: 0;
    width: 275px;
    flex-shrink: 0;
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .info-cards {
    width: 370px;
  }
}

.info-card {
  border-radius: 5px;
  padding: 22px;
  position: relative;
  height: 226px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (min-width: 992px) {
  .info-card {
    flex: 1;
    height: auto;
    min-height: 0;
  }
}
@media (min-width: 1400px) {
  .info-card {
    padding: 28px;
  }
}
.info-card--dark {
  background: #2d3241;
}
.info-card--blue {
  background: #3178df;
}
.info-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3178df;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  padding: 5px 12px;
  align-self: flex-start;
  margin-bottom: 0;
  margin-top: 8px;
}
@media (min-width: 1400px) {
  .info-card__badge {
    padding: 7px 16px;
    font-size: 16px;
  }
}
.info-card__content {
  position: relative;
  z-index: 2;
  max-width: 62%;
}
@media (min-width: 992px) {
  .info-card__content {
    max-width: 100%;
    margin-bottom: 6px;
  }
}
.info-card__title {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
@media (min-width: 1400px) {
  .info-card__title {
    font-size: 30px;
    line-height: 1.1;
  }
}
.info-card__text {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  opacity: 0.7;
  line-height: 1.3;
  max-width: 200px;
}
@media (min-width: 1400px) {
  .info-card__text {
    font-size: 18px;
    max-width: 224px;
    margin-bottom: 16px;
  }
}
.info-card__visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card__icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) {
  .info-card__icon {
    width: 80px;
    height: 80px;
  }
}
.info-card__icon--rate {
  position: absolute;
  top: 15px;
  right: 15px;
  transition: 0.5s;
}
.info-card__icon--rate:hover {
  transform: scale(1.1);
}
.info-card__icon img {
  width: 15px;
  height: auto;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .info-card__icon img {
    width: 20px;
  }
}
.info-card__play {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .info-card__play {
    width: 80px;
    height: 80px;
  }
}
.info-card__play:hover {
  transform: scale(1.1);
}
.info-card__play img {
  width: 12px;
  height: auto;
  margin-left: 3px;
}
@media (min-width: 1400px) {
  .info-card__play img {
    width: 17px;
  }
}
.info-card__play::before {
  content: "";
  width: 146px;
  height: 146px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: 1;
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -73px;
  margin-right: -73px;
}
@media (min-width: 1400px) {
  .info-card__play::before {
    width: 196px;
    height: 196px;
    margin-top: -98px;
    margin-right: -98px;
  }
}
.info-card__image {
  position: absolute;
  z-index: 1;
}
.info-card__image--ribbon {
  right: 0;
  top: 0;
  width: 96px;
  height: 100%;
  object-fit: cover;
  border-radius: 0 5px 0 0;
}
@media (min-width: 1400px) {
  .info-card__image--ribbon {
    width: 129px;
  }
}

.advantages {
  padding: 0 15px;
  margin: 50px auto;
}
@media (min-width: 992px) {
  .advantages {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .advantages {
    margin-top: 76px;
    margin-bottom: 76px;
  }
}
.advantages .swiper {
  overflow: hidden;
}
@media (min-width: 992px) {
  .advantages .swiper {
    overflow: visible;
  }
}
@media (min-width: 992px) {
  .advantages .swiper-wrapper {
    display: flex;
    gap: 30px;
    transform: none !important;
  }
}
@media (min-width: 1400px) {
  .advantages .swiper-wrapper {
    gap: 28px;
  }
}
.advantages .swiper-slide {
  height: auto;
}
@media (min-width: 992px) {
  .advantages .swiper-slide {
    flex: 1;
    min-width: 0;
    margin: 0 !important;
    width: auto !important;
  }
}
.advantages__pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .advantages__pagination {
    display: none;
  }
}
.advantages__pagination .swiper-pagination-bullet {
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: #2d3241;
  opacity: 0.2;
  transition: 0.3s;
  flex-grow: 1;
}
.advantages__pagination .swiper-pagination-bullet-active {
  background: #d9291b;
  opacity: 1;
}

.advantage {
  position: relative;
}
.advantage__icon {
  width: 20px;
  height: auto;
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .advantage__icon {
    position: absolute;
    top: 5px;
    left: 0;
  }
}
@media (min-width: 1400px) {
  .advantage__icon {
    width: 28px;
    margin-bottom: 10px;
  }
}
.advantage__title {
  font-size: 17px;
  font-weight: 600;
  color: #2d3241;
  line-height: 1.3;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .advantage__title {
    padding-left: 26px;
  }
}
@media (min-width: 1400px) {
  .advantage__title {
    font-size: 22px;
    padding-left: 36px;
  }
}
.advantage__text {
  font-size: 15px;
  font-weight: 400;
  color: #2d3241;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .advantage__text {
    padding-left: 26px;
  }
}
@media (min-width: 1400px) {
  .advantage__text {
    font-size: 18px;
    padding-left: 36px;
    max-width: 452px;
  }
}

.catalog {
  padding: 0 15px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .catalog {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 60px;
    margin-top: 97px;
  }
}
@media (min-width: 1400px) {
  .catalog {
    margin-top: 128px;
  }
}
.catalog__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
  margin-bottom: 9px;
}
@media (min-width: 992px) {
  .catalog__title {
    font-size: 34px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1400px) {
  .catalog__title {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 21px;
  }
}
@media (min-width: 992px) {
  .catalog__title span {
    display: block;
  }
}
.catalog__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #909090;
  margin-bottom: 29px;
}
@media (min-width: 992px) {
  .catalog__subtitle {
    font-size: 18px;
    margin-bottom: 38px;
  }
}
@media (min-width: 1400px) {
  .catalog__subtitle {
    font-size: 22px;
    margin-bottom: 56px;
  }
}
.catalog__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .catalog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .catalog__list {
    gap: 25px;
  }
}

.cat-card {
  background: #eff6ff;
  border-radius: 5px;
  display: flex;
  height: 222px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}
@media (min-width: 1400px) {
  .cat-card {
    height: 300px;
  }
}
.cat-card:hover .cat-card__title {
  color: #3178df;
}
.cat-card:hover .cat-card__image img {
  transform: scale(1.02);
}
.cat-card:hover .cat-card__link {
  color: #3178df;
}
.cat-card__content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
@media (min-width: 1400px) {
  .cat-card__content {
    padding: 30px 34px;
  }
}
.cat-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #2d3241;
  height: 40px;
  margin-bottom: 14px;
  margin-top: 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 992px) {
  .cat-card__title {
    font-size: 20px;
    height: 44px;
  }
}
@media (min-width: 1400px) {
  .cat-card__title {
    font-size: 26px;
    height: 58px;
    margin-bottom: 28px;
    margin-top: 12px;
  }
}
.cat-card__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1px 11px;
  margin-bottom: auto;
}
.cat-card__brand {
  font-size: 14px;
  line-height: 22px;
  color: #3178df;
  text-decoration: none;
  opacity: 1;
  transition: 0.3s;
}
@media (min-width: 1400px) {
  .cat-card__brand {
    font-size: 16px;
    max-width: 266px;
  }
}
.cat-card__brand:hover {
  opacity: 0.7;
}
.cat-card__brand-more {
  font-size: 14px;
  line-height: 22px;
  color: #2d3241;
}
.cat-card__link {
  font-size: 14px;
  color: #909090;
  margin-top: 16px;
  display: inline-block;
  transition: color 0.3s;
}
@media (min-width: 1400px) {
  .cat-card__link {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.cat-card__link:hover {
  color: #3178df;
}
.cat-card__image {
  width: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1400px) {
  .cat-card__image {
    width: 140px;
  }
}
.cat-card__image img {
  max-width: 155px;
  max-height: 100%;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
  transition: transform 0.4s ease;
}
@media (min-width: 1400px) {
  .cat-card__image img {
    max-width: 210px;
  }
}
.cat-card__hit {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d9291b;
  border-radius: 5px;
  padding: 3px 9px;
  height: 22px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}
@media (min-width: 1400px) {
  .cat-card__hit {
    height: 30px;
    font-size: 18.5px;
    width: 57px;
    text-align: center;
    top: 18px;
    right: 20px;
  }
}

@keyframes products-fade-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.products {
  padding: 0 15px;
  margin-bottom: 74px;
  margin-top: 74px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .products {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 100px;
    margin-top: 84px;
  }
}
@media (min-width: 1400px) {
  .products {
    margin-bottom: 142px;
    margin-top: 111px;
  }
}
.products__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .products__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .products__title {
    font-size: 44px;
    margin-bottom: 15px;
  }
}
.products__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #909090;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .products__subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1400px) {
  .products__subtitle {
    font-size: 24px;
    margin-bottom: 51px;
  }
}
.products__tabs-swiper {
  overflow: visible !important;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .products__tabs-swiper {
    overflow: visible !important;
    margin-bottom: 55px;
  }
}
@media (min-width: 1400px) {
  .products__tabs-swiper {
    margin-bottom: 82px;
  }
}
@media (min-width: 992px) {
  .products__tabs-swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    transform: none !important;
  }
}
.products__tabs-swiper .swiper-slide {
  width: auto !important;
}
@media (min-width: 992px) {
  .products__tabs-swiper .swiper-slide {
    margin: 0 !important;
  }
}
.products__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: #eff6ff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #3178df;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  font-family: "Inter Tight", sans-serif;
  transition: 0.3s;
  width: 100%;
  touch-action: pan-x;
}
@media (min-width: 1100px) {
  .products__tab {
    padding: 15px 50px;
  }
}
@media (min-width: 1400px) {
  .products__tab {
    font-size: 22px;
    padding: 17px 70px;
  }
}
.products__tab:hover {
  background: #3178df;
  color: #fff;
}
.products__tab.is-active {
  background: #3178df;
  color: #fff;
}
.products__body {
  display: none;
}
.products__body.is-active {
  display: block;
  animation: products-fade-in 0.8s ease both;
}
@media (min-width: 992px) {
  .products__body.is-active {
    display: flex;
    gap: 96px;
  }
}
@media (min-width: 1400px) {
  .products__body.is-active {
    gap: 129px;
  }
}
.products__showcase {
  margin-bottom: 42px;
}
@media (min-width: 992px) {
  .products__showcase {
    width: 32%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .products__showcase {
    width: 32.2%;
  }
}
.products__image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #e0e0e0;
}
@media (min-width: 1400px) {
  .products__image {
    margin-bottom: 42px;
  }
}
.products__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products__counter {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-top: 14px;
}
@media (min-width: 1400px) {
  .products__counter {
    width: 70px;
    height: 70px;
    padding-top: 18px;
  }
}
.products__counter-current {
  font-size: 18px;
  font-weight: 700;
  color: #d9291b;
  padding-right: 2px;
}
@media (min-width: 1400px) {
  .products__counter-current {
    font-size: 24px;
    padding-right: 4px;
  }
}
.products__counter-total {
  font-size: 12px;
  font-weight: 700;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .products__counter-total {
    font-size: 16px;
  }
}
.products__info-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin-bottom: 12px;
}
@media (min-width: 1400px) {
  .products__info-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.products__info-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .products__info-text {
    font-size: 18px;
  }
}
.products__models {
  position: relative;
}
@media (min-width: 992px) {
  .products__models {
    flex: 1;
    min-width: 0;
  }
}
.products__models-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d3241;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .products__models-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1400px) {
  .products__models-title {
    font-size: 26px;
    margin-bottom: 42px;
  }
}
.products__models-list {
  display: flex;
  gap: 10px;
}
@media (min-width: 992px) {
  .products__models-list {
    gap: 14px;
  }
}
@media (min-width: 1400px) {
  .products__models-list {
    gap: 20px;
  }
}
.products__models-link {
  font-size: 14px;
  color: #909090;
  margin-top: 18px;
  display: inline-block;
  transition: color 0.3s;
}
@media (min-width: 991px) {
  .products__models-link {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 4px;
  }
}
@media (min-width: 1400px) {
  .products__models-link {
    font-size: 18px;
    margin-top: 8px;
  }
}
.products__models-link:hover {
  color: #3178df;
}

.product-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 5px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d8d8d8;
  transition: 0.5s;
}
@media (min-width: 992px) {
  .product-card {
    padding: 24px 14px;
  }
}
@media (min-width: 1400px) {
  .product-card {
    padding: 28px 28px;
  }
}
.product-card:nth-child(n+3) {
  display: none;
}
@media (min-width: 992px) {
  .product-card:nth-child(n+3) {
    display: flex;
  }
}
.product-card:hover {
  border: 1px solid #909090;
}
.product-card__image {
  position: relative;
  background: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .product-card__image {
    height: 137px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1400px) {
  .product-card__image {
    height: 192px;
    margin-bottom: 20px;
    margin-top: 28px;
  }
}
.product-card__image img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}
@media (min-width: 992px) {
  .product-card__image img {
    max-height: 129px;
  }
}
@media (min-width: 1400px) {
  .product-card__image img {
    max-height: 192px;
  }
}
.product-card__badge {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (min-width: 1400px) {
  .product-card__badge {
    font-size: 14px;
    padding: 2px 8px 3px;
  }
}
.product-card__badge--hit {
  background: #3178df;
  position: absolute;
  top: -6px;
  left: 0;
}
@media (min-width: 1400px) {
  .product-card__badge--hit {
    top: -36px;
  }
}
.product-card__badge--sale {
  background: #d9291b;
  position: absolute;
  bottom: 0;
  left: 0;
}
.product-card__icons {
  position: absolute;
  top: -6px;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
@media (min-width: 1400px) {
  .product-card__icons {
    top: -36px;
    gap: 15px;
  }
}
.product-card__icons a,
.product-card__icons button {
  width: 13px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.2s;
}
@media (min-width: 992px) {
  .product-card__icons a,
  .product-card__icons button {
    width: 22px;
  }
}
.product-card__icons a:first-child,
.product-card__icons button:first-child {
  width: 12px;
}
@media (min-width: 992px) {
  .product-card__icons a:first-child,
  .product-card__icons button:first-child {
    width: 19px;
  }
}
.product-card__icons a:hover,
.product-card__icons button:hover {
  opacity: 1;
}
.product-card__icons svg {
  width: 100%;
  height: 100%;
}
.product-card__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .product-card__stars {
    margin-bottom: 14px;
  }
}
.product-card__star {
  width: 12px;
  height: 12px;
}
@media (min-width: 992px) {
  .product-card__star {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 1400px) {
  .product-card__star {
    width: 18px;
    height: 18px;
  }
}
.product-card__reviews {
  font-size: 12px;
  color: #909090;
  margin-left: 8px;
}
@media (min-width: 992px) {
  .product-card__reviews {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .product-card__reviews {
    font-size: 15px;
  }
}
.product-card__name {
  font-size: 14px;
  font-weight: 400;
  color: #2d3241;
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 36px;
  transition: 0.5s;
}
@media (min-width: 992px) {
  .product-card__name {
    font-size: 16px;
    min-height: 42px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1400px) {
  .product-card__name {
    font-size: 17px;
    min-height: 44px;
  }
}
.product-card__name:hover {
  color: #909090;
}
.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}
.product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: #2d3241;
}
@media (min-width: 992px) {
  .product-card__price {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .product-card__price {
    font-size: 21px;
  }
}
.product-card__old-price {
  font-size: 12px;
  color: #909090;
  text-decoration: line-through;
  text-decoration-color: #d9291b;
}
@media (min-width: 992px) {
  .product-card__old-price {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .product-card__old-price {
    font-size: 15px;
  }
}

.products-similar {
  padding: 0 15px;
  margin-bottom: 75px;
  margin-top: 70px;
}
@media (min-width: 992px) {
  .products-similar {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 110px;
    margin-top: 84px;
  }
}
@media (min-width: 1400px) {
  .products-similar {
    margin-bottom: 150px;
    margin-top: 136px;
  }
}
.products-similar__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
@media (min-width: 1400px) {
  .products-similar__header {
    margin-bottom: 52px;
  }
}
.products-similar__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
}
@media (min-width: 992px) {
  .products-similar__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .products-similar__title {
    font-size: 44px;
  }
}
.products-similar__swiper {
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.products-similar .product-card {
  height: 100%;
}
.products-similar .swiper-slide {
  height: auto;
}
.products-similar__pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .products-similar__pagination {
    margin-top: 25px;
  }
}
@media (min-width: 1400px) {
  .products-similar__pagination {
    margin-top: 27px;
  }
}
.products-similar__pagination.swiper-pagination-lock {
  display: none;
}
.products-similar__pagination .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: #2d3241;
  opacity: 0.2;
  transition: 0.3s;
  flex-grow: 1;
}
@media (min-width: 992px) {
  .products-similar__pagination .swiper-pagination-bullet {
    flex-grow: 0;
  }
}
.products-similar__pagination .swiper-pagination-bullet-active {
  background: #d9291b;
  opacity: 1;
}

.product {
  padding: 0 15px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .product {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .product {
    margin-bottom: 64px;
  }
}
.product .breadcrumbs {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .product .breadcrumbs {
    margin-top: 43px;
    margin-bottom: 24px;
  }
}
.product__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #2d3241;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .product__title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .product__title {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1400px) {
  .product__title {
    font-size: 36px;
    margin-bottom: 12px;
  }
}
.product__rating {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .product__rating {
    margin-bottom: 25px;
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .product__rating {
    gap: 35px;
    margin-bottom: 35px;
  }
}
.product__rating-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2d3241;
  font-weight: 400;
}
.product__rating-score img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .product__rating-score img {
    width: 18px;
    height: 18px;
  }
}
.product__rating-link {
  color: #3178df;
  transition: color 0.2s;
}
.product__rating-link:hover {
  color: rgb(29.7142857143, 95.6428571429, 191.2857142857);
}
.product__layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .product__layout {
    flex-direction: row;
    gap: 25px;
  }
}
@media (max-width: 1165px) and (min-width: 992px) {
  .product__layout {
    flex-wrap: wrap;
  }
}
@media (min-width: 1400px) {
  .product__layout {
    gap: 30px;
  }
}
.product__main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 992px) {
  .product__main {
    flex: 1;
    flex-direction: row;
    gap: 25px;
    min-width: 0;
  }
}
@media (max-width: 1165px) and (min-width: 992px) {
  .product__main {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .product__main {
    gap: 30px;
  }
}
@media (min-width: 1600px) {
  .product__main {
    gap: 87px;
  }
}
.product__gallery {
  width: 100%;
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  .product__gallery {
    flex: 0 0 auto;
    width: 420px;
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .product__gallery {
    width: 576px;
    gap: 18px;
  }
}
.product__gallery-main {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .product__gallery-main {
    flex: 1;
    min-width: 0;
    aspect-ratio: 1/1;
    margin-bottom: 0;
  }
}
.product__gallery-swiper {
  width: 100%;
  height: 100%;
}
.product__gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .product__gallery-swiper .swiper-slide {
    padding: 28px;
  }
}
.product__gallery-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.product__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 11px;
  background: #3178df;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .product__badge {
    top: 10px;
    right: 10px;
  }
}
@media (min-width: 1400px) {
  .product__badge {
    padding: 2px 8px;
    font-size: 18px;
    top: 10px;
    right: 10px;
  }
}
.product__gallery-prev, .product__gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #b5b5b5;
  transition: color 0.2s;
}
.product__gallery-prev:hover, .product__gallery-next:hover {
  color: #2d3241;
}
.product__gallery-prev svg, .product__gallery-next svg {
  width: 12px;
  height: 18px;
}
.product__gallery-prev {
  left: 4px;
}
@media (min-width: 992px) {
  .product__gallery-prev {
    left: 8px;
  }
}
.product__gallery-next {
  right: 4px;
}
@media (min-width: 992px) {
  .product__gallery-next {
    right: 8px;
  }
}
.product__thumbs {
  width: 100%;
}
@media (min-width: 992px) {
  .product__thumbs {
    flex: 0 0 70px;
    width: 70px;
  }
}
@media (min-width: 1400px) {
  .product__thumbs {
    flex: 0 0 72px;
    width: 72px;
  }
}
@media (max-width: 991px) {
  .product__thumbs-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .product__thumbs-swiper .swiper-slide {
    width: auto !important;
  }
}
@media (min-width: 992px) {
  .product__thumbs-swiper {
    height: 100%;
  }
  .product__thumbs-swiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .product__thumbs-swiper .swiper-slide {
    height: auto !important;
    width: 100% !important;
  }
}
@media (min-width: 1400px) {
  .product__thumbs-swiper .swiper-wrapper {
    gap: 12px;
  }
}
.product__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #909090;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  opacity: 0.3;
}
.product__thumb:hover {
  border-color: rgba(217, 41, 27, 0.4);
}
.product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .product__thumb img {
    padding: 8px;
  }
}
.product__thumb.is-active {
  border-color: #d9291b;
  opacity: 1;
}
.product__thumb-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 5px;
  color: #d9291b;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
@media (min-width: 1400px) {
  .product__thumb-video {
    font-size: 13px;
  }
}
.product__thumb-video:hover {
  border-color: rgba(217, 41, 27, 0.4);
}
.product__thumb-video img {
  width: 22px;
  height: 22px;
}
@media (min-width: 1400px) {
  .product__thumb-video img {
    width: 26px;
    height: 26px;
  }
}
.product__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 992px) {
  .product__info {
    flex: 1;
    min-width: 0;
    gap: 20px;
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .product__info {
    gap: 25px;
    padding-top: 12px;
  }
}
.product__status {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .product__status {
    gap: 25px;
  }
}
.product__status-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product__status-stock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2db84d;
  flex-shrink: 0;
}
.product__status-sku {
  color: #909090;
}
.product__status-sku span {
  color: #909090;
}
.product__specs {
  background: #fff;
}
.product__specs-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d3241;
  margin-bottom: 14px;
}
@media (min-width: 1400px) {
  .product__specs-title {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
.product__specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1400px) {
  .product__specs-list {
    gap: 12px;
  }
}
.product__specs-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .product__specs-item {
    grid-template-columns: minmax(180px, auto) 1fr;
    gap: 20px;
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .product__specs-item {
    grid-template-columns: minmax(220px, auto) 1fr;
    font-size: 16px;
  }
}
.product__specs-label {
  color: #909090;
}
.product__specs-value {
  color: #2d3241;
  font-weight: 400;
}
.product__specs-item--xl {
  display: none;
}
@media (min-width: 1400px) {
  .product__specs-item--xl {
    display: grid;
  }
}
.product__full-link {
  display: inline-flex;
  align-items: center;
  color: #3178df;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
  align-self: flex-start;
}
.product__full-link:hover {
  color: rgb(29.7142857143, 95.6428571429, 191.2857142857);
}
.product__pdf {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  background: #f8f8f8;
  border-radius: 5px;
  color: #2d3241;
  text-decoration: none;
  transition: background 0.2s;
}
@media (min-width: 992px) {
  .product__pdf {
    padding: 18px 22px;
    max-width: 345px;
  }
}
@media (min-width: 1400px) {
  .product__pdf {
    padding: 26px 26px;
    gap: 15px;
    max-width: 430px;
  }
}
.product__pdf:hover {
  background: #ebecee;
}
.product__pdf img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .product__pdf img {
    width: 46px;
  }
}
.product__pdf-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .product__pdf-text {
    font-size: 18px;
  }
}
.product__side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 992px) {
  .product__side {
    flex: 0 0 280px;
    width: 280px;
    gap: 16px;
    justify-content: space-between;
  }
}
@media (max-width: 1165px) and (min-width: 992px) {
  .product__side {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .product__side {
    flex: 0 0 360px;
    width: 360px;
    gap: 30px;
  }
}
.product__buy {
  position: relative;
  background: #eff6ff;
  border-radius: 5px;
  padding: 20px;
}
@media (min-width: 992px) {
  .product__buy {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .product__buy {
    padding: 28px 30px;
  }
}
.product__favorite {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #909090;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .product__favorite {
    top: 24px;
    right: 24px;
  }
}
.product__favorite:hover {
  color: #d9291b;
}
.product__favorite img,
.product__favorite svg {
  width: 22px;
  height: 22px;
}
@media (min-width: 1400px) {
  .product__favorite img,
  .product__favorite svg {
    width: 26px;
    height: 26px;
  }
}
.product__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  padding-right: 40px;
}
.product__price-old {
  font-size: 16px;
  color: #909090;
  text-decoration: line-through;
}
@media (min-width: 1400px) {
  .product__price-old {
    font-size: 20px;
  }
}
.product__price-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  background: #d9291b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 3px;
}
@media (min-width: 1400px) {
  .product__price-discount {
    font-size: 13px;
    padding: 3px 8px;
  }
}
.product__price {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #2d3241;
  margin-bottom: 14px;
}
@media (min-width: 1400px) {
  .product__price {
    font-size: 36px;
    margin-bottom: 22px;
  }
}
.product__discount-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3178df;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 18px;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .product__discount-link {
    font-size: 16px;
    margin-bottom: 22px;
  }
}
.product__discount-link:hover {
  color: rgb(29.7142857143, 95.6428571429, 191.2857142857);
}
.product__discount-link img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.product__buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background: #d9291b;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter Tight", sans-serif;
  cursor: pointer;
  transition: background 0.3s;
}
@media (min-width: 1400px) {
  .product__buy-btn {
    height: 60px;
    font-size: 16px;
  }
}
.product__buy-btn:hover {
  background: #a80c00;
}
.product__delivery {
  border: 1px solid #e5e7ec;
  border-radius: 5px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1400px) {
  .product__delivery {
    padding: 30px 28px;
    gap: 18px;
    height: 180px;
  }
}
.product__delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
@media (min-width: 1400px) {
  .product__delivery-item {
    gap: 16px;
  }
}
.product__delivery-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .product__delivery-icon {
    width: 20px;
    height: auto;
  }
}
.product__delivery-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.product__delivery-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .product__delivery-title {
    font-size: 18px;
  }
}
.product__delivery-desc {
  font-size: 16px;
  color: #909090;
}
@media (min-width: 1400px) {
  .product__delivery-desc {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .product__layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .product__main {
    display: contents;
  }
  .product__info {
    display: contents;
  }
  .product__side {
    display: contents;
  }
  .product__gallery {
    order: 1;
  }
  .product__status {
    order: 2;
  }
  .product__specs {
    order: 3;
  }
  .product__full-link {
    order: 4;
  }
  .product__buy {
    order: 5;
  }
  .product__delivery {
    order: 6;
  }
  .product__pdf {
    order: 7;
  }
}

.turnkey {
  padding: 0 15px;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .turnkey {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 110px;
  }
}
@media (min-width: 1400px) {
  .turnkey {
    margin-bottom: 152px;
    height: 614px;
    overflow: hidden;
  }
}
.turnkey__inner {
  background: #3178df;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .turnkey__inner {
    display: flex;
    min-height: 490px;
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .turnkey__inner {
    min-height: 614px;
  }
}
.turnkey__content {
  padding: 56px 15px 30px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .turnkey__content {
    padding: 56px 40px;
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    max-width: 464px;
  }
}
@media (min-width: 1400px) {
  .turnkey__content {
    padding: 77px 0 77px 55px;
    max-width: 575px;
  }
}
.turnkey__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #d9291b;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  padding: 5px 12px;
  align-self: flex-start;
  margin-bottom: 15px;
}
@media (min-width: 1400px) {
  .turnkey__badge {
    font-size: 18px;
    padding: 7px 16px;
    margin-bottom: 20px;
  }
}
.turnkey__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .turnkey__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .turnkey__title {
    font-size: 44px;
    margin-bottom: 35px;
  }
}
.turnkey__lead {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .turnkey__lead {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .turnkey__lead {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.turnkey__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}
@media (min-width: 992px) {
  .turnkey__text {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .turnkey__text {
    font-size: 20px;
  }
}
.turnkey__image {
  position: relative;
  padding-top: 132px;
}
@media (min-width: 992px) {
  .turnkey__image {
    width: 50%;
    flex-shrink: 0;
    padding-top: 0;
  }
}
.turnkey__image > img {
  width: auto;
  height: 271px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .turnkey__image > img {
    height: 500px;
    position: absolute;
    width: 692px;
    max-width: 692px;
    left: 0;
    bottom: 0;
  }
}
@media (min-width: 1400px) {
  .turnkey__image > img {
    height: 614px;
    width: 916px;
    max-width: 916px;
  }
}
@media (min-width: 1600px) {
  .turnkey__image > img {
    right: 0;
    bottom: 10px;
    left: auto;
  }
}
.turnkey__note {
  position: absolute;
  top: 0;
  left: 15px;
  right: auto;
  background: #fff;
  border-radius: 5px;
  padding: 18px 16px;
  max-width: 100%;
  width: calc(100% - 30px);
}
@media (min-width: 992px) {
  .turnkey__note {
    bottom: 16px;
    right: 16px;
    left: auto;
    max-width: 254px;
    width: 100%;
    top: auto;
    padding: 22px 50px 24px 22px;
  }
}
@media (min-width: 1400px) {
  .turnkey__note {
    padding: 21px 30px;
    max-width: 343px;
    bottom: 30px;
    right: 20px;
  }
}
.turnkey__note-icon {
  display: flex;
  margin-bottom: 10px;
}
.turnkey__note-icon img {
  width: 20px;
  height: auto;
}
@media (min-width: 1400px) {
  .turnkey__note-icon img {
    width: 26px;
  }
}
.turnkey__note-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .turnkey__note-text {
    font-size: 18px;
    max-width: 250px;
  }
}

.form-cta {
  padding: 0 15px;
  margin-bottom: 70px;
}
@media (min-width: 992px) {
  .form-cta {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 98px;
  }
}
@media (min-width: 1400px) {
  .form-cta {
    margin-bottom: 128px;
    height: 704px;
    overflow: hidden;
  }
}
@media (min-width: 1400px) {
  .form-cta--v2 {
    margin-bottom: 152px;
  }
}
.form-cta__inner {
  background: #eff6ff;
  border-radius: 5px;
  padding: 45px 22px 35px;
}
@media (min-width: 992px) {
  .form-cta__inner {
    display: flex;
    padding: 0;
    overflow: hidden;
  }
}
@media (min-width: 1400px) {
  .form-cta__inner {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .form-cta__left {
    width: 42%;
    flex-shrink: 0;
    padding: 50px 40px;
  }
}
@media (min-width: 1400px) {
  .form-cta__left {
    padding: 84px 72px 65px 55px;
    max-width: 622px;
  }
}
.form-cta__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .form-cta__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .form-cta__title {
    font-size: 44px;
    margin-bottom: 22px;
  }
}
.form-cta__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #2d3241;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .form-cta__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .form-cta__subtitle {
    font-size: 24px;
    margin-bottom: 38px;
  }
}
.form-cta__fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .form-cta__fields {
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .form-cta__fields {
    margin-bottom: 24px;
  }
}
.form-cta .form-consent {
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .form-cta .form-consent {
    margin-bottom: 38px;
  }
}
@media (min-width: 992px) {
  .form-cta .form-submit {
    width: 300px;
  }
}
.form-cta__right {
  margin-top: 42px;
  background: #fff;
  border-radius: 5px;
  padding: 34px 25px 255px 25px;
  position: relative;
}
@media (min-width: 992px) {
  .form-cta__right {
    flex: 1;
    margin: 20px 20px 20px 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1400px) {
  .form-cta__right {
    padding: 72px 58px;
  }
}
.form-cta__manager-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #909090;
  margin-bottom: 17px;
}
@media (min-width: 992px) {
  .form-cta__manager-desc {
    margin-bottom: 50px;
    max-width: 275px;
  }
}
@media (min-width: 1400px) {
  .form-cta__manager-desc {
    font-size: 20px;
    max-width: 370px;
    margin-bottom: 72px;
  }
}
.form-cta__manager {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 17px;
}
@media (min-width: 992px) {
  .form-cta__manager {
    flex-direction: column;
    gap: 17px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1400px) {
  .form-cta__manager {
    gap: 23px;
    margin-bottom: 38px;
  }
}
.form-cta__manager-avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .form-cta__manager-avatar {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1400px) {
  .form-cta__manager-avatar {
    width: 65px;
    height: 65px;
  }
}
.form-cta__manager-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  display: none;
}
@media (min-width: 992px) {
  .form-cta__manager-avatar-wrap {
    display: block;
  }
}
.form-cta__manager-online {
  background: #2ec900;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 992px) {
  .form-cta__manager-online {
    width: 11px;
    height: 11px;
  }
}
@media (min-width: 1400px) {
  .form-cta__manager-online {
    width: 15px;
    height: 15px;
  }
}
.form-cta__manager-info {
  display: flex;
  flex-direction: column;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.form-cta__manager-name {
  font-size: 14px;
  font-weight: 700;
  color: #2d3241;
  margin-bottom: 2px;
}
@media (min-width: 1400px) {
  .form-cta__manager-name {
    font-size: 18px;
  }
}
.form-cta__manager-position {
  font-size: 12px;
  color: #909090;
}
@media (min-width: 1400px) {
  .form-cta__manager-position {
    font-size: 16px;
  }
}
.form-cta__manager-contacts {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1400px) {
  .form-cta__manager-contacts {
    margin-bottom: 40px;
  }
}
.form-cta__manager-phone {
  font-size: 14px;
  color: #2d3241;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .form-cta__manager-phone {
    font-size: 18px;
  }
}
.form-cta__manager-phone:hover {
  color: #3178df;
}
.form-cta__manager-email {
  font-size: 12px;
  color: #3178df;
}
@media (min-width: 1400px) {
  .form-cta__manager-email {
    font-size: 16px;
  }
}
.form-cta__manager-socials {
  display: flex;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.form-cta__manager-socials a {
  display: block;
  width: 35px;
  height: 35px;
}
@media (min-width: 1400px) {
  .form-cta__manager-socials a {
    width: 45px;
    height: 45px;
  }
}
.form-cta__manager-socials a img {
  width: 100%;
  height: 100%;
}
.form-cta__manager-photo {
  margin-top: auto;
  border-radius: 5px;
  overflow: hidden;
  width: 294px;
  height: 355px;
  position: absolute;
  bottom: -35px;
  right: -22px;
}
@media (min-width: 992px) {
  .form-cta__manager-photo {
    width: 431px;
    height: 521px;
    bottom: -20px;
  }
}
@media (min-width: 1400px) {
  .form-cta__manager-photo {
    width: 583px;
    height: 704px;
  }
}
.form-cta__manager-photo img {
  max-width: 100%;
  height: auto;
}
.form-cta__manager-photo--sign {
  position: absolute;
  width: 136px;
  height: 136px;
  bottom: 13px;
  right: 13px;
}
@media (min-width: 992px) {
  .form-cta__manager-photo--sign {
    width: 200px;
    height: 200px;
    bottom: 18px;
    right: 18px;
  }
}
@media (min-width: 1400px) {
  .form-cta__manager-photo--sign {
    width: 266px;
    height: 266px;
    bottom: 30px;
    right: 30px;
  }
}

.about {
  padding: 0 15px;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .about {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .about {
    margin-bottom: 149px;
  }
}
.about__header {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .about__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
  }
}
.about__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .about__title {
    font-size: 34px;
    max-width: 700px;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .about__title {
    font-size: 44px;
    max-width: 930px;
  }
}
.about__breadcrumb {
  display: none;
}
@media (min-width: 992px) {
  .about__breadcrumb {
    display: block;
    font-size: 18px;
    color: #808080;
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media (min-width: 1400px) {
  .about__breadcrumb {
    font-size: 24px;
    margin-top: 15px;
  }
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  .about__body {
    display: flex;
    flex-direction: row;
    gap: 122px;
  }
}
@media (min-width: 1400px) {
  .about__body {
    gap: 166px;
  }
}
.about__visual {
  margin-bottom: 25px;
  order: 1;
}
@media (min-width: 992px) {
  .about__visual {
    order: 0;
    width: 42%;
    max-width: 336px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .about__visual {
    max-width: 454px;
  }
}
@media (min-width: 992px) {
  .about__visual .about__btn {
    display: none;
  }
}
.about__certs {
  position: relative;
  margin-bottom: 20px;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .about__certs {
    margin-bottom: 39px;
  }
}
@media (min-width: 1400px) {
  .about__certs {
    margin-bottom: 50px;
  }
}
.about__certs::after {
  content: "Просмотреть";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 5px;
}
@media (min-width: 1400px) {
  .about__certs::after {
    font-size: 22px;
  }
}
.about__certs:hover::after {
  opacity: 1;
}
.about__certs > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}
.about__certs > .about__gerb {
  border-radius: 0;
  width: 98px;
}
@media (min-width: 1400px) {
  .about__certs > .about__gerb {
    width: 129px;
    bottom: -2px;
  }
}
.about__gerb {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.about__stat-value {
  font-size: 28px;
  font-weight: 400;
  color: #3178df;
  line-height: 1.1;
}
@media (min-width: 992px) {
  .about__stat-value {
    font-size: 32px;
  }
}
@media (min-width: 1400px) {
  .about__stat-value {
    font-size: 44px;
  }
}
.about__stat-label {
  font-size: 14px;
  color: #808080;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .about__stat-label {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .about__stat-label {
    font-size: 24px;
    line-height: 1;
    margin-top: 9px;
  }
}
@media (min-width: 992px) {
  .about__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 52px;
  }
}
@media (min-width: 1400px) {
  .about__content {
    gap: 30px 86px;
  }
}
.about__content .about__btn {
  display: none;
}
@media (min-width: 992px) {
  .about__content .about__btn {
    display: flex;
  }
}
.about__text {
  margin-bottom: 28px;
}
@media (min-width: 992px) {
  .about__text {
    width: calc(100% - 238px);
    margin-bottom: 0;
    min-height: 307px;
  }
}
@media (min-width: 1400px) {
  .about__text {
    width: calc(100% - 336px);
    min-height: 405px;
    padding-top: 17px;
  }
}
.about__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 136%;
  color: #2d3241;
  margin-bottom: 14px;
}
@media (min-width: 1400px) {
  .about__text p {
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.about__text p:first-child {
  font-weight: 700;
}
.about__text p:last-child {
  margin-bottom: 0;
}
.about__stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .about__stats {
    display: flex;
    flex-direction: column;
    gap: 38px;
    margin-bottom: 0;
    width: 185px;
  }
}
@media (min-width: 1400px) {
  .about__stats {
    width: 250px;
    justify-content: space-between;
    padding-bottom: 22px;
    padding-top: 12px;
  }
}
.about__stat:nth-child(3) {
  display: none;
}
@media (min-width: 992px) {
  .about__stat:nth-child(3) {
    display: block;
  }
}
.about__cert-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .about__cert-line {
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .about__cert-line {
    gap: 15px;
  }
}
.about__cert-icon {
  flex-shrink: 0;
  margin-top: 3px;
}
@media (min-width: 1400px) {
  .about__cert-icon {
    margin-top: 6px;
  }
}
.about__cert-text {
  font-size: 15px;
  font-weight: 700;
  color: #2d3241;
  line-height: 1.3;
}
@media (min-width: 1400px) {
  .about__cert-text {
    font-size: 20px;
  }
}
.about__cert-text span {
  display: block;
  font-weight: 400;
  color: #909090;
  font-size: 14px;
  margin-top: 2px;
}
@media (min-width: 1400px) {
  .about__cert-text span {
    font-size: 18px;
    margin-top: 5px;
  }
}
.about__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
}
@media (min-width: 992px) {
  .about__btn {
    width: 185px;
  }
}
@media (min-width: 1400px) {
  .about__btn {
    width: 250px;
    font-size: 18px;
    height: 70px;
    margin-top: 28px;
  }
}

.video-section {
  margin-bottom: 70px;
}
@media (min-width: 992px) {
  .video-section {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 95px;
  }
}
@media (min-width: 1400px) {
  .video-section {
    margin-bottom: 135px;
    height: 638px;
    overflow: hidden;
  }
}
.video-section__inner {
  background: #3178df;
  overflow: hidden;
  padding: 55px 15px;
  position: relative;
}
@media (min-width: 992px) {
  .video-section__inner {
    display: flex;
    padding: 56px 40px;
    border-radius: 5px;
  }
}
@media (min-width: 1400px) {
  .video-section__inner {
    padding: 78px 55px;
  }
}
.video-section__content {
  padding-bottom: 42px;
}
@media (min-width: 992px) {
  .video-section__content {
    width: 40%;
    flex-shrink: 0;
    padding: 0 32px 0 0;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1400px) {
  .video-section__content {
    padding: 0;
  }
}
.video-section__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #d9291b;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  padding: 5px 12px;
  align-self: flex-start;
  margin-bottom: 15px;
}
@media (min-width: 1400px) {
  .video-section__badge {
    font-size: 18px;
    padding: 7px 16px;
    margin-bottom: 20px;
  }
}
.video-section__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .video-section__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .video-section__title {
    font-size: 44px;
    margin-bottom: 57px;
  }
}
.video-section__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .video-section__text {
    max-width: 196px;
    margin-left: 190px;
  }
}
@media (min-width: 1400px) {
  .video-section__text {
    font-size: 20px;
    margin-bottom: 20px;
    margin-left: 250px;
    max-width: 266px;
  }
}
.video-section__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
@media (min-width: 992px) {
  .video-section__author {
    margin-left: 190px;
  }
}
@media (min-width: 1400px) {
  .video-section__author {
    margin-left: 250px;
  }
}
.video-section__author-avatar {
  position: relative;
  flex-shrink: 0;
}
.video-section__author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
@media (min-width: 1400px) {
  .video-section__author-img {
    width: 65px;
    height: 65px;
  }
}
.video-section__author-online {
  width: 11px;
  height: 11px;
  background: #2ec900;
  border-radius: 50%;
  border: 2px solid #3178df;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 1400px) {
  .video-section__author-online {
    width: 15px;
    height: 15px;
  }
}
.video-section__author-info {
  display: flex;
  flex-direction: column;
}
.video-section__author-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 1400px) {
  .video-section__author-name {
    font-size: 18px;
  }
}
.video-section__author-role {
  font-size: 12px;
  color: #fff;
}
@media (min-width: 1400px) {
  .video-section__author-role {
    font-size: 16px;
  }
}
.video-section__media {
  position: relative;
}
@media (min-width: 992px) {
  .video-section__media {
    flex: 1;
    min-width: 0;
    margin: 0;
  }
}
.video-section__video-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
.video-section__video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}
.video-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .video-section__play {
    width: 110px;
    height: 110px;
    margin-top: -55px;
    margin-left: -55px;
  }
}
@media (min-width: 1400px) {
  .video-section__play {
    width: 148px;
    height: 148px;
    margin-top: -74px;
    margin-left: -74px;
  }
}
.video-section__play:before {
  content: "";
  width: 132px;
  height: 132px;
  border: 1px solid #fff;
  margin-top: -66px;
  margin-left: -66px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0.5;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .video-section__play:before {
    width: 246px;
    height: 246px;
    margin-top: -123px;
    margin-left: -123px;
  }
}
@media (min-width: 1400px) {
  .video-section__play:before {
    width: 330px;
    height: 330px;
    margin-top: -165px;
    margin-left: -165px;
  }
}
.video-section__play:hover {
  transform: scale(1.1);
}
.video-section__play img {
  width: 13px;
  height: auto;
  margin-left: 4px;
}
@media (min-width: 992px) {
  .video-section__play img {
    width: 22px;
  }
}
@media (min-width: 1400px) {
  .video-section__play img {
    width: 30px;
    margin-left: 6px;
  }
}
.video-section__plastina {
  display: none;
}
@media (min-width: 992px) {
  .video-section__plastina {
    display: block;
    position: absolute;
    bottom: 0;
    left: 41px;
    width: 147px;
    height: auto;
    z-index: 2;
  }
}
@media (min-width: 1400px) {
  .video-section__plastina {
    width: 199px;
    left: 50px;
  }
}

.analogi {
  padding: 0 15px;
  margin-bottom: 54px;
}
@media (min-width: 992px) {
  .analogi {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 56px;
  }
}
@media (min-width: 1400px) {
  .analogi {
    margin-bottom: 75px;
  }
}
.analogi__header {
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .analogi__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 14px;
  }
}
@media (min-width: 1400px) {
  .analogi__header {
    margin-bottom: 24px;
  }
}
.analogi__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
}
@media (min-width: 992px) {
  .analogi__title {
    font-size: 34px;
    max-width: 750px;
  }
}
@media (min-width: 1400px) {
  .analogi__title {
    font-size: 44px;
    max-width: 1000px;
  }
}
.analogi__breadcrumb {
  display: none;
}
@media (min-width: 992px) {
  .analogi__breadcrumb {
    display: block;
    font-size: 18px;
    color: #808080;
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media (min-width: 1400px) {
  .analogi__breadcrumb {
    font-size: 24px;
    margin-top: 20px;
  }
}
.analogi__subheader {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .analogi__subheader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 49px;
  }
}
@media (min-width: 1400px) {
  .analogi__subheader {
    margin-bottom: 76px;
  }
}
.analogi__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #909090;
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .analogi__desc {
    font-size: 18px;
    max-width: 750px;
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
  }
}
@media (min-width: 1400px) {
  .analogi__desc {
    font-size: 24px;
    max-width: 1000px;
  }
}
.analogi__info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 992px) {
  .analogi__info {
    flex-direction: row;
    gap: 10px;
    flex-shrink: 0;
    max-width: 300px;
  }
}
@media (min-width: 1400px) {
  .analogi__info {
    max-width: 340px;
    gap: 14px;
  }
}
.analogi__info-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.analogi__info-icon img {
  width: 100%;
  height: 100%;
}
.analogi__info-text {
  font-size: 14px;
  color: #2d3241;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .analogi__info-text {
    max-width: 183px;
  }
}
@media (min-width: 1400px) {
  .analogi__info-text {
    font-size: 18px;
    max-width: 238px;
  }
}
.analogi__body {
  background: #eff6ff;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  left: -15px;
  width: calc(100% + 30px);
}
@media (min-width: 992px) {
  .analogi__body {
    display: flex;
    height: 458px;
    width: 100%;
    left: 0;
  }
}
@media (min-width: 1400px) {
  .analogi__body {
    height: 620px;
  }
}
.analogi__brands {
  display: flex;
  gap: 10px;
  padding-left: 15px;
  padding-right: 15px;
  height: 249px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 385px) {
  .analogi__brands {
    height: 280px;
  }
}
@media (min-width: 992px) {
  .analogi__brands {
    width: 35%;
    flex-shrink: 0;
    height: 100%;
    gap: 14px;
    padding-left: 25px;
  }
}
@media (min-width: 1400px) {
  .analogi__brands {
    width: 34.2%;
    gap: 16px;
    padding-left: 35px;
  }
}
.analogi__brands::before, .analogi__brands::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 1400px) {
  .analogi__brands::before, .analogi__brands::after {
    height: 30px;
  }
}
.analogi__brands::before {
  top: 0;
  background: linear-gradient(to bottom, #eff6ff, transparent);
}
.analogi__brands::after {
  bottom: 0;
  background: linear-gradient(to top, #eff6ff, transparent);
}
.analogi__brands-col {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  height: 100%;
}
.analogi__brands-col .swiper {
  height: 100%;
  overflow: hidden;
}
.analogi__brands-col .swiper-wrapper {
  transition-timing-function: linear;
}
.analogi__brands-col .swiper-slide {
  width: 100%;
  height: 106px;
  margin-bottom: 10px;
}
@media (min-width: 560px) {
  .analogi__brands-col .swiper-slide {
    height: 120px;
  }
}
@media (min-width: 992px) {
  .analogi__brands-col .swiper-slide {
    height: 109px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1650px) {
  .analogi__brands-col .swiper-slide {
    width: 148px;
    height: 148px;
    margin-bottom: 16px;
  }
}
.analogi__brand-card {
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  height: 106px;
  width: 100%;
}
@media (min-width: 560px) {
  .analogi__brand-card {
    height: 120px;
  }
}
@media (min-width: 992px) {
  .analogi__brand-card {
    height: 109px;
  }
}
@media (min-width: 1650px) {
  .analogi__brand-card {
    padding: 18px;
    width: 148px;
    height: 148px;
  }
}
.analogi__brand-card img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.analogi__features {
  padding: 32px 15px 30px;
}
@media (min-width: 992px) {
  .analogi__features {
    flex: 1;
    min-width: 0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1400px) {
  .analogi__features {
    padding: 74px 40px 55px 94px;
  }
}
.analogi__features-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #3178df;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .analogi__features-title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .analogi__features-title {
    font-size: 44px;
    margin-bottom: 33px;
  }
}
.analogi__features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}
@media (min-width: 1400px) {
  .analogi__features-list {
    gap: 14px;
    margin-bottom: 46px;
  }
}
.analogi__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 1400px) {
  .analogi__feature {
    gap: 14px;
  }
}
.analogi__feature-plus {
  font-size: 18px;
  font-weight: 700;
  color: #d9291b;
  line-height: 1;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .analogi__feature-plus {
    font-size: 24px;
  }
}
.analogi__feature-text {
  font-size: 16px;
  color: #2d3241;
  line-height: 1.3;
}
@media (min-width: 1400px) {
  .analogi__feature-text {
    font-size: 20px;
  }
}
.analogi__cta {
  width: 165px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .analogi__cta {
    width: 224px;
    height: 70px;
    font-size: 18px;
  }
}
.analogi__image {
  display: none;
}
@media (min-width: 992px) {
  .analogi__image {
    display: block;
    width: 299px;
    flex-shrink: 0;
    position: relative;
  }
}
@media (min-width: 1400px) {
  .analogi__image {
    width: 404px;
  }
}
@media (min-width: 992px) {
  .analogi__image img {
    position: absolute;
    width: 299px;
    height: 458px;
    object-fit: cover;
    bottom: 0;
    right: 0;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .analogi__image img {
    width: 404px;
    height: 620px;
  }
}

.projects {
  padding: 0 15px;
  margin-bottom: 75px;
  margin-top: 70px;
}
@media (min-width: 992px) {
  .projects {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 110px;
    margin-top: 84px;
  }
}
@media (min-width: 1400px) {
  .projects {
    margin-bottom: 150px;
    margin-top: 136px;
  }
}
.projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}
@media (min-width: 1400px) {
  .projects__header {
    margin-bottom: 52px;
  }
}
.projects__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
}
@media (min-width: 992px) {
  .projects__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .projects__title {
    font-size: 44px;
  }
}
.projects__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #909090;
  margin-top: 12px;
}
@media (min-width: 992px) {
  .projects__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .projects__subtitle {
    font-size: 24px;
    margin-top: 16px;
  }
}
.projects__all {
  display: none;
}
@media (min-width: 992px) {
  .projects__all {
    display: inline-block;
    font-size: 14px;
    color: #909090;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
  }
  .projects__all:hover {
    color: #3178df;
  }
}
@media (min-width: 1400px) {
  .projects__all {
    font-size: 18px;
  }
}
.projects__swiper {
  overflow: hidden;
  position: relative;
}
.projects__pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .projects__pagination {
    margin-top: 25px;
  }
}
@media (min-width: 1400px) {
  .projects__pagination {
    margin-top: 27px;
  }
}
.projects__pagination .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: #2d3241;
  opacity: 0.2;
  transition: 0.3s;
  flex-grow: 1;
}
@media (min-width: 992px) {
  .projects__pagination .swiper-pagination-bullet {
    flex-grow: 0;
  }
}
.projects__pagination .swiper-pagination-bullet-active {
  background: #d9291b;
  opacity: 1;
}
.projects__all-mobile {
  font-size: 14px;
  color: #909090;
  margin-top: 28px;
  display: inline-block;
  transition: color 0.3s;
}
@media (min-width: 992px) {
  .projects__all-mobile {
    display: none;
  }
}
.projects__all-mobile:hover {
  color: #3178df;
}

.project-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  padding: 22px;
  transition: 0.5s;
}
@media (min-width: 992px) {
  .project-card {
    display: flex;
    height: auto;
    padding: 12px;
  }
}
@media (min-width: 1400px) {
  .project-card {
    padding: 18px;
  }
}
.project-card:hover {
  border: 1px solid #909090;
}
.project-card__image {
  position: relative;
  overflow: hidden;
  height: 233px;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .project-card__image {
    width: 233px;
    flex-shrink: 0;
  }
}
@media (min-width: 1400px) {
  .project-card__image {
    width: 316px;
    height: 316px;
  }
}
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-card__date {
  position: absolute;
  top: 5px;
  left: 5px;
  background: #fff;
  border-radius: 5px;
  padding: 9px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
@media (min-width: 1400px) {
  .project-card__date {
    top: 7px;
    left: 7px;
    padding: 8px 14px;
    gap: 8px;
    height: 50px;
  }
}
.project-card__date-day {
  font-size: 28px;
  font-weight: 400;
  color: #d9291b;
  line-height: 1;
}
@media (min-width: 1400px) {
  .project-card__date-day {
    font-size: 34px;
  }
}
.project-card__date-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.project-card__date-month, .project-card__date-year {
  font-size: 12px;
  color: #1c1b17;
  line-height: 1;
}
@media (min-width: 1400px) {
  .project-card__date-month, .project-card__date-year {
    font-size: 14px;
  }
}
.project-card__play {
  position: absolute;
  top: 7px;
  right: 5px;
  width: 37px;
  height: 37px;
  background: #d9291b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
@media (min-width: 1400px) {
  .project-card__play {
    width: 50px;
    height: 50px;
    top: 7px;
    right: 7px;
  }
}
.project-card__play:hover {
  transform: scale(1.1);
}
.project-card__play svg {
  width: 8px;
  height: 10px;
  margin-left: 2px;
  fill: #fff;
}
@media (min-width: 1400px) {
  .project-card__play svg {
    width: 10px;
    height: 12px;
  }
}
.project-card__content {
  padding: 24px 0 4px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .project-card__content {
    flex: 1;
    padding: 0 28px 0 23px;
  }
}
@media (min-width: 1400px) {
  .project-card__content {
    padding: 12px 38px;
  }
}
.project-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin-bottom: 5px;
  cursor: pointer;
  transition: 0.5s;
}
@media (min-width: 992px) {
  .project-card__title {
    margin-bottom: 9px;
    margin-top: 10px;
  }
}
@media (min-width: 1400px) {
  .project-card__title {
    font-size: 18px;
  }
}
.project-card__title:hover {
  color: #909090;
}
.project-card__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #2d3241;
  margin-bottom: 15px;
}
@media (min-width: 1400px) {
  .project-card__text {
    font-size: 16px;
  }
}
.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
@media (min-width: 992px) {
  .project-card__footer {
    margin-bottom: 10px;
  }
}
.project-card__city {
  font-size: 14px;
  color: #909090;
}
@media (min-width: 1400px) {
  .project-card__city {
    font-size: 16px;
  }
}
.project-card__link {
  font-size: 14px;
  color: #3178df;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .project-card__link {
    font-size: 16px;
  }
}
.project-card__link:hover {
  color: #2d3241;
}

.delivery {
  padding: 0 15px;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .delivery {
    height: 480px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1400px) {
  .delivery {
    height: 450px;
  }
}
.delivery__inner {
  position: relative;
  background: #eff6ff;
  border-radius: 12px;
  padding: 25px 20px 0 20px;
  overflow: hidden;
}
@media (min-width: 991px) {
  .delivery__inner {
    padding: 50px 40px;
    min-height: 320px;
    height: 100%;
  }
}
@media (min-width: 1400px) {
  .delivery__inner {
    padding: 45px 55px;
    min-height: 380px;
  }
}
.delivery__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: #2d3241;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .delivery__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (min-width: 991px) {
  .delivery__title {
    font-size: 34px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .delivery__title {
    font-size: 44px;
    margin-bottom: 35px;
  }
}
.delivery__selectors {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .delivery__selectors {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media (min-width: 991px) {
  .delivery__selectors {
    max-width: 560px;
  }
}
@media (min-width: 1400px) {
  .delivery__selectors {
    gap: 30px;
    margin-bottom: 35px;
    max-width: 820px;
  }
}
.delivery__field {
  flex: 1;
  min-width: 0;
}
.delivery__label {
  display: block;
  font-size: 14px;
  color: #909090;
  margin-bottom: 8px;
}
@media (min-width: 991px) {
  .delivery__label {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.delivery__label--lg {
  display: none;
}
@media (min-width: 1400px) {
  .delivery__label--lg {
    display: block;
  }
}
.delivery__label--sm {
  display: block;
}
@media (min-width: 1400px) {
  .delivery__label--sm {
    display: none;
  }
}
.delivery__select {
  position: relative;
  user-select: none;
}
.delivery__select-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 40px 0 18px;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: #2d3241;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) {
  .delivery__select-toggle {
    height: 62px;
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .delivery__select-toggle {
    padding: 0 45px 0 22px;
  }
}
.delivery__select-toggle svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
  pointer-events: none;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .delivery__select-toggle svg {
    right: 22px;
  }
}
.delivery__select-toggle:hover {
  border-color: rgba(49, 120, 223, 0.3);
}
.delivery__select.is-open .delivery__select-toggle {
  border-color: #3178df;
}
.delivery__select.is-open .delivery__select-toggle svg {
  transform: translateY(-50%) rotate(180deg);
}
.delivery__select-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  max-height: 300px;
  overflow-y: auto;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.delivery__select.is-open .delivery__select-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.delivery__select-item {
  padding: 10px 18px;
  font-size: 14px;
  color: #2d3241;
  cursor: pointer;
  transition: background 0.15s;
}
@media (min-width: 991px) {
  .delivery__select-item {
    font-size: 16px;
    padding: 12px 22px;
  }
}
.delivery__select-item:hover {
  background: #eff6ff;
}
.delivery__select-item.is-active {
  background: #eff6ff;
  color: #3178df;
}
.delivery__result {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .delivery__result {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-bottom: 30px;
    max-width: 560px;
  }
}
@media (min-width: 1200px) {
  .delivery__result {
    gap: 20px 55px;
  }
}
@media (min-width: 1400px) {
  .delivery__result {
    max-width: 832px;
  }
}
.delivery__result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #2d3241;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .delivery__result-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (min-width: 1200px) {
  .delivery__result-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}
@media (min-width: 1400px) {
  .delivery__result-item {
    font-size: 18px;
  }
}
.delivery__result-icon {
  width: 22px;
  height: 16px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .delivery__result-icon {
    align-self: flex-start;
    padding-top: 5px;
  }
}
@media (min-width: 1400px) {
  .delivery__result-icon {
    align-self: center;
  }
}
.delivery__result-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.delivery__result-content {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .delivery__result-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}
@media (min-width: 1400px) {
  .delivery__result-content {
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
  }
}
.delivery__result-label {
  color: #2d3241;
}
.delivery__result-value {
  font-weight: 700;
  color: #2d3241;
}
.delivery__divider {
  height: 1px;
  background: rgba(45, 50, 65, 0.1);
  margin-bottom: 18px;
  max-width: 720px;
}
@media (min-width: 768px) {
  .delivery__divider {
    margin-bottom: 22px;
  }
}
@media (min-width: 992px) {
  .delivery__divider {
    max-width: 560px;
  }
}
@media (min-width: 1400px) {
  .delivery__divider {
    max-width: 832px;
  }
}
.delivery__notes {
  max-width: 720px;
  font-size: 13px;
  line-height: 1.5;
  color: #606778;
}
@media (min-width: 992px) {
  .delivery__notes {
    max-width: 560px;
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .delivery__notes {
    font-size: 16px;
    max-width: 832px;
  }
}
.delivery__notes p {
  margin-bottom: 4px;
}
.delivery__notes p:last-child {
  margin-bottom: 0;
}
.delivery__notes strong {
  font-weight: 700;
}
.delivery__notes a {
  color: #606778;
  font-weight: 700;
}
.delivery__image {
  margin-top: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}
.delivery__image img {
  display: block;
  width: 360px;
  max-width: 360px;
  height: 354px;
  position: relative;
  right: -74px;
}
@media (min-width: 768px) {
  .delivery__image {
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    width: 50%;
    max-width: 560px;
    margin-top: 0;
  }
  .delivery__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
    position: relative;
    right: -80px;
  }
}
@media (min-width: 1200px) {
  .delivery__image {
    width: 48%;
    max-width: 620px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .delivery__image img {
    object-position: right center;
  }
}
@media (min-width: 1400px) {
  .delivery__image {
    width: 45%;
    max-width: 720px;
    display: flex;
    justify-content: flex-end;
  }
  .delivery__image img {
    width: 542px;
    max-width: 542px;
    height: 450px;
    right: 0;
  }
}

.text-tabs {
  overflow: hidden;
  padding: 0 15px;
  margin-bottom: 65px;
}
@media (min-width: 768px) {
  .text-tabs {
    margin-bottom: 83px;
  }
}
@media (min-width: 992px) {
  .text-tabs {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1400px) {
  .text-tabs {
    margin-bottom: 130px;
  }
}
.text-tabs__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  color: #2d3241;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .text-tabs__title {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
@media (min-width: 992px) {
  .text-tabs__title {
    font-size: 34px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .text-tabs__title {
    font-size: 44px;
    margin-bottom: 35px;
  }
}
.text-tabs__nav {
  overflow: visible !important;
  position: relative;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(45, 50, 65, 0.1);
}
@media (min-width: 992px) {
  .text-tabs__nav {
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .text-tabs__nav {
    margin-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .text-tabs__nav .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
    transform: none !important;
  }
}
@media (min-width: 1400px) {
  .text-tabs__nav .swiper-wrapper {
    gap: 0 55px;
  }
}
.text-tabs__nav .swiper-slide {
  width: auto !important;
}
@media (min-width: 992px) {
  .text-tabs__nav .swiper-slide {
    margin: 0 !important;
  }
}
.text-tabs__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .text-tabs__tab {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .text-tabs__tab {
    font-size: 22px;
    height: 44px;
    padding: 0 0 14px;
  }
}
.text-tabs__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #d9291b;
  opacity: 0;
  transition: opacity 0.2s;
}
.text-tabs__tab:hover {
  color: #d9291b;
}
.text-tabs__tab.is-active {
  color: #d9291b;
}
.text-tabs__tab.is-active::after {
  opacity: 1;
}
.text-tabs__body {
  display: none;
}
.text-tabs__body.is-active {
  display: block;
}
.text-tabs__content {
  position: relative;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.text-tabs__content.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
}
.text-tabs__content.is-expanded {
  max-height: none !important;
}
.text-tabs__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
  background: transparent;
  border: none;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #909090;
  cursor: pointer;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .text-tabs__more {
    font-size: 18px;
    margin-top: 25px;
  }
}
.text-tabs__more svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  position: relative;
  top: 2px;
}
@media (min-width: 1400px) {
  .text-tabs__more svg {
    top: 1px;
  }
}
.text-tabs__more:hover {
  color: #2d3241;
}
.text-tabs__more.is-expanded svg {
  transform: rotate(180deg);
  top: 0;
}
.text-tabs__text {
  font-size: 16px;
  line-height: 1.5;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .text-tabs__text {
    font-size: 18px;
    line-height: 130%;
  }
}
.text-tabs__text p {
  margin: 0 0 12px;
}
.text-tabs__text p:last-child {
  margin-bottom: 0;
}
.text-tabs__text h2,
.text-tabs__text h3,
.text-tabs__text h4 {
  font-weight: 700;
  color: #2d3241;
  line-height: 1.2;
  margin: 25px 0 12px;
}
.text-tabs__text h2:first-child,
.text-tabs__text h3:first-child,
.text-tabs__text h4:first-child {
  margin-top: 0;
}
.text-tabs__text h2 {
  font-size: 20px;
}
@media (min-width: 992px) {
  .text-tabs__text h2 {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .text-tabs__text h2 {
    font-size: 28px;
  }
}
.text-tabs__text h3 {
  font-size: 18px;
}
@media (min-width: 992px) {
  .text-tabs__text h3 {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .text-tabs__text h3 {
    font-size: 22px;
  }
}
.text-tabs__text h4 {
  font-size: 16px;
}
@media (min-width: 1400px) {
  .text-tabs__text h4 {
    font-size: 18px;
  }
}
.text-tabs__text ul,
.text-tabs__text ol {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}
.text-tabs__text ul li,
.text-tabs__text ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.text-tabs__text ul li:last-child,
.text-tabs__text ol li:last-child {
  margin-bottom: 0;
}
.text-tabs__text ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9291b;
}
.text-tabs__text ol {
  counter-reset: tabs-ol;
}
.text-tabs__text ol li {
  counter-increment: tabs-ol;
  padding-left: 28px;
}
.text-tabs__text ol li::before {
  content: counter(tabs-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #d9291b;
}
.text-tabs__text a {
  color: #3178df;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.text-tabs__text a:hover {
  color: rgb(29.7142857143, 95.6428571429, 191.2857142857);
}
.text-tabs__text blockquote {
  margin: 18px 0;
  padding: 18px 20px;
  background: #eff6ff;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
  color: #2d3241;
}
@media (min-width: 768px) {
  .text-tabs__text blockquote {
    padding: 20px 25px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .text-tabs__text blockquote {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 16px;
    padding: 22px 30px;
  }
}
@media (min-width: 1400px) {
  .text-tabs__text blockquote {
    font-size: 18px;
    padding: 26px 35px;
  }
}
.text-tabs__text blockquote p {
  margin: 0;
  font-weight: 700;
}
.text-tabs__text blockquote a {
  color: #3178df;
  font-weight: 700;
}
.text-tabs__text table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1400px) {
  .text-tabs__text table {
    font-size: 18px;
  }
}
.text-tabs__text table th,
.text-tabs__text table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(45, 50, 65, 0.1);
}
@media (min-width: 1400px) {
  .text-tabs__text table th,
  .text-tabs__text table td {
    padding: 14px 20px;
  }
}
.text-tabs__text table th {
  background: #eff6ff;
  font-weight: 700;
  color: #2d3241;
}
.text-tabs__text table tr:last-child td {
  border-bottom: none;
}
.text-tabs__text table tbody tr:nth-child(even) {
  background: rgba(239, 246, 255, 0.5);
}
.text-tabs__text .text-tabs__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
}
.text-tabs__text .text-tabs__table-scroll table {
  margin: 0;
  min-width: 500px;
}
.text-tabs__text strong {
  font-weight: 700;
}

.news {
  padding: 0 15px;
  margin-bottom: 78px;
  margin-top: 0;
}
@media (min-width: 992px) {
  .news {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 110px;
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .news {
    margin-bottom: 150px;
  }
}
.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 1400px) {
  .news__header {
    margin-bottom: 52px;
  }
}
.news__title-wrap {
  flex: 1;
  min-width: 0;
}
.news__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
}
@media (min-width: 992px) {
  .news__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .news__title {
    font-size: 44px;
  }
}
.news__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #909090;
  margin-top: 12px;
}
@media (min-width: 992px) {
  .news__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .news__subtitle {
    font-size: 24px;
    margin-top: 16px;
  }
}
.news__all {
  display: none;
}
@media (min-width: 992px) {
  .news__all {
    display: inline-block;
    font-size: 16px;
    color: #909090;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
    margin-bottom: 3px;
  }
  .news__all:hover {
    color: #3178df;
  }
}
@media (min-width: 1400px) {
  .news__all {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.news__all-mobile {
  display: inline-block;
  font-size: 14px;
  color: #909090;
  margin-top: 28px;
  transition: color 0.2s;
}
@media (min-width: 992px) {
  .news__all-mobile {
    display: none;
  }
}
.news__all-mobile:hover {
  color: #3178df;
}
.news__swiper {
  overflow: hidden;
  position: relative;
}
.news__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .news__pagination {
    margin-top: 25px;
  }
}
@media (min-width: 1400px) {
  .news__pagination {
    margin-top: 27px;
  }
}
.news__pagination.swiper-pagination-lock {
  display: none;
}
.news__pagination .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: #2d3241;
  opacity: 0.2;
  transition: 0.3s;
  flex-grow: 1;
}
@media (min-width: 992px) {
  .news__pagination .swiper-pagination-bullet {
    flex-grow: 0;
  }
}
.news__pagination .swiper-pagination-bullet-active {
  background: #d9291b;
  opacity: 1;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  height: auto;
}
.news-card__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  border-radius: 5px;
  margin-bottom: 18px;
}
@media (min-width: 1400px) {
  .news-card__image {
    margin-bottom: 22px;
  }
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card__image img {
  transform: scale(1.04);
}
.news-card__date {
  font-size: 16px;
  color: #909090;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (min-width: 991px) {
  .news-card__date {
    margin-bottom: 12px;
  }
}
.news-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin-bottom: 12px;
  transition: color 0.2s;
}
@media (min-width: 991px) {
  .news-card__title {
    margin-bottom: 14px;
  }
}
.news-card:hover .news-card__title {
  color: #3178df;
}
.news-card__text {
  font-size: 16px;
  line-height: 1.4;
  color: #2d3241;
}

.shipped-card {
  padding: 0 15px;
  margin-top: 15px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .shipped-card {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 25px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .shipped-card {
    margin-bottom: 64px;
  }
}
.shipped-card__header {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .shipped-card__header {
    margin-bottom: 24px;
  }
}
@media (min-width: 1400px) {
  .shipped-card__header {
    margin-bottom: 32px;
  }
}
.shipped-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: #909090;
}
@media (min-width: 1400px) {
  .shipped-card__meta {
    font-size: 16px;
  }
}
.shipped-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.shipped-card__meta-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.shipped-card__meta-divider {
  width: 4px;
  height: 4px;
  background: #909090;
  opacity: 0.4;
  border-radius: 50%;
}
@media (max-width: 540px) {
  .shipped-card__meta-divider {
    display: none;
  }
}
.shipped-card__layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .shipped-card__layout {
    flex-direction: row;
    gap: 25px;
  }
}
@media (min-width: 1400px) {
  .shipped-card__layout {
    gap: 30px;
  }
}
.shipped-card__main {
  min-width: 0;
  flex: 1;
}
.shipped-card__aside {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .shipped-card__aside {
    width: 320px;
  }
}
@media (min-width: 1400px) {
  .shipped-card__aside {
    width: 380px;
  }
}

.shipped-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  background: #f3f5f8;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .shipped-gallery__main {
    aspect-ratio: 16/9;
    margin-bottom: 12px;
  }
}
@media (min-width: 1400px) {
  .shipped-gallery__main {
    margin-bottom: 14px;
  }
}
.shipped-gallery__swiper, .shipped-gallery__main-swiper {
  width: 100%;
  height: 100%;
}
.shipped-gallery__swiper .swiper-slide, .shipped-gallery__main-swiper .swiper-slide {
  cursor: zoom-in;
  overflow: hidden;
}
.shipped-gallery__swiper img, .shipped-gallery__main-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.shipped-gallery__swiper .swiper-slide:hover img, .shipped-gallery__main-swiper .swiper-slide:hover img {
  transform: scale(1.03);
}
.shipped-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2d3241;
  transition: 0.25s;
}
@media (min-width: 1400px) {
  .shipped-gallery__btn {
    width: 46px;
    height: 46px;
  }
}
.shipped-gallery__btn svg {
  width: 12px;
  height: 18px;
  transition: color 0.25s;
}
.shipped-gallery__btn:hover {
  background: #d9291b;
  color: #fff;
}
.shipped-gallery__btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.shipped-gallery__btn.swiper-button-disabled:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #2d3241;
}
.shipped-gallery__btn--prev {
  left: 12px;
}
@media (min-width: 992px) {
  .shipped-gallery__btn--prev {
    left: 16px;
  }
}
.shipped-gallery__btn--next {
  right: 12px;
}
@media (min-width: 992px) {
  .shipped-gallery__btn--next {
    right: 16px;
  }
}
.shipped-gallery__counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}
@media (min-width: 1400px) {
  .shipped-gallery__counter {
    padding: 6px 12px;
    font-size: 13px;
    bottom: 14px;
    right: 14px;
  }
}
.shipped-gallery__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s;
}
@media (min-width: 1400px) {
  .shipped-gallery__zoom {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
}
.shipped-gallery__zoom svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.shipped-gallery__thumbs {
  width: 100%;
  overflow: hidden;
}
.shipped-gallery__thumbs .swiper-slide {
  width: 78px !important;
  height: 60px;
  aspect-ratio: 4/3;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s;
  position: relative;
}
@media (min-width: 768px) {
  .shipped-gallery__thumbs .swiper-slide {
    width: 92px !important;
    height: 70px;
  }
}
@media (min-width: 1400px) {
  .shipped-gallery__thumbs .swiper-slide {
    width: 108px !important;
    height: 82px;
  }
}
.shipped-gallery__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shipped-gallery__thumbs .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: border-color 0.25s;
  pointer-events: none;
}
.shipped-gallery__thumbs .swiper-slide:hover {
  opacity: 0.85;
}
.shipped-gallery__thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.shipped-gallery__thumbs .swiper-slide.swiper-slide-thumb-active::after {
  border-color: #d9291b;
}

.shipped-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1f2c;
  display: block;
}
.shipped-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.shipped-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.shipped-video:hover .shipped-video__poster {
  transform: scale(1.04);
}
.shipped-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d9291b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .shipped-video__play {
    width: 76px;
    height: 76px;
  }
}
@media (min-width: 1400px) {
  .shipped-video__play {
    width: 92px;
    height: 92px;
  }
}
.shipped-video__play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: shippedPulse 2.4s infinite ease-out;
}
.shipped-video__play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
@media (min-width: 1400px) {
  .shipped-video__play svg {
    width: 26px;
    height: 26px;
  }
}
.shipped-video:hover .shipped-video__play {
  background: #a80c00;
  transform: translate(-50%, -50%) scale(1.06);
}
.shipped-video__label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}
@media (min-width: 1400px) {
  .shipped-video__label {
    bottom: 20px;
    left: 20px;
    padding: 9px 16px;
    font-size: 14px;
  }
}
.shipped-video__label svg {
  width: 14px;
  height: 14px;
}

@keyframes shippedPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.shipped-info {
  background: #eff6ff;
  border-radius: 5px;
  padding: 22px 22px;
}
@media (min-width: 992px) {
  .shipped-info {
    padding: 24px 24px;
    position: sticky;
    top: 20px;
  }
}
@media (min-width: 1400px) {
  .shipped-info {
    padding: 30px 30px;
  }
}
.shipped-info__price-block {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(45, 50, 65, 0.1);
}
.shipped-info__price-label {
  font-size: 14px;
  color: #909090;
  margin-bottom: 6px;
}
@media (min-width: 1400px) {
  .shipped-info__price-label {
    font-size: 16px;
  }
}
.shipped-info__price-value {
  font-size: 28px;
  font-weight: 700;
  color: #2d3241;
  line-height: 1.1;
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .shipped-info__price-value {
    font-size: 32px;
  }
}
@media (min-width: 1400px) {
  .shipped-info__price-value {
    font-size: 36px;
  }
}
.shipped-info__price-value span {
  font-size: 0.65em;
  color: #2d3241;
  margin-left: 4px;
}
.shipped-info__price-date {
  font-size: 12px;
  color: #909090;
}
@media (min-width: 1400px) {
  .shipped-info__price-date {
    font-size: 13px;
  }
}
.shipped-info__specs-title {
  font-size: 15px;
  font-weight: 700;
  color: #2d3241;
  margin-top: 22px;
  margin-bottom: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(45, 50, 65, 0.1);
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .shipped-info__specs-title {
    font-size: 17px;
    margin-top: 26px;
    margin-bottom: 18px;
    padding-top: 26px;
  }
}
.shipped-info__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1400px) {
  .shipped-info__specs {
    gap: 12px;
  }
}
.shipped-info__spec {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
}
@media (min-width: 1400px) {
  .shipped-info__spec {
    font-size: 15px;
  }
}
.shipped-info__spec-label {
  color: #909090;
  white-space: nowrap;
  flex-shrink: 0;
}
.shipped-info__spec-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(45, 50, 65, 0.25);
  min-width: 8px;
  transform: translateY(-3px);
}
.shipped-info__spec-value {
  color: #2d3241;
  font-weight: 700;
  text-align: right;
}
.shipped-info__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shipped-info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 1400px) {
  .shipped-info__btn {
    height: 54px;
  }
}

.shipped-tabs {
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .shipped-tabs {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .shipped-tabs {
    margin-top: 65px;
    margin-bottom: 70px;
  }
}
@media (min-width: 1400px) {
  .shipped-tabs {
    margin-top: 90px;
    margin-bottom: 100px;
  }
}
.shipped-tabs__nav {
  overflow: visible !important;
  position: relative;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(45, 50, 65, 0.1);
}
@media (min-width: 992px) {
  .shipped-tabs__nav {
    margin-bottom: 28px;
  }
}
@media (min-width: 1400px) {
  .shipped-tabs__nav {
    margin-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .shipped-tabs__nav .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
    transform: none !important;
  }
}
@media (min-width: 1400px) {
  .shipped-tabs__nav .swiper-wrapper {
    gap: 0 55px;
  }
}
.shipped-tabs__nav .swiper-slide {
  width: auto !important;
}
@media (min-width: 992px) {
  .shipped-tabs__nav .swiper-slide {
    margin: 0 !important;
  }
}
.shipped-tabs__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: color 0.2s;
  font-family: "Inter Tight", sans-serif;
}
@media (min-width: 768px) {
  .shipped-tabs__tab {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .shipped-tabs__tab {
    font-size: 20px;
    height: 44px;
    padding: 0 0 14px;
  }
}
.shipped-tabs__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #d9291b;
  opacity: 0;
  transition: opacity 0.2s;
}
.shipped-tabs__tab:hover {
  color: #d9291b;
}
.shipped-tabs__tab.is-active {
  color: #d9291b;
}
.shipped-tabs__tab.is-active::after {
  opacity: 1;
}
.shipped-tabs__body {
  display: none;
}
.shipped-tabs__body.is-active {
  display: block;
}
.shipped-tabs__content {
  font-size: 15px;
  line-height: 1.5;
  color: #2d3241;
}
@media (min-width: 992px) {
  .shipped-tabs__content {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .shipped-tabs__content {
    font-size: 17px;
    line-height: 1.55;
  }
}
.shipped-tabs__content p {
  margin: 0 0 12px;
}
.shipped-tabs__content p:last-child {
  margin-bottom: 0;
}
.shipped-tabs__content h2,
.shipped-tabs__content h3,
.shipped-tabs__content h4 {
  font-weight: 700;
  color: #2d3241;
  line-height: 1.2;
  margin: 22px 0 12px;
}
.shipped-tabs__content h2:first-child,
.shipped-tabs__content h3:first-child,
.shipped-tabs__content h4:first-child {
  margin-top: 0;
}
.shipped-tabs__content h2 {
  font-size: 20px;
}
@media (min-width: 992px) {
  .shipped-tabs__content h2 {
    font-size: 22px;
  }
}
@media (min-width: 1400px) {
  .shipped-tabs__content h2 {
    font-size: 26px;
  }
}
.shipped-tabs__content h3 {
  font-size: 17px;
}
@media (min-width: 992px) {
  .shipped-tabs__content h3 {
    font-size: 19px;
  }
}
@media (min-width: 1400px) {
  .shipped-tabs__content h3 {
    font-size: 21px;
  }
}
.shipped-tabs__content h4 {
  font-size: 15px;
}
@media (min-width: 1400px) {
  .shipped-tabs__content h4 {
    font-size: 17px;
  }
}
.shipped-tabs__content ul,
.shipped-tabs__content ol {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}
.shipped-tabs__content ul li,
.shipped-tabs__content ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.shipped-tabs__content ul li:last-child,
.shipped-tabs__content ol li:last-child {
  margin-bottom: 0;
}
.shipped-tabs__content ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9291b;
}
.shipped-tabs__content ol {
  counter-reset: shipped-tabs-ol;
}
.shipped-tabs__content ol li {
  counter-increment: shipped-tabs-ol;
  padding-left: 28px;
}
.shipped-tabs__content ol li::before {
  content: counter(shipped-tabs-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #d9291b;
}
.shipped-tabs__content a {
  color: #3178df;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.shipped-tabs__content a:hover {
  color: rgb(29.7142857143, 95.6428571429, 191.2857142857);
}
.shipped-tabs__content blockquote {
  margin: 18px 0;
  padding: 18px 20px;
  background: #eff6ff;
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.5;
  color: #2d3241;
}
@media (min-width: 768px) {
  .shipped-tabs__content blockquote {
    padding: 20px 25px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .shipped-tabs__content blockquote {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 16px;
    padding: 22px 30px;
  }
}
@media (min-width: 1400px) {
  .shipped-tabs__content blockquote {
    font-size: 17px;
    padding: 26px 35px;
  }
}
.shipped-tabs__content blockquote p {
  margin: 0;
  font-weight: 700;
}
.shipped-tabs__content blockquote a {
  color: #3178df;
  font-weight: 700;
}
.shipped-tabs__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 1400px) {
  .shipped-tabs__content table {
    font-size: 17px;
  }
}
.shipped-tabs__content table th,
.shipped-tabs__content table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(45, 50, 65, 0.1);
}
@media (min-width: 1400px) {
  .shipped-tabs__content table th,
  .shipped-tabs__content table td {
    padding: 14px 20px;
  }
}
.shipped-tabs__content table th {
  background: #eff6ff;
  font-weight: 700;
  color: #2d3241;
}
.shipped-tabs__content table tr:last-child td {
  border-bottom: none;
}
.shipped-tabs__content table tbody tr:nth-child(even) {
  background: rgba(239, 246, 255, 0.5);
}
.shipped-tabs__content .shipped-tabs__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
}
.shipped-tabs__content .shipped-tabs__table-scroll table {
  margin: 0;
  min-width: 500px;
}
.shipped-tabs__content strong {
  font-weight: 700;
}

.shipped-quote {
  margin-bottom: 50px;
  position: relative;
  padding: 24px 22px;
  background: linear-gradient(135deg, rgba(49, 120, 223, 0.08) 0%, rgba(49, 120, 223, 0.02) 100%);
  border-radius: 5px;
  border-left: 4px solid #d9291b;
}
@media (min-width: 992px) {
  .shipped-quote {
    padding: 30px 36px 30px 38px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .shipped-quote {
    padding: 40px 48px 40px 52px;
    margin-bottom: 90px;
  }
}
.shipped-quote__icon {
  position: absolute;
  top: -10px;
  left: 22px;
  width: 36px;
  height: 36px;
  background: #d9291b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .shipped-quote__icon {
    top: -16px;
    left: 28px;
    width: 44px;
    height: 44px;
  }
}
.shipped-quote__icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
@media (min-width: 992px) {
  .shipped-quote__icon svg {
    width: 20px;
    height: 20px;
  }
}
.shipped-quote__text {
  font-size: 15px;
  line-height: 1.5;
  color: #2d3241;
  font-style: italic;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .shipped-quote__text {
    font-size: 17px;
  }
}
@media (min-width: 1400px) {
  .shipped-quote__text {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 22px;
  }
}
.shipped-quote__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shipped-quote__author-name {
  font-size: 14px;
  font-weight: 700;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .shipped-quote__author-name {
    font-size: 16px;
  }
}
.shipped-quote__author-role {
  font-size: 12px;
  color: #909090;
  margin-top: 2px;
}
@media (min-width: 1400px) {
  .shipped-quote__author-role {
    font-size: 14px;
  }
}

.fancybox__container .fancybox__nav {
  --f-button-svg-filter: none;
}
.fancybox__container .fancybox__toolbar {
  --f-button-svg-filter: none;
  text-shadow: none;
}
.fancybox__container .fancybox__slide.has-iframe .fancybox__content,
.fancybox__container .fancybox__slide.has-html5video .fancybox__content,
.fancybox__container .fancybox__slide.has-video .fancybox__content {
  padding: 0;
}

.f-button.is-close-btn {
  --f-button-svg-filter: none !important;
  filter: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
}
.f-button.is-close-btn svg {
  filter: none !important;
}

.shipped-card--v2 .shipped-gallery__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .shipped-card--v2 .shipped-gallery__top {
    flex-direction: row;
    gap: 12px;
  }
}
@media (min-width: 1400px) {
  .shipped-card--v2 .shipped-gallery__top {
    gap: 14px;
    margin-bottom: 14px;
  }
}
.shipped-card--v2 .shipped-gallery__main {
  flex: 1 1 60%;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .shipped-card--v2 .shipped-gallery__main {
    aspect-ratio: 4/3;
  }
}
@media (min-width: 1400px) {
  .shipped-card--v2 .shipped-gallery__main {
    aspect-ratio: 4/3;
  }
}
.shipped-card--v2 .shipped-video {
  flex: 1 1 40%;
}
@media (min-width: 768px) {
  .shipped-card--v2 .shipped-video {
    aspect-ratio: 4/3;
  }
}
@media (min-width: 992px) {
  .shipped-card--v2 .shipped-video__play {
    width: 64px;
    height: 64px;
  }
  .shipped-card--v2 .shipped-video__play svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1400px) {
  .shipped-card--v2 .shipped-video__play {
    width: 76px;
    height: 76px;
  }
  .shipped-card--v2 .shipped-video__play svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 1400px) {
  .shipped-card--v2 .shipped-video__label {
    bottom: 14px;
    left: 14px;
    padding: 7px 12px;
    font-size: 12px;
  }
}

.shipped-card--tiles .shipped-card__main {
  width: 100%;
}
.shipped-card--tiles .shipped-gallery__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .shipped-card--tiles .shipped-gallery__top {
    flex-direction: row;
    gap: 12px;
  }
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-gallery__top {
    gap: 14px;
    margin-bottom: 14px;
  }
}
.shipped-card--tiles .shipped-gallery__main,
.shipped-card--tiles .shipped-video,
.shipped-card--tiles .shipped-gallery__scheme,
.shipped-card--tiles .shipped-gallery__map,
.shipped-card--tiles .shipped-gallery__top > .shipped-info {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .shipped-card--tiles .shipped-gallery__main,
  .shipped-card--tiles .shipped-video,
  .shipped-card--tiles .shipped-gallery__scheme,
  .shipped-card--tiles .shipped-gallery__map,
  .shipped-card--tiles .shipped-gallery__top > .shipped-info {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (min-width: 768px) {
  .shipped-card--tiles.shipped-card--info-fixed .shipped-gallery__top > .shipped-info {
    flex: 0 0 380px;
  }
}
.shipped-card--tiles.shipped-card--info-fixed .shipped-gallery__top > .shipped-info {
  display: flex;
  flex-direction: column;
}
.shipped-card--tiles.shipped-card--info-fixed .shipped-gallery__top > .shipped-info .shipped-info__actions {
  margin-top: auto;
}
.shipped-card--tiles.shipped-card--info-fixed .shipped-info__meta {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1400px) {
  .shipped-card--tiles.shipped-card--info-fixed .shipped-info__meta {
    margin: 22px 0;
    gap: 12px;
  }
}
.shipped-card--tiles.shipped-card--info-fixed .shipped-info__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .shipped-card--tiles.shipped-card--info-fixed .shipped-info__meta-item {
    font-size: 16px;
    gap: 12px;
  }
}
.shipped-card--tiles.shipped-card--info-fixed .shipped-info__meta-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.shipped-card--tiles .shipped-gallery__main,
.shipped-card--tiles .shipped-video,
.shipped-card--tiles .shipped-gallery__scheme,
.shipped-card--tiles .shipped-gallery__map {
  aspect-ratio: 4/3;
}
@media (min-width: 992px) {
  .shipped-card--tiles .shipped-video__play {
    width: 64px;
    height: 64px;
  }
  .shipped-card--tiles .shipped-video__play svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-video__play {
    width: 76px;
    height: 76px;
  }
  .shipped-card--tiles .shipped-video__play svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-video__label {
    bottom: 14px;
    left: 14px;
    padding: 7px 12px;
    font-size: 12px;
  }
}
.shipped-card--tiles .shipped-gallery__scheme {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8d8d8;
  cursor: zoom-in;
  transition: border-color 0.25s;
}
.shipped-card--tiles .shipped-gallery__scheme img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
  transition: transform 0.4s ease;
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-gallery__scheme img {
    padding: 16px;
  }
}
.shipped-card--tiles .shipped-gallery__scheme:hover {
  border-color: #3178df;
}
.shipped-card--tiles .shipped-gallery__scheme:hover img {
  transform: scale(1.02);
}
.shipped-card--tiles .shipped-gallery__scheme:hover .shipped-gallery__scheme-zoom {
  background: #3178df;
}
.shipped-card--tiles .shipped-gallery__scheme-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.25s;
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-gallery__scheme-zoom {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
}
.shipped-card--tiles .shipped-gallery__scheme-zoom svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.shipped-card--tiles .shipped-gallery__scheme-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-gallery__scheme-label {
    bottom: 14px;
    left: 14px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
.shipped-card--tiles .shipped-gallery__scheme-label svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}
.shipped-card--tiles .shipped-gallery__map {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background: #eff6ff;
  border: 1px solid #d8d8d8;
}
.shipped-card--tiles .shipped-gallery__map-canvas {
  width: 100%;
  height: 100%;
}
.shipped-card--tiles .shipped-gallery__map-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-gallery__map-label {
    bottom: 14px;
    left: 14px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
.shipped-card--tiles .shipped-gallery__map-label svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}
.shipped-card--tiles .shipped-gallery__top > .shipped-info {
  padding: 18px;
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-gallery__top > .shipped-info {
    padding: 22px;
  }
}
@media (min-width: 992px) {
  .shipped-card--tiles .shipped-gallery__top > .shipped-info {
    position: static;
  }
}
.shipped-card--tiles .shipped-gallery__top > .shipped-info .shipped-info__specs-title {
  margin-top: 16px;
  margin-bottom: 10px;
  padding-top: 16px;
  font-size: 13px;
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-gallery__top > .shipped-info .shipped-info__specs-title {
    margin-top: 20px;
    margin-bottom: 12px;
    padding-top: 20px;
    font-size: 14px;
  }
}
.shipped-card--tiles .shipped-gallery__top > .shipped-info .shipped-info__specs {
  gap: 6px;
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-gallery__top > .shipped-info .shipped-info__specs {
    gap: 8px;
  }
}
.shipped-card--tiles .shipped-gallery__top > .shipped-info .shipped-info__spec {
  font-size: 12px;
}
@media (min-width: 1400px) {
  .shipped-card--tiles .shipped-gallery__top > .shipped-info .shipped-info__spec {
    font-size: 13px;
  }
}

.scheme {
  margin: 0 0 50px;
}
@media (min-width: 992px) {
  .scheme {
    margin-bottom: 70px;
  }
}
@media (min-width: 1400px) {
  .scheme {
    margin-bottom: 90px;
  }
}
.scheme__header {
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .scheme__header {
    margin-bottom: 22px;
  }
}
@media (min-width: 1400px) {
  .scheme__header {
    margin-bottom: 28px;
  }
}
.scheme__title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 992px) {
  .scheme__title {
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .scheme__title {
    font-size: 34px;
  }
}
.scheme__subtitle {
  font-size: 14px;
  color: #909090;
  margin-top: 8px;
}
@media (min-width: 992px) {
  .scheme__subtitle {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .scheme__subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
}
.scheme__image {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #f3f5f8;
  border: 1px solid #d8d8d8;
  cursor: zoom-in;
  transition: border-color 0.25s;
}
.scheme__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.scheme__image:hover {
  border-color: #3178df;
  /*img {
          transform: scale(1.01);
        }
  */
}
.scheme__image:hover .scheme__zoom {
  background: #3178df;
}
.scheme__zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  backdrop-filter: blur(4px);
  transition: background 0.25s;
}
@media (min-width: 1400px) {
  .scheme__zoom {
    top: 18px;
    right: 18px;
    padding: 10px 16px;
    font-size: 14px;
  }
}
.scheme__zoom svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  flex-shrink: 0;
}
.scheme__caption {
  margin-top: 12px;
  font-size: 13px;
  color: #909090;
  text-align: center;
}
@media (min-width: 1400px) {
  .scheme__caption {
    font-size: 14px;
    margin-top: 16px;
  }
}

.tech-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.tech-card:hover {
  border-color: #909090;
  /*
  .tech-card__title {
    color: $blue;
  }

  .tech-card__image img {
    transform: scale(1.04);
  }*/
}
.tech-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3f5f8;
  flex-shrink: 0;
}
.tech-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tech-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
@media (min-width: 1400px) {
  .tech-card__body {
    padding: 20px 22px 22px;
    gap: 10px;
  }
}
.tech-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin: 0;
  transition: color 0.5s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .tech-card__title {
    font-size: 18px;
  }
}
.tech-card__title:hover {
  color: #909090;
}
.tech-card__text {
  font-size: 14px;
  line-height: 1.45;
  color: #909090;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .tech-card__text {
    font-size: 15px;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
  border-color: #2d3241;
  /*
  .review-card__title {
    color: $blue;
  }

  .review-card__image img {
    transform: scale(1.04);
  }*/
}
.review-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3f5f8;
  flex-shrink: 0;
}
.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.review-card__video-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}
@media (min-width: 1400px) {
  .review-card__video-label {
    bottom: 12px;
    left: 12px;
    padding: 7px 12px;
    font-size: 14px;
  }
}
.review-card__video-label svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .review-card__video-label svg {
    width: 14px;
    height: 14px;
  }
}
.review-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
@media (min-width: 1400px) {
  .review-card__body {
    padding: 18px 20px 20px;
    gap: 10px;
  }
}
.review-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin: 0;
  transition: color 0.25s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .review-card__title {
    font-size: 18px;
  }
}
.review-card__title:hover {
  color: #909090;
}
.review-card__text {
  font-size: 14px;
  line-height: 1.45;
  color: #909090;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .review-card__text {
    font-size: 16px;
  }
}
.review-card__meta {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 14px;
  color: #909090;
}
@media (min-width: 1400px) {
  .review-card__meta {
    font-size: 16px;
    padding-top: 12px;
    gap: 6px 12px;
  }
}
.review-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.review-card__meta-item svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}
@media (min-width: 1400px) {
  .review-card__meta-item svg {
    width: 14px;
    height: 14px;
  }
}
.review-card__meta-divider {
  width: 3px;
  height: 3px;
  background: #909090;
  opacity: 0.4;
  border-radius: 50%;
}

.file-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
@media (min-width: 1400px) {
  .file-card {
    gap: 22px;
    padding: 24px 28px;
  }
}
.file-card:hover {
  border-color: #3178df;
}
.file-card:hover .file-card__title {
  color: #3178df;
}
.file-card:hover .file-card__download {
  background: #3178df;
  color: #fff;
}
.file-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 1400px) {
  .file-card__icon {
    width: 56px;
    height: 64px;
  }
}
.file-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.file-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1400px) {
  .file-card__body {
    gap: 6px;
  }
}
.file-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin: 0;
  transition: color 0.25s;
}
@media (min-width: 768px) {
  .file-card__title {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .file-card__title {
    font-size: 18px;
  }
}
.file-card__subtitle {
  font-size: 13px;
  color: #909090;
  margin: 0;
}
@media (min-width: 1400px) {
  .file-card__subtitle {
    font-size: 14px;
  }
}
.file-card__size {
  font-size: 12px;
  color: #909090;
  margin-top: 2px;
}
@media (min-width: 1400px) {
  .file-card__size {
    font-size: 13px;
  }
}
.file-card__download {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eff6ff;
  color: #3178df;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
@media (min-width: 1400px) {
  .file-card__download {
    width: 48px;
    height: 48px;
  }
}
.file-card__download svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
@media (min-width: 1400px) {
  .file-card__download svg {
    width: 20px;
    height: 20px;
  }
}

.file-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .file-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .file-card-grid {
    gap: 24px;
  }
}

.certificate-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.certificate-card:hover {
  border-color: #3178df;
}
.certificate-card:hover .certificate-card__title {
  color: #3178df;
}
.certificate-card:hover .certificate-card__btn {
  background: #3178df;
  color: #fff;
}
.certificate-card:hover .certificate-card__image img {
  transform: scale(1.02);
}
.certificate-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #eff6ff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .certificate-card__image {
    aspect-ratio: 4/5;
  }
}
.certificate-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.certificate-card__image::after {
  content: "PDF";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  background: #d9291b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 5px;
  pointer-events: none;
}
@media (min-width: 1400px) {
  .certificate-card__image::after {
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    font-size: 12px;
  }
}
.certificate-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}
@media (min-width: 1400px) {
  .certificate-card__body {
    padding: 18px 22px;
    gap: 16px;
  }
}
.certificate-card__title {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin: 0;
  transition: color 0.25s;
}
@media (min-width: 1400px) {
  .certificate-card__title {
    font-size: 16px;
  }
}
.certificate-card__btn {
  display: none;
}
@media (min-width: 400px) {
  .certificate-card__btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eff6ff;
    color: #3178df;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s;
  }
}
@media (min-width: 1400px) {
  .certificate-card__btn {
    width: 44px;
    height: 44px;
  }
}
.certificate-card__btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
@media (min-width: 1400px) {
  .certificate-card__btn svg {
    width: 18px;
    height: 18px;
  }
}

.certificate-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) {
  .certificate-card-grid {
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .certificate-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .certificate-card-grid {
    gap: 28px;
  }
}

.scheme-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.scheme-card:hover {
  border-color: #909090;
  /*transform: translateY(-3px);
  box-shadow: 0 10px 24px -10px rgba(49, 120, 223, 0.2);*/
}
.scheme-card:hover .scheme-card__title {
  color: #3178df;
}
.scheme-card:hover .scheme-card__arrow {
  background: #3178df;
  color: #fff;
}
.scheme-card:hover .scheme-card__image img {
  transform: scale(1.04);
}
.scheme-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .scheme-card__image {
    padding: 20px;
  }
}
.scheme-card__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.scheme-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
}
@media (min-width: 1400px) {
  .scheme-card__body {
    padding: 16px 20px;
    gap: 12px;
  }
}
.scheme-card__title {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin: 0;
  transition: color 0.25s;
}
@media (min-width: 992px) {
  .scheme-card__title {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .scheme-card__title {
    font-size: 18px;
  }
}
.scheme-card__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  color: #3178df;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
}
@media (min-width: 1400px) {
  .scheme-card__arrow {
    width: 40px;
    height: 40px;
  }
}
.scheme-card__arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
@media (min-width: 1400px) {
  .scheme-card__arrow svg {
    width: 16px;
    height: 16px;
  }
}

.scheme-group {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .scheme-group {
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .scheme-group {
    margin-bottom: 80px;
  }
}
.scheme-group:last-child {
  margin-bottom: 0;
}
.scheme-group__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  margin: 0 0 18px;
}
@media (min-width: 992px) {
  .scheme-group__title {
    font-size: 22px;
    margin-bottom: 22px;
  }
}
@media (min-width: 1400px) {
  .scheme-group__title {
    font-size: 26px;
    margin-bottom: 28px;
  }
}

.scheme-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) {
  .scheme-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .scheme-card-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .scheme-card-grid {
    gap: 22px;
  }
}

.useful {
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .useful {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .useful {
    margin-bottom: 110px;
  }
}
.useful__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .useful__header {
    margin-bottom: 28px;
  }
}
@media (min-width: 1400px) {
  .useful__header {
    margin-bottom: 36px;
  }
}
.useful__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  color: #2d3241;
}
@media (min-width: 768px) {
  .useful__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .useful__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .useful__title {
    font-size: 44px;
  }
}
.useful__subtitle {
  font-size: 16px;
  color: #909090;
  margin-top: 8px;
}
@media (min-width: 992px) {
  .useful__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .useful__subtitle {
    font-size: 22px;
    margin-top: 10px;
  }
}
.useful__all {
  display: none;
}
@media (min-width: 992px) {
  .useful__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #909090;
    flex-shrink: 0;
    transition: color 0.2s;
  }
  .useful__all svg {
    transition: transform 0.25s;
  }
  .useful__all:hover {
    color: #3178df;
  }
  .useful__all:hover svg {
    transform: translateX(3px);
  }
}
@media (min-width: 1400px) {
  .useful__all {
    font-size: 18px;
  }
}
.useful__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .useful__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (min-width: 992px) {
  .useful__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.useful-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  transition: 0.25s;
  height: 100%;
  position: relative;
}
@media (min-width: 1400px) {
  .useful-card {
    padding: 22px 24px;
    gap: 16px;
  }
}
.useful-card__icon {
  flex-shrink: 0;
  width: 105px;
  height: auto;
  border-radius: 5px;
  background: rgba(49, 120, 223, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}
.useful-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: #3178df;
  transition: 0.25s;
}
@media (min-width: 1400px) {
  .useful-card__icon svg {
    width: 20px;
    height: 20px;
  }
}
.useful-card__body {
  flex: 1;
  min-width: 0;
}
.useful-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #2d3241;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px) {
  .useful-card__title {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .useful-card__title {
    font-size: 18px;
  }
}
.useful-card__type {
  font-size: 12px;
  color: #909090;
}
@media (min-width: 1400px) {
  .useful-card__type {
    font-size: 14px;
  }
}
.useful-card__arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  opacity: 0;
  transition: 0.25s;
}
.useful-card__arrow svg {
  width: 14px;
  height: 14px;
  stroke: #3178df;
}
.useful-card:hover {
  border-color: #3178df;
}
.useful-card:hover .useful-card__icon {
  background: #3178df;
}
.useful-card:hover .useful-card__icon svg {
  stroke: #fff;
}
.useful-card:hover .useful-card__title {
  color: #3178df;
}
.useful-card:hover .useful-card__arrow {
  opacity: 1;
}

.page-list {
  padding: 0 15px;
  margin-top: 15px;
  margin-bottom: 60px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .page-list {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 25px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .page-list {
    margin-bottom: 140px;
  }
}
.page-list__header {
  margin-top: 12px;
  margin-bottom: 26px;
}
@media (min-width: 992px) {
  .page-list__header {
    margin-bottom: 36px;
  }
}
@media (min-width: 1400px) {
  .page-list__header {
    margin-bottom: 50px;
  }
}
.page-list__title {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  color: #2d3241;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .page-list__title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .page-list__title {
    font-size: 38px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1400px) {
  .page-list__title {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
.page-list__subtitle {
  font-size: 16px;
  line-height: 1.4;
  color: #909090;
  max-width: 720px;
}
@media (min-width: 992px) {
  .page-list__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .page-list__subtitle {
    font-size: 20px;
    max-width: 860px;
  }
}
.page-list__filters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .page-list__filters {
    gap: 18px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1400px) {
  .page-list__filters {
    gap: 22px;
    margin-bottom: 56px;
  }
}
.page-list__filter-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #909090;
  margin-bottom: 10px;
  font-weight: 700;
}
@media (min-width: 1400px) {
  .page-list__filter-label {
    font-size: 14px;
  }
}
.page-list__filter-row {
  overflow: visible !important;
}
@media (min-width: 992px) {
  .page-list__filter-row .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    transform: none !important;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .page-list__filter-row .swiper-wrapper {
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .page-list__filter-row.is-expanded .swiper-wrapper {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  .page-list__filter-row.is-expanded .swiper-wrapper {
    row-gap: 10px;
  }
}
.page-list__filter-row .swiper-slide {
  width: auto !important;
}
@media (min-width: 992px) {
  .page-list__filter-row .swiper-slide {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .page-list__filter-row .swiper-slide.is-hidden {
    display: none;
  }
}
@media (max-width: 991px) {
  .page-list__filter-row .swiper-slide.is-hidden {
    display: block !important;
  }
}
.page-list__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 15px;
  background: #eff6ff;
  border-radius: 20px;
  color: #3178df;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: "Inter Tight", sans-serif;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
@media (min-width: 1400px) {
  .page-list__tag {
    height: 40px;
    padding: 0 18px;
    font-size: 18px;
  }
}
.page-list__tag:hover {
  background: #3178df;
  color: #fff;
}
.page-list__tag.is-active {
  background: #3178df;
  color: #fff;
}
.page-list__tag.is-active:hover {
  background: #2d3241;
}
.page-list__tag--more {
  color: #d9291b;
}
.page-list__tag--more:hover {
  background: #d9291b;
  color: #fff;
}
@media (max-width: 991px) {
  .page-list__tag--more {
    display: none;
  }
}
@media (min-width: 992px) {
  .page-list__tag--more.is-hidden {
    display: none;
  }
}
.page-list__filter-row--outline .page-list__tag {
  background: transparent;
  color: #2d3241;
  border: 1.5px solid rgba(45, 50, 65, 0.18);
}
.page-list__filter-row--outline .page-list__tag:hover {
  background: transparent;
  border-color: #3178df;
  color: #3178df;
}
.page-list__filter-row--outline .page-list__tag.is-active {
  background: #2d3241;
  color: #fff;
  border-color: #2d3241;
}
.page-list__filter-row--outline .page-list__tag--more {
  color: #d9291b;
  border-color: rgba(217, 41, 27, 0.4);
}
.page-list__filter-row--outline .page-list__tag--more:hover {
  background: transparent;
  border-color: #d9291b;
  color: #d9291b;
}
.page-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .page-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1200px) {
  .page-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .page-list__grid {
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .page-list--blog .page-list__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
  }
}
@media (min-width: 1400px) {
  .page-list--blog .page-list__grid {
    gap: 44px;
  }
}
.page-list__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .page-list__more-wrap {
    margin-top: 40px;
  }
}
@media (min-width: 1400px) {
  .page-list__more-wrap {
    margin-top: 56px;
  }
}
.page-list__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 36px;
  background: transparent;
  color: #2d3241;
  font-size: 15px;
  font-weight: 700;
  font-family: "Inter Tight", sans-serif;
  border: 1.5px solid rgba(45, 50, 65, 0.18);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.25s;
}
@media (min-width: 992px) {
  .page-list__more-btn {
    height: 64px;
    padding: 0 50px;
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .page-list__more-btn {
    height: 70px;
    padding: 0 60px;
    font-size: 18px;
  }
}
.page-list__more-btn svg {
  transition: transform 0.3s;
}
.page-list__more-btn:hover {
  background: #2d3241;
  color: #fff;
  border-color: #2d3241;
}
.page-list__more-btn:hover svg {
  transform: translateY(2px);
}
.page-list__more-btn:hover svg path {
  stroke: #fff;
}

.page-list .project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
}
@media (min-width: 992px) {
  .page-list .project-card {
    padding: 14px;
  }
}
@media (min-width: 1400px) {
  .page-list .project-card {
    padding: 18px;
  }
}
.page-list .project-card__image {
  width: 100%;
  height: 220px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .page-list .project-card__image {
    height: 240px;
  }
}
@media (min-width: 1200px) {
  .page-list .project-card__image {
    height: 260px;
  }
}
@media (min-width: 1400px) {
  .page-list .project-card__image {
    height: 300px;
  }
}
.page-list .project-card__content {
  padding: 18px 6px 6px;
  flex: 1;
}
@media (min-width: 992px) {
  .page-list .project-card__content {
    padding: 18px 8px 8px;
  }
}
@media (min-width: 1400px) {
  .page-list .project-card__content {
    padding: 22px 12px 12px;
  }
}
.page-list .project-card__title {
  margin-top: 0;
  font-size: 16px;
}
@media (min-width: 1400px) {
  .page-list .project-card__title {
    font-size: 18px;
  }
}
.page-list .project-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-list .project-card__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .page-list--blog .project-card__image {
    height: 200px;
  }
}
@media (min-width: 1400px) {
  .page-list--blog .project-card__image {
    height: 220px;
  }
}

.page-article {
  padding: 0 15px;
  margin-top: 15px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .page-article {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 25px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .page-article {
    margin-bottom: 110px;
  }
}
@media (min-width: 992px) {
  .page-article__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
  }
}
@media (min-width: 1400px) {
  .page-article__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 60px;
  }
}
.page-article__main {
  min-width: 0;
}
.page-article__aside {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .page-article__aside {
    margin-top: 0;
    position: sticky;
    top: 20px;
  }
}
.page-article__header {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .page-article__header {
    margin-bottom: 26px;
  }
}
@media (min-width: 1400px) {
  .page-article__header {
    margin-bottom: 32px;
  }
}
.page-article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: #909090;
  margin-top: 14px;
}
@media (min-width: 1400px) {
  .page-article__meta {
    font-size: 16px;
    margin-top: 18px;
  }
}
.page-article__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-article__meta-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: #909090;
}
.page-article__meta-divider {
  width: 4px;
  height: 4px;
  background: #909090;
  opacity: 0.4;
  border-radius: 50%;
}
@media (max-width: 540px) {
  .page-article__meta-divider {
    display: none;
  }
}
.page-article__hero {
  max-width: 720px;
  margin-bottom: 24px;
  border-radius: 5px;
  overflow: hidden;
  background: #f3f5f8;
}
@media (min-width: 992px) {
  .page-article__hero {
    margin-bottom: 32px;
  }
}
@media (min-width: 1400px) {
  .page-article__hero {
    max-width: 820px;
    margin-bottom: 40px;
  }
}
.page-article__hero img {
  width: 100%;
  height: auto;
  display: block;
}
.page-article__lead {
  font-size: 16px;
  line-height: 140%;
  color: #2d3241;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid #d9291b;
}
@media (min-width: 992px) {
  .page-article__lead {
    font-size: 18px;
    margin-bottom: 30px;
    padding-left: 20px;
  }
}
@media (min-width: 1400px) {
  .page-article__lead {
    font-size: 20px;
    margin-bottom: 36px;
    padding-left: 24px;
  }
}
.page-article__body {
  max-width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .page-article__body {
    margin-bottom: 70px;
  }
}
@media (min-width: 1400px) {
  .page-article__body {
    max-width: 100%;
    margin-bottom: 90px;
  }
}
.page-article__body div, .page-article__body p {
  line-height: 140%;
}
.page-article__body--margin-top {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .page-article__body--margin-top {
    margin-top: 50px;
  }
}
@media (min-width: 1400px) {
  .page-article__body--margin-top {
    margin-top: 70px;
  }
}

@media (min-width: 992px) {
  .page-article__body h2, .page-article__body h3 {
    margin-top: 40px;
  }
}
@media (min-width: 1400px) {
  .page-article__body h2, .page-article__body h3 {
    margin-top: 50px;
  }
}

.author-card {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1400px) {
  .author-card {
    padding: 28px 24px;
    gap: 20px;
  }
}
.author-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (min-width: 1400px) {
  .author-card__head {
    gap: 16px;
  }
}
.author-card__photo {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eff6ff;
}
@media (min-width: 1400px) {
  .author-card__photo {
    width: 76px;
    height: 76px;
  }
}
.author-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-card__status {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4caf50;
  border: 2px solid #fff;
  z-index: 1;
}
@media (min-width: 1400px) {
  .author-card__status {
    width: 16px;
    height: 16px;
    bottom: 4px;
    right: 4px;
  }
}
.author-card__name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 1400px) {
  .author-card__name {
    font-size: 21px;
  }
}
.author-card__role {
  font-size: 13px;
  color: #909090;
  margin-top: 4px;
}
@media (min-width: 1400px) {
  .author-card__role {
    font-size: 16px;
    margin-top: 6px;
  }
}
.author-card__bio {
  font-size: 14px;
  line-height: 1.5;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 1400px) {
  .author-card__bio {
    font-size: 16px;
    line-height: 1.55;
  }
}
.author-card__divider {
  height: 1px;
  background: #d8d8d8;
  margin: 4px 0;
}
.author-card__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1400px) {
  .author-card__contacts {
    gap: 12px;
  }
}
.author-card__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2d3241;
  text-decoration: none;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .author-card__contact {
    font-size: 16px;
    gap: 12px;
  }
}
.author-card__contact svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: #3178df;
}
@media (min-width: 1400px) {
  .author-card__contact svg {
    width: 18px;
    height: 18px;
  }
}
.author-card__contact:hover {
  color: #3178df;
}
.author-card__contact--email {
  word-break: break-all;
}
.author-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 1400px) {
  .author-card__btn {
    height: 54px;
  }
}

.dostavka-page {
  padding: 0 15px;
  margin-top: 15px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .dostavka-page {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 25px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .dostavka-page {
    margin-bottom: 140px;
  }
}

.delivery-hero {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .delivery-hero {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .delivery-hero {
    margin-bottom: 110px;
  }
}
.delivery-hero__header {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .delivery-hero__header {
    margin-bottom: 32px;
  }
}
@media (min-width: 1400px) {
  .delivery-hero__header {
    margin-bottom: 42px;
  }
}
.delivery-hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #909090;
  margin-top: 14px;
}
@media (min-width: 992px) {
  .delivery-hero__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .delivery-hero__subtitle {
    font-size: 22px;
    margin-top: 18px;
  }
}
@media (min-width: 992px) {
  .delivery-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .delivery-hero__content {
    gap: 40px;
  }
}
.delivery-hero__map {
  width: 100%;
  /*background: $light-blue;*/
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media (min-width: 992px) {
  .delivery-hero__map {
    padding: 30px;
    margin-bottom: 0;
    order: 2;
  }
}
@media (min-width: 1400px) {
  .delivery-hero__map {
    padding: 40px;
  }
}
.delivery-hero__map img {
  max-width: 100%;
  height: auto;
  display: block;
}
.delivery-hero__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .delivery-hero__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .delivery-hero__steps {
    grid-template-columns: repeat(2, 1fr);
    order: 1;
  }
}
@media (min-width: 1400px) {
  .delivery-hero__steps {
    gap: 28px;
  }
}
.delivery-hero__step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1400px) {
  .delivery-hero__step {
    gap: 18px;
  }
}
.delivery-hero__step-icon {
  width: 56px;
  height: 56px;
  border-radius: 5px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .delivery-hero__step-icon {
    width: 64px;
    height: 64px;
  }
}
.delivery-hero__step-icon img,
.delivery-hero__step-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
@media (min-width: 1400px) {
  .delivery-hero__step-icon img,
  .delivery-hero__step-icon svg {
    width: 32px;
    height: 32px;
  }
}
.delivery-hero__step-text {
  font-size: 14px;
  line-height: 1.5;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .delivery-hero__step-text {
    font-size: 16px;
  }
}
.delivery-hero__step-text strong {
  font-weight: 700;
}

.manufacturers-page__section-header, .rabota-vacancies__header, .rabota-conditions__header, .contacts-map__header, .contacts-team__header, .contacts-tasks__header, .pay-methods__header, .delivery-companies__header, .delivery-methods__header {
  margin-bottom: 22px;
}
@media (min-width: 992px) {
  .manufacturers-page__section-header, .rabota-vacancies__header, .rabota-conditions__header, .contacts-map__header, .contacts-team__header, .contacts-tasks__header, .pay-methods__header, .delivery-companies__header, .delivery-methods__header {
    margin-bottom: 28px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-page__section-header, .rabota-vacancies__header, .rabota-conditions__header, .contacts-map__header, .contacts-team__header, .contacts-tasks__header, .pay-methods__header, .delivery-companies__header, .delivery-methods__header {
    margin-bottom: 36px;
  }
}

.manufacturers-page__section-title, .rabota-vacancies__title, .rabota-conditions__title, .contacts-map__title, .contacts-team__title, .contacts-tasks__title, .pay-methods__title, .delivery-companies__title, .delivery-methods__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 768px) {
  .manufacturers-page__section-title, .rabota-vacancies__title, .rabota-conditions__title, .contacts-map__title, .contacts-team__title, .contacts-tasks__title, .pay-methods__title, .delivery-companies__title, .delivery-methods__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .manufacturers-page__section-title, .rabota-vacancies__title, .rabota-conditions__title, .contacts-map__title, .contacts-team__title, .contacts-tasks__title, .pay-methods__title, .delivery-companies__title, .delivery-methods__title {
    font-size: 34px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-page__section-title, .rabota-vacancies__title, .rabota-conditions__title, .contacts-map__title, .contacts-team__title, .contacts-tasks__title, .pay-methods__title, .delivery-companies__title, .delivery-methods__title {
    font-size: 44px;
  }
}

.manufacturers-page__section-subtitle, .rabota-vacancies__subtitle, .rabota-conditions__subtitle, .contacts-map__subtitle, .contacts-team__subtitle, .contacts-tasks__subtitle, .pay-methods__subtitle, .delivery-companies__subtitle, .delivery-methods__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #909090;
  margin-top: 8px;
}
@media (min-width: 992px) {
  .manufacturers-page__section-subtitle, .rabota-vacancies__subtitle, .rabota-conditions__subtitle, .contacts-map__subtitle, .contacts-team__subtitle, .contacts-tasks__subtitle, .pay-methods__subtitle, .delivery-companies__subtitle, .delivery-methods__subtitle {
    font-size: 18px;
    margin-top: 10px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-page__section-subtitle, .rabota-vacancies__subtitle, .rabota-conditions__subtitle, .contacts-map__subtitle, .contacts-team__subtitle, .contacts-tasks__subtitle, .pay-methods__subtitle, .delivery-companies__subtitle, .delivery-methods__subtitle {
    font-size: 22px;
    margin-top: 12px;
  }
}

.manufacturers-why-us__card, .rabota-conditions__card, .contacts-tasks__card, .contacts-actions__card, .pay-methods__card, .delivery-methods__card {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
@media (min-width: 1400px) {
  .manufacturers-why-us__card, .rabota-conditions__card, .contacts-tasks__card, .contacts-actions__card, .pay-methods__card, .delivery-methods__card {
    padding: 28px 26px;
    gap: 18px;
  }
}
.manufacturers-why-us__card:hover, .rabota-conditions__card:hover, .contacts-tasks__card:hover, .contacts-actions__card:hover, .pay-methods__card:hover, .delivery-methods__card:hover {
  border-color: #3178df;
}

.manufacturers-why-us__card-icon, .rabota-conditions__card-icon, .contacts-tasks__card-icon, .contacts-actions__card-icon, .pay-methods__card-icon, .delivery-methods__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .manufacturers-why-us__card-icon, .rabota-conditions__card-icon, .contacts-tasks__card-icon, .contacts-actions__card-icon, .pay-methods__card-icon, .delivery-methods__card-icon {
    width: 60px;
    height: 60px;
  }
}
.manufacturers-why-us__card-icon img, .rabota-conditions__card-icon img, .contacts-tasks__card-icon img, .contacts-actions__card-icon img, .pay-methods__card-icon img, .delivery-methods__card-icon img,
.manufacturers-why-us__card-icon svg,
.rabota-conditions__card-icon svg,
.contacts-tasks__card-icon svg,
.contacts-actions__card-icon svg,
.pay-methods__card-icon svg,
.delivery-methods__card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
@media (min-width: 1400px) {
  .manufacturers-why-us__card-icon img, .rabota-conditions__card-icon img, .contacts-tasks__card-icon img, .contacts-actions__card-icon img, .pay-methods__card-icon img, .delivery-methods__card-icon img,
  .manufacturers-why-us__card-icon svg,
  .rabota-conditions__card-icon svg,
  .contacts-tasks__card-icon svg,
  .contacts-actions__card-icon svg,
  .pay-methods__card-icon svg,
  .delivery-methods__card-icon svg {
    width: 32px;
    height: 32px;
  }
}

.manufacturers-why-us__card-title, .contacts-tasks__card-title, .pay-methods__card-title, .delivery-methods__card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 992px) {
  .manufacturers-why-us__card-title, .contacts-tasks__card-title, .pay-methods__card-title, .delivery-methods__card-title {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-why-us__card-title, .contacts-tasks__card-title, .pay-methods__card-title, .delivery-methods__card-title {
    font-size: 22px;
  }
}

.manufacturers-why-us__card-text, .rabota-conditions__card-text, .contacts-tasks__card-text, .pay-methods__card-text, .delivery-methods__card-text {
  font-size: 14px;
  line-height: 1.45;
  color: #909090;
  margin: 0;
}
@media (min-width: 992px) {
  .manufacturers-why-us__card-text, .rabota-conditions__card-text, .contacts-tasks__card-text, .pay-methods__card-text, .delivery-methods__card-text {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-why-us__card-text, .rabota-conditions__card-text, .contacts-tasks__card-text, .pay-methods__card-text, .delivery-methods__card-text {
    font-size: 18px;
  }
}

.delivery-methods {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .delivery-methods {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .delivery-methods {
    margin-bottom: 110px;
  }
}
.delivery-methods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .delivery-methods__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .delivery-methods__grid {
    gap: 24px;
  }
}
.delivery-companies {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .delivery-companies {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .delivery-companies {
    margin-bottom: 110px;
  }
}
.delivery-companies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) {
  .delivery-companies__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (min-width: 992px) {
  .delivery-companies__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1400px) {
  .delivery-companies__grid {
    gap: 20px;
  }
}
.delivery-companies__logo {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: border-color 0.25s, transform 0.25s;
}
@media (min-width: 1400px) {
  .delivery-companies__logo {
    padding: 22px;
  }
}
.delivery-companies__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.25s, opacity 0.25s;
}
.delivery-companies__logo:hover {
  border-color: #3178df;
}
.delivery-companies__logo:hover img {
  filter: none;
  opacity: 1;
}

.pay-methods {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .pay-methods {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .pay-methods {
    margin-bottom: 110px;
  }
}
.pay-methods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .pay-methods__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .pay-methods__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .pay-methods__grid {
    gap: 24px;
  }
}
.contacts-page {
  padding: 0 15px;
  margin-top: 15px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .contacts-page {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 25px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .contacts-page {
    margin-bottom: 140px;
  }
}

.contacts-hero {
  margin-top: 18px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .contacts-hero {
    margin-top: 28px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .contacts-hero {
    margin-bottom: 110px;
  }
}
@media (min-width: 992px) {
  .contacts-hero__inner {
    display: grid;
    /*grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);*/
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: 24px;
    align-items: stretch;
  }
}
@media (min-width: 1400px) {
  .contacts-hero__inner {
    /*grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);*/
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: 40px;
  }
}
.contacts-hero__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .contacts-hero__cards {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 14px;
  }
}
@media (min-width: 1400px) {
  .contacts-hero__cards {
    gap: 16px;
  }
}
.contacts-hero__card {
  background: #eff6ff;
  border-radius: 5px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1400px) {
  .contacts-hero__card {
    padding: 22px 24px;
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .contacts-hero__card--main {
    grid-column: 1;
    grid-row: 1/span 2;
  }
}
@media (min-width: 768px) {
  .contacts-hero__card--location {
    grid-column: 2;
    grid-row: 1;
  }
}
.contacts-hero__card--socials {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
}
@media (min-width: 768px) {
  .contacts-hero__card--socials {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (min-width: 1400px) {
  .contacts-hero__card--socials {
    padding: 16px 24px;
  }
}
.contacts-hero__divider {
  height: 1px;
  background: rgba(45, 50, 65, 0.08);
  margin: 2px 0;
}
.contacts-hero__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 1400px) {
  .contacts-hero__row {
    gap: 10px;
  }
}
.contacts-hero__label {
  font-size: 14px;
  line-height: 1.2;
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (min-width: 1400px) {
  .contacts-hero__label {
    font-size: 16px;
  }
}
.contacts-hero__values {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 1400px) {
  .contacts-hero__values {
    gap: 8px;
  }
}
.contacts-hero__phone-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
@media (min-width: 1400px) {
  .contacts-hero__phone-row {
    gap: 10px 14px;
  }
}
.contacts-hero__phone {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  transition: color 0.2s;
}
@media (min-width: 992px) {
  .contacts-hero__phone {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .contacts-hero__phone {
    font-size: 22px;
  }
}
.contacts-hero__phone:hover {
  color: #3178df;
}
.contacts-hero__phone-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  background: #d9291b;
  border-radius: 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 1400px) {
  .contacts-hero__phone-badge {
    font-size: 12px;
    padding: 4px 10px;
  }
}
.contacts-hero__text {
  font-size: 16px;
  line-height: 1.5;
  color: #2d3241;
}
@media (min-width: 992px) {
  .contacts-hero__text {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .contacts-hero__text {
    font-size: 20px;
  }
}
.contacts-hero__text a {
  color: #3178df;
  text-decoration: none;
  transition: color 0.2s;
}
.contacts-hero__text a:hover {
  color: #d9291b;
}
.contacts-hero__text strong {
  font-weight: 700;
}
.contacts-hero__email {
  font-size: 17px;
  font-weight: 700;
  color: #3178df;
  word-break: break-all;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .contacts-hero__email {
    font-size: 19px;
  }
}
.contacts-hero__email:hover {
  color: #909090;
}
.contacts-hero__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts-hero__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .contacts-hero__socials a {
    width: 42px;
    height: 42px;
  }
}
.contacts-hero__socials a:hover {
  opacity: 0.6;
}
.contacts-hero__socials a img,
.contacts-hero__socials a svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 1400px) {
  .contacts-hero__socials a img,
  .contacts-hero__socials a svg {
    width: 20px;
    height: 20px;
  }
}
.contacts-hero__photo {
  margin-top: 12px;
  background: #eff6ff;
  border-radius: 5px;
  padding: 20px 20px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .contacts-hero__photo {
    margin-top: 14px;
  }
}
@media (min-width: 992px) {
  .contacts-hero__photo {
    margin-top: 0;
    padding: 24px 24px 0;
  }
}
@media (min-width: 1400px) {
  .contacts-hero__photo {
    padding: 24px 32px 0;
  }
}
.contacts-hero__photo img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 368px;
}

.contacts-actions {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .contacts-actions {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .contacts-actions {
    margin-bottom: 110px;
  }
}
.contacts-actions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .contacts-actions__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .contacts-actions__grid {
    gap: 24px;
  }
}
.contacts-actions__card {
  align-items: flex-start;
}
.contacts-actions__card-icon {
  width: 60px;
  height: 60px;
}
@media (min-width: 1400px) {
  .contacts-actions__card-icon {
    width: 72px;
    height: 72px;
  }
}
.contacts-actions__card-icon svg {
  width: 32px;
  height: 32px;
  stroke: #3178df;
  fill: none;
}
@media (min-width: 1400px) {
  .contacts-actions__card-icon svg {
    width: 36px;
    height: 36px;
  }
}
.contacts-actions__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 992px) {
  .contacts-actions__card-title {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .contacts-actions__card-title {
    font-size: 24px;
  }
}
.contacts-actions__card-text {
  font-size: 14px;
  line-height: 1.45;
  color: #909090;
  margin: 0;
}
@media (min-width: 992px) {
  .contacts-actions__card-text {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .contacts-actions__card-text {
    font-size: 17px;
  }
}
.contacts-actions__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #3178df;
  transition: gap 0.2s;
}
@media (min-width: 1400px) {
  .contacts-actions__card-link {
    font-size: 16px;
  }
}
.contacts-actions__card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.2s;
}
.contacts-actions__card-link:hover {
  gap: 12px;
}
.contacts-actions__card-link:hover svg {
  transform: translateX(3px);
}

.contacts-tasks {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .contacts-tasks {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .contacts-tasks {
    margin-bottom: 110px;
  }
}
.contacts-tasks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .contacts-tasks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .contacts-tasks__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .contacts-tasks__grid {
    gap: 24px;
  }
}
.contacts-team {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .contacts-team {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .contacts-team {
    margin-bottom: 110px;
  }
}
.contacts-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .contacts-team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1200px) {
  .contacts-team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .contacts-team__grid {
    gap: 24px;
  }
}
.contacts-team__card {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  transition: border-color 0.25s;
}
@media (min-width: 1400px) {
  .contacts-team__card {
    padding: 30px 26px;
    gap: 20px;
  }
}
.contacts-team__card:hover {
  border-color: #3178df;
}
.contacts-team__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1400px) {
  .contacts-team__head {
    gap: 20px;
  }
}
.contacts-team__photo {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #eff6ff;
}
@media (min-width: 1400px) {
  .contacts-team__photo {
    width: 96px;
    height: 96px;
  }
}
.contacts-team__photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.contacts-team__status {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4caf50;
  border: 2px solid #fff;
  z-index: 1;
}
@media (min-width: 1400px) {
  .contacts-team__status {
    width: 18px;
    height: 18px;
    bottom: 5px;
    right: 5px;
  }
}
.contacts-team__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 1400px) {
  .contacts-team__name {
    font-size: 22px;
  }
}
.contacts-team__role {
  font-size: 13px;
  color: #909090;
  margin-top: 4px;
}
@media (min-width: 1400px) {
  .contacts-team__role {
    font-size: 16px;
    margin-top: 6px;
  }
}
.contacts-team__bio {
  font-size: 14px;
  line-height: 1.5;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 1400px) {
  .contacts-team__bio {
    font-size: 16px;
    line-height: 1.55;
  }
}
.contacts-team__divider {
  height: 1px;
  background: #d8d8d8;
  margin: 4px 0;
}
.contacts-team__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1400px) {
  .contacts-team__contacts {
    gap: 12px;
  }
}
.contacts-team__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2d3241;
  text-decoration: none;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .contacts-team__contact {
    font-size: 16px;
    gap: 12px;
  }
}
.contacts-team__contact svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: #3178df;
  fill: none;
}
@media (min-width: 1400px) {
  .contacts-team__contact svg {
    width: 18px;
    height: 18px;
  }
}
.contacts-team__contact:hover {
  color: #3178df;
}
.contacts-team__contact--email {
  word-break: break-all;
}

.contacts-map {
  margin-bottom: 0;
}
.contacts-map__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 992px) {
  .contacts-map__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .contacts-map__grid {
    gap: 24px;
  }
}
.contacts-map__map {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background: #eff6ff;
  border: 1px solid #d8d8d8;
  min-height: 320px;
}
@media (min-width: 768px) {
  .contacts-map__map {
    min-height: 380px;
  }
}
@media (min-width: 992px) {
  .contacts-map__map {
    aspect-ratio: auto;
    min-height: 460px;
  }
}
@media (min-width: 1400px) {
  .contacts-map__map {
    min-height: 540px;
  }
}
.contacts-map .shipped-gallery__map-canvas {
  width: 100%;
  height: 100%;
}
.contacts-map__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
@media (min-width: 1400px) {
  .contacts-map__label {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 14px;
  }
}
.contacts-map__label svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
.contacts-map__address {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 700;
  color: #2d3241;
}
@media (min-width: 768px) {
  .contacts-map__address {
    right: auto;
    max-width: calc(100% - 24px);
  }
}
@media (min-width: 1400px) {
  .contacts-map__address {
    top: 16px;
    left: 16px;
    padding: 12px 18px;
    font-size: 15px;
  }
}
.contacts-map__address svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: #d9291b;
  fill: none;
}
@media (min-width: 1400px) {
  .contacts-map__address svg {
    width: 20px;
    height: 20px;
  }
}
.contacts-map__photo {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  aspect-ratio: 4/3;
  background: #eff6ff;
  display: block;
  cursor: zoom-in;
  transition: border-color 0.25s;
}
@media (min-width: 992px) {
  .contacts-map__photo {
    aspect-ratio: auto;
    min-height: 460px;
  }
}
@media (min-width: 1400px) {
  .contacts-map__photo {
    min-height: 540px;
  }
}
.contacts-map__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.contacts-map__photo:hover {
  border-color: #3178df;
}
.contacts-map__photo:hover img {
  transform: scale(1.02);
}
.contacts-map__photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}
@media (min-width: 1400px) {
  .contacts-map__photo-label {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 14px;
  }
}
.contacts-map__photo-label svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.rabota-page {
  padding: 0 15px;
  margin-top: 15px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .rabota-page {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 25px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .rabota-page {
    margin-bottom: 140px;
  }
}

.rabota-hero {
  margin-top: 18px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .rabota-hero {
    margin-top: 28px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .rabota-hero {
    margin-bottom: 110px;
  }
}
@media (min-width: 992px) {
  .rabota-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 30px;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .rabota-hero__inner {
    gap: 50px;
  }
}
.rabota-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1400px) {
  .rabota-hero__content {
    gap: 32px;
  }
}
.rabota-hero__lead {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 992px) {
  .rabota-hero__lead {
    font-size: 19px;
  }
}
@media (min-width: 1400px) {
  .rabota-hero__lead {
    font-size: 22px;
    line-height: 1.4;
  }
}
.rabota-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 1400px) {
  .rabota-hero__chips {
    gap: 12px;
  }
}
.rabota-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #eff6ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .rabota-hero__chip {
    padding: 10px 18px;
    font-size: 15px;
    gap: 10px;
  }
}
.rabota-hero__chip svg {
  width: 16px;
  height: 16px;
  stroke: #3178df;
  fill: none;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .rabota-hero__chip svg {
    width: 18px;
    height: 18px;
  }
}
.rabota-hero__photo {
  margin-top: 24px;
  background: #eff6ff;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .rabota-hero__photo {
    margin-top: 0;
    min-height: 320px;
  }
}
@media (min-width: 1400px) {
  .rabota-hero__photo {
    min-height: 400px;
  }
}
.rabota-hero__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.rabota-conditions {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .rabota-conditions {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .rabota-conditions {
    margin-bottom: 110px;
  }
}
.rabota-conditions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .rabota-conditions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .rabota-conditions__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .rabota-conditions__grid {
    gap: 24px;
  }
}
.rabota-conditions__card-text {
  color: #2d3241;
}
.rabota-conditions__note {
  margin-top: 24px;
  padding: 22px 24px;
  background: #eff6ff;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 992px) {
  .rabota-conditions__note {
    margin-top: 28px;
    padding: 26px 30px;
  }
}
@media (min-width: 1400px) {
  .rabota-conditions__note {
    margin-top: 36px;
    padding: 32px 36px;
    gap: 20px;
  }
}
.rabota-conditions__note-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}
@media (min-width: 1400px) {
  .rabota-conditions__note-icon {
    width: 44px;
    height: 44px;
  }
}
.rabota-conditions__note-icon svg {
  width: 18px;
  height: 18px;
  stroke: #3178df;
  fill: none;
}
@media (min-width: 1400px) {
  .rabota-conditions__note-icon svg {
    width: 22px;
    height: 22px;
  }
}
.rabota-conditions__note-text {
  font-size: 14px;
  line-height: 1.5;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 992px) {
  .rabota-conditions__note-text {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .rabota-conditions__note-text {
    font-size: 17px;
  }
}
.rabota-conditions__note-text strong {
  font-weight: 700;
}

.rabota-vacancies {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .rabota-vacancies {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .rabota-vacancies {
    margin-bottom: 110px;
  }
}
.rabota-vacancies__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 1400px) {
  .rabota-vacancies__list {
    gap: 24px;
  }
}
.rabota-vacancies__card {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 24px 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  transition: border-color 0.25s;
}
@media (min-width: 768px) {
  .rabota-vacancies__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 240px);
    gap: 30px;
    padding: 28px 26px;
  }
}
@media (min-width: 1400px) {
  .rabota-vacancies__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
    gap: 40px;
    padding: 36px 36px;
  }
}
.rabota-vacancies__card:hover {
  border-color: #3178df;
}
.rabota-vacancies__main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1400px) {
  .rabota-vacancies__main {
    gap: 18px;
  }
}
.rabota-vacancies__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1400px) {
  .rabota-vacancies__head {
    gap: 16px;
  }
}
.rabota-vacancies__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 992px) {
  .rabota-vacancies__name {
    font-size: 22px;
  }
}
@media (min-width: 1400px) {
  .rabota-vacancies__name {
    font-size: 26px;
  }
}
.rabota-vacancies__experience {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: #eff6ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #3178df;
  white-space: nowrap;
}
@media (min-width: 1400px) {
  .rabota-vacancies__experience {
    font-size: 14px;
    padding: 6px 14px;
  }
}
.rabota-vacancies__duties {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1400px) {
  .rabota-vacancies__duties {
    gap: 10px;
  }
}
.rabota-vacancies__duty {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .rabota-vacancies__duty {
    font-size: 16px;
    gap: 12px;
  }
}
.rabota-vacancies__duty::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: #3178df;
}
@media (min-width: 1400px) {
  .rabota-vacancies__duty::before {
    width: 7px;
    height: 7px;
    margin-top: 10px;
  }
}
.rabota-vacancies__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}
@media (min-width: 768px) {
  .rabota-vacancies__aside {
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    padding-left: 30px;
    border-left: 1px solid #d8d8d8;
  }
}
@media (min-width: 1400px) {
  .rabota-vacancies__aside {
    gap: 22px;
    padding-left: 40px;
  }
}
.rabota-vacancies__number {
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #eff6ff;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 992px) {
  .rabota-vacancies__number {
    font-size: 64px;
  }
}
@media (min-width: 1400px) {
  .rabota-vacancies__number {
    font-size: 84px;
    top: -12px;
  }
}
.rabota-vacancies__salary {
  position: relative;
  z-index: 1;
}
.rabota-vacancies__salary-label {
  display: block;
  font-size: 12px;
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
@media (min-width: 1400px) {
  .rabota-vacancies__salary-label {
    font-size: 13px;
  }
}
.rabota-vacancies__salary-value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: #2d3241;
}
@media (min-width: 992px) {
  .rabota-vacancies__salary-value {
    font-size: 22px;
  }
}
@media (min-width: 1400px) {
  .rabota-vacancies__salary-value {
    font-size: 26px;
  }
}
.rabota-vacancies__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  text-align: center;
  width: 100%;
}
@media (min-width: 1400px) {
  .rabota-vacancies__btn {
    height: 54px;
  }
}

.popup-vacancy {
  display: none;
  background: #fff;
  border-radius: 5px;
  padding: 30px 22px;
  max-width: 520px;
  width: 100%;
}
@media (min-width: 768px) {
  .popup-vacancy {
    padding: 38px 32px;
    max-width: 560px;
  }
}
@media (min-width: 1400px) {
  .popup-vacancy {
    padding: 48px 44px;
    max-width: 620px;
  }
}
.popup-vacancy__title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
  margin-bottom: 8px;
}
@media (min-width: 1400px) {
  .popup-vacancy__title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.popup-vacancy__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #909090;
  margin-bottom: 22px;
}
@media (min-width: 1400px) {
  .popup-vacancy__subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.popup-vacancy__position {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #eff6ff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #3178df;
  margin-bottom: 20px;
}
@media (min-width: 1400px) {
  .popup-vacancy__position {
    font-size: 14px;
    padding: 7px 14px;
    margin-bottom: 26px;
  }
}
.popup-vacancy__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.popup-vacancy .form-input {
  border-color: #d8d8d8;
}
.popup-vacancy__textarea {
  width: 100%;
  min-height: 100px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 16px 20px;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: #2d3241;
  background: #fff;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (min-width: 1400px) {
  .popup-vacancy__textarea {
    font-size: 16px;
    min-height: 120px;
  }
}
.popup-vacancy__textarea::placeholder {
  color: #909090;
}
.popup-vacancy__textarea:focus {
  border-color: #3178df;
}
.popup-vacancy__file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px dashed #3178df;
  border-radius: 5px;
  background: #eff6ff;
  cursor: pointer;
  transition: background 0.2s;
}
@media (min-width: 1400px) {
  .popup-vacancy__file {
    padding: 20px 24px;
    gap: 18px;
  }
}
.popup-vacancy__file:hover {
  background: rgba(49, 120, 223, 0.08);
}
.popup-vacancy__file input[type=file] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.popup-vacancy__file-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}
@media (min-width: 1400px) {
  .popup-vacancy__file-icon {
    width: 42px;
    height: 42px;
  }
}
.popup-vacancy__file-icon svg {
  width: 18px;
  height: 18px;
  stroke: #3178df;
  fill: none;
}
@media (min-width: 1400px) {
  .popup-vacancy__file-icon svg {
    width: 20px;
    height: 20px;
  }
}
.popup-vacancy__file-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.popup-vacancy__file-title {
  font-size: 14px;
  font-weight: 700;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .popup-vacancy__file-title {
    font-size: 16px;
  }
}
.popup-vacancy__file-hint {
  font-size: 12px;
  color: #909090;
}
@media (min-width: 1400px) {
  .popup-vacancy__file-hint {
    font-size: 13px;
  }
}
.popup-vacancy .form-consent {
  margin-bottom: 18px;
}
.popup-vacancy .form-checkmark {
  background: #eff6ff;
}
.popup-vacancy .form-submit {
  width: 100%;
}

.manufacturers-page {
  padding: 0 15px;
  margin-top: 15px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .manufacturers-page {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 25px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-page {
    margin-bottom: 140px;
  }
}
.manufacturers-page > section {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .manufacturers-page > section {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-page > section {
    margin-bottom: 110px;
  }
}
.manufacturers-page > section:last-child {
  margin-bottom: 0;
}
.manufacturers-hero {
  margin-top: 18px;
}
@media (min-width: 992px) {
  .manufacturers-hero {
    margin-top: 28px;
  }
}
.manufacturers-hero__lead {
  font-size: 16px;
  line-height: 1.55;
  color: #2d3241;
  margin: 18px 0 0;
}
@media (min-width: 992px) {
  .manufacturers-hero__lead {
    font-size: 18px;
    margin-top: 24px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-hero__lead {
    font-size: 20px;
    line-height: 1.5;
    max-width: 1100px;
  }
}
.manufacturers-hero__placeholder {
  margin-top: 24px;
  background: #eff6ff;
  border-radius: 5px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 992px) {
  .manufacturers-hero__placeholder {
    margin-top: 32px;
    aspect-ratio: 21/9;
  }
}
.manufacturers-hero__placeholder svg {
  width: 60px;
  height: 60px;
  color: rgba(49, 120, 223, 0.4);
}
@media (min-width: 1400px) {
  .manufacturers-hero__placeholder svg {
    width: 80px;
    height: 80px;
  }
}
.manufacturers-hero__placeholder span {
  font-size: 14px;
  color: #909090;
}
@media (min-width: 1400px) {
  .manufacturers-hero__placeholder span {
    font-size: 16px;
  }
}

.manufacturers-market__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .manufacturers-market__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .manufacturers-market__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-market__grid {
    gap: 24px;
  }
}
.manufacturers-market__card {
  background: #eff6ff;
  border-radius: 5px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1400px) {
  .manufacturers-market__card {
    padding: 28px 30px;
    gap: 10px;
  }
}
.manufacturers-market__value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  color: #3178df;
}
@media (min-width: 992px) {
  .manufacturers-market__value {
    font-size: 32px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-market__value {
    font-size: 40px;
  }
}
.manufacturers-market__label {
  font-size: 13px;
  line-height: 1.45;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .manufacturers-market__label {
    font-size: 15px;
  }
}

.manufacturers-intro__intro {
  font-size: 15px;
  line-height: 1.6;
  color: #2d3241;
  margin: 0 0 24px;
}
@media (min-width: 992px) {
  .manufacturers-intro__intro {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-intro__intro {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 40px;
    max-width: 1100px;
  }
}
.manufacturers-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .manufacturers-intro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .manufacturers-intro__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-intro__grid {
    gap: 24px;
  }
}
.manufacturers-intro__card {
  position: relative;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 22px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .manufacturers-intro__card {
    padding: 28px 26px;
    gap: 14px;
  }
}
.manufacturers-intro__num {
  position: absolute;
  top: -8px;
  right: 10px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #eff6ff;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 1400px) {
  .manufacturers-intro__num {
    font-size: 84px;
    top: -12px;
    right: 14px;
  }
}
.manufacturers-intro__title {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #3178df;
  margin: 0;
}
@media (min-width: 1400px) {
  .manufacturers-intro__title {
    font-size: 19px;
  }
}
.manufacturers-intro__text {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.55;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 1400px) {
  .manufacturers-intro__text {
    font-size: 15px;
  }
}
.manufacturers-intro__note {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #909090;
}
@media (min-width: 992px) {
  .manufacturers-intro__note {
    margin-top: 32px;
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-intro__note {
    margin-top: 40px;
    font-size: 16px;
  }
}

.manufacturers-rating__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 992px) {
  .manufacturers-rating__list {
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-rating__list {
    gap: 28px;
  }
}

.manufacturer-card {
  position: relative;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  transition: border-color 0.25s;
}
@media (min-width: 768px) {
  .manufacturer-card {
    grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
    gap: 24px;
    padding: 28px 26px;
  }
}
@media (min-width: 1200px) {
  .manufacturer-card {
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr) minmax(220px, 260px);
    gap: 32px;
    padding: 32px;
  }
}
@media (min-width: 1400px) {
  .manufacturer-card {
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr) minmax(240px, 280px);
    gap: 40px;
    padding: 40px;
  }
}
.manufacturer-card:hover {
  border-color: rgba(49, 120, 223, 0.4);
}
.manufacturer-card--ours {
  background: #eff6ff;
  border-color: #3178df;
  border-width: 2px;
  padding: 21px 19px;
}
@media (min-width: 768px) {
  .manufacturer-card--ours {
    padding: 27px 25px;
  }
}
@media (min-width: 1200px) {
  .manufacturer-card--ours {
    padding: 31px;
  }
}
@media (min-width: 1400px) {
  .manufacturer-card--ours {
    padding: 39px;
  }
}
.manufacturer-card--ours:hover {
  border-color: #3178df;
}
.manufacturer-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .manufacturer-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.manufacturer-card__rank {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: #3178df;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .manufacturer-card__rank {
    font-size: 48px;
  }
}
@media (min-width: 1400px) {
  .manufacturer-card__rank {
    font-size: 56px;
  }
}
.manufacturer-card--ours .manufacturer-card__rank {
  color: #d9291b;
}
.manufacturer-card__logo {
  flex-shrink: 0;
  width: 100%;
  max-width: 140px;
  aspect-ratio: 5/3;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .manufacturer-card__logo {
    max-width: 100%;
  }
}
.manufacturer-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.manufacturer-card__logo--placeholder {
  background: #eff6ff;
  border-color: transparent;
  color: #3178df;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
.manufacturer-card--ours .manufacturer-card__logo--placeholder {
  background: #fff;
}
.manufacturer-card__country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 1400px) {
  .manufacturer-card__country {
    font-size: 13px;
  }
}
.manufacturer-card__country svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.manufacturer-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1400px) {
  .manufacturer-card__body {
    gap: 18px;
  }
}
.manufacturer-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.manufacturer-card__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 992px) {
  .manufacturer-card__name {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .manufacturer-card__name {
    font-size: 28px;
  }
}
.manufacturer-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #3178df;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (min-width: 1400px) {
  .manufacturer-card__badge {
    font-size: 12px;
    padding: 5px 12px;
  }
}
.manufacturer-card__badge--ours {
  background: #d9291b;
}
.manufacturer-card__badge--limited {
  background: rgba(45, 50, 65, 0.6);
}
.manufacturer-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.manufacturer-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #eff6ff;
  color: #3178df;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
@media (min-width: 1400px) {
  .manufacturer-card__tag {
    font-size: 13px;
    padding: 5px 12px;
  }
}
.manufacturer-card--ours .manufacturer-card__tag {
  background: #fff;
}
.manufacturer-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 1400px) {
  .manufacturer-card__desc {
    font-size: 16px;
  }
}
.manufacturer-card__props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .manufacturer-card__props {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.manufacturer-card__props-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #909090;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 1400px) {
  .manufacturer-card__props-title {
    font-size: 13px;
  }
}
.manufacturer-card__props-title svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.manufacturer-card__props-title--pros svg {
  color: #3178df;
}
.manufacturer-card__props-title--cons svg {
  color: #3178df;
}
.manufacturer-card__props-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.manufacturer-card__props-item {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .manufacturer-card__props-item {
    font-size: 14px;
    padding-left: 16px;
  }
}
.manufacturer-card__props-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}
@media (min-width: 1400px) {
  .manufacturer-card__props-item::before {
    top: 9px;
  }
}
.manufacturer-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
@media (min-width: 1400px) {
  .manufacturer-card__actions {
    gap: 12px;
  }
}
.manufacturer-card__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #2d3241;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
@media (min-width: 1400px) {
  .manufacturer-card__action {
    font-size: 14px;
    padding: 12px 18px;
  }
}
.manufacturer-card__action svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.manufacturer-card__action:hover {
  border-color: #3178df;
  color: #3178df;
}
.manufacturer-card__rating {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
@media (min-width: 1200px) {
  .manufacturer-card__rating {
    gap: 14px;
    padding-left: 30px;
    border-left: 1px solid #d8d8d8;
  }
  .manufacturer-card--ours .manufacturer-card__rating {
    border-left-color: rgba(49, 120, 223, 0.25);
  }
}
.manufacturer-card__rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.manufacturer-card__rating-label {
  font-size: 13px;
  color: #909090;
}
@media (min-width: 1400px) {
  .manufacturer-card__rating-label {
    font-size: 14px;
  }
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.rating-stars svg {
  width: 16px;
  height: 16px;
  fill: #d8d8d8;
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .rating-stars svg {
    width: 18px;
    height: 18px;
  }
}
.rating-stars[data-rating="1"] svg:nth-child(-n+1), .rating-stars[data-rating="2"] svg:nth-child(-n+2), .rating-stars[data-rating="3"] svg:nth-child(-n+3), .rating-stars[data-rating="4"] svg:nth-child(-n+4), .rating-stars[data-rating="5"] svg:nth-child(-n+5) {
  fill: #f5a623;
}

.manufacturers-table__wrap {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  overflow: hidden;
}
.manufacturers-table__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.manufacturers-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}
@media (min-width: 1400px) {
  .manufacturers-table table {
    font-size: 15px;
  }
}
.manufacturers-table th {
  background: #eff6ff;
  color: #2d3241;
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #d8d8d8;
}
@media (min-width: 1400px) {
  .manufacturers-table th {
    font-size: 13px;
    padding: 16px 18px;
  }
}
.manufacturers-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #d8d8d8;
  vertical-align: middle;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .manufacturers-table td {
    padding: 16px 18px;
  }
}
.manufacturers-table tr:last-child td {
  border-bottom: none;
}
.manufacturers-table tr.is-ours td {
  background: rgba(49, 120, 223, 0.06);
  font-weight: 700;
}
.manufacturers-table .stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 1px;
  white-space: nowrap;
}
@media (min-width: 1400px) {
  .manufacturers-table .stars {
    font-size: 18px;
  }
}
.manufacturers-table__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.manufacturers-table__country-flag {
  display: inline-block;
  font-size: 11px;
  color: #909090;
  text-transform: uppercase;
}

.manufacturers-match__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .manufacturers-match__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .manufacturers-match__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.manufacturers-match__card {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1400px) {
  .manufacturers-match__card {
    padding: 28px 26px;
    gap: 14px;
  }
}
.manufacturers-match__task {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 1400px) {
  .manufacturers-match__task {
    font-size: 18px;
  }
}
.manufacturers-match__row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.manufacturers-match__label {
  font-size: 11px;
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (min-width: 1400px) {
  .manufacturers-match__label {
    font-size: 12px;
  }
}
.manufacturers-match__value {
  font-size: 14px;
  line-height: 1.4;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .manufacturers-match__value {
    font-size: 15px;
  }
}
.manufacturers-match__value strong {
  color: #3178df;
  font-weight: 700;
}
.manufacturers-match__value--ours strong {
  color: #d9291b;
}

.manufacturers-why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .manufacturers-why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .manufacturers-why-us__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-why-us__grid {
    gap: 24px;
  }
}
.manufacturers-why-us__details {
  margin-top: 24px;
  background: #eff6ff;
  border-radius: 5px;
  padding: 24px;
}
@media (min-width: 992px) {
  .manufacturers-why-us__details {
    margin-top: 32px;
    padding: 32px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-why-us__details {
    padding: 40px;
  }
}
.manufacturers-why-us__details-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #2d3241;
  margin: 0 0 16px;
}
@media (min-width: 992px) {
  .manufacturers-why-us__details-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-why-us__details-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}
.manufacturers-why-us__details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .manufacturers-why-us__details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .manufacturers-why-us__details-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 32px;
  }
}
.manufacturers-why-us__detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.manufacturers-why-us__detail-title {
  font-size: 14px;
  font-weight: 700;
  color: #3178df;
}
@media (min-width: 1400px) {
  .manufacturers-why-us__detail-title {
    font-size: 16px;
  }
}
.manufacturers-why-us__detail-text {
  font-size: 13px;
  line-height: 1.5;
  color: #2d3241;
  margin: 0;
}
@media (min-width: 1400px) {
  .manufacturers-why-us__detail-text {
    font-size: 15px;
  }
}

.manufacturers-reviews__inner {
  background: #eff6ff;
  border-radius: 5px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 992px) {
  .manufacturers-reviews__inner {
    padding: 40px;
    gap: 28px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-reviews__inner {
    padding: 56px 60px;
    gap: 36px;
  }
}
.manufacturers-reviews__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #2d3241;
  margin: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .manufacturers-reviews__title {
    font-size: 28px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-reviews__title {
    font-size: 36px;
  }
}
.manufacturers-reviews__subtitle {
  font-size: 14px;
  line-height: 1.5;
  color: #909090;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}
@media (min-width: 992px) {
  .manufacturers-reviews__subtitle {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-reviews__subtitle {
    font-size: 18px;
  }
}
.manufacturers-reviews__platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .manufacturers-reviews__platforms {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (min-width: 1400px) {
  .manufacturers-reviews__platforms {
    gap: 24px;
  }
}
.manufacturers-reviews__platform {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 1400px) {
  .manufacturers-reviews__platform {
    padding: 24px 28px;
    gap: 20px;
  }
}
.manufacturers-reviews__platform:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(49, 120, 223, 0.12);
}
.manufacturers-reviews__platform-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 50%;
}
@media (min-width: 1400px) {
  .manufacturers-reviews__platform-icon {
    width: 64px;
    height: 64px;
  }
}
.manufacturers-reviews__platform-icon svg,
.manufacturers-reviews__platform-icon img {
  width: 26px;
  height: 26px;
  display: block;
}
@media (min-width: 1400px) {
  .manufacturers-reviews__platform-icon svg,
  .manufacturers-reviews__platform-icon img {
    width: 32px;
    height: 32px;
  }
}
.manufacturers-reviews__platform-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.manufacturers-reviews__platform-name {
  font-size: 16px;
  font-weight: 700;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .manufacturers-reviews__platform-name {
    font-size: 20px;
  }
}
.manufacturers-reviews__platform-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #909090;
}
@media (min-width: 1400px) {
  .manufacturers-reviews__platform-rating {
    font-size: 15px;
  }
}
.manufacturers-reviews__platform-rating strong {
  font-size: 16px;
  color: #2d3241;
  font-weight: 700;
}
@media (min-width: 1400px) {
  .manufacturers-reviews__platform-rating strong {
    font-size: 18px;
  }
}
.manufacturers-reviews__platform-arrow {
  flex-shrink: 0;
  color: #3178df;
}
.manufacturers-reviews__platform-arrow svg {
  width: 20px;
  height: 20px;
}

.footer {
  background: #2d3241;
  padding: 55px 15px 30px;
}
@media (min-width: 992px) {
  .footer {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .footer__inner {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 82px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .footer__inner {
    padding-top: 112px;
    padding-bottom: 42px;
  }
}
@media (min-width: 992px) {
  .footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1400px) {
  .footer__top {
    gap: 80px;
    margin-bottom: 0;
  }
}
@media (min-width: 1600px) {
  .footer__top {
    gap: 164px;
  }
}
.footer__contacts {
  margin-bottom: 46px;
}
@media (min-width: 992px) {
  .footer__contacts {
    max-width: 207px;
    width: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 1400px) {
  .footer__contacts {
    max-width: 244px;
  }
}
@media (min-width: 992px) {
  .footer__contacts-right {
    max-width: 250px;
    margin-top: 16px;
  }
}
.footer__right {
  flex: 1;
}
.footer__logo {
  display: block;
  margin-bottom: 45px;
  text-align: center;
}
@media (min-width: 992px) {
  .footer__logo {
    text-align: left;
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .footer__logo {
    margin-bottom: 37px;
  }
}
.footer__logo img {
  height: 52px;
  width: auto;
  display: inline-block;
}
@media (min-width: 1400px) {
  .footer__logo img {
    height: 71px;
  }
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 348px;
  margin: 0 auto 33px;
}
@media (min-width: 992px) {
  .footer__socials {
    max-width: 100%;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1400px) {
  .footer__socials {
    gap: 44px;
    margin-bottom: 41px;
  }
}
.footer__socials-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .footer__social {
    width: 50px;
    height: 50px;
  }
}
.footer__social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  -webkit-filter: saturate(0.265) brightness(0.45) contrast(1.01) hue-rotate(11deg);
  filter: saturate(0.265) brightness(0.45) contrast(1.01) hue-rotate(11deg);
  transition: 0.2s;
}
@media (min-width: 1400px) {
  .footer__social img {
    width: 26px;
    height: 26px;
  }
}
.footer__social:hover img {
  -webkit-filter: saturate(1) brightness(1) contrast(1) hue-rotate(0deg);
  filter: saturate(1) brightness(1) contrast(1) hue-rotate(0deg);
}
.footer__yandex {
  display: block;
  margin-left: 26px;
}
@media (min-width: 992px) {
  .footer__yandex {
    margin-left: 0;
  }
}
.footer__yandex img {
  height: 50px;
  width: auto;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .footer__yandex img {
    height: 52px;
  }
}
@media (min-width: 1400px) {
  .footer__yandex img {
    height: 70px;
  }
}
.footer__phone-row {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 348px;
  margin: 0 auto 48px;
}
@media (min-width: 992px) {
  .footer__phone-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .footer__phone-row {
    gap: 24px;
    margin-bottom: 55px;
  }
}
.footer__phone-wrap {
  display: flex;
  flex-direction: column;
}
.footer__phone {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 2px;
}
@media (min-width: 1400px) {
  .footer__phone {
    font-size: 24px;
  }
}
.footer__phone-text {
  font-size: 14px;
  color: #909090;
  display: block;
}
@media (min-width: 1400px) {
  .footer__phone-text {
    font-size: 16px;
  }
}
.footer__callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 153px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}
@media (min-width: 992px) {
  .footer__callback {
    width: 200px;
    height: 60px;
    margin-left: 0;
  }
}
@media (min-width: 1400px) {
  .footer__callback {
    font-size: 16px;
  }
}
.footer__callback:hover {
  border: 1px solid #909090;
  color: #909090;
}
.footer__info-block {
  max-width: 348px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer__info-block {
    max-width: 100%;
    margin: 0;
  }
}
.footer__address {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .footer__address {
    max-width: 250px;
  }
}
@media (min-width: 1400px) {
  .footer__address {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 19px;
  }
}
.footer__shcedule-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #909090;
}
@media (min-width: 1400px) {
  .footer__shcedule-label {
    font-size: 18px;
  }
}
.footer__shcedule-time {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 16px;
}
@media (min-width: 1400px) {
  .footer__shcedule-time {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 22px;
  }
}
.footer__email {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #909090;
  text-decoration: underline;
}
.footer__email:hover {
  text-decoration: none;
}
@media (min-width: 1400px) {
  .footer__email {
    font-size: 18px;
  }
}
.footer__company {
  font-size: 14px;
  color: #909090;
  line-height: 1.5;
  margin-top: 20px;
  display: none;
}
@media (min-width: 992px) {
  .footer__company {
    display: block;
  }
}
@media (min-width: 1400px) {
  .footer__company {
    font-size: 16px;
    margin-top: 0;
  }
}
.footer__nav {
  display: none;
}
@media (min-width: 992px) {
  .footer__nav {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    /*max-width: 465px;
    width: 100%;*/
    flex: 1;
    padding-top: 20px;
  }
}
@media (min-width: 1400px) {
  .footer__nav {
    gap: 50px;
    padding-top: 32px;
  }
}
@media (min-width: 992px) {
  .footer__nav-col:last-child {
    max-width: 185px;
  }
  .footer__nav-col:first-child {
    max-width: 206px;
  }
}
@media (min-width: 1400px) {
  .footer__nav-col:last-child {
    max-width: 250px;
  }
  .footer__nav-col:first-child {
    max-width: 250px;
  }
}
.footer__nav-col .footer__nav-title:nth-child(3) {
  margin-top: 30px;
}
@media (min-width: 1400px) {
  .footer__nav-col .footer__nav-title:nth-child(3) {
    margin-top: 50px;
  }
}
.footer__nav-title {
  font-size: 14px;
  font-weight: 700;
  color: #909090;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 1400px) {
  .footer__nav-title {
    margin-bottom: 20px;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 1400px) {
  .footer__nav-list {
    gap: 10px;
  }
}
.footer__nav-link {
  font-size: 14px;
  color: #fff;
  transition: color 0.2s;
}
@media (min-width: 1400px) {
  .footer__nav-link {
    font-size: 16px;
  }
}
.footer__nav-link:hover {
  color: #909090;
}
.footer__subscribe {
  max-width: 348px;
  margin: 48px auto 50px;
}
@media (min-width: 992px) {
  .footer__subscribe, .footer__line-1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    max-width: 100%;
    margin-bottom: 54px;
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .footer__subscribe, .footer__line-1 {
    gap: 94px;
  }
}
@media (min-width: 1400px) {
  .footer__subscribe {
    margin-bottom: 79px;
  }
}
@media (min-width: 1400px) {
  .footer__line-1 {
    margin-bottom: 96px;
  }
}
@media (min-width: 992px) {
  .footer__contacts-info {
    max-width: 350px;
    width: 100%;
    margin-top: 18px;
  }
}
@media (min-width: 1400px) {
  .footer__contacts-info {
    max-width: 410px;
    margin-top: 24px;
  }
}
.footer__subscribe-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .footer__subscribe-title {
    margin-bottom: 0;
    display: flex;
  }
}
@media (min-width: 1400px) {
  .footer__subscribe-title {
    font-size: 18px;
    max-width: 500px;
  }
}
.footer__subscribe-title p {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .footer__subscribe-title p {
    max-width: 350px;
    width: 100%;
    display: block;
  }
}
@media (min-width: 1400px) {
  .footer__subscribe-title p {
    max-width: 410px;
    padding-top: 5px;
  }
}
.footer__subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 992px) {
  .footer__subscribe-form {
    /*max-width: 465px;
    width: 100%;*/
    flex: 1;
  }
}
.footer__subscribe-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 992px) {
  .footer__subscribe-row {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1400px) {
  .footer__subscribe-row {
    gap: 15px;
  }
}
.footer__subscribe-input {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  color: #2d3241;
  outline: none;
  background: #fff;
  width: 100%;
}
@media (min-width: 1400px) {
  .footer__subscribe-input {
    height: 60px;
    font-size: 16px;
  }
}
.footer__subscribe-input::placeholder {
  color: #909090;
}
.footer__subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 25px;
  background: #d9291b;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter Tight", sans-serif;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s;
}
@media (min-width: 1400px) {
  .footer__subscribe-btn {
    height: 60px;
    padding: 0 35px;
    font-size: 18px;
  }
}
.footer__subscribe-btn:hover {
  background: #a80c00;
}
.footer__subscribe-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  position: relative;
}
.footer__subscribe-consent .form-checkmark {
  background: #fff;
}
.footer__subscribe-consent span {
  font-size: 13px;
  color: #909090;
  line-height: 1.3;
}
.footer__subscribe-consent span a {
  color: #3178df;
  text-decoration: none;
}
.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 45px;
}
@media (min-width: 1400px) {
  .footer__divider {
    margin-bottom: 36px;
  }
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 348px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer__bottom {
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
}
.footer__copy {
  font-size: 14px;
  color: #909090;
}
@media (min-width: 1400px) {
  .footer__copy {
    font-size: 16px;
  }
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__legal a {
  font-size: 14px;
  color: #909090;
  text-decoration: underline;
  transition: 0.5s;
}
@media (min-width: 1400px) {
  .footer__legal a {
    font-size: 16px;
  }
}
.footer__legal a:hover {
  text-decoration: none;
}
.footer__disclaimer {
  font-size: 14px;
  color: #909090;
}
@media (min-width: 992px) {
  .footer__disclaimer {
    max-width: 280px;
  }
}
@media (min-width: 1400px) {
  .footer__disclaimer {
    font-size: 16px;
    max-width: 307px;
  }
}
.footer__credit {
  font-size: 14px;
  color: #909090;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .footer__credit {
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .footer__credit {
    font-size: 16px;
  }
}
.footer__credit a {
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
}
.footer__credit a:hover {
  color: #909090;
}

/* to top */
.to-top {
  position: fixed;
  bottom: -100px;
  left: 20px;
  cursor: pointer;
  z-index: 100;
  visibility: hidden;
  transition: all ease-out 1s;
  width: 50px;
  height: 50px;
  background: rgba(120, 120, 120, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .to-top {
    width: 35px;
    height: 35px;
    left: 8px;
  }
}
.to-top:hover {
  background: rgba(120, 120, 120, 0.8);
  transition: 0.5s;
}

.popup-callback {
  display: none;
  background: #fff;
  border-radius: 5px;
  padding: 35px 25px;
  max-width: 420px;
  width: 100%;
}
@media (min-width: 1400px) {
  .popup-callback {
    padding: 45px 40px;
    max-width: 480px;
  }
}
.popup-callback__title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  color: #2d3241;
  margin-bottom: 8px;
}
@media (min-width: 1400px) {
  .popup-callback__title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.popup-callback__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #909090;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .popup-callback__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.popup-callback__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}
.popup-callback .form-input {
  border-color: #d8d8d8;
}
.popup-callback .form-consent {
  margin-bottom: 20px;
}
.popup-callback .form-checkmark {
  background: #eff6ff;
}
.popup-callback .form-submit {
  width: 100%;
}

.popup-city {
  display: none;
  background: #fff;
  border-radius: 5px;
  max-width: 700px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .popup-city {
    max-width: 820px;
  }
}
.popup-city__header {
  background: #eff6ff;
  padding: 30px 25px;
}
@media (min-width: 1400px) {
  .popup-city__header {
    padding: 40px 55px;
  }
}
.popup-city__title {
  font-size: 22px;
  font-weight: 700;
  color: #2d3241;
}
@media (min-width: 1400px) {
  .popup-city__title {
    font-size: 28px;
  }
}
.popup-city__subtitle {
  font-size: 14px;
  color: #909090;
  margin-top: 6px;
}
@media (min-width: 1400px) {
  .popup-city__subtitle {
    font-size: 16px;
  }
}
.popup-city__body {
  padding: 25px 25px 35px;
}
@media (min-width: 1400px) {
  .popup-city__body {
    padding: 40px 55px 50px;
  }
}
.popup-city__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
@media (min-width: 576px) {
  .popup-city__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 40px;
  }
}
@media (min-width: 1400px) {
  .popup-city__list {
    gap: 30px 60px;
  }
}
.popup-city__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.popup-city__letter {
  font-size: 18px;
  font-weight: 700;
  color: #d9291b;
  line-height: 1;
}
@media (min-width: 1400px) {
  .popup-city__letter {
    font-size: 22px;
  }
}
.popup-city__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.popup-city__link {
  font-size: 14px;
  color: #2d3241;
  transition: color 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 1400px) {
  .popup-city__link {
    font-size: 16px;
  }
}
.popup-city__link:hover {
  color: #3178df;
}
.popup-city__link.is-active {
  color: #3178df;
  text-decoration: underline;
}
.popup-city__link.is-active::after {
  content: "✓";
  font-size: 12px;
}

.fancybox__content.popup-city {
  padding: 0 !important;
}

.fancybox__content > .f-button.is-close-btn {
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  opacity: 1;
  color: #2d3241;
  z-index: 10;
  transition: 0.2s;
}
.fancybox__content > .f-button.is-close-btn:hover {
  background: #eff6ff;
}
.fancybox__content > .f-button.is-close-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}