@font-face {
    font-family: 'BAHNSCHRIFT Condensed';
    src: url('../fonts/BAHNSCHRIFT.TTF') format('woff');
    font-weight: normal;
    font-style: normal;
}
html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    padding: 0px;
    overflow-x: hidden;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

:target::before {
    content: '';
    display: block;
    height: 100px;
    margin-top: -100px;
}

body a {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
}

h3 a:link {

    font-weight: 600;
}


input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    letter-spacing: 1px;
    font-weight: 400;
}

p {
    margin: 0;
    font-size: 1em;
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 0px;
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

/*-- header --*/
header {
    position: absolute;
    width: 100%;
    padding: 15px 0;
    z-index: 9;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}



/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    color: #C13C40;

    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
    padding: 10px 13px;
    font-weight: 400;
    font-size: 15px;
    vertical-align: middle;
}

nav li.last-grid a {

    background: #3989C8;
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 25px;
    display: inline-block;
    margin-top: -10px;
    border-radius: 5px;
}

nav ul li ul li:hover {
    background: #f8f9fa;
}

/* Background color change on Hover */
nav a:hover {
    color: #ddd;
}

.menu li.active a {
    color: #fff;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 30px;
    background: #fff;
    padding: 10px;
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}

li>a:only-child:after {
    content: '';
}


/* Media Queries
--------------------------------------------- */

/* @media all and (max-width : 991px) {

    #logo {
        display: block;
        padding: 0;
        text-align: center;
        float: none;
    }

    .menu li.active a {
        color: #00aeff;
    }

    nav li.last-grid a {
        border: 2px solid #00aeff;
        color: #00aeff;
        font-size: 15px;
        letter-spacing: 1px;
        padding: 10px 25px;
        margin-top: 1px;
    }

    nav ul li span {
        color: #333;
    }

    nav {
        margin: 0;
    }

    nav a {
        color: #333;
    }

    .toggle+a,
    .menu {
        display: none;
    }

    .toggle {
        display: block;
        padding: 5px 15px;
        font-size: 20px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #3989C8;
        color: #fff;
        margin-bottom: 0;
        margin-top: 0em;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 30%;
        padding: 5px;
        font-weight: normal;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .toggle:hover {
        color: #333;
        background-color: #fff;
    }

    [id^=drop]:checked+ul {
        display: block;
        background: #fff;
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        display: block;
        width: 100%;
        padding: 7px 0;
    }

    nav a {
        padding: 5px 0;
    }

    nav a:hover {
        color: #333;
    }

    .login-icon {
        text-align: center;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: transparent;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }


    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #fff;
    }

    nav ul ul li a {
        font-size: 15px;
    }

    ul.inner-ul {
        padding: 0 !important;
    }

    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
    }

    nav ul ul li:hover>ul,
    nav ul li:hover>ul {
        display: none;
    }

    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }

    nav ul ul ul li {
        position: static;

    }

} */
/* 
@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

} */

/* ================================================== */

/* header */
.headerselection {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: #060044; 
    /* z-index: 99999; */
    padding:15px;
    /* ẩn thanh header và hiển thị khi di chuột vào */
    /* position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    top: -90px; 
    transition: top 0.6s ease; */
}

.headerselection:hover {
    top: 0;
}

.toggle-header {
    position: absolute;
    left: 50%; /* Đặt vị trí ngang ở giữa */
    bottom: -20px; /* Đặt vị trí dưới header */
    transform: translateX(-50%); /* Dịch chuyển về trái 50% để căn giữa */
    background-color: #060044; /* Màu nền của biểu tượng */
    color: white; /* Màu chữ trắng */
    width: 40px; /* Độ rộng của biểu tượng */
    height: 40px; /* Độ cao của biểu tượng */
    border-radius: 50%; /* Bo tròn viền */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; /* Con trỏ chuột thành pointer khi hover */
    z-index: 100; /* Đảm bảo hiển thị trên header */
}



