.catalog-hero {
  position: relative;
  overflow: hidden;
  min-height: 25rem;
  background: var(--bg-white);
}
.catalog-hero__background,
.catalog-hero__background picture,
.catalog-hero__background img,
.catalog-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.catalog-hero__background img {
  display: block;
  object-fit: cover;
  object-position: center;
}
.catalog-hero_development .catalog-hero__background img {
  object-position: center 48%;
}
.catalog-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.1) 0%, rgba(16, 16, 16, 0.1) 100%),
    linear-gradient(159deg, rgba(16, 16, 16, 0.4) 11.5%, rgba(16, 16, 16, 0) 60.8%);
}
.catalog-hero_development .catalog-hero__overlay {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.1) 0%, rgba(16, 16, 16, 0.1) 100%),
    linear-gradient(159deg, rgba(5, 25, 48, 0.4) 11.5%, rgba(5, 25, 48, 0) 60.8%);
}
.catalog-hero .container {
  position: relative;
  z-index: 2;
}
.catalog-hero__inner {
  min-height: 25rem;
  padding-top: 3.125rem;
  padding-bottom: 6.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.375rem;
}
.catalog-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light-primary);
  font: var(--font-body-S-r);
}
.catalog-hero__breadcrumb {
  color: var(--text-light-primary);
  text-decoration: underline;
}
.catalog-hero__breadcrumb_active {
  color: var(--text-light-secondary);
  text-decoration: none;
}
.catalog-hero__breadcrumb-icon {
  width: 0.8125rem;
  height: 0.5rem;
  flex: 0 0 auto;
  color: var(--text-light-primary);
}
.catalog-hero__content {
  width: min(43.75rem, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}
.catalog-hero__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.catalog-hero__title {
  margin: 0;
  color: var(--text-light-primary);
  font: var(--font-h1);
  max-width: 43.75rem;
}
.catalog-hero__description {
  margin: 0;
  max-width: 39.375rem;
  color: var(--text-light-primary);
  font: var(--font-body-L-m);
}
.catalog-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (min-width: 1921px) {
  .catalog-hero {
    min-height: 20.83333vw;
  }
  .catalog-hero__inner {
    min-height: 20.83333vw;
    padding-top: 2.60417vw;
    padding-bottom: 5.20833vw;
    gap: 3.64583vw;
  }
  .catalog-hero__content {
    width: 36.45833vw;
    gap: 2.08333vw;
  }
  .catalog-hero__text {
    gap: 1.04167vw;
  }
  .catalog-hero__title {
    max-width: 36.45833vw;
  }
  .catalog-hero__description {
    max-width: 32.8125vw;
  }
}
@media screen and (max-width: 1240px) {
  .catalog-hero {
    min-height: 23.75rem;
  }
  .catalog-hero__inner {
    min-height: 23.75rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
    gap: 3rem;
  }
  .catalog-hero__title {
    font: var(--font-h2);
  }
}
@media screen and (max-width: 750px) {
  .catalog-hero {
    min-height: 28.75rem;
  }
  .catalog-hero__inner {
    min-height: 28.75rem;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    gap: 2.5rem;
  }
  .catalog-hero__breadcrumbs {
    font: var(--font-body-M-r);
  }
  .catalog-hero__content {
    gap: 2rem;
  }
  .catalog-hero__title {
    font-size: 2.25rem;
    line-height: 1.15;
  }
  .catalog-hero__description {
    font: var(--font-body-M-m);
  }
}