.catalog-page-spoiler {
  margin-bottom: 25px;
}

.catalog-page-spoiler__content {
  position: relative;
  overflow: hidden;
  max-height: 400px;
  padding-bottom: 4px;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.catalog-page-spoiler__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.catalog-page-spoiler.is-open .catalog-page-spoiler__content {
  max-height: 2000px;
}

.catalog-page-spoiler.is-open .catalog-page-spoiler__content::after {
  opacity: 0;
}

.catalog-page-spoiler .btn {
  text-align: center;
}

body .entry-hero.title-pages .entry-hero-container-inner {
  background-image: url('/images/front/about_us/banner_about_us.jpg');
}

.site-page-content {
  ul {
    margin-left: 55px;
  }
  table tr td {
    padding: 2px 5px;
  }
}