﻿/*

.noImage {
    background: url(../images/noimage.png) no-repeat scroll center center #fff !important;
    color: #535353;
    font-weight: bold;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
}*/

/****************************** common css start ***********************************/
/* #006fd0 : Xanh đậm - Icon **/
/* VERSION 4 : 
    #009E96 Xanh ngọc
    #20AAAA Xanh logo
*/
/* #ff8b13 : Cam */
:root {
    --text: #333;
    --text-primary-highlight: #009E96;
    --text-primary-link: #009E96;
    --text-primary-hover: #009E96;
    --text-primary-active-link: #009E96;
    --text-secondary-highlight: #ff8b13;
}

/****************************** common css end  ***********************************/

body {
    background: #FFF;
    float: left;
    font-family: "Roboto",Sans-serif;
    /*"Noto Sans JP","Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";*/
    width: 100%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.42857143;
    color: var(--text);
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

button, input[type="button"], input[type="submit"] {
}

.btn-flat {
    border-radius: 0;
    border-width: 1px;
    box-shadow: none;
}

.btn-round {
    border-radius: 25px;
}

.btn-koi {
    background-color: var(--text-primary-active-link);
    color: #fff;
    border-color: var(--text-primary-highlight);
}

.btn-koi-outline {
    background-color: #fff;
    border: 1px solid var(--text-primary-active-link);
    color: var(--text-primary-highlight);
}

    .btn-koi-outline:hover {
        background-color: var(--text-primary-active-link);
        color: #fff;
    }


h1.heading, h2.heading {
    /*background: url(../images/heading-bdr.png) repeat-x left top;*/
    display: inline-block;
    padding: 20px 0 14px;
    font-size: 25px;
    color: #515355;
    margin: 0;
    border-top: 4px double var(--text-primary-hover);
}

h2.no-heading {
    display: inline-block;
    padding: 20px 0 14px;
    font-size: 25px;
    color: #515355;
    margin: 0;
    text-transform: uppercase;
}

.text-highlight {
    color: var(--text-primary-highlight) !important;
}

h3 {
    display: inline-block;
    padding: 10px 0 7px;
    font-size: 18px;
    color: var(--text-primary-highlight);
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

h4.pre-heading {
    color: #555;
    font-weight: bold;
}

h4.post-heading {
    color: #555;
    font-weight: 400;
    line-height:1.4;
}

.hr-koi {
    border-top: 2px solid var(--text-primary-highlight);
}

/****************************** Language css start ***********************************/
.sl-nav {
    display: inline;
}

    .sl-nav ul {
        margin: 0;
        padding: 10px 0 0 0;
        list-style: none;
        position: relative;
        display: inline-block;
    }

    .sl-nav li {
        cursor: pointer;
        padding-bottom: 10px;
    }

        .sl-nav li ul {
            display: none;
        }

        .sl-nav li:hover ul {
            position: absolute;
            top: 38px;
            right: -15px;
            display: block;
            background: #fff;
            width: 120px;
            padding-top: 0px;
            z-index: 1;
            border-radius: 5px;
            box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
        }

        .sl-nav li:hover .triangle {
            position: absolute;
            top: 25px;
            right: -10px;
            z-index: 10;
            height: 14px;
            overflow: hidden;
            background: transparent;
            text-decoration: none;
        }

            .sl-nav li:hover .triangle:after {
                content: '';
                display: block;
                z-index: 20;
                width: 15px;
                transform: rotate(45deg) translateY(0px) translatex(10px);
                height: 15px;
                background: #fff;
                border-radius: 2px 0px 0px 0px;
                box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
                text-decoration: none;
            }

        .sl-nav li ul li {
            position: relative;
            text-align: left;
            background: transparent;
            padding: 10px 10px;
            padding-bottom: 0;
            z-index: 2;
        }

            .sl-nav li ul li a {
                font-size: 15px;
                color: var(--text);
            }

                .sl-nav li ul li a:hover {
                    color: var(--text-primary-hover);
                }

            .sl-nav li ul li:last-of-type {
                padding-bottom: 15px;
            }


.sl-flag {
    display: inline-block;
    /*box-shadow: 0px 0px 3px rgba(0,0,0,0.4);*/
    width: 15px;
    height: 15px;
    /*background: #aaa;
    border-radius: 50%;*/
    position: relative;
    top: 2px;
    overflow: hidden;
}

.flag-vi {
    background: url('https://flagcdn.com/h20/vn.jpg');
    background-size: cover;
    background-position: center center;
}

.flag-en {
    background: url('https://flagcdn.com/h20/us.jpg');
    background-size: cover;
    background-position: center center;
}

.flag-ja {
    background: url('https://flagcdn.com/h20/jp.jpg');
    background-size: cover;
    background-position: center center;
}

/****************************** Language css end   ***********************************/


/****************************** header css start   ***********************************/


#logo {
    float: left;
}


.header {
    background: #FFF;
    margin-top: 60px;
    float: left;
    width: 100%;
    position: relative;
}

ul.mainNavigation {
    margin: 0;
    padding: 0;
    width: auto;
    float: right;
}

    ul.mainNavigation li a {
        font-size: 17px;
        color: var(--text);
        margin: 0;
        padding: 10px 0 18px 0;
        border-bottom: 3px solid transparent;
    }

    ul.mainNavigation li {
        margin: 0 0 0 38px;
    }

        ul.mainNavigation li a:hover {
            border-bottom: 3px solid var(--text-primary-active-link); /* #243960*/
            color: var(--text-primary-hover);
        }

        ul.mainNavigation li.active a {
            border-bottom: 3px solid var(--text-primary-active-link);
        }

.marginBottom {
    margin-bottom: 0 !important;
}

.paddingTop {
    padding-top: 0 !important;
}


.banneroverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.banner {
    width: 100%;
    float: left;
    position: relative;
}

    .banner img {
        width: 100%;
    }

.bannerText {
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    color: #fff;
    height: 100%;
    font-size: 4rem;
    margin-top: 30px;
}



/******************************header css end***********************************/


/******************************slider css start ***********************************/
.slider {
    width: 50%;
    margin: 100px auto;
}

.slick-slide {
    margin: 0px 20px;
}

    .slick-slide img {
        width: 100%;
    }

.slick-prev:before,
.slick-next:before {
    color: black;
}


.slick-slide {
    transition: all ease-in-out .3s;
}

.slick-active {
}

.slick-current {
    opacity: 1;
}

.students-slideshow .slick-center {
    width: 250px !important;
    padding: 15px;
    position: relative;
    margin: 0 10px;
}
/******************************slider css end ***********************************/

/******************************content css start***********************************/
.content {
    float: left;
    padding-top: 60px;
    width: 100%;
}

.main-section {
    margin-top: 35px;
}

.container-primary-contrast {
    background-color: var(--text-primary-highlight);
}

    .container-primary-contrast * {
        color: #fff !important;
    }
.container-primary-transparent {
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
}

.route-main-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.route-months-box {
    display: flex;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-transform: uppercase;
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, .5);
    flex-direction: column;
    justify-content: none;
    align-items: center;
    width: 200px;
    height: 200px;
    text-align: center;
    padding: 40px 10px;
}

