﻿/*****************************************
* Statistics
*****************************************/
#education {
    padding: 100px 0px 60px 0px;
}

    #education .subtitle {
        font-weight: 600;
        font-size: 56px;
        line-height: 60px;
        letter-spacing: 0px;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    #education .title {
        font-size: 80px;
        line-height: 86px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 60px;
        text-transform: uppercase;
    }


@media(max-width:960px) {
    #education {
        padding: 100px 0px;
    }

        #education .subtitle {
            font-size: 46px;
            line-height: 50px;
        }

        #education .title {
            font-size: 80px;
            line-height: 86px;
        }


}


@media(max-width:460px) {
    #education {
        padding: 50px 0px 0px 0px;
    }

        #education .subtitle {
            font-size: 24px;
            line-height: 30px;
            margin-bottom: 0px;
        }

        #education .title {
            font-size: 46px;
            line-height: 50px;
            margin-bottom: 40px;
        }
}


.search-wrapper {
    position: relative;
    width: 80%;
    display: flex;
    align-items: center;
    background: #010815;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    margin: 0px auto;
}

    .search-wrapper input {
        flex: 1;
        padding: 15px 30px;
        border: none;
        outline: none;
        background: transparent;
        color: #80f9fc;
        font-size: 18px;
    }

    .search-wrapper button {
        background: transparent;
        border: none;
        color: #ffffffcc;
        padding: 0 16px;
        font-size: 18px;
        cursor: pointer;
        height: 100%;
        display: flex;
        align-items: center;
        outline: none;
    }

        .search-wrapper button.search-button {
            padding: 15px 60px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
        }

        .search-wrapper button:hover {
            color: #ffffff;
        }

        .search-wrapper button img {
            width: 30px;
            opacity: 0.4;
        }

    .search-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 40%;
        width: 20%;
        height: 3px;
        background: radial-gradient(circle, rgba(0,212,255,0.4) 0%, rgba(0,0,0,0) 70%);
        border-radius: 100%;
        filter: blur(6px);
    }


@media(max-width:460px) {
    .search-wrapper {
        width: 100%;
    }

        .search-wrapper input {
            padding: 10px 20px;
        }

        .search-wrapper button.search-button {
            padding: 14px 15px;
        }

        .search-wrapper button img {
            width: 16px;
        }
}


/*****************************************
* podcast
*****************************************/
#podcast {
    padding: 0px 0px 50px 0px;
}

.podcast {
    width: 80%;
    margin: 0px auto;
}


@media(max-width:460px) {
    .podcast {
        width: 100%;
    }
}

.podcast .iframe-wrapper {
    padding-bottom: 150px;
}

    .podcast .iframe-wrapper iframe {
        height: auto;
    }


/*****************************************
* media-section
*****************************************/
.media-section {
    padding: 40px 0px;
}

    .media-section:last-child {
        padding: 40px 0px 100px 0px;
    }

    .media-section .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

        .media-section .header .header-left {
            width: 80%;
        }

        .media-section .header .headesr-right {
            width: auto;
        }

        .media-section .header .header-right a {
            padding: 5px 30px;
            text-align: center;
            /*border-radius: 10px;*/
        }

    .media-section .title {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
    }

        .media-section .title img {
            width: 36px;
            margin-left: 5px;
        }

    .media-section .subtitle {
        font-size: 20px;
    }


@media(max-width:960px) {
    .media-section {
        padding: 40px 20px;
    }

        .media-section:last-child {
            padding: 40px 20px 100px 20px;
        }


        .media-section .header .header-left {
            width: 70%;
        }
}

@media(max-width:460px) {
    .media-section {
        padding: 50px 0px;
    }

        .media-section .header {
            margin-bottom: 30px;
        }

            .media-section .header .header-left {
                width: 80%;
            }

            .media-section .header .header-right {
                width: 18%;
            }

                .media-section .header .header-right a {
                    width: 100%;
                    margin-right: 0px;
                    padding: 4px 10px;
                    font-size: 12px;
                    text-align: center;
                }

        .media-section .title {
            font-size: 22px;
            line-height: 26px;
            margin-bottom: 0px;
        }

            .media-section .title img {
                width: 24px;
            }

        .media-section .subtitle {
            font-size: 16px;
            line-height: 20px;
        }
}

