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

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

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

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scrollbar-gutter: stable;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  line-height: 1.5;
}

a:where([class]) {
  display: inline-flex;
}

button,
label {
  cursor: pointer;
}

:where([fill]:not([fill="none"], [fill^="url"])) {
  fill: currentColor;
}

:where([stroke]:not([stroke="none"], [stroke^="url"])) {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Inter_18pt-SemiBold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Inter_18pt-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-display: swap;
}
:root {
  --color-light: #ffffff;
  --color-blue: #17a1c0;
  --color-dark: #000000;
  --color-grey: #6b6966;
  --color-back-grey: #f7f8f9;
  --color-table: #e1f0fa;
  --color-hover: #e5e5e5;
  --font-family: "Inter", sans-serif;
  --container-width: 81.25rem;
  --container-padding-x: 0.8125rem;
  --transition-duration: 0.2s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(0.875rem, 0.8173076923rem + 0.2564102564vw, 1.125rem);
  display: flex;
  flex-direction: column;
  background-color: var(--color-back-grey);
  font-family: var(--font-family);
  color: var(--color-dark);
}

main {
  flex-grow: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color-dark);
  font-weight: 500;
}

h1,
.h2 {
  font-size: clamp(1rem, 0.9134615385rem + 0.3846153846vw, 1.375rem);
  color: var(--color-light);
  font-weight: 600;
  margin-left: 1.25rem;
  padding-top: 0.8125rem;
}

h2,
.h2 {
  font-size: clamp(1.5rem, 1.4423076923rem + 0.2564102564vw, 1.75rem);
  color: var(--color-dark);
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: var(--color-blue);
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-light);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

.page-header {
  background-color: var(--color-blue);
  color: var(--color-light);
  height: 3.4375rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  color: var(--color-light);
  background-color: var(--color-blue);
  align-items: center;
  border-radius: 0.625rem;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
}
.button:hover {
  color: var(--color-hover);
  background-color: #34b1cd;
}

.header__callback-btn {
  width: 12.5rem;
  height: 3.125rem;
  border: none;
}
@media (width <= 90.06125rem) {
  .header__callback-btn {
    width: 11.875rem;
    margin-left: 0.3125rem;
  }
}
@media (width <= 47.99875rem) {
  .header__callback-btn {
    display: none;
  }
}

.hero__button {
  width: 18.75rem;
  height: 3.4375rem;
}
@media (width <= 31.31125rem) {
  .hero__button {
    width: 15.625rem;
    height: 3.125rem;
  }
}

