#title {
    font-size: 2.5em;
    font-weight: 600;
}

#scheduleWrap {
    width: 100%;
    margin-top: 2%;
}

#scheduleWrap .row {
    display: flex;
    justify-content: space-between;
}
#scheduleWrap .row:not(:first-child) {
    margin-top: 3%;
}

#scheduleWrap .row section {
    position: relative;
    width: 23%;
    overflow: hidden;
    animation: onload 1.8s;
}

#scheduleWrap .row section img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

#scheduleWrap .row section .clickTxt {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 70%;
    height: 28%;
    overflow: hidden;
}

#scheduleWrap .row section .clickTxt span {
    display: block;
    font-size: 2em;
    width: 100%;
    height: 100%;
    margin-left: -100%;
    line-height: 1em;
    font-weight: 500;
    transition: 0.4s ease-out;
}

#scheduleWrap .row section:hover img {
    opacity: 35%;
}

#scheduleWrap .row section:hover .clickTxt span {
    margin-left: 0%;
}

@keyframes onload {
    from {
        opacity: 0;
        margin-left: -50%;
        margin-top: -50%;
    }

    to {
        opacity: 1;
        margin-left: 0%;
        margin-top: 0;
    }
}
/* ================================================================= */
/* bagian popup keterangan */
#popUpWrap {
    position: fixed;
    top: 0;
    z-index: 1001;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}
#popUpWrap #popUpContent {
    position: relative;
    background-color: #201f1f;
    width: 50%;
    height: 65%;
    border-radius: 15px;
    opacity: 1;
}
#popUpWrap #popUpContent .close-btn {
    position: absolute;
    top: 0;
    right: 2.5%;
    font-size: 2.5em;
}
#popUpWrap #popUpContent #desc {
    display: flex;
    margin-top: 8%;
    margin-left: 5%;
}
#popUpWrap #popUpContent #desc #popUpImg {
    width: 35%;
}
#popUpWrap #popUpContent #desc #popUpImg img {
    position: relative;
    width: 100%;
    border-radius: 10px;
    transition: 0.4s;
    z-index: 10;
}
#popUpWrap #popUpContent #desc #descTxtWrap {
    position: relative;
    width: 60%;
    margin-left: 3%;
    margin-right: 5%;
}
#popUpWrap #popUpContent #desc #descTxtWrap #descTxt {
    position: absolute;
    top: 0;
}
#popUpWrap #popUpContent #desc #descTxtWrap #descTxt p {
    text-align: left;
    font-size: 1.3em;
}
#popUpWrap #popUpContent #desc #descTxtWrap a {
    background-color: #C34939;
    position: absolute;
    bottom: 0;
    padding: 1% 5%;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 50px;
}

#popUpWrap #popUpContent #countDown {
    margin: 2% 5% 5%;
}
#popUpWrap #popUpContent #countDown > span {
    font-size: 1.3em;
}
#popUpWrap #popUpContent #countDown #countDownTime {
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin-top: 1%;
}
#popUpWrap #popUpContent #countDown #countDownTime .wrapTime {
    text-align: center;
}
#popUpWrap #popUpContent .close-btn:hover {
    color: #9b6c66;
    cursor: pointer;
}
#popUpWrap #popUpContent #desc #descTxtWrap a:hover {
    background-color: #A33324;
    color: rgb(226, 226, 226);
}
#popUpWrap #popUpContent #desc #popUpImg img:hover {
    transform: scale(1.1);
}
/* ================================================================= */
/* bagian image modal */
#imageModal {
    position: fixed;
    top: 0;
    z-index: 1002;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0, 0.9);
    display: none;
}
#imageModal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: imgShowModal 0.5s;
}
#imageModal.show .showImg {
    animation: imgModal 0.6s;
}
#imageModal .close-btn {
    position: absolute;
    top: 0;
    right: 2.5%;
    font-size: 3.5em;
}
#imageModal img {
    width: 35%;
}
#imageModal .close-btn:hover {
    color: #A33324;
    cursor: pointer;
}
@keyframes imgShowModal {
    from {
        opacity: 0.0;
    }
    to {
        opacity: 1;
    }
}
@keyframes imgModal {
    from {
        margin-top: -10%;
    }
    to {
        margin-top: 0;
    }
}