.learning-program {
  overflow: hidden;
  background: #000000;
  min-height: 100vh;
  position: relative;
}

.learning-program::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 800px;
  top: -100px;
  background-image: url("/assets/images/learning-program/glow-lines.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}

.learning-program__glow-left {
  position: absolute;
  left: -20px;

  width: 310px;
  z-index: 1;
  height: 70%;
  bottom: 0;

  background-image: url("/assets/images/learning-program/glow-left.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.learning-program__glow-right {
  position: absolute;
  right: -20px;
  z-index: 1;

  width: 310px;
  height: 70%;
  bottom: 0;

  background-image: url("/assets/images/learning-program/glow-right.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.learning-program__container {
  text-align: center;
}

.learning-program__content {
  position: relative;
  z-index: 10;
}

.learning-program__subtitle {
  font-family: "Astrados", sans-serif;
  color: #d6001c;
  font-weight: 400;
  font-size: 128px;
  line-height: 100%;
  position: relative;
  bottom: -69px;
}

.learning-program__title {
  font-family: "Akrobat", sans-serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 100%;
  text-transform: uppercase;

  background: #000000;
  background: linear-gradient(
    135deg,
    rgb(0, 0, 0) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgb(0, 0, 0) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
}

.learning-program__text {
  margin-top: 23px;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0;
  color: #afafaf;
}

.learning-program__list {
  max-width: 860px;
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.learning-program__item {
  position: relative;
  z-index: 2;
}

.learning-program__item-content {
  padding: 10px 10px 10px 30px;
  text-align: left;
  border-radius: 16px;
  border: 1px solid #e3ff00;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.learning-program__item-marker {
  position: absolute;
  left: 30px;
  top: -32px;
  border-radius: 8px;
  padding: 10px 25px 25px 25px;
  background-color: #e3ff00;

  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000;
}

.learning-program__item:nth-child(even) .learning-program__item-marker {
  transform: rotate(3deg);
}

.learning-program__item:nth-child(odd) .learning-program__item-marker {
  transform: rotate(-3deg);
}

.learning-program__item-text {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  color: #fff;
}

.learning-program__item-button {
  cursor: pointer;
  flex-shrink: 0;
  width: 120px;
  height: 60px;
  border-radius: 8px;
  backdrop-filter: blur(250px);
  -webkit-backdrop-filter: blur(250px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e3ff001a;
  border: none;

  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: #e3ff00;

  transition: background-color 0.3s ease-in-out;
}

.learning-program__item-button:hover {
  background-color: #e3ff0033;
}

@media (max-width: 1024px) {
  .learning-program__glow-left,
  .learning-program__glow-right {
    display: none;
  }
}

@media (max-width: 900px) {
  .learning-program__list {
    margin: 0 20px;
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .learning-program::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .learning-program__title {
    font-size: 60px;
  }

  .learning-program__item-content {
    padding: 20px;
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }

  .learning-program__item-text {
    margin-right: 20px;
  }

  .learning-program__item-button {
    width: 280px;
    height: 40px;
  }
}

@media (max-width: 500px) {
  .learning-program__subtitle {
    font-size: 64px;
    bottom: -37px;
  }

  .learning-program__title {
    font-size: 40px;
  }

  .learning-program__text {
    font-size: 14px;
    margin-top: 20px;
  }

  .learning-program__list {
    gap: 21px;
  }

  .learning-program__item-content {
    align-items: center;
  }
}
