﻿/*****************************************
* Office Locations
*****************************************/
#office-locations {
    padding: 0px;
    position: relative;
    text-align: center;
    /*background: linear-gradient(to left, #00183a, #000918);*/
    background: #ffffff;
    /*margin-top: -20px;*/
}

@media(max-width:460px) {
    #office-locations {
        padding: 0px;
    }
}

.locations-container {
    font-size: 16px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

    .locations-container .label {
    }


.location-slider {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

    .location-slider .location-slider-text {
        display: inline-block;
        padding-left: 100%;
        animation: slide 30s linear infinite;
    }

        .location-slider .location-slider-text ul {
            display: inline;
        }

            .location-slider .location-slider-text ul li {
                display: inline;
                font-size: 16px;
                color: #000000;
            }


                .location-slider .location-slider-text ul li::after {
                    content: " / ";
                    padding: 0px 15px;
                }

                .location-slider .location-slider-text ul li:first-child::after {
                    content: "  ";
                }

                .location-slider .location-slider-text ul li:last-child::after {
                    content: "";
                }

@media(max-width:460px) {
    .location-slider {
        padding: 0px 0px 5px 0px;
    }

        .location-slider .location-slider-text {
            /*border: 1px solid red;*/
        }

            .location-slider .location-slider-text ul {

            }

                .location-slider .location-slider-text ul li {
                    font-size: 12px;
                    line-height: 26px;

                }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


/*****************************************
* Statistics
*****************************************/
#statistics {
}

    #statistics .title {
        font-size: 50px;
        line-height: 50px;
    }


    #statistics .subtitle {
        width: 100%;
    }


@media(max-width:960px) {
    #statistics {
        padding: 50px 0px 0px 0px;
    }

        #statistics .title {
            font-size: 28px;
            line-height: 34px;
        }

        #statistics .subtitle {
            width: 100%;
            font-size: 16px;
            line-height: 20px;
        }
}

@media(max-width:460px) {
    #statistics {
        padding: 50px 0px 0px 0px;
    }

        #statistics .title {
            font-size: 26px;
            line-height: 30px;
        }

        #statistics .subtitle {
            width: 100%;
            font-size: 14px;
            line-height: 20px;
        }
}


.stats-section {
    padding: 20px 20px 70px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

    .stats-section .stat-item {
        margin: 20px;
        /*min-width: 180px;*/
    }

        .stats-section .stat-item .stat-number {
            color: #55b1e9;
            font-size: 56px;
            line-height: 60px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
            display: inline-block;
            width: 100%;
        }

            .stats-section .stat-item .stat-number::after {
                content: '';
                display: block;
                width: 100%;
                height: 2px;
                background-color: white;
                margin: 30px auto 0;
            }

        .stats-section .stat-item .stat-label {
            margin-top: 10px;
            font-size: 24px;
        }

@media (max-width: 960px) {
    .stats-section {
        padding: 20px 0px;
        /*flex-direction: column;
        align-items: center;*/
        flex-direction: row;
    }

        .stats-section .stat-item {
            margin: 5px 5px 20px 5px;
            width: calc(100% / 4 - 10px);
        }

            .stats-section .stat-item .stat-number {
                font-size: 26px;
                line-height: 36px;
                padding-bottom: 0px;
            }

                .stats-section .stat-item .stat-number::after {
                    margin: 10px auto 0;
                    width: 90%;
                }

            .stats-section .stat-item .stat-label {
                margin-top: 10px;
                font-size: 13px;
                line-height: 14px;
            }
}


@media(max-width:460px) {
    .stats-section {
        padding: 20px 0px;
        /*flex-direction: column;
        align-items: center;*/
        flex-direction: row;
    }

        .stats-section .stat-item {
            margin: 5px 5px 20px 5px;
            width: calc(100% / 2 - 10px);
        }

            .stats-section .stat-item .stat-number {
                font-size: 26px;
                line-height: 36px;
                padding-bottom: 0px;
            }

                .stats-section .stat-item .stat-number::after {
                    margin: 10px auto 0;
                    width: 90%;
                }

            .stats-section .stat-item .stat-label {
                margin-top: 10px;
                font-size: 13px;
                line-height: 14px;
            }
}


.statistics-slide-wrapper {
    width: 85%;
    margin: 0px auto;
}


@media(max-width:460px) {
    .statistics-slide-wrapper {
        width: 85%;
        margin: 20px auto;
    }
}


.statistics-slide {
    width: 100%;
    padding: 0px 0px 60px 0px;
}

    .statistics-slide .swiper-slide.card {
        background: #000000;
        border-radius: 12px;
        border: 1px solid #0f3a61;
        text-align: center;
        padding: 20px;
        color: white;
        transition: transform 0.3s ease;
    }

        .statistics-slide .swiper-slide.card img {
            max-width: 100%;
            height: 200px;
            object-fit: contain;
            margin-bottom: 16px;
        }

        .statistics-slide .swiper-slide.card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .statistics-slide .swiper-slide.card p {
            font-size: 14px;
            line-height: 1.5;
            color: #ccc;
        }

    .statistics-slide .swiper-pagination-bullet {
        background: #ffffff;
        opacity: 1;
        width: 8px;
        height: 8px;
        margin: 0px 5px !important;
    }

    .statistics-slide .swiper-pagination-bullet-active {
        background: #67b1e3;
        width: 10px;
        height: 10px;
    }


/*****************************************
* Connect Financial
*****************************************/
#connect-financial {
    color: #ffffff;
    padding: 0px 0px 0px 0px;
}


    #connect-financial .widget-wrapepr {
        margin: 60px 0px;
    }


