/**
 * File Name: businesscourse.css
 * Version: 3.0
 **/

@import url('course_entry.css');

/*** businesscourse sec1 ***/

#businesscourse_sec1 {
    height: auto;
    margin: 0 auto;
    max-width: 991px;
    padding: 30px 30px 30px;
    width: 100%;
}

#businesscourse_sec1 h2 {
    background-color: #807060;
    border-bottom: 1px dashed #e8e8e0;
    border-top: 1px dashed #e8e8e0;
    box-shadow: 0px 0px 0px 5px #807060;
    color: #e8e8e0;
    font-size: 2.5em;
    line-height: 1.5;
    margin: 5px 5px 1.2em;
    padding: 10px 0;
    text-align: center;
    width: calc(100% - 10px);
}

#businesscourse_sec1 p {
    font-size: 1.8em;
    line-height: 1.5;
    margin-bottom: 0.5em;
    text-align: center;
}

#businesscourse_sec1 p:last-of-type {
    margin-bottom: 0;
}

#businesscourse_sec1 ul {
    display: flex;
    justify-content: space-between;
}

#businesscourse_sec1 li {
    background-color: #f0f0e8;
    font-size: 1.4em;
    padding: 10px 0;
    text-align: center;
    width: calc(33.33% - 15px);
}

#businesscourse_sec1 li.active {
    background-color: #68a4d9;
    color: #fbfbf8
}

#businesscourse_sec1 li span {
    margin-left: 0.5em;
}

@media (max-width: 639px) {

    #businesscourse_sec1 {
        padding: 15px 15px 30px;
    }

    #businesscourse_sec1 h2 {
        font-size: 2.0em;
    }

    #businesscourse_sec1 li {
        font-size: 1.0em;
        width: calc(33.33% - 5px);
    }

    #businesscourse_sec1 li span {
        display: none;
    }

}

/*** businesscourse sec2 ***/

#businesscourse_sec2 {
    height: auto;
    margin: 0 auto;
    max-width: 991px;
    padding: 30px;
    width: 100%;
}

#businesscourse_sec2 .course_entry:not(:last-of-type) {
    margin-bottom: 30px;
}

#businesscourse_sec2 .course_entry h3 {
    font-size: 2.0em;
    line-height: 1.5;
    margin-bottom: 15px;
    margin-left: 50px;
    position: relative;
}

#businesscourse_sec2 .course_entry h3::before {
    background-color: #68a4d9;
    border-radius: 50%;
    color: #fbfbf8;
    content: '\f518';
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    font-weight: bold;
    height: 30px;
    left: -50px;
    margin-right: 0.5em;
    padding: 5px;
    position: absolute;
    text-align: center;
    top: -5px;
    width: 30px;
}

#businesscourse_sec2 .course_entry dl {
    background-color: #f0f0e8;
    background-position: 15px 15px;
    background-size: 150px auto;
    background-repeat: no-repeat;
    margin-bottom: 15px;
    min-height: 230px;
    padding: 15px 15px 15px 180px;
    width: 100%;
}

#businesscourse_sec2 .course_entry dl::after {
    clear: both;
    content: '';
    display: block;
}

#businesscourse_sec2 .course_entry dt {
    background-color: #606058;
    clear: both;
    color: #f0f0e8;
    float: left;
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 0.5em;
    padding: 0.25em;
    text-align: center;
    width: 135px;
}

#businesscourse_sec2 .course_entry dd {
    float: left;
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 0.5em;
    margin-left: 15px;
    margin-top: 4px;
    width: calc(100% - 150px);
}

#businesscourse_sec2 .course_entry dd:first-of-type {
    display: flex;
    margin-top: 0;
}

#businesscourse_sec2 .course_entry dd:first-of-type span {
    border: 1px solid #606058;
    display: inline-block;
    flex: 1;
    margin-right: 2px;
    padding: 2px;
    text-align: center;
}

#businesscourse_sec2 .course_entry dd:first-of-type span:last-of-type {
    margin-right: 0;
}

#businesscourse_sec2 .course_entry dd:first-of-type span.forcused {
    background-color: #606058;
    color: #f0f0e8
}

@media (max-width: 639px) {

    #businesscourse_sec2 {
        padding: 15px;
    }

    #businesscourse_sec2 .course_entry h3 {
        font-size: 1.8em;
    }

    #businesscourse_sec2 .course_entry dl {
        background-position: center 15px;
        padding: 230px 15px 15px 15px;
    }

    #businesscourse_sec2 .course_entry dt {
        float: none;
        width: 100%;
    }

    #businesscourse_sec2 .course_entry dd {
        float: none;
        margin-bottom: 15px;
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }

    #businesscourse_sec2 .course_entry dd:last-of-type {
        margin-bottom: 0;
    }

}