h1 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  background-color: var(--primary-color2);
  color: var(--light-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
}
h1::before {
  content: "";
  background-color: var(--secondary-color);
  background-image: -o-linear-gradient(top, #ffdc5e, var(--secondary-color));
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffdc5e),
    to(var(--secondary-color))
  );
  background-image: linear-gradient(to bottom, #ffdc5e, var(--secondary-color));
  line-height: 0;
  -webkit-box-shadow: 0 8px 12px rgba(241, 186, 36, 0.39);
  box-shadow: 0 8px 12px rgba(241, 186, 36, 0.39);
  display: inline-block;
  height: 0.875rem;
  margin-left: 10px;
  width: 0.875rem;
  border-radius: 9999px;
}
.swiper-slide img {
  border-radius: 20px;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blob-img {
  position: relative;
  padding-top: 50px;
}
.blob-img::before {
  content: "";
  position: absolute;
  width: 20vw;
  height: 20vw;
  background-color: var(--primary-color);
  left: 0;
  top: 4px;
  border-radius: 1000px;
  z-index: -1;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.blob-img::after {
  content: "";
  position: absolute;
  width: 15vw;
  height: 15vw;
  background-color: var(--secondary-color);
  right: 0;
  bottom: 0;
  border-radius: 1000px;
  z-index: -1;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.blob-img img {
  width: 80%;
  margin: auto;
  border-radius: 20px;
}
.level-swiper img {
  width: 120px;
}
.teacher-swiper img {
  padding: 1rem;
  border-radius: 25px;
}
@media screen and (max-width: 770px) {
  .blob-img::before {
    width: 50vw;
    height: 50vw;
  }
}