/*****************************************
* Seposit Withdrawal
*****************************************/
#deposit-withdrawal {
}

@media(max-width:460px) {
    #deposit-withdrawal {
        padding: 0px 0px 30px 0px;
    }
}



.deposit-withdrawal-container {
    position: relative;
    padding: 3px;
}


    .deposit-withdrawal-container img {
        /*border-radius: 10px;*/
    }


.deposit-withdrawal-content {
    position: absolute;
    top: 30%;
    left: 5%;
}

    .deposit-withdrawal-content .header {
        font-size: 40px;
        line-height: normal;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

        .deposit-withdrawal-content .header span {
            color: #35b4fd;
        }

    .deposit-withdrawal-content .subheader {
        font-size: 20px;
        line-height: normal;
        font-weight: 400;
        margin-bottom: 40px;
    }


    .deposit-withdrawal-content .button-action {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .deposit-withdrawal-content .button-action .regiter-button,
        .deposit-withdrawal-content .button-action .login-button {
            text-align: center;
        }



@media(max-width:960px) {
    .deposit-withdrawal-content .header {
        margin-bottom: 20px;
        font-size: 36px;
        line-height: 40px;
    }

    .deposit-withdrawal-content .subheader {
        margin-bottom: 20px;
    }
}


@media(max-width:460px) {
    .deposit-withdrawal-content {
        position: absolute;
        top: 13%;
        bottom: 20px;
        left: 20px;
        right: 10px;
    }

        .deposit-withdrawal-content .header {
            font-size: 28px;
            line-height: 32px;
            margin-bottom: 5px;
        }

            .deposit-withdrawal-content .header span {
                line-height: 32px;
                display: block;
            }

        .deposit-withdrawal-content .subheader {
            font-size: 9px;
            line-height: 20px;
            margin-bottom: 40px;
        }

        .deposit-withdrawal-content .button-action {
            justify-content: space-between;
            position: absolute;
            left: 0px;
            right: 0px;
            bottom: 0px;
            display: none;
        }

            .deposit-withdrawal-content .button-action .regiter-button {
                width: 48%;
                padding: 8px 15px;
                margin: 0px;
            }

            .deposit-withdrawal-content .button-action .login-button {
                width: 48%;
                padding: 8px 15px;
                margin: 0px;
            }

}



/*****************************************
* Why Choose us
*****************************************/
#why-choose-us {
    padding: 100px 0px 100px 0px;
    background: url('/upload/home/bg-why-choose-us.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
}

    #why-choose-us .subtitle {
        font-size: 32px;
        line-height: 36px;
    }

    #why-choose-us .description {
        font-size: 24px;
        line-height: 30px;
    }


@media(max-width:960px) {
    #why-choose-us {
        padding: 50px 0px 50px 0px;
    }
}


@media(max-width:460px) {
    #why-choose-us {
        padding: 50px 0px 50px 0px;
    }

        #why-choose-us .subtitle {
            font-size: 24px;
            line-height: 30px;
        }

        #why-choose-us .description {
            font-size: 16px;
            line-height: 26px;
        }
}


