/* Page Banner */

#Page_Banner {
    background-image: url(../images/course/banner.jpg);
    height: 500px;
}

#Page_Banner img {
    display: none;
}

h1 {
    font-size: 20px;
    margin: 10px 10px 5px;
}

h2 {
    font-size: 28px !important;
}

h3 {
    font-size: 24px !important;
}

h4 {
    font-size: 20px !important;
}

.more {
    text-align: right;
}

.more a {
    color: #414141;
    font-weight: bold;
}

.more a:hover{
    text-decoration: underline;
}

/* 課程區塊 */
#section-1 {
    padding: 30px 0;
    border-bottom: unset;
}

#section-1 p {
    margin-bottom: 10px !important;
}

/* 機器人區塊 */
#section-2 {
    padding-top: 30px;
    padding-bottom: 50px;
}
#section-2 .robot-title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    section div.row>div {
        margin-bottom: 25px;
    }
    #section-1 {
        padding-bottom: 10px !important;
    }
    #section-2 {
        padding-top: 0 !important;
    }
    #section-2 p.title {
        height: unset;
    }
    h2 {
        font-size: 24px !important;
    }
    .robot-icon {
        width: unset;
    }
}


@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 978px) {
    #section-1 .right {
        text-align: left;
    }
    h2 {
        font-size: 24px !important;
    }
    
}

/* 佔位功能 */
/* Placeholder styles */
.placeholder {
    opacity: 0.7;
    animation: pulse 1.5s infinite;
}
.img-placeholder {
    background: #e0e0e0;
    height: 202px;
    width: 100%;
    margin-bottom: 10px;
}
.text-placeholder {
    background: #e0e0e0;
    height: 20px;
    width: 70%;
    margin: 0 auto;
}

/* Skeleton loading effect */
@keyframes pulse {
    0% {
        background-color: #e0e0e0;
    }
    50% {
        background-color: #f0f0f0;
    }
    100% {
        background-color: #e0e0e0;
    }
}