.ptitlogo {
    width: 18%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

}
/* .detaillogo {
    width: 70%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detaillogo img {
    width: 100%;
    height: auto;
    
} */
.logoheader {
    width: 30%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logoheader img {
    object-fit: contain;
}




.sidebarfunc {
    width: 82%;
}

.slide-menu {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}


.slide-menu a {
    font-size: 14px;
    text-align: center;
}

.slide-menu div {
    flex:1;
}

.nav-link {
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;

}



/*-- registration form --*/
.padding {
    padding: 2.5em;
    background: #fff;
}

nav ul li span {
    color: #ffc107c7;
}

.form-style-w3ls input[type="text"],
.form-style-w3ls input[type="email"],
.form-style-w3ls input[type="password"],
select {
    outline: none;
    font-size: 14px;
    border: none;
    color: #666;
    background: #f1f1f1;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    width: 49.5%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

select {
    -webkit-appearance: none;
    outline: none;
    font-size: 14px;
    border: none;
    color: #666;
    background: #f1f1f1;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    width: 49.5%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.form-style-w3ls button.btn {
    color: #fff;
    background-color: #5e2ced;
    border: none;
    padding: 14px 0;
    outline: none;
    border-radius: 0;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

.form-style-w3ls input[type="submit"]:hover {
    background: #dc3545;
}

.padding {
    background: rgba(0, 0, 0, 0.36);
    margin: 2em auto 0;
}

.padding h5 {
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
}

.form-style-w3ls span {
    font-size: 13px;
    color: #ffffffb5;
}

.form-style-w3ls span a {
    color: #3369e7;
}

.banner-form-w3 h5 {
    font-weight: 700;
    letter-spacing: 2px;
    color: #6ad59a;
}

/*-- //registration form --*/
/*--/price--*/
.plans-sec {
    width: 100%;
    /* background: #fff; */
}

h5.card-title.pricing-card-title {
    font-size: 2em;
    font-weight: bold;
    color: #6f6f6f;
}



h6.b-w3ltxt {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000e6
}

h6.b-w3ltxt span {
    font-weight: normal;
    color: #dedcdc;
    text-transform: capitalize;
    font-size: 16px;
}



/*-- move top --*/
.move-top {
    position: relative;
}

a.move-top {
    text-align: center;
    position: absolute;
    right: 1%;
    bottom: 0%;
}

a.move-top span {
    color: #fff;
    width: 56px;
    height: 56px;
    border: transparent;
    line-height: 3.5em;
    background: #333;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
}

/*-- //move top --*/


/* Tin tức */
.news {
    background-color: white;
}

.titleTextNews {
    text-align: justify;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 550;
}

/* ==================== */
/* mô tả chương trình */
.flex_work {
    display: flex;
}

.flex_work div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 10px;
}

/* .flex_work div:last-child h3 {
    font-size: 18px;
    color: black;
    font-weight: bold;
}

.flex_work div:last-child p {
    font-size: 18px;
    color: black;
    line-height: 1.2;
    padding-bottom: 13px;
} */

/*-- //Banner --*/
.newbanner {
    background: url("../images/games1/backgroudheader.png")no-repeat center;
    background-size: cover;
    background-color: #19073d;
    width: 100%;
    height: auto;
    /* margin-top: 5vh; */
}
.banner-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* margin-top: 5vh; */
}

/* Form TVTS */
.form-tvts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;

    text-align: center;
    vertical-align: middle;

    border-radius: 15px;
    color: #fff;
    font-family: 'BAHNSCHRIFT Condensed', serif;
    font-weight: bold;
    flex: 1;
    text-align: center;

    font-size: 1.8rem;

    padding: 36px 24px;

    box-shadow: 8px 8px #888888;
}



/* ======================== */






/* Css banner link */




.zalo-chat-widget {
    z-index: 998 !important;
    bottom: 90px!important;  
    right: 20px!important;
}
/* navbar ======================================*/

/* bannerr dang ky nhan tu van ================================*/
.registerbg {
    background-color: #2D1255;
}


.regisToConsultation {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%   ;
    height: 20vh;
    background-color: #311283;
    padding: 10px;
    border-radius: 10px;
}

.headingConsultation {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
}

.inputConsultation {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20vh;
}

