
#program {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 700px;
}
#program-bg {
    height: 700px;
    text-align: center;
}

#program > .bg {
    position: absolute;
    left: -205px;
    top: 0;
    animation: program-bg-slide 1s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
}

@keyframes program-bg-slide {
    from {
        top: -450px;
    }
    to {
        top: 350px;
    }
}

#program .program-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 40px;
}
#program .program-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 130px;
}

#program .program-card img {
    width: 370px;
}

#program .program-card .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: calc(100% - 370px);
    height: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#program .program-card .content > .title {
    color: #fff;
    font-size: 23px;
    margin-right: 50px;
}
#program .program-card .content > .desc {
    color: #fff;
    font-size: 18px;
    line-height: 38px;
    text-align: left;
}

#program .program-card.program-0 {
    z-index: 4;
}
#program .program-card.program-0 .content > .title {
    color: #ca73ff;
}

#program .program-card.program-1 {
    z-index: 3;
}
#program .program-card.program-1 .content > .title {
    color: #13e5f6;
}

#program .program-card.program-2 {
    z-index: 2;
}
#program .program-card.program-2 .content > .title {
    color: #40c3ff;
}

#program .program-card.program-3 {
    z-index: 1;
}
#program .program-card.program-3 .content > .title {
    color: #d19e51;
}

.md #program .program-card img {
    width: 280px;
}

.md #program .program-card .content {
    width: calc(100% - 280px);
}
.md #program .program-card .content > .title {
    font-size: 22px;
    white-space: nowrap;
    margin-right: 30px;
}
.md #program .program-card .content > .desc {
    font-size: 16px;
    line-height: 35px;
    box-sizing: border-box;
    padding-right: 20px;
}

.sm #program {
    height: 1250px;
}
.sm #program-bg {
    height: 1250px;
}

.sm #program > .bg {
    opacity: 0.7;
}

.sm #program .program-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px;
    margin-top: 0;
}
.sm #program .program-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 450px;
    height: auto;
}
.sm #program .program-card + .program-card {
    margin-top: 0;
}

.sm #program .program-card img {
    position: relative;
    width: 240px;
}

.sm #program .program-card .content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: none;
}
.sm #program .program-card .content > .title {
    width: 100%;
    font-size: 20px;
    text-align: center;
    margin-right: 0;
    margin-top: -10px;
    margin-bottom: 10px;
}
.sm #program .program-card .content > .desc {
    display: block;
    font-size: 15px;
    line-height: 30px;
    text-align: justify;
    margin: auto;
}