.main-content-pendaftaran {
    padding: 2vw 6vw;
}

.visi-misi-title {
    margin-bottom: 50px;
}

.pendaftaran-item-box {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
    justify-items: end;
}

.title-program {
    padding: 10px 40px;
    width: 100%;
    background-color: rgb(9, 44, 136);
    border-radius: 25px;
    color: white;
    margin-bottom: 40px;
}

.pendaftaran-box {
    max-width: 800px;
    padding: 40px;
    background-color: #43dbfd;
    border-radius: 25px;
    color: rgb(9, 44, 136);
}

.pendaftaran-box h3 {
    padding: 10px 40px;
    background-color: yellow;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pendaftaran-box ol {
    margin: 0px 40px 60px 40px;
}

.pendaftaran-box ol li {
    font-size: 20px;
}

.pointing {
    display: block;
    width: 80px;
    rotate: -90deg;
    margin: 20px auto 0px;
    animation: pointing-down 0.5s ease-out 0s infinite alternate;
}

@keyframes pointing-down {
    0% {
        transform: translate(20px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.btn-pendaftaran {
    display: block;
    padding: 10px 80px;
    font-size: 22px;
    width: fit-content;
    background-color: rgb(9, 44, 136);
    border-radius: 5px;
    margin: 0px auto 10px;
    text-decoration: none;
    color: white;
}

.info-pendaftaran-box {
    padding: 10px 50px 5px;
    background-color: yellow;
    border-radius: 25px;
    position: relative;
    width: 75%;
    margin: 20px auto;
    font-size: 20px;
}

.info-pendaftaran-box p {
    text-align: center;
    margin-bottom: 0px;
}

.wa-button {
    position: absolute;
    bottom: -20px;
    right: 0px;
}

.info-pendaftaran-box img {
    width: 80px;
}

.pendaftaran-item-box:nth-of-type(2n) {
    justify-items: start;
}

/* item 2 */
.pendaftaran-item-box:nth-of-type(2) .pendaftaran-box {
    background-color: #9ba2a3;
}

.pendaftaran-item-box:nth-of-type(2) .pendaftaran-box  ol {
    color: white;
}

/* item 3 */
.pendaftaran-item-box:nth-of-type(3) .pendaftaran-box {
    background-color: rgb(9, 44, 136);
}

.pendaftaran-item-box:nth-of-type(3) .pendaftaran-box  ol {
    color: white;
}

.pendaftaran-item-box:nth-of-type(3) .btn-pendaftaran {
    background-color: white;
    color: rgb(9, 44, 136);
}

/* item 4 */
.pendaftaran-item-box:nth-of-type(4) .pendaftaran-box {
    background-color: #abbbe7;
}

/* item 5 */
.pendaftaran-item-box:nth-of-type(5) .pendaftaran-box {
    background-color: #f59999;
}

/* item 6 */
.pendaftaran-item-box:nth-of-type(6) .pendaftaran-box {
    background-color: #99f5b8;
}

/* item 7 */
.pendaftaran-item-box:nth-of-type(7) .pendaftaran-box {
    background-color: #c4d3e9;
}

/* item 8 */
.pendaftaran-item-box:nth-of-type(8) {
    display: none;
}



/* Responsive Break */
@media (max-width: 670px) {
    .visi-misi-title {
        margin-bottom: 7vw;
    }
    
    .pendaftaran-item-box {
        margin-bottom: 15vw;
    }
    
    .title-program {
        padding: 1.8vw 6vw;
        border-radius: 4vw;
        margin-bottom: 5vw;
        font-size: 3.7vw;
    }
    
    .pendaftaran-box {
        width: 100%;
        padding: 4vw;
        border-radius: 4vw;
    }
    
    .pendaftaran-box h3 {
        padding: 1.8vw 6vw;
        border-radius: 4vw;
        margin-bottom: 3vw;
        font-size: 3.7vw;
    }
    
    .pendaftaran-box ol {
        margin: 0px 4vw 6vw 4vw;
    }
    
    .pendaftaran-box ol li {
        font-size: 2.8vw;
    }
    
    .pointing {
        width: 12vw;
        margin: 0px auto 0px;
    }
    
    .btn-pendaftaran {
        padding: 1.5vw 12vw;
        font-size: 3.2vw;
        border-radius: 1vw;
        margin: 0px auto 1.5vw;
    }
    
    .info-pendaftaran-box {
        padding: 2vw 5vw 5vw;
        border-radius: 5vw;
        width: 95%;
        margin: 1.5vw auto;
        font-size: 2.8vw;
    }
    
    .wa-button {
        bottom: -3.5vw;
        right: 0px;
    }
    
    .info-pendaftaran-box img {
        width: 12vw;
    }
}