.boxinput {
    width: 100%;
    height: auto;
    /* align-items: center; */
    justify-content: center;
    display: flex;
    flex-direction: column;

}

.boxinput div{
    padding: 7px;
}


.inputConsultation input {
    border-radius: 10px;
    width: 100%;
    height: auto;
    
}


.btnsubmit {
    flex: 1;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    animation: zoom-in-zoom-out 1.6s ease infinite;
}
@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.2, 1.2);
    }
    100% {
      transform: scale(1, 1);
    }
}


#register {
    border-radius: 10px;
    background-color: #00FFFF;
    font-size: 14px;
    padding: 13px;
    font-weight: 600;
    width: 70%;
    height: auto;
}


/*END  bannerr dang ky nhan tu van ================================*/

/* DESC============================================== */
.descbg {
    /* background-color: #2D1255; */
}
.boxdesc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border: 2px solid #00DBFF; */
    padding: 20px 50px;
    /* background-image: url('../images/games1/khungbg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center; */
}

.textdesc {
    text-align:justify;
    text-justify: inter-word;
    color: rgb(255, 255, 255);
    line-height: normal;
    font-size: 20px;
    margin: 5px 0;
    
}

.btnDetailDoc {
    /* flex: 1; */
    width: 100%;
    height: auto;
    display: flex;
    /* flex-direction: row; */
    justify-content: space-around;
    align-items: center;
    
}
.btndownload {
    width: 30%;
    padding: 15px;
    border-radius: 10px ;
    background: linear-gradient(180deg, #1AFFFF, #8582FE);
    display: flex;
    justify-content: center;
}

/* POLICY ============================================ */
.policy {
    
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.policybg {
    /* background-color: #2D1255; */
    background: url("./../images/games1/chinhsachbg.png")no-repeat center;
    background-size: contain;
}

.policyAndJob {
    background: linear-gradient(180deg, #491FC2, #13042B);
    display: flex;
    flex-direction: column;
    width: 50%;
    height: auto;
    justify-content: center;
    align-items: center;    
    padding: 30px 40px;
    border-radius: 15px;
}

.contentInPolicy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}
.contentFirstInPolicy {
    background-color: #C300CE;
    border-radius: 10px;
    margin-bottom: 10px;
    padding:10px;
    text-align:justify; 
    width: 100%;
    height: auto;
    /* display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left; */
}
.contentFirstInPolicy p {
    display: inline;
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
    font-size: 18px;
    color: white;
    line-height: normal; /* Độ cao dòng là 1 lần kích thước font chữ */
    margin-bottom: 3px;
}

.header-inPolicy {
    padding: 5px 0;
    color: #07E0E5; 
    font-size: 40px;
    font-family:  'BAHNSCHRIFT Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.8;
}

/* END POLICY ==================================== */


/* enrollment -=======================================*/
.enrollment {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 20px 50px;
    /* border: 2px solid #00DBFF; */
    /* background-image: url('../images/games1/khungbg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center; */
}

.objbg {
    /* background-color: #2D1255; */
}

.heading-enrollment {
    text-align: center;
    color: #07E0E5; 
    font-size: 30px;
    font-family:  'BAHNSCHRIFT Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.5;
}

.textdescenrollment {
    text-align:justify; 
    text-justify: inter-word;
    color: white;
    font-family:  'BAHNSCHRIFT Condensed', sans-serif;
    padding: 10px;

}

.textdescsubject {
    color: #090909;
    border-radius: 10px;
    border-color: #07E0E5;
    border-width: 3px;
    border-style: solid;
    background: linear-gradient(180deg, #1AFFFF, #8582FE);
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 17px;
    font-weight: 550;
    padding: 10px;
    line-height: auto;
    width: 100%;
    height: 180px;
    margin: 10px;
    text-align:justify; text-justify: inter-word;
    font-family:  'BAHNSCHRIFT Condensed', sans-serif;
}



/* subject============================== */
.coversubject {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    justify-content: center;
}
.subjectbg {
    background-color: #1B1E2D;
   background: url("./../images/games1/monhocbg.png")no-repeat center;
    background-size: cover;
}

.subject {
    display: flex;
    flex-direction: column;
    justify-content: left;
    width: 100%;
}
.colsecondsubject {
    width: 40%;
    /* border-radius: 76% 24% 81% 19% / 79% 20% 80% 21%  ;
    border: 5px solid #00FFFF; */
    /* background: url("../images/games1/khung.png");
    padding: 10px; */
}

/* .colfirstsubject {
    width: 60%;
} */

.subject p {
    line-height: 1.5;
    font-family:  'BAHNSCHRIFT Condensed', sans-serif;
    color: white;
    margin: 5px 0;
}

.headsubject {
    font-family:  'BAHNSCHRIFT Condensed', sans-serif;
    font-size: 30px;
    color: #07E0E5;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

hr.underline {
    border: 1px solid #46535E;
    width: 100%;
    border-radius: 5px;
    margin: 0;
}

.rowiconwithtextsubject {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    margin: 10px;
    text-align: justify;
}

.iconblur {
    width: 40px;
    height: 40px;
    background-image: url('./../images/games1/pointblur.png');
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}


/* target course */
.targetbg {
    background-color: #2D1255;
    /* background: url("./../images/games1/monhocbg.png")no-repeat center;
    background-size: cover; */
}

.targetcourse {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.detailtargetcourse {
    background: linear-gradient(180deg, #E0FFFF, #B1EFFE);
    font-size: 17px;
    font-weight: 600;
    text-align: justify;
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0 ;
}

.icon_target1 {
    width: 40px;
    height: 40px;
    background-image: url('./../images/games1/Group.png');
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}

.rowiconwithtext {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px;
    text-align: justify;
}

/* Vị trí công việc */
.setrow {
    position: inherit;
}

.posjobbg {
    background-color: #2D1255;
}
.icon_pos {
    width: 40px;
    height: 40px;
    background-image: url('./../images/games1/Vector.png');
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}

.positionjob {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.imagepositionjob {
    flex:3;
    height: auto;
}

.boxtext {
    flex:2;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: left;
    text-align: justify;
}

.rowiconwithtextjob {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    margin: 10px;
}

.rowiconwithtextjob p {
    text-align: justify;
    color: white;
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
}
.boximgrow {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    position: absolute;
    top:0%
}

/* special */
.dacthubg {
    background-color: #2D1255;
}
.boxspecial {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.boxspecial ::before {
    height: 200px;
}

.special {
    width: 50%;
    height: auto;
}


.firstimg {
    width: 25%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.firstimg img {
    width: 100%;
    height: auto;
}

.secondimg {
    width: 25%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center
}

.secondimg img {
    width: 100%;
    height: auto;
}

/* work place */
.wsbg {
    background: url("../images/games1/workplace.png")no-repeat center;
    background-size: cover;
}
.workplace {
    background-size: 100% 100%;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.text_workplace {
    /* background: linear-gradient(180deg, #E0FFFF, #1AFFFF); */
    background: #2D1255;
    width: 60%;
    height: auto;
    padding: 25px;
    /* border-radius: 20px; */
    border-color: #07E0E5;
    border-width: 3px;
    border-style: solid;
    text-align:justify; text-justify: inter-word;
    color: white;
    font-weight: 550;
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
    opacity: 0.7;
}


/*-- footer --*/

.boxInforContact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.copyright {
    background: #1B1E2D;
}
.footerdesc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}
.logofooter {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: right;
}

.inforcontact {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

/* FAQ  */
.luoibg {
    background: url("../images/games1/luoibg.png")no-repeat center;
    background-size: cover;
}
.boxfaq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}
.custom-select {
    width: 70%; /* Rộng bao nhiêu tùy bạn */
    height: auto;
    padding: 8px 12px; /* Đệm để tăng kích thước và làm đẹp */
    border: 1px solid #ccc; /* Màu viền */
    border-radius: 4px; /* Bo góc */
    background-color: white; /* Màu nền */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Đổ bóng nhẹ */
    cursor: pointer; /* Con trỏ chuột */
}
/* FAQ */
.faq-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 500px; /* Độ cao tối đa của khung chứa */
    overflow-y: auto; /* Bật cuộn dọc khi nội dung vượt quá chiều cao */
    padding: 10px;
    width: 100%;
}
.faq-container::-webkit-scrollbar {
    display: none; /* Ẩn thanh cuộn trên WebKit/Blink */
}
/* Style cho mũi tên (biểu tượng) */
.fas {
    transition: transform 0.3s ease; /* Hiệu ứng khi xoay mũi tên */
}
.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 10px;
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.faq-answer {
    color: #ffffff;
    text-align: justify;
}

/* 
#contentDisplay {
    width: 70%;
    border-radius: 20px;
    border-color: #07E0E5;
    border-width: 3px;
    border-style: solid;
    color: white;
    height: 200px;
    padding: 20px;
    
} */
.custom-select:focus {
    border-color: #0056b3; /* Thay đổi màu viền khi focus */
    outline: none; /* Loại bỏ đường viền mặc định khi focus */
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25); /* Đổ bóng xung quanh khi focus */
}

/* Tạo mũi tên chỉ xuống */
.custom-select {
    appearance: none; /* Loại bỏ mặc định của trình duyệt */
    -webkit-appearance: none; /* Loại bỏ mặc định của Safari */
    -moz-appearance: none; /* Loại bỏ mặc định của Firefox */
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><path d="M2048 640h-2048l1024 1024l1024-1024zm0 0" fill="%23000"/></svg>'); /* Thêm icon mũi tên */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Vị trí icon mũi tên */
    background-size: 12px; /* Kích thước icon mũi tên */
}

/* Hiệu ứng hover */
.custom-select:hover {
    border-color: #004495; /* Thay đổi màu viền khi hover */
}


/* ý kiến chuyên gia ================================================*/
.boxceractor {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.swiper {
    width: 100%;
    height: 650px;
    margin-left: auto;
    margin-right: auto;
  }

.swiper-slide {
    text-align: justify;
    font-size: 16px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    border: 2px solid #00DBFF;
}

.ceractorcol {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Căn giữa nội dung trong div */
    flex: 3;
}

.ceractorcol img {
    /* border-radius: 50% ; */
    object-fit: contain;
    width: 90%;
    height: 100%;
    margin-top: 10px;
    overflow: hidden;
}

.ceractorcol p {
    margin: 5px 0; /* Để lại khoảng cách nhỏ giữa các đoạn văn bản */
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
    color: #00DBFF;
    
}

.ceractordoc {
    flex: 7;
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
    color: white !important;
    font-size: 14px;
    padding: 5px 15px;
    overflow-y: scroll;
}
.ceractordoc::-webkit-scrollbar {
    display: none; /* Ẩn thanh cuộn trên WebKit/Blink */
}


/* swiper */
.swiper_wrap {
    padding: 0px 50px;
    height: 100%;
    width: 100%;
    position: relative;
    display: block;
    text-align: left;
}

.swiper-button-next {
    margin-top: 0px;
    position: absolute;
    top: 50%;
    right: -40px;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
}

.swiper-button-prev {
    position: absolute;
    top: 50%;
    left: -40px;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
    margin-top: 0px;
}

.swiper-pagination {
    position: absolute;
    /* top: 100% !important; */
    bottom: -4% !important;
}
.swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background-color: white;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #00DBFF;
}



  

/* chương trình học */
.study-program-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 500px; /* Độ cao tối đa của khung chứa */
    overflow-y: auto; /* Bật cuộn dọc khi nội dung vượt quá chiều cao */
    padding: 10px;
    width: 100%;
}
.study-program-container::-webkit-scrollbar {
    display: none; /* Ẩn thanh cuộn trên WebKit/Blink */
}

#roadmap {
    display: flex;
    flex-direction: row ;
    justify-content: space-between;
}
.semester {
    /* flex: 1; */
    text-align: center;
    width: 24%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 8px;
}

.semester-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 15px;
    width: 90%;
    height: 60px;
    border-radius: 10px;
}
.roadmap-semester {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex:1;
}
.roadmap-detai {
    color: #ffffff;
    border-radius: 10px;
    margin-top: 20px;
    width: 90%;
    height: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    padding: 0 5px;
}

.gradient-pink {
    background: linear-gradient(180deg, #FF30FE, #FF83FE);
}
.gradient-blue {
    background: linear-gradient(180deg, #132AE8, #3C6AFF);
}
.gradient-aqua {
    background: linear-gradient(180deg, #6DFFFF, #CDFDFD);
    color: #000;
}
.gradient-purple {
    background: linear-gradient(180deg, #792985, #B665A0);
}
.gradient-bluelight {
    background: linear-gradient(180deg, #2D77A0, #367AE9);
}

.note-text {
    color: white;
    margin-left: 5px;
}
.note-header {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
    /* background: linear-gradient(180deg, #355DFC, #6D98FD); */
}


/* Chương trình học mobile */
#roadmapSw {
    width: 100%;
    height: 800px;
}

.containerRoadmap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
    height: auto;
}

.swiper-pagination1 { 
    text-align: center;
}


.swiper-pagination1 .swiper-pagination-bullet {
    opacity: 1;
    background-color: white;
}

.swiper-pagination1 .swiper-pagination-bullet-active {
    background-color: #00DBFF;
}



/* 
.containerRoadmap::-webkit-scrollbar {
    display: none; 
} */

/* PARTNERS */
.partners {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.rowpartners {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.square-holder {
    padding: 30px;
    border: 1px solid #cecece;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #ebebeb;
    min-height: 130px;
    margin:5px 5px;

}

.square-holder img {
    max-width: 100%;
    /* filter: grayscale(100%); */
    /* transition: all 0.3s; */
}

/* .square-holder:hover img {
    filter: none;
} */



/* NEWS */
.swiperNews {
    width: 100%;
    height: 350px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}



.titlenews {
    flex: 7;
    font-family: 'BAHNSCHRIFT Condensed', sans-serif;
    color: rgb(0, 0, 0) !important;
    font-size: 14px;
    padding: 5px 15px;
    overflow-y: scroll;
}
.titlenews::-webkit-scrollbar {
    display: none; /* Ẩn thanh cuộn trên WebKit/Blink */
}


/* logo */
.swiperLogo {
    width: 100%;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.logoimg {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Căn giữa nội dung trong div */
    flex: 3;
    background-color: whitesmoke;
    border-radius: 5px;
}

.logoimg img {
    /* border-radius: 50% ; */
    object-fit: contain;
    width: 80%;
    height: 80%;
    margin-top: 20px;
    overflow: hidden;
}

/* css phản hồi sinh viên */
.swiperStdFb {
    width: 100%;
    height: 370px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.std-slide-card {
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}


.std-slide-profile-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.std-slide-profile-image {
    border-radius: 50%;
    width: 200px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 3px solid #ffffff;
    
}

.std-slide-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.std-slide-content-section {
    flex: 3;
    
}

.std-slide-title {
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.std-slide-description {
    color: #ffffff;
    /* line-height: 1.6; */
    font-size: 15px;
    height: 230px;
    font-family: 'BAHNSCHRIFT SemiLight Condensed', sans-serif;
    /* padding: 5px 15px; */
    overflow-y: scroll;

    white-space: pre-line; /*Xuống dòng*/
}
/* .std-slide-description p {
    display: table-cell;
    vertical-align: top;
    padding: 0px;
} */
.std-slide-description::-webkit-scrollbar {
    display: none; /* Ẩn thanh cuộn trên WebKit/Blink */
}

.std-slide-student-info {
    color: #00bcd4;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

.std-slide-name {
    color: #FFDB64;
    font-family: 'BAHNSCHRIFT SemiLight Condensed', sans-serif;
}

.std-slide-achievement-item {
    color: #1CEDFF;
    font-family: 'BAHNSCHRIFT SemiLight Condensed', sans-serif;
    font-size: 15px;
}

.std-slide-id {
    color: #FFDB64;
}

.boxStdFb {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}


/* Responsive */
/* @media (max-width: 480px) {
    .std-slide-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .std-slide-profile-image {
        width: 60px;
        height: 60px;
    }

    .std-slide-title {
        font-size: 16px;
    }
} */