.feedback_btn {
  width: 12.5rem;
  padding-block: 0.3125rem;
  background-color: var(--color-back-grey);
  color: var(--color-blue);
  border: none;
  border-radius: 0.3125rem;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease;
}
.feedback_btn:hover,
.feedback_btn:focus-visible {
  background-color: var(--color-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.feedback_btn:active {
  transform: translateY(1px);
}
.feedback_btn--disabled,
.feedback_btn:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.header {
  text-transform: uppercase;
}
.header__top {
  padding-block: 0.9375rem;
  height: 6.875rem;
}
.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .header__top-inner {
    flex-direction: column;
  }
}
.header__contacts {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  text-transform: none;
  white-space: nowrap;
}
.header__contacts a:hover .icon {
  text-decoration: underline;
}
@media (width <= 64.43625rem) {
  .header__contacts {
    flex-direction: column;
    margin-left: 0.3125rem;
  }
}
@media (width <= 47.99875rem) {
  .header__contacts {
    gap: 0.625rem;
  }
}
.header__bottom {
  background-color: var(--color-blue);
  min-height: 3rem;
  position: relative;
}
@media (width <= 47.99875rem) {
  .header__bottom {
    margin-top: 2.8125rem;
  }
}
.header__menu-list {
  margin-left: 1.25rem;
  display: flex;
  flex-direction: row;
  gap: 1.875rem;
  justify-content: start;
  align-items: center;
  height: 4.0625rem;
}
@media (width <= 90.06125rem) {
  .header__menu-list {
    margin-left: 0rem;
  }
}
@media (width <= 64.43625rem) {
  .header__menu-list {
    gap: 0.0625rem;
  }
}
@media (width <= 47.99875rem) {
  .header__menu-list {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.header__menu-item {
  white-space: nowrap;
}
.header__menu-link {
  padding: 0.3125rem 0.625rem;
  color: var(--color-light);
  font-weight: 600;
}
.header__menu-link:hover {
  color: var(--color-hover);
}
.header__menu-link.is-active {
  color: var(--color-hover);
  pointer-events: none;
}
@media (width > 47.99875rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 47.99875rem) {
  .header__overlay {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    background-color: var(--color-blue);
    transition-duration: var(--transition-duration);
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}

.burger-button {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.53125rem 0.265625rem;
  color: var(--color-light);
  background-color: transparent;
  border: none;
  position: absolute;
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.25rem -0.1rem;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
  transform-origin: 0;
  translate: 0.2rem 0.75rem;
}
.burger-button.is-active .burger-button__line:last-child {
  width: 0;
}
.burger-button__line {
  width: 100%;
  height: 0.15625rem;
  background-color: currentColor;
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
}
.burger-button__line:last-child {
  width: 50%;
}

.icon-phone {
  display: inline-flex;
  align-items: center;
  column-gap: 0.3125rem;
}
.icon-phone::before {
  --size: 1.2rem;
  content: "";
  width: var(--size);
  height: var(--size);
  background-size: contain;
  background-image: url("../img/icon/phone-icon-colored.svg");
}

.icon-mail {
  display: inline-flex;
  align-items: center;
  column-gap: 0.3125rem;
}
.icon-mail::before {
  --size: 1.2rem;
  content: "";
  width: var(--size);
  height: var(--size);
  background-size: contain;
  background-image: url("../img/icon/mail-icon-colored.svg");
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0.625rem;
  padding: 1.875rem 0;
}
@media (width <= 47.99875rem) {
  .footer__top {
    flex-direction: column;
    column-gap: 0.625rem;
  }
}
.footer__policy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.footer__policy a:hover {
  text-decoration: underline;
}
.footer__contacts {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.footer__contacts a:hover {
  text-decoration: underline;
}
.footer__bottom {
  text-align: center;
  padding-bottom: 1.25rem;
}

.catalog__motors-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 1.5625rem;
}
@media (width <= 64.43625rem) {
  .catalog__motors-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 31.31125rem) {
  .catalog__motors-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.second {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (width <= 73rem) {
  .second {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width <= 51rem) {
  .second {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 36rem) {
  .second {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.catalog__motors-item {
  border: 0.0625rem solid var(--color-blue);
  max-width: 31.25rem;
  min-width: 12.5rem;
}

.motors__list-link {
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition-duration: var(--transition-duration);
}
.motors__list-link:hover {
  box-shadow: 0rem 0.375rem 0.9375rem rgba(0, 0, 0, 0.3);
}

.motors-title {
  font-size: clamp(1rem, 0.9423076923rem + 0.2564102564vw, 1.25rem);
  padding-block: 1.5625rem;
  background-color: var(--color-blue);
  color: var(--color-light);
  font-weight: 600;
}

.hero__container {
  display: flex;
  justify-content: center;
  margin: 3.75rem 0rem 3.75rem 0rem;
}

.no_filtration-title {
  font-size: clamp(1rem, 0.9134615385rem + 0.3846153846vw, 1.375rem);
  color: var(--color-light);
  text-align: center;
  padding-top: 0.8125rem;
}

@media (width <= 36rem) {
  .motor_no-filtration .page-header {
    height: 4.5rem;
  }
}

/* ---------------- СЕТКА ---------------- */
.motors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-block: 1.5625rem;
}
@media (width<=73rem) {
  .motors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width<=51rem) {
  .motors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width<=36rem) {
  .motors-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ---------------- ЗАГОЛОВОК ГРУППЫ ---------------- */
.series-group-title {
  font-size: clamp(1.125rem, 1rem+0.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-blue);
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
.series-group-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-blue);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ---------------- КАРТОЧКА ---------------- */
.motors-grid__item {
  border: 0.0625rem solid var(--color-blue);
  min-width: 12.5rem;
}

.motors-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow var(--transition-duration),
    transform var(--transition-duration);
}
.motors-card:hover {
  box-shadow: 0 0.375rem 0.9375rem rgba(0, 0, 0, 0.3);
}

/* шапка карточки: код + описание */
.motors-card__header {
  background: var(--color-blue);
  color: var(--color-light);
  padding: 0.45rem 0.3rem;
  text-align: center;
}
.no-filter{
  padding-block: 0.7rem;
}
.motors-code {
  display: block;
  margin: 0;
  font-weight: 600;
  font-size: clamp(1rem, 0.95rem+0.2vw, 1.2rem);
  line-height: 1.15;
}
.motors-desc {
  display: block; /* описание сразу под кодом */
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 400;
  opacity: 0.9;
}

/* картинка серии */
.motors-card__img {
  width: 100%;
  height: auto;
}

/* временный лейбл «скоро будут» */
.motors-card__note {
  font-size: 0.8125rem;
  color: #888;
  padding-block: 0.5rem 1rem;
  margin: 0;
}

.product {
  margin-top: 1.25rem;
}
.product-types {
  padding-block: 1.5625rem;
}
.product-types__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
@media (width <= 64.43625rem) {
  .product-types__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 31.31125rem) {
  .product-types__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-types__item {
  border: 0.0625rem solid var(--color-blue);
  max-width: 23.125rem;
  max-height: 31.5625rem;
}
.product-types__link {
  display: flex;
  flex-direction: column;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition-duration: var(--transition-duration);
  background-color: var(--color-light);
}
.product-types__link:hover {
  box-shadow: 0rem 0.375rem 0.9375rem rgba(0, 0, 0, 0.3);
}

.title {
  font-size: clamp(1.125rem, 0.9230769231rem + 0.8974358974vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
  margin-block: 0 1.5rem;
}

.about__hero {
  display: flex;
  flex-direction: row;
  padding-block: 1.25rem;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .about__hero {
    padding-block: 0.9375rem;
    gap: 0.0625rem;
  }
}
.about__hero-content {
  flex: 1 1 28rem;
  max-width: 36rem;
  min-width: 13.125rem;
  margin-left: 0.9375rem;
}
.about__hero-img {
  max-width: 25.25rem;
  min-width: 12.5rem;
}
@media (width <= 31.31125rem) {
  .about__hero-img {
    display: none;
  }
}
.about-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-block: 40px;
}

.about-info__title {
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 20px;
}

.about-info__text {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.8;
  color: var(--color-grey);
  max-width: 100%;
  margin: 0 0 20px;
}

.about-info__text:nth-child(2) {
  max-width: 65ch;
}

.about-info__subtitle {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  margin: 0 0 15px;
}

.about-info__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 25px;
}

@media (max-width: 480px) {
  .about-info__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.about-info__item {
  position: relative;
  padding-left: 1.4em;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.4;
}

.about-info__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-blue);
  border-radius: 50%;
}
.about__strategy {
  display: flex;
  flex-direction: column;
  margin-left: 0.9375rem;
  margin-bottom: 1.3rem;
}
.about__strategy-list {
  display: flex;
  flex-direction: row;
  gap: 1.875rem;
}
@media (width <= 31.31125rem) {
  .about__strategy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}
.about__strategy-item {
  font-size: clamp(1rem, 0.8557692308rem + 0.641025641vw, 1.625rem);
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  margin-block: 0 1.5rem;
}
.about__production {
  font-size: clamp(1rem, 0.8846153846rem + 0.5128205128vw, 1.5rem);
}
.about__production-text {
  color: var(--color-grey);
  line-height: 1.8;
  margin-bottom: 1.875rem;
}
.about__production-list {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}
@media (width <= 47.99875rem) {
  .about__production-list {
    gap: 1.25rem;
  }
}
@media (width <= 31.31125rem) {
  .about__production-list {
    flex-wrap: wrap;
  }
}
.about__production-item {
  position: relative;
  padding-left: 1.2em;
}
.about__production-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  background-color: #17a1c0;
  border-radius: 50%;
}
.about__production-quote {
  font-size: clamp(1.125rem, 0.9519230769rem + 0.7692307692vw, 1.875rem);
  color: var(--color-grey);
  margin: 1.875rem 0rem 1.875rem 0rem;
}
.about__cta {
  font-size: clamp(1.125rem, 1.0384615385rem + 0.3846153846vw, 1.5rem);
  background-color: var(--color-blue);
  margin: 1.875rem 0rem 1.25rem 0rem;
  padding-block: 4.6875rem;
  color: var(--color-light);
}
.about__cta-title {
  font-size: clamp(1.625rem, 1.4230769231rem + 0.8974358974vw, 2.5rem);
  color: var(--color-light);
  margin-bottom: 1rem;
}

.about-gallery {
  margin-block: 40px;
}

.about-gallery__slider {
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16/9;
  margin-inline: auto;
}

.about-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.about-gallery__slider .swiper-button-prev,
.about-gallery__slider .swiper-button-next {
  --btn-size: clamp(36px, 3.5vw, 52px);
  width: var(--btn-size);
  height: var(--btn-size);
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0 118 255 / 0.55);
  border-radius: 50%;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}

.about-gallery__slider .swiper-button-prev::after,
.about-gallery__slider .swiper-button-next::after {
  font-size: clamp(18px, 2.2vw, 24px);
  color: #fff;
}

.about-gallery__slider .swiper-button-prev:hover,
.about-gallery__slider .swiper-button-next:hover,
.about-gallery__slider .swiper-button-prev:focus-visible,
.about-gallery__slider .swiper-button-next:focus-visible {
  background: rgba(0 118 255 / 0.9);
  transform: scale(1.07);
  box-shadow: 0 0 0 3px rgba(0 118 255 / 0.35);
}

.about-gallery__slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  background: #c6d8ff;
  opacity: 0.7;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.about-gallery__slider .swiper-pagination-bullet-active {
  background: #0076ff;
  opacity: 1;
  transform: scale(1.3);
}
.about-gallery__slider .swiper-pagination-bullet:hover {
  opacity: 1;
  transform: scale(1.1);
}

.contacts__main {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  margin: 1.25rem 0 1.25rem 0;
}
@media (width <= 47.99875rem) {
  .contacts__main {
    flex-direction: column;
  }
}
.contacts__main-map {
  width: 100%;
  max-width: 62.5rem;
  min-width: 25rem;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 5/2;
}
.contacts__main-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (width <= 47.99875rem) {
  .contacts__main-map {
    max-width: 100%;
    min-width: 12.5rem;
    min-height: 18.75rem;
  }
}
@media (width <= 31.31125rem) {
  .contacts__main-map {
    max-width: 100%;
    min-height: 12.5rem;
  }
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contacts__details {
  background: var(--color-table);
  padding: 2.1875rem;
  border-radius: 0.625rem;
}
@media (width <= 31.31125rem) {
  .contacts__details {
    padding: 0.9375rem;
  }
}
.contacts__list--2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem 2.5rem;
}
@media (width <= 31.31125rem) {
  .contacts__list--2cols {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.callback {
  background-color: var(--color-blue);
  color: var(--color-light);
  padding: 4rem 0;
  margin-top: 1.25rem;
}
@media (width <= 47.99875rem) {
  .callback {
    padding: 3rem 0;
  }
}
@media (width <= 31.31125rem) {
  .callback {
    padding: 2rem 0;
  }
}
.callback__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
}
@media (width <= 47.99875rem) {
  .callback__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.callback__title {
  font-size: clamp(1.25rem, 1.0480769231rem + 0.8974358974vw, 2.125rem);
  color: var(--color-light);
}
.callback__desc {
  font-size: clamp(1rem, 0.9134615385rem + 0.3846153846vw, 1.375rem);
  margin: 0;
  max-width: 21.875rem;
  line-height: 1.6;
  margin-top: 1.25rem;
}
.callback__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.callback__row {
  display: flex;
  gap: 1.25rem;
}
@media (width <= 47.99875rem) {
  .callback__row {
    gap: 0.5rem;
  }
}
@media (width <= 31.31125rem) {
  .callback__row {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.callback__input,
.callback__textarea {
  flex: 1 1 0;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.4);
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
}
.callback__input::placeholder,
.callback__textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.callback__input:focus,
.callback__textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  background: rgba(255, 255, 255, 0.15);
}
@media (width <= 64.43625rem) {
  .callback__input {
    max-width: 12.5rem;
  }
}
@media (width <= 47.99875rem) {
  .callback__input {
    max-width: none;
  }
}
.callback__textarea {
  resize: vertical;
  min-height: 8.125rem;
}
@media (width <= 64.43625rem) {
  .callback__textarea {
    max-width: 26.25rem;
  }
}
@media (width <= 47.99875rem) {
  .callback__textarea {
    max-width: none;
  }
}
.callback__agree {
  font-size: clamp(0.75rem, 0.7211538462rem + 0.1282051282vw, 0.875rem);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (width <= 64.43625rem) {
  .callback__agree {
    gap: 0.25rem;
  }
}
.callback__agree input {
  accent-color: var(--color-blue);
}
.callback__agree a {
  color: #fff;
  text-decoration: underline;
}
.callback__submit {
  font-size: clamp(1rem, 0.9423076923rem + 0.2564102564vw, 1.25rem);
  white-space: nowrap;
  width: 15.625rem;
}

.popup::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.popup {
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  width: min(90%, 37.5rem);
  animation: fade 0.25s ease;
}
.popup__body {
  padding: 2rem 2rem 2.5rem;
}
.popup__title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
}
.popup__field {
  display: block;
  margin-bottom: 1.25rem;
}
.popup__field input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}
.popup__agree {
  font-size: clamp(0.75rem, 0.7211538462rem + 0.1282051282vw, 0.875rem);
}
.popup__submit {
  width: 100%;
  margin-top: 0.625rem;
}
.popup__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #666;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
}

:root {
  --selector-border: #dfe6f3;
  --selector-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  --selector-radius: 8px;
}

.selector .page-header {
  margin-bottom: 15px;
}

.filters {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0.75rem 1rem;
  padding: 1.25rem 1rem 1.5rem;
  align-items: flex-end;
  background: var(--color-back-grey);
  border: 1px solid var(--selector-border);
  border-radius: var(--selector-radius);
  box-shadow: var(--selector-shadow);
  overflow-x: auto;
  scrollbar-width: thin;
}
.filters::-webkit-scrollbar {
  height: 6px;
}
.filters::-webkit-scrollbar-thumb {
  background: var(--selector-border);
  border-radius: 4px;
}
.filters::-webkit-scrollbar-thumb:hover {
  background: var(--color-grey);
}

.flt {
  flex: 0 0 8rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  min-width: 8rem;
  white-space: normal;
}
.flt .label {
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  min-height: 2.2rem;
  margin: 0 0 0.3rem;
}

.range-field {
  min-width: 7rem;
}
.range-row {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  margin-top: 0.35rem;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.8rem;
}

.range-row + .range-row {
  margin-top: 0.6rem;
}

.range-cap {
  color: var(--color-grey);
  font-size: 0.97em;
  margin-right: 0.2em;
}
.range-row select {
  width: 4rem;
  min-width: 0;
  padding-inline: 0.35rem;
}

.fit__btn {
  flex: 1 0 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 0.9rem;
  align-items: flex-start;
}

.filters select,
.fit__btn button,
.fit__btn .btn {
  font: inherit;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--selector-border);
  border-radius: var(--selector-radius);
  background: #fff;
  transition:
    border-color 0.15s,
    background-color 0.15s,
    color 0.15s;
}
.filters select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236b6966' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.45rem center;
  background-size: 10px 6px;
  cursor: pointer;
}
.filters select:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 1px;
}

#reset-filter {
  background: #fff;
  color: var(--color-blue);
  border-color: var(--color-blue);
  font-weight: 600;
}
#reset-filter:hover {
  background: var(--color-hover);
}

#download {
  display: inline-flex;
  align-items: center;
  background: var(--color-blue);
  color: var(--color-light);
  border: 1px solid var(--color-blue);
  border-radius: var(--selector-radius);
  font-weight: 600;
}
#download:hover {
  color: var(--color-hover);
  background-color: #34b1cd;
}

