.bx-section-desc {
  margin: 0;
}

.catalog-section {
  margin-top: 32px;
}

.catalog-section__title {
  font-size: 28px;
  line-height: 100%;
  margin: 0;
  font-weight: 500;
}

.section__banner-desc {
  background-image: url("images/desc-bgr.svg");
  background-color: rgba(239, 85, 48, 0.05);
  border-radius: 20px;
  padding: 40px;
  min-height: 189px;
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
  margin: 32px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-desc__title {
  font-size: 28px;
  line-height: 33px;
  font-weight: 500;
  color: var(--color-orange);
  margin: 0;
}

.banner-desc__subtitle {
  font-size: 16px;
  line-height: 22px;
  color: var(--color-orange);
  margin: 16px 0 0 0;
}

.banner-desc__link {
  display: inline-block;
  padding: 32px 58px;
  font-size: 21px;
  line-height: 21px;
  color: var(--color-orange);
  font-weight: 500;
  border-radius: 200px;
  background: var(--color-white);
  /* transition: all 0.25s; */
}

/* .banner-desc__link:hover,
.banner-desc__link:focus {
  background: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
} */

.catalog-section__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 20px;
  justify-items: center;
  margin-bottom: 40px;
}

.catalog-section__item {
  max-width: 315px;
  width: 100%;
}

.similar-sections {
  margin-top: 72px;
}

.similar-sections__title {
  font-size: 36px;
  line-height: 36px;
  margin: 0;
}

.tablet-filter {
  display: none;
}

.show-more.button {
  margin: 0 auto;
  width: max-content;
  padding: 26px 80px;
  border-radius: 100px;
  background-color: var(--color-orange-5);
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  transition: all 0.25s;
  cursor: pointer;
  display: block;
  -webkit-appearance: none;
  color: var(--color-orange);
}

@media (hover: hover) {
  .show-more:hover {
    background-color: var(--color-orange-10);
  }
}

@media (max-width: 500px) {
  .show-more:active {
    background-color: var(--color-orange-10);
  }
}

.section__tags {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.section__tag {
  font-size: 16px;
  line-height: 100%;
  text-transform: lowercase;
  color: var(--color-orange);
  background-color: rgba(239, 85, 48, 0.05);
  padding: 18px 25px;
  border-radius: 100px;
}

.section__tags.mob {
  display: none;
}

.section__bottom-desc h2 {
  font-weight: 400;
  font-size: 18px;
}

@media (max-width: 1250px) {
  .catalog-section__items {
    grid-template-columns: 315px 315px;
  }
}

@media (max-width: 1200px) {
  .section__tags.mob {
    display: flex;
  }
  .section__tags.desc {
    display: none;
  }
  .bx-section-desc.child h2 {
    display: block;
  }
  .catalog-section__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
    justify-items: unset;
    margin-bottom: 32px;
  }

  .bx-section-desc {
    margin-top: 0;
  }

  .catalog-section__title {
    font-size: 21px;
    line-height: 21px;
  }

  .similar-sections {
    display: none;
  }

  .section__banner-desc {
    margin-top: 24px;
    padding: 23px 25px;
    min-height: 110px;
    background-image: url("images/desc-bgr-tablet.svg");
    background-position: top left;
    align-items: center;
  }

  .banner-desc__title {
    font-size: 21px;
    line-height: 120%;
  }

  .banner-desc__subtitle {
    margin-top: 10px;
  }

  .banner-desc__link {
    font-size: 16px;
    padding: 0 28px 0 0;
    line-height: 24px;
    background-color: transparent;
    border-radius: 0;
    background-image: url("images/arrow.svg");
    background-repeat: no-repeat;
    background-position: right;
  }

  .tablet-filter {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 32px;
  }

  .tablet-filter .button {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-black);
    position: relative;
  }

  .tablet-filter .button.active::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--color-orange);
    position: absolute;
    top: 3px;
    right: 4px;
  }

  .show-more.button {
    padding: 23px;
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .section__banner-desc {
    background-image: url("images/desc-bgr-mob.svg");
    background-size: cover;
    background-position: center;
  }
  .catalog-section__items {
    grid-template-columns: repeat(2, calc(50% - 5px));
    gap: 24px 10px;
    margin-bottom: 24px;
  }
  .tablet-filter {
    flex-direction: row-reverse;
  }

  .section__tags {
    flex-wrap: nowrap;
    overflow: auto;
    gap: 6.5px;
    margin-right: -20px;
  }

  .section__tag {
    white-space: nowrap;
    font-size: 14px;
    line-height: 100%;
    padding: 13px 14px;
  }
}