.media-section-wrapper {
    margin: 0px auto;
}

@media(max-width:460px) {
    .media-section-wrapper {
        width: 100%;
    }
}


/*****************************************
* short-clip-lists
*****************************************/
.short-clip-lists {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .short-clip-lists .short-clip-item {
        position: relative;
        border: 1px solid #125c95;
        width: calc(100% / 4 - 20px);
        border-radius: 10px;
        color: #ffffff;
        background: #000000;
    }

        .short-clip-lists .short-clip-item:hover {
            transform: translateY(-2px);
        }


        /*.short-clip-lists .short-clip-item::after {
            content: '';
            position: absolute;
            bottom: -11px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            height: 4px;
            background: radial-gradient(ellipse at center, #5cdbff 0%, transparent 70%);
            opacity: 1;
            filter: blur(5px);
        }*/


        .short-clip-lists .short-clip-item .youtube-short-container {
            position: relative;
            width: 100%;
            max-width: 315px;
            aspect-ratio: 9 / 16; /* Vertical (shorts) video */
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
        }

            .short-clip-lists .short-clip-item .youtube-short-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: none;
            }

@media(max-width:460px) {
    .short-clip-lists .short-clip-item {
        width: calc(100% / 2 - 10px);
    }
}


/*****************************************
* course-lists
*****************************************/
.course-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}


    .course-lists .course-lists-item {
        position: relative;
        border: 1px solid #125c95;
        width: calc(100% / 3 - 20px);
        border-radius: 10px;
        color: #ffffff;
        background: #000000;
    }

        /* .course-lists .course-lists-item:hover {
            transform: translateY(-2px);
        }*/

        /*.course-lists .course-lists-item::after {
            content: '';
            position: absolute;
            bottom: -11px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            height: 4px;
            background: radial-gradient(ellipse at center, #5cdbff 0%, transparent 70%);
            opacity: 1;
            filter: blur(5px);
        }*/


        .course-lists .course-lists-item .course-lists-item-photo {
            border-radius: 10px 10px 0px 0px;
            margin-bottom: 10px;
        }

            .course-lists .course-lists-item .course-lists-item-photo img {
                border-radius: 10px 10px 0px 0px;
            }

        .course-lists .course-lists-item .video-container {
            overflow: hidden;
            border-radius: 0px;
            position: relative;
            width: 100%;
            max-width: 560px;
            aspect-ratio: 16 / 9;
            margin: 0 auto;
        }

            .course-lists .course-lists-item .video-container.round-border-all {
                border-radius: 10px;
            }

            .course-lists .course-lists-item .video-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

        .course-lists .course-lists-item .course-info {
            padding: 10px 20px;
        }

            .course-lists .course-lists-item .course-info .course-name {
                font-size: 16px;
                line-height: 22px;
                margin-bottom: 5px;
                height: 55px;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: normal;
            }

            .course-lists .course-lists-item .course-info .course-type {
                color: #839bbe;
                margin-bottom: 5px;
                font-size: 18px;
                line-height: 24px;
            }

            .course-lists .course-lists-item .course-info .course-detail-info {
                color: #8a8a8a;
                font-size: 16px;
                line-height: 20px;
            }

        .course-lists .course-lists-item .button-action {
            text-align: center;
            padding: 20px 0px;
        }

            .course-lists .course-lists-item .button-action a {
                padding: 8px 40px;
            }


@media(max-width:460px) {
    .course-lists .course-lists-item {
        width: 100%;
    }
}

/*****************************************
* promotion-lists 
*****************************************/
#economic-calendar {
    padding: 100px 0px;
    background: radial-gradient(#002454, #000000);
    color: #ffffff;
}

    #economic-calendar .title {
        font-size: 55px;
        line-height: 60px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 60px;
        text-transform: uppercase;
    }


@media(max-width:460px) {
    #economic-calendar {
        padding: 50px 0px;
    }

        #economic-calendar .title {
            font-size: 30px;
            line-height: 36px;
            margin-bottom: 40px;
        }
}

.economic-calendar {
    height: 70vh;
}

    .economic-calendar .tradingview-widget-container {
        max-width: 100%;
        width: 100%;
    }

    .economic-calendar .tradingview-widget-container__widget {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 60%; /* Adjust this to control height ratio */
    }

        .economic-calendar .tradingview-widget-container__widget iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
        }