select option[value=""] {
  color: var(--color-grey);
}
select[value=""] {
  color: var(--color-grey);
}
@supports selector(:has(*)) {
  select:has(> option[value=""]:checked) {
    color: var(--color-grey);
  }
}

#table-wrapper {
  margin-top: 2rem;
  overflow-x: auto;
}
#reducers-table {
  width: 100%;
  min-width: 820px;
  border: 1px solid var(--selector-border);
  border-radius: var(--selector-radius);
  background: #fff;
  box-shadow: var(--selector-shadow);
  font-size: 0.95rem;
  border-collapse: collapse;
}
#reducers-table thead th {
  background: var(--color-blue);
  color: var(--color-light);
  padding: 0.6rem 0.8rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 5;
}
#reducers-table tbody td {
  padding: 0.55rem 0.8rem;
  text-align: center;
  border-top: 1px solid var(--selector-border);
}
#reducers-table tbody tr:nth-child(odd) {
  background: var(--color-table);
}
#reducers-table tbody tr:hover {
  background: rgba(23, 161, 192, 0.15);
}

#pager {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
#pager button {
  min-width: 2.5rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--selector-border);
  border-radius: var(--selector-radius);
  background: #fff;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
#pager button:hover:not(:disabled) {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-light);
}
#pager button:disabled {
  opacity: 0.45;
  cursor: default;
}
#pager span {
  align-self: center;
  font-weight: 600;
}

@media (max-width: 48rem) {
  .flt,
  .range-field {
    min-width: 6.5rem;
  }
  .range-row select {
    width: 3.7rem;
  }
  #reducers-table {
    font-size: 0.85rem;
  }
}

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