.why-choose-us {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 0px 0px 0px;
    color: #ffffff;
}

    .why-choose-us .reason {
        position: relative;
        width: calc(100% / 3);
        border-radius: 1px;
        cursor: pointer;
        background: #0b214c;
        transition: background-color 1s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 40px;
        transform: scale(1);
        transition: 1s ease all;
        z-index: 1;
        background: url('/upload/home/bg-why-choose-us-border.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: top center;
    }

        .why-choose-us .reason:hover {
            transform: scale(1.05);
            transition: 0.5s ease all;
        }

        .why-choose-us .reason .reason-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .why-choose-us .reason .reason-description {
            text-align: center;
        }



@media(max-width:960px) {
    .why-choose-us {
        position: relative;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 50px 0px 0px 0px;
        color: #ffffff;
    }

        .why-choose-us .reason {
            padding: 20px;
        }

            .why-choose-us .reason:hover {
                transform: scale(1.05);
                transition: 0.5s ease all;
            }

            .why-choose-us .reason .reason-title {
                text-align: center;
                font-size: 14px;
                line-height: 20px;
                margin-bottom: 0px;
            }

            .why-choose-us .reason .reason-description {
                text-align: center;
                font-size: 12px;
                line-height: 20px;
            }

}


@media(max-width:460px) {
    .why-choose-us-wrapper {
        padding: 0px 20px;
    }

    .why-choose-us {
        padding: 20px 0px 0px 0px;
    }

        .why-choose-us .reason {
            width: 100%;
            height: auto;
            padding: 20px;
        }

            .why-choose-us .reason .reason-title {
                text-align: center;
                font-size: 14px;
                line-height: 20px;
                margin-bottom: 0px;
            }

            .why-choose-us .reason .reason-description {
                font-size: 12px;
                line-height: 20px;
            }
}


/*****************************************
* Account Type
*****************************************/
#account-type {
}


    #account-type .container-wrapper {
        padding: 0px 40px;
    }

@media(max-width:460px) {
    #account-type .subtitle {
        font-size: 14px;
        line-height: 20px;
    }
}

.account-type-wrapper {
    margin: 0px auto;
    width: 77%;
}

@media(max-width:460px) {
    .account-type-wrapper {
        margin: 0px auto;
        width: 80%;
    }
}


.plans-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 0px;
}

@media(max-width:460px) {
    .plans-wrapper {
        padding: 40px 0px 0px 0px;
    }
}

.plan-card {
    position: relative;
    border-radius: 16px;
    /*padding: 24px 20px;*/
    padding: 60px 20px 70px 20px;
    width: calc(100% / 4 - 40px);
    /*box-shadow: 0 0 20px rgba(0, 174, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url('/upload/home/bg-deposit-withdrawal.png');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
}

    .plan-card:hover {
        /*background: url('/upload/home/bg-deposit-withdrawal-hover.png');*/
        /*background: linear-gradient(to bottom, #0b1a3d, #1b2f6b, #274084, #1b2f6b, #0b1a3d);
        box-shadow: 0 0 20px rgba(0, 174, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);*/
        /*background: red url('/upload/home/bg-deposit-withdrawal.png');*/
    }

    .plan-card h4 {
        font-size: 14px;
        color: #ffffff;
        margin: 0 0 5px;
    }

    .plan-card h2 {
        font-size: 24px;
        font-weight: bold;
        margin: 0 0 20px;
        text-transform: uppercase;
    }

.plan-details {
    font-size: 14px;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

    .detail-row:hover {
    }

    .detail-row span:first-child {
        color: #ffffff;
    }

    .detail-row span:last-child {
        font-weight: bold;
        color: #ffffff;
        text-align: right;
    }

.plan-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background: linear-gradient(180deg, #384a71, transparent);*/
    background: #0c5b9f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 13px 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease all;
    /*box-shadow: 0 4px 12px rgba(86, 204, 242, 0.3);*/
    margin-top: 20px;
}

    .plan-btn:hover {
        color: #ffffff;
        text-decoration: none;
        /*transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(86, 204, 242, 0.6);*/
        /*background: linear-gradient(180deg, #4465ad, transparent);*/
        background: #0b4373;
    }

    .plan-btn div {
        width: calc(100%);
        text-align: center;
    }

    .plan-btn .circle {
        width: 30px;
        height: 30px;
        background: #fff;
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 14px;
    }

/* Responsive */
@media (max-width: 1100px) {
    .plan-card {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .plan-card {
        width: 100%;
        /*margin-top: -60px;*/
    }

    .plan-btn {
        font-size: 16px;
    }
}


/*****************************************
* Awards Honors
*****************************************/
#awards-honors {
    padding: 100px 0px;
    color: #ffffff;
}

    #awards-honors .title {
        font-size: 40px;
        line-height: normal;
        font-weight: 600;
        margin-bottom: 0px;
        text-align: center;
    }

    #awards-honors .subtitle {
        font-weight: 400;
        font-size: 30px;
        line-height: normal;
        letter-spacing: 0px;
        text-align: center;
    }