/*****************************************
* #course-detail 
*****************************************/
#course-detail {
    padding: 100px 0px 0px 0px;
}

@media(max-width:460px) {
    #course-detail {
        padding: 50px 0px;
    }
}

.course-detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    border: 1px solid #125c95;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(to left, #002454, #010c1e);
    padding: 3%;
}

    .course-detail .course-detail-video {
        width: 58%;
    }

        .course-detail .course-detail-video .video-container {
            overflow: hidden;
            border-radius: 20px 20px 0px 0px;
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            margin: 0 auto;
        }


            .course-detail .course-detail-video .video-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

    .course-detail .course-detail-info {
        width: 36%;
        position: relative;
    }

        .course-detail .course-detail-info .subtitle {
            font-size: 20px;
            margin-bottom: 10px;
        }


        .course-detail .course-detail-info .title {
            font-size: 36px;
            line-height: 40px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .course-detail .course-detail-info .footer-detail {
            text-align: center;
            /* position: absolute;
            bottom: 20%;
            left: 0;
            right: 0;*/
        }

            .course-detail .course-detail-info .footer-detail .footer-price {
                display: flex;
                justify-content: flex-start;
                align-items: baseline;
                flex-wrap: wrap;
                padding: 0px 0px 40px 0px;
            }

                .course-detail .course-detail-info .footer-detail .footer-price .sale-price {
                    font-size: 50px;
                    font-weight: 600;
                    line-height: normal;
                }

                .course-detail .course-detail-info .footer-detail .footer-price .original-price {
                    color: #56b3e5;
                    font-size: 20px;
                    line-height: 24px;
                    font-weight: 600;
                    margin: 0px 10px;
                    text-decoration: line-through;
                }

            .course-detail .course-detail-info .footer-detail .button-action {
                text-align: center;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

                .course-detail .course-detail-info .footer-detail .button-action a {
                    /*padding: 10px 30px;
                    margin: 5px;*/
                    width: 46%;
                }


@media(max-width:460px) {
    .course-detail .course-detail-video {
        width: 100%;
    }

    .course-detail .course-detail-info {
        width: 100%;
        height: 346px;
        padding: 20px 0px;
    }

        .course-detail .course-detail-info .subtitle {
            font-size: 20px;
            line-height: 24px;
            margin-bottom: 0px;
        }

        .course-detail .course-detail-info .title {
            font-size: 30px;
            line-height: 36px;
        }

        .course-detail .course-detail-info .footer-detail .footer-price .sale-price {
            font-size: 30px;
        }

        .course-detail .course-detail-info .footer-detail .footer-price .original-price {
            font-size: 16px;
            line-height: 20px;
        }

        .course-detail .course-detail-info .footer-detail .button-action a {
            width: 50%;
            padding: 6px 10px;
        }
}



/*****************************************
* course-tab-info
*****************************************/
.course-tab-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0px;
}

    .course-tab-info .course-tab-info-item {
        text-align: center;
        padding: 10px 30px;
        cursor: pointer;
        font-size: 18px;
    }


        .course-tab-info .course-tab-info-item.active {
            color: #000000;
            background: #ffffff;
            border-radius: 30px;
            border: 1px solid #ffffff;
        }


@media(max-width:460px) {
    .course-tab-info .course-tab-info-item {
        width: calc(100% / 2);
        font-size: 16px;
        padding: 6px 20px;
        margin-bottom: 5px;
    }
}


.course-tab-panel {
}

    .course-tab-panel .course-tab-panel-item {
        display: none;
    }

        .course-tab-panel .course-tab-panel-item.active {
            display: block;
        }


.course-section {
    border: 1px solid #125c95;
    padding: 30px;
    font-size: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

    .course-section .header {
        text-decoration: underline;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .course-section ul li {
        font-size: 16px;
    }

    .course-section p {
        font-size: 16px;
    }


@media(max-width:460px) {
    .course-section {
        font-size: 16px;
        padding: 20px;
    }

        .course-section .header {
            text-decoration: underline;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .course-section ul {
            padding-left: 15px;
        }
}
