.courses {
  margin-top: 14vw;
}

.diagram {
  width: 80%;
  margin: 5rem auto;
}
.diagram .diagram__img {
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
}

.programs__container {
  background: linear-gradient(157deg, rgb(94, 67, 155) 0%, rgb(8, 13, 40) 69%);
}

.programs {
  border-radius: 1rem;
  padding: 4rem 0;
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.card-container {
  border-radius: 1rem;
  border: 2px solid #39caf2;
  flex: 1 1 calc(33.333% - 20px);
  margin: 10px;
  perspective: 1000px;
  min-width: 280px;
}

.card-title {
  font-size: 2.5rem;
}

.card {
  border: 2px solid #39caf2;
  width: 100%;
  height: 400px;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
  position: relative;
  cursor: pointer;
}
.card:hover {
  transform: rotateY(180deg);
}
.card .benefit {
  font-size: 1vw;
  font-weight: 400;
  margin: 2rem 0;
}
.card .card-img {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
}
.card .card-front,
.card .card-back {
  color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  transition: opacity 0.3s ease-in-out;
}
.card .card-front {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(231, 231, 231, 0.045);
}
.card .card-back {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: rotateY(180deg);
}
.card .card-back a {
  color: #00cfff;
  text-decoration: none;
  border: 1px solid #00cfff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}
.card .card-back a:hover {
  background-color: #00cfff;
  color: white;
}

@media (max-width: 1024px) {
  .card-container {
    flex: 1 1 calc(45% - 20px);
  }
}
@media (min-width: 1024px) {
  .card {
    height: 460px;
  }
  .card .benefit {
    font-size: 1vw;
    font-weight: 200;
  }
}
@media (max-width: 768px) {
  .card .benefit {
    font-size: 2.5vw;
  }
  .card-container {
    flex: 1 1 calc(100% - 20px);
  }
}
@media (max-width: 488px) {
  .card {
    height: 70vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .card .benefit {
    font-size: 1.5vw;
  }
}/*# sourceMappingURL=cuorses.css.map */