@media(max-width:960px) {
    #awards-honors {
        padding: 50px 0px;
    }
}


@media(max-width:460px) {
    #awards-honors {
        padding: 50px 0px;
    }

        #awards-honors .title {
            font-size: 24px;
            line-height: 30px;
            margin-bottom: 10px;
        }

        #awards-honors .subtitle {
            font-size: 16px;
            line-height: 20px;
            margin-bottom: 20px;
        }
}


/*.experience {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 0px 40px 0px;
}

    .experience .experience-item {
        width: calc(100% / 3 - 30px);
        position: relative;
        transition: 0.4s ease all;
    }

        .experience .experience-item:hover {
            transform: scale(1.05);
        }

        .experience .experience-item .experience-item-detail {
            position: absolute;
            z-index: 2;
            bottom: 10%;
            left: 20px;
            right: 20px;
            text-align: center;
            height: 100px;
        }


            .experience .experience-item .experience-item-detail .experience-item-detail-title {
                font-size: 20px;
                font-weight: 600;
                line-height: 24px;
                margin-bottom: 8px;
            }

            .experience .experience-item .experience-item-detail .experience-item-detail-info {
                font-size: 14px;
                line-height: normal;
            }


@media(max-width:460px) {

    .experience {
        padding: 20px 0px 20px 0px;
        gap: 10px;
    }

        .experience .experience-item {
            width: calc(100% / 3 - 8px);
        }

            .experience .experience-item .experience-item-detail {
                bottom: 0px;
                left: 10px;
                right: 10px;
            }

            .experience .experience-item .experience-item-detail .experience-item-detail-title {
                font-size: 16px;
                line-height: 20px;
            }

                .experience .experience-item .experience-item-detail .experience-item-detail-info {
                    font-size: 10px;
                    line-height: 12px;
                }

}
*/



.experience {
    /* display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 0px 40px 0px;*/
    padding: 60px 0px 40px 0px;
    text-align: center;
}

    .experience .experience-item {
        width: 100%;
        position: relative;
        transition: 0.4s ease all;
        padding: 15px;
    }

        .experience .experience-item:hover {
            transform: scale(1.05);
        }

        .experience .experience-item .experience-item-detail {
            position: absolute;
            z-index: 2;
            bottom: 10%;
            left: 30px;
            right: 30px;
            text-align: center;
            height: 100px;
        }


            .experience .experience-item .experience-item-detail .experience-item-detail-title {
                font-size: 34px;
                font-weight: 600;
                line-height: 40px;
                margin-bottom: 10px;
            }

            .experience .experience-item .experience-item-detail .experience-item-detail-info {
                font-size: 18px;
                line-height: normal;
            }


@media(max-width:960px) {

    .experience .experience-item .experience-item-detail .experience-item-detail-info {
        font-size: 16px;
        line-height: normal;
    }
}



@media(max-width:460px) {

    .experience {
        padding: 20px 5% 20px 5%;
        gap: 10px;
    }

        .experience .experience-item {
            width: 100%;
        }

            .experience .experience-item .experience-item-detail {
                bottom: 30px;
                left: 20px;
                right: 20px;
            }

                .experience .experience-item .experience-item-detail .experience-item-detail-title {
                    font-size: 26px;
                    line-height: 30px;
                }

                .experience .experience-item .experience-item-detail .experience-item-detail-info {
                    font-size: 14px;
                    line-height: 20px;
                }
}



