.show-programs-fs {
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, #7b57f6 0%, rgba(123, 87, 246, 0.59) 100%);
  border-radius: 30px;
  padding: 20px;
}

.show-programs-fs__inner {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 75px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.show-programs-fs__header {
  max-width: 610px;
  margin: 0 auto 20px auto;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #fff;
}

.show-programs-fs__description {
  max-width: 610px;
  margin: 0 auto 30px auto;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 142%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #fff;
}

.show-programs-fs__banner-button {
  border-radius: 1000px;
  padding: 19px 54px;
  border: 1px solid #fff;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 118%;
  letter-spacing: -.03em;
  color: #7b57f6;
}

.show-programs-fs__banner-button:hover {
  background: #7b57f6;
  color: #fff;
  border: 1px solid #fff
}

.show-programs-fs__vector-left,
.show-programs-fs__vector-right {
  position: absolute;
  z-index: 0
}

.show-programs-fs__vector-left {
  left: 0px;
  margin-right: 85px;
  bottom: -1px;
}

.show-programs-fs__vector-right {
  right: 0;
  margin-right: 0;
  top: 0;
}


.show-programs-fs-right-img {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 20px;
}

.show-programs-fs-left-img {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0
}



@media (max-width: 1199px) {
  .show-programs-fs__vector-left {
    left: 0px;
    margin-right: 85px;
    bottom: -1px;
  }

  .show-programs-fs__vector-right {
    right: -50px;
    margin-right: 0;
    top: 0;
  }


  .show-programs-fs-right-img {
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 5px;
    width: 280px;
  }

  .show-programs-fs-left-img {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 350px;
  }
}


@media (max-width: 991px) {
  .show-programs-fs__header {
    font-size: 40px;
    text-wrap: balance;
  }

  .show-programs-fs__description {
    max-width: 450px;
    font-size: 18px;
    text-wrap: balance;
  }

  .show-programs-fs__vector-left {
    left: 0px;
    margin-right: 85px;
    bottom: -1px;
  }

  .show-programs-fs__vector-right {
    right: -75px;
    margin-right: 0;
    top: -19px;
  }


  .show-programs-fs-right-img {
    position: absolute;
    z-index: 0;
    bottom: 0px;
    right: 15px;
    width: 230px;
  }

  .show-programs-fs-left-img {
    position: absolute;
    z-index: 0;
    bottom: 5px;
    left: 24px;
    width: 260px;
  }
}

@media (max-width: 767px) {

  .show-programs-fs__inner {
    padding: 100px 25px;
  }

  .show-programs-fs__header {
    font-size: 35px;
  }

  .show-programs-fs__description {
    max-width: 350px;
  }

  .show-programs-fs__vector-left {
    left: -140px;
    margin-right: 97px;
    bottom: 0px;
  }

  .show-programs-fs__vector-right {
    display: none;
  }

}

@media (max-width: 575px) {
  .show-programs-fs {
    padding: 15px;
  }

  .show-programs-fs__inner {
    padding: 100px 25px;
  }

  .show-programs-fs__description {
    max-width: 295px;
    font-size: 16px;
  }

  .show-programs-fs__vector-left {
    left: -140px;
    margin-right: 97px;
    bottom: 0px;
  }

}

/* -- sp-categories --*/

.sp-categories {
  padding: 0;
}

.sp-categories__title {
  max-width: 520px;
  margin: 0 auto 35px auto;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  text-align: center;
  color: #222;
}

.sp-categories__title span {
  margin-top: 10px;
  display: inline-block;
  border-radius: 1131.427px;
  background: linear-gradient(1deg, #7B57F6 3.49%, rgba(123, 87, 246, 0.59) 109.04%);
  transform: rotate(-1.936deg);
  padding: 2px 22px 14px;
  color: white;
}

.sp-categories__subtitle {
  margin: 0 auto 40px auto;
  max-width: 720px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #222;
  text-wrap: balance;
}

.sp-categories__empty {
  margin: 40px 0;
  text-align: center;
}

.sp-categories__list {
  margin-bottom: 30px;
}

.sp-categories-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.sp-categories-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(128, 94, 246, .12);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sp-categories-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(111, 77, 228, .14);
  border-color: rgba(128, 94, 246, .26);
  color: inherit;
  text-decoration: none;
}

.sp-categories-card__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #ece8f8;
}

.sp-categories-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.sp-categories-card:hover .sp-categories-card image img {
  transform: scale(1.04);
}

.sp-categories-card__body {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 18px 18px 20px;
}

.sp-categories-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  color: #fff;
  background: linear-gradient(45deg, #7B57F6 3.49%, rgba(123, 87, 246, 0.59) 109.04%);
  flex-shrink: 0;
}

.sp-categories-card__icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.sp-categories-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sp-categories-card__title {
  display: block;
  margin: 0 0 6px;
  font-family: "Hagrid Trial", Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #805ef6;
}

.sp-categories-card__text {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -.03em;
  color: #222;
}

.sp-categories-card__arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #805ef6;
  flex-shrink: 0;
}

.sp-categories-card__arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

@media (max-width: 991px) {
  .sp-categories-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sp-categories__title {
    font-size: 31px;
  }

  .sp-categories__subtitle {
    font-size: 16px;
  }
}

@media (max-width: 575px) {

  .sp-categories-list {
    grid-template-columns: repeat(1, 1fr);
  }

}











@media (max-width: 1199px) {
  .holiday-format__list {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .holiday-format {
    margin: 60px 0 0 0;
  }

  .holiday-format__description {
    max-width: 400px;
  }

  .holiday-format__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .holiday-format__list {
    grid-template-columns: 1fr;
  }

  .holiday-format__help {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .holiday-format__button {
    width: 100%;
  }

  .holiday-format-card__body {
    grid-template-columns: 42px 1fr 24px;
    min-height: 104px;
    padding: 16px;
  }

  .holiday-format-card__icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 575px) {
  .holiday-format__header {
    font-size: 32px;
  }

  .holiday-format__description {
    margin-bottom: 40px;
  }

  .holiday-format-card__title {
    font-size: 18px;
  }

  .holiday-format-card__text {
    font-size: 13px;
  }

  .holiday-format__help-text {
    align-items: flex-start;
    font-size: 14px;
  }
}

/* -- /sp-categories --*/