.route-textbox-step {
    color: var(--text-primary-highlight);
    font-size: 40px;
    text-transform: uppercase;
}
.route-textbox-title {
    color: var(--text-secondary-highlight) !important;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.route-months-box .route-months-box--lgtxt {
    font-size: 40px;
}

    .route-months-box .route-months-box--mdtxt {
        font-size: 30px;
    }

    .route-months-box .route-months-box--smtxt {
        font-size: 15px;
    }

.borderThumb {
    border: none;
    padding: 0;
    box-shadow: 1px 2px 6px #eaeaea;
}

.testimonial {
    background: #243960;
    margin-top: 40px;
    padding: 60px 0 44px;
}

    .testimonial p {
        color: #f8f8f8;
        font-size: 14px;
        padding-left: 60px;
    }

    .testimonial h2 {
        color: #ffffff;
        font-size: 44px;
        padding-bottom: 25px;
        padding-top: 23px;
    }

    .testimonial p.colon {
        background: url(../images/colon.png) no-repeat left top;
        font-size: 18px;
        padding-top: 20px;
    }

.partners-slideshow small {
    color: var(--text-primary-highlight);
}

.partners-slideshow img {
    height: 100px;
}

.img-circle {
    border-radius: 50%;
    padding: 10px;
    border: 1px solid var(--text-secondary-highlight);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.thumbnail .caption h4 {
    color: #243960;
}

.thumbnail .caption p {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    color: #515355;
}


/*===============standard content ====================*/
.standard-content {
    float: left;
    width: 100%;
}

.innerpagecontainer {
    width: 100%;
    float: left;
    margin-bottom: 40px;
}

    .innerpagecontainer h1 {
        padding-bottom: 10px;
        margin-bottom: 0px;
    }

    .innerpagecontainer h2 {
        color: #262626;
        font-size: 30px;
        font-weight: normal;
        margin: 0px;
        padding: 10px 0 6px;
        float: left;
        width: 100%;
    }

    .innerpagecontainer h4 {
        color: #262626;
        font-size: 22px;
        font-weight: normal;
        margin: 0px;
        padding: 0px 0px 6px 0px;
        float: left;
        width: 100%;
        line-height: 30px;
    }

    .innerpagecontainer p {
        color: #4c4c4c;
        font-size: 15px;
        line-height: 24px;
        margin: 0 0 18px 0;
    }

        .innerpagecontainer p a {
            text-decoration: none;
            color: #243960;
            font-size: 15px;
        }

            .innerpagecontainer p a:hover {
                color: #3c3c3c;
                text-decoration: underline;
            }

    .innerpagecontainer .media {
        float: left;
        margin: 0px;
    }

    .innerpagecontainer .media-left {
        margin-right: 15px;
        float: left;
    }

    .innerpagecontainer .highlight {
        color: #243960;
        font-style: italic;
    }

        .innerpagecontainer .highlight span {
            color: #000;
            font-style: normal;
        }

    .innerpagecontainer .listing {
        float: left;
        padding: 0;
        margin: 0;
    }

        .innerpagecontainer .listing li:hover {
            color: #243960;
        }

        .innerpagecontainer .listing li {
            background: url(../images/roundBult.png) no-repeat scroll left 8px;
            color: #4c4c4c;
            float: none;
            font-size: 14px;
            font-weight: 600;
            line-height: 22px;
            list-style: outside none none;
            padding: 0 0 12px 16px;
        }

    .innerpagecontainer .listing02 {
        float: left;
        padding: 0;
        margin: 0;
    }

        .innerpagecontainer .listing02 li {
            background: url(../images/arrowBult.png) no-repeat scroll left 8px;
            color: #4c4c4c;
            float: none;
            font-size: 14px;
            line-height: 22px;
            list-style: outside none none;
            padding: 0 0 12px 16px;
        }

            .innerpagecontainer .listing02 li:hover {
                color: #243960;
            }

    .innerpagecontainer .dummytextdiv {
        background: url(../images/mid-bdr.jpg) repeat-y 49.8% #243960;
        float: left;
        margin: 30px 0;
        width: 100%;
        padding: 2%;
        box-sizing: border-box;
    }

        .innerpagecontainer .dummytextdiv h2 {
            font-size: 28px;
            text-transform: uppercase;
            color: #f1f1f1;
            padding-bottom: 15px;
        }

        .innerpagecontainer .dummytextdiv p {
            color: #a3a3a3;
        }

/*===============standard form ====================*/

.address {
    background: none repeat scroll 0 0 #243960;
    box-sizing: border-box;
    float: left;
    margin: 0 0 30px;
    padding: 2.5% 3%;
    width: 100%;
}

.lftblock {
    float: left;
    margin-right: 6%;
    width: 65%;
}

    .lftblock h4 {
        color: #fff;
        font-size: 28px;
        text-transform: uppercase;
    }

    .lftblock p {
        color: #fff;
        margin: 10px 0;
    }

.fullwidth {
    clear: left;
    width: 100%;
}

.lftblock em {
    color: #ccc;
    float: left;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    width: 49%;
}

.lftblock ul {
    width: 100%;
    float: left;
    display: table;
    padding: 0;
}

    .lftblock ul li {
        display: table-cell;
        float: none;
        vertical-align: top;
        word-wrap: break-word;
        word-break: break-all
    }

        .lftblock ul li.first {
            width: 30px;
        }


.lftblock em a {
    color: #155bdb;
    word-break: break-all;
    word-wrap: break-word;
}

    .lftblock em a:hover {
        color: #fff;
    }

.rightblock {
    float: left;
    margin: 0;
    width: 29%;
}

.message-bar {
    background: none repeat scroll 0 0 #727072;
    color: #ffffff;
    float: left;
    font-size: 14px;
    margin: 0 0 20px;
    padding: 0;
    width: 100%;
}

    .message-bar span.pos {
        background: url("../images/click.png") no-repeat scroll 11px 10px rgba(0, 0, 0, 0);
        display: block;
        float: left;
        font-size: 14px;
        padding: 10px 40px;
        width: auto;
    }


.innerBanner {
    background: url(../images/inner_banner.jpg) no-repeat top center;
    background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    -moz-background-size: cover;
    float: left;
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
}

/******************************content css ends***********************************/

/******************************footer css ends***********************************/
.footer {
    width: 100%;
    float: left;
    background: #393939;
    padding: 56px 0 16px 0;
}

    .footer p {
        color: #FFF;
        font-size: 15px;
        line-height: 20px;
    }

.footerLogo {
    max-width: 300px;
    margin-bottom: 15px;
    margin-top: -30px;
}

.table-footer-left {
}

    .table-footer-left td {
        color: #fff;
        padding: 4px;
        font-size: 0.9rem;
    }

p.copyRight {
    font-size: 12px;
    color: #eee;
    margin-top: 18px;
    text-align: center;
}



.footer ul {
    margin: 0;
    padding: 0;
}

    .footer ul li {
        background: url(../images/list-icon.png) no-repeat left 6px;
        list-style: none;
        padding-left: 16px;
        padding-bottom: 8px;
    }

        .footer ul li a {
            font-size: 15px;
            color: #f8f8f8;
        }

        .footer ul li.active a {
            text-decoration: underline;
        }

.footer h4 {
    color: #FFF;
    font-size: 18px;
    margin: 0;
    padding-bottom: 22px;
}




/******************************footer css ends***********************************/