.awards-honors {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .awards-honors .header {
        font-weight: 400;
        font-size: 30px;
        line-height: normal;
        letter-spacing: 0px;
        text-align: center;
        margin-bottom: 20px;
    }

    .awards-honors .awards-honors-left {
        width: 50%;
    }

    .awards-honors .awards-honors-right {
        width: 50%;
    }


@media(max-width:460px) {

    .awards-honors .header {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 10px;
    }


    .awards-honors .awards-honors-left {
        width: 100%;
    }

    .awards-honors .awards-honors-right {
        width: 100%;
    }
}


.awards-honors-lists {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .awards-honors-lists .awards-honors-item {
        width: calc(100% / 6);
        margin: 0px 10px;
    }

@media(max-width:460px) {
    .awards-honors-lists {
        margin-bottom: 20px;
    }

        .awards-honors-lists .awards-honors-item {
            width: calc(100% / 5);
        }
}



.experience-action {
    margin-bottom: 60px;
    text-align: center;
}

@media(max-width:460px) {

    .experience-action {
        margin-top: 20px;
        margin-bottom: 0px;
    }
}


/*****************************************
* Hilight
*****************************************/
#hilight {
}

.hilight-item {
    position: relative;
    z-index: 1;
    /*background: url('/upload/hilight/bottom-light.png');
    background-position: bottom center;
    background-size: auto 20px;
    background-repeat: no-repeat;*/
    padding-bottom: 11px;
}

    .hilight-item img {
        border: 2px solid #495b63;
        border-radius: 10px;
    }


    .hilight-item .hilight-item-detail {
        position: absolute;
        z-index: 2;
        bottom: 10%;
        left: 20px;
        right: 20px;
        text-align: center;
        height: 100px;
    }

        .hilight-item .hilight-item-detail .hilight-item-detail-title {
            font-size: 18px;
            font-weight: 600;
            line-height: 24px;
            margin-bottom: 8px;
        }

        .hilight-item .hilight-item-detail .hilight-item-detail-info {
            font-size: 14px;
            line-height: normal;
        }




@media(max-width:960px) {


    .hilight-item .hilight-item-detail {
        left: 5px;
        right: 5px;
        bottom: 10px;
        height: 80px;
    }

        .hilight-item .hilight-item-detail .hilight-item-detail-title {
            font-size: 16px;
            line-height: 20px;
            margin-bottom: 5px;
        }

        .hilight-item .hilight-item-detail .hilight-item-detail-info {
            font-size: 10px;
            line-height: 14px;
        }
}



@media(max-width:460px) {


    .hilight-item .hilight-item-detail {
        left: 5px;
        right: 5px;
        bottom: 10px;
        height: 80px;
    }

        .hilight-item .hilight-item-detail .hilight-item-detail-title {
            font-size: 12px;
            line-height: 16px;
            margin-bottom: 5px;
        }

        .hilight-item .hilight-item-detail .hilight-item-detail-info {
            font-size: 8px;
            line-height: 12px;
        }
}



/*****************************************
* video-intro
*****************************************/
#video-intro {
    position: relative;
    overflow-x: hidden;
    height: 70vh;
    pointer-events: none;
}

    #video-intro .video-text-overlay {
        position: absolute;
        left: 5%;
        top: 0;
        bottom: 0px;
        z-index: 3;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
    }


    #video-intro .video-gradient-text {
        position: absolute;
        left: 0px;
        top: 0px;
        bottom: 0px;
        z-index: 2;
    }

        #video-intro .video-gradient-text img {
            width: auto;
            height: 100%;
            z-index: 1;
        }


@media(max-width:960px) {

    #video-intro {
        height: 38vh;
    }

        #video-intro .video-gradient-text img {
            height: 100%;
            width: 100%;
        }
}


@media(max-width:460px) {

    #video-intro {
        height: 50vh;
    }

        #video-intro .video-gradient-text img {
            height: 100%;
            width: 100%;
        }
}

.overlay-content {
    font-family: 'Outfit', 'Kanit', sans-serif;
}

    .overlay-content .overlay-content-header {
        font-size: 90px;
        line-height: 90px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .overlay-content .overlay-content-subheader {
        font-size: 50px;
        line-height: 50px;
        font-weight: 400;
    }

    .overlay-content .overlay-content-detail {
        font-size: 28px;
        line-height: 28px;
        font-weight: 200;
        margin-top: 30px;
    }


@media(max-width:460px) {

    .overlay-content .overlay-content-header {
        font-size: 40px;
        line-height: 40px;
    }

    .overlay-content .overlay-content-subheader {
        font-size: 20px;
        line-height: 20px;
    }

    .overlay-content .overlay-content-detail {
        font-size: 14px;
        line-height: 19px;
        width: 100%;
        margin-top: 10px;
    }
}


#review-widget {
    height: 100px;
    overflow: hidden;
}
