


.header{
    position: relative;
    width: 100%;
    z-index: 9;
}

.header_top{
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
}

.header_top-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

.header_top-item{
    font-size: 14px;
    color: #fff;
}
.header_top-link{
    background-color: #fff;
    color: var(--primary-color);
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 10px;
    font-size: 14px;
}

.header_top-link img{
    width: 30px;
    margin-left: 4px;
}

.header_main{
    position: relative;
    background: #fff;
    box-shadow: 0 1px 2px #ddd;
}

.header_elementor{
    display: flex;
    justify-content: space-between;
    padding: 16px 0 54px 0;
}

.logo{
    display: flex;
    gap: 8px;
    align-items: center;
}

.logo-img{
    width: 90px;
    height: 90px;
}

.logo-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-text h4{
    text-transform: uppercase;
    font-size: 12px;
    color: var(--primary-color-2);
}

.logo-text h2{
    text-transform: uppercase;
    font-size: 30px;
    color: var(--head-color);
    font-weight: 900;
}



.header_item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_item-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_item-context p{
    color: rgba(0, 0, 0, 0.6);
}

.header_search{
    height: 46px;
    position: relative;
    display: flex;
}

.header_search input{
    width: calc(100% - 46px);
    background: transparent;
    border: none;
    height: 100%;
    padding: 0 10px 0 14px;
    font-family: 'Archivo', sans-serif;
}

.search_keyword{
    width: 46px;
    height: 46px;
    border-radius: 5px;
    background: var(--primary-color);
    border: 1px solid transparent;
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.search_keyword{
    cursor: pointer;
}

.search_keyword:hover{
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 2px 2px var(--primary-color);
}

.header_fixed{
    transform: translateY(-40px);
}

.header_nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 60px;
}
.header_nav::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transform: skewX(-15deg);
    background: var(--primary-color);
    z-index: 0;
}

.navigation{
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.nav-item{
    position: relative;
}

.nav-link{
    display: flex;
    align-items: center;
    gap: 6px;
    height: 70px;
    color: #fff;
    text-transform: uppercase;
}

.nav-link i{
    font-size: 14px;
}

.submenu{
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    background: #fff;
    width: max-content;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.nav-item:hover .submenu{
    opacity: 1;
    visibility: visible;
}

.submenu_link{
    padding: 12px 24px;
    display: block;
    text-transform: capitalize;
    transition: .3s;
    font-weight: 600;
}
.submenu_link:hover{
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--primary-color-2);
}

.header_btn{
    position: relative;
    z-index: 1;
}

.register_button{
    height: 46px;
    line-height: 46px;
    position: relative;
    color: var(--primary-color);
    padding: 0 20px;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    background: transparent;
    position: relative;
    display: block;
}

.register_button::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transform: skewX(-12deg);
    background: #fff;
    z-index: -1;
}


/* banner */

.banner{
    margin-top: -69px;
    position: relative;
}

.banner-link{
    display: block;
}

.video_banner{
    width: 100%;
}

/* main */

/* Dropdown */
.dropdown{
    position: relative;
    width: 100%;
}

.dropdown-select{
    padding: 12px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    color: var(--title-color);
}

.dropdown-icon{
    padding: 0 6px;
    transform: translate(4px,0px);
    transition: .3s;
}

.dropdown-icon:hover{
    opacity: 0.7;
}

.dropdown-icon.active{
    transform: translate(4px,-2px) rotate(180deg);
}

.dropdown-list{
    position: absolute;
    top: 105%;
    left: 0;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    box-shadow: 0 0 60px rgba(6,30,98,.08);
    width: 100%;
    padding: 10px 20px 10px 30px;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9;
}
.dropdown-list::-webkit-scrollbar {
    width: 8px;
    border-radius: 10px;
}

.dropdown-list::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

.dropdown-list::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 10px;
}

.dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #aaa; 
}

.dropdown-list.active{
    opacity: 1;
    visibility: visible;
}

.dropdown-head{
    font-weight: 600;
    font-size: 15px;
    color: var(--title-color);
    display: flex;
    align-items: center;
    padding: 6px 0;
    gap: 4px;
    position: relative;
    left: -20px;
}

.dropdown-head i{
    font-size: 4px;
}

.dropdown-list-item{
    padding: 10px 0 10px 0;
    font-size: 14px;
    transition: .3s;
    cursor: pointer;
    border-bottom: 1px solid #f3f3f3;
}

.dropdown-list-item:hover,.dropdown-list-item.active{
    color: var(--primary-color);
}

.dropdown-content .dropdown-list-item:last-child{
    border-bottom: none;
}


.box_search{
    background: var(--primary-color);
    border-radius: 20px;
    padding-left: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}


.search_elementor{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search_option{
    width: calc(100% - 180px);
    display: flex;
    align-items: center;
}

.search_context{
    width: 300px;
    color: #fff;
    padding-left: 20px;
    padding-right: 10px;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    text-align: justify;
}
.search_context::after{
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    width: 2px;
    height: 110%;
    transform: translateY(-50%);
    background-color: #fff;
}

.search_inner{
    width: calc(100% - 300px);
    padding-left: 30px;
    padding-right: 20px;
}

.search_img{
    width: 180px;
    background: var(--head-color);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.search_img img{
    display: block;
}

.search_lits{
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.search_age{
    width: 230px;
}
.search_course{
    width: 320px;
}

.select-name{
    margin-left: 4px;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.dropdown-select-head{
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
}

.btn_view-more{
    height: 48px;
    width: 160px;
    border-radius: 30px;
    border: none;
    background: var(--head-color);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
}

.btn_view-more:hover{
    background-color: rgb(202, 31, 31);
}


/* Study program */

.home_study{
    margin-top: 60px;
}

.study_program{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.study_item{
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
    padding: 24px;
    background-color: #fff;
}

.study_image img{
    border-radius: 14px;
    display: block;
}

.study_context{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 14px;
    flex-grow: 1;
}

.study_context-div{
    margin-bottom: 20px;
}

.study_name{
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.learn_more{
    margin-top: 20px;
    font-size: 18px;
    color: var(--primary-color-2);
    display: block;
}

.learn_more-icon{
    position: relative;
    color: var(--head-color);
    font-size: 15px;
    margin-left: 6px;
    display: inline-block;
}
.learn_more-icon::after{
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(108, 196, 255, 0.5);
}

/* home news */

.home_news{
    padding: 10px 0;
}

.news_content{
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.home_news-image{
    position: relative;
}
.home_news-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.home_news-image img{
    height: 600px;
    object-fit: cover;
    display: block;
}

.title_arrow{
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide_prev-btn{
    width: 34px;
    height: 34px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 155, 215, 0.7);
    transition: .3s;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.slide_next-btn{
    width: 34px;
    height: 34px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 155, 215, 0.7);
    transition: .3s;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.slide_next-btn:hover, .slide_prev-btn:hover{
    background: var(--primary-color);
}

.home_news-context{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    z-index: 2;
    color: #fff;
    padding: 30px;
}

.home_news-title{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    position: relative;
}
.home_news-title::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: var(--head-color);
}

.home_news-desc{
    font-weight: 300;
}


.news_tabs{
    margin-top: 30px;
}

.menu_news-item{
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f8f8f8;
    border-radius: 14px;
    padding: 10px;
    border: 1px solid #eee;
    border-right: 3px solid rgba(23, 155, 215, 0.2);
    transition: .3s;
    cursor: pointer;
}
.swiper-slide-thumb-active .menu_news-item,
.menu_news-item:hover{
    border-right: 3px solid rgba(23, 155, 215, 1);
    background-color: #f1f1f1;
}

.menu_news-item > img{
    width: 150px;
    height: 110px;
    border-radius: 14px;
}

.menu_news-context{
    width: calc(100% - 170px);
}

.menu_news-context h4{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    font-weight: 700;
    font-size: 18px;
}

.menu_news-context p{
    margin-top: 10px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    font-weight: 300;
    font-size: 14px;
}

.activities{
    padding-top: 20px;
}

.activities_item{
    border-radius: 14px;
    overflow: hidden;
}

.activi_context{
    padding: 14px;
    background-color: rgba(23, 155, 215, 0.1);
}

.activi_name{
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}
.activi_context p{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    min-height: 48px;
}

.activities_swiper{
    padding-bottom: 50px;
}

.activities_body .swiper-pagination {
    bottom: -20px;
}

/* gallery */

.elementor_space{
    position: relative;
    margin-top: 40px;
}

.gallery_space{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 50px;
}
.clear_space{
    height: 140px;
}

.gallery_space-item{
    border: 2px solid var(--primary-color-2);
    border-radius: 10px;
    overflow: hidden;
}

.context_space{
    padding:  160px 50px 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    border-bottom: 6px solid var(--primary-color);
    border-right: 6px solid var(--primary-color);
}

.head_space{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head_space-title{
    font-size: 32px;
    font-weight: 900;
}

.head_space-button{
    display: flex;
    align-items: center;
    gap: 10px;
}

.text_space{
    margin-top: 10px;
    font-size: 18px;
}

.teacher_elementor{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.teacher_item{
    padding: 40px;
    border: 1px solid var(--primary-color);
    border-bottom: 6px solid var(--primary-color);
    border-right: 6px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
}

.teacher_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.teacher_avt{
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 60px);
}

.teacher_avt > img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--primary-color-2);
    border-radius: 10px;
    background: #FFF5F0;
}

.teacher_name{
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color-2);
    text-transform: uppercase;
}

.teacher_icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color-2);
    border-radius: 6px;
    border: 2px solid var(--primary-color-2);
}

.teacher_desc{
    margin-top: 30px;
    padding: 25px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
}

.teacher_desc h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.teacher_level{
    font-size: 18px;
    margin-bottom: 10px;
}

.teacher_level ul{
    list-style: disc;
    padding-left: 14px;
}

.teacher_description{
    display:-webkit-box;
    -webkit-line-clamp:7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.teacher_description p{
    margin-bottom: 10px;
}

.bg-register{
    background-size: cover;
    position: relative;
}
.bg-register::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}


.box-main{
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.box_register{
    display: flex;
    width: calc(100% - 540px);
    justify-content: flex-end;
}

.box-contact{
    width: 500px;
}

.contact-fanpage{

}

.contact-map .gg-map{
    margin-top: 20px;
}

.contact-map .gg-map iframe{
    width: 100%;
    height: 350px;
}


.form_register{
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 20px;
    max-width: 550px;
    backdrop-filter: blur(6px);
}

.head_register{
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 10px 0 30px;
    text-align: center;
    color: var(--primary-color-2);
}

.form_main{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.group_input{

}

.form-control{
    width: 100%;
    height: 50px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    background: #fff;
    border: none;
    padding: 0 20px;
}

.form-control-area{
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    background: #fff;
    border: none;
    padding: 20px 20px 10px;
}

.form-control:focus, .form-control-area:focus{
    border: none;
    outline: none;
}

.accept{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: #000;
}


.group-label{
    color: rgba(0, 0, 0, 0.7);
}

.group-label > span{
    padding: 0px 10px 8px 30px;
    position: relative;
    color: var(--text-color);
}

.group-label > span::before{
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    left: 0;
    top: 0;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    background-color: #fff;
    transition: all .5s;
}

.group-label > span::after{
    content: '';
    position: absolute;
    border-left: 2px solid;
    border-bottom: 2px solid;
    border-color: transparent;
    width: 10px;
    height: 5px;
    left: 7px;
    top: 8px;
    transform: rotate(-45deg);
    border-top-color: transparent;
    border-right-color: transparent;
    transition: all .5s;
}

.group-label input:checked+span::before{
    background-color: #fff;
}
.group-label input:checked+span::after{
    border-color: #000;
}

.btn_register{
    border: none;
    padding: 16px 30px;
    border-radius: 30px;
    background: var(--head-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
}

.footer{
    background: #BFEBFF;
    padding-top: 60px;
}

.ft_elementor{
    display: flex;
    gap: 30px;
}

.ft_info{
    width: 35%;
}

.ft_redirect{
    width: calc(65% - 30px);
}

.ft_logo{
    margin-bottom: 20px;
}

.ft_desc{
    margin-bottom: 20px;
}

.ft_contact-item{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}
.ft_contact-item i{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    background-color: var(--primary-color);
}

.ft_redirect{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.ft_title{
    font-weight: 900;
    margin-bottom: 20px;
}

.ft_link{
    display: block;
    padding: 6px 0;
}

.ft_middle{
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

.ft_middle-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ft_policy{
    display: flex;
    gap: 30px;
    align-items: center;
}

.ft_policy-link{
    font-weight: 700;
    position: relative;
}
.ft_policy-link::after{
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.ft_policy .ft_policy-link:last-child::after{
    display: none;
}

.ft_social{
    display: flex;
    align-items: center;
    gap: 14px;
}
.ft_social-link{
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    border: 2px solid #fff;
    font-size: 18px;
}

.copyright{
    text-align: center;
    font-size: 14px;
    padding: 20px;
}


.banner_page{
    position: relative;
}
.banner_page img{
    display: block;
}

.banner_context{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.banner_context .subtitle{
    color: var(--head-color);
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
}

.banner_context .title{
    color: #2A254D;
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: uppercase;
}

.banner_context .desc{
    margin-bottom: 20px;
}

.about_elementor{
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about_inner{
    padding: 40px;
    border: 2px solid var(--primary-color);
    border-bottom: 6px solid var(--primary-color);
    border-right: 6px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
}

.about_inner-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.about_inner-head .title{
    font-size: 36px;
    font-weight: 900;
}

.about_inner-text{
    text-align: justify;
    font-size: 18px;
}


.history{
    padding-top: 20px;
}

.history_elementor{
    padding: 60px 60px 60px 140px;
    border: 2px solid var(--primary-color);
    border-bottom: 6px solid var(--primary-color);
    border-right: 6px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.history_item{
    display: flex;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
    position: relative;
}

.history_shape{
    position: absolute;
    top: 0;
    left: -80px;
    width: 80px;
    height: 100%;
}
.shape_col{
    content: "";
    position: absolute;
    top: 0%;
    left: 12px;
    height: 100%;
    display: block;
    padding: 0 6px;
    background-color: var(--primary-color);
    z-index: 1;
}
.shape_col > span{
    display: block;
    background-color: #fff;
    width: 2px;
    height: 100%;
}

.history_elementor .history_item:last-child .shape_col{
    height: 50%;
}

.shape_circle{
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--primary-color-2);
    background: #fff;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    z-index: 2;
}
.shape_line{
    position: absolute;
    right: 8px;
    width: 44px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px 6px 6px 0;
    background-color: var(--primary-color);
    z-index: 1;
}
.shape_line > span{
    display: block;
    background-color: #fff;
    width: 100%;
    height: 2px;
}
.shape_line::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--primary-color-2);
    background: #fff;
    transform: translateY(-50%);
    z-index: 2;
}

.history_year{
    width: 300px;
}

.history_context{
    width: calc(100% - 340px);
}

.history_number{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
    border-radius: 14px;
    border: 2px solid var(--primary-color);
    border-bottom: 6px solid var(--primary-color);
    border-right: 6px solid var(--primary-color);
}

.history_number img{
    width: 60px;
    height: 60px;
}
.history_number span{
    font-size: 50px;
    font-weight: 900;
    color: var(--primary-color-2);
}

.history_context-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.study_status{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.study_status-item{
    width: 260px;
    padding: 20px 40px;
    text-align: center;
}

.study_status-number{
    font-weight: 700;
    color: var(--primary-color);
    font-size: 60px;
}

.study_status-text{
    font-weight: 700;
}


.bg-course{
    min-height: 750px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.study_box{
    width: 50%;
    float: left;
    padding-top: 40px;
}

.study_context h2{
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color-2);
    margin-bottom: 10px;
}

.study_context p{
    font-size: 20px;
    margin-bottom: 10px;
}

.study_details{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.study_rectangle{
    padding: 40px 60px;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 780px;
    border-radius: 20px;
}

.study_rectangle-head{
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color-2);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.study_rectangle-content > ul{
    list-style: disc;
    padding-left: 20px;
}

.study_rectangle-content > ul > li{
    margin-bottom: 10px;
}

.study_rectangle-content > ul > li > ul{
    padding-left: 20px;
    padding-top: 10px;
    list-style: number;
}

.study_rectangle-content > ul > li > ul > li{
    margin-bottom: 10px;
}


.study_rectangle-list{
    padding-left: 20px;
    list-style: disc;
}

.study_rectangle-item{
    margin-bottom: 20px;
    font-size: 18px;
}


.box_teacher{
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.teacher_context, .teacher_image{
    width: 50%;
}

.teacher_context{
    padding: 60px 40px;
    background: #9EAEA4;
    color: #fff;
}

.teacher_image img{
    display: block;
    height: 100%;
    object-fit: cover;
}

.tc_context-head{
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
}
.tc_context-sub{
    margin-bottom: 10px;
}

.tc_context-title{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.tc_context-ul{
    padding-left: 20px;
    list-style: disc;
    padding-bottom: 10px;
}
.tc_context-ul li{
    margin-bottom: 10px;
    font-size: 18px;
}

.tc_context-body h4,.tc_context-body h3{
    padding: 14px 0;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 900;
}

.tc_context-body ul{
    padding-left: 20px;
    list-style: disc;
}

.tc_context-body ul li{
    margin-bottom: 10px;
    font-size: 18px;
}


.box_container{
    display: flex;
    overflow: hidden;
}

.intro_elementor{
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro_image, .intro_context{
    width: 50%;
}

.intro_context-title{
    font-size: 46px;
    font-weight: 900;
    color: var(--primary-color-2);
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.intro_context-desc{
    margin-bottom: 10px;
    font-size: 18px;
}

.intro_context-desc p{
    margin-bottom: 10px;
}

.intro_context-desc ul{
    padding-left: 20px;
    line-height: 2;
    list-style: disc;
}

.box_people{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.people_item{
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.people_item img{
    display: block;
}

.box_people-2{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.people_item-2{
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.people_info{
    padding: 14px 20px 20px;
    text-align: center;
    background: #fff;
    flex-grow: 1;
}
.box_people-2 .people_item-2:nth-child(even) .people_info{
    background: #f3f6f9;
}

.people_sub{
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
}
/* .box_people-2 .people_item-2:nth-child(even) .people_sub{
    color: rgba(255, 255, 255, 0.7);
} */

.people_name{
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 20px;
}
.box_people-2 .people_item-2:nth-child(even) .people_name{
    /* color: #fff; */
}

.people_social img{
    width: 100px;
    margin: auto;
}


.news_body{
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.news_image {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 75%;
    display: block;
}

.news_image_style{
    padding-bottom: 100%;
}

.news_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_image img{
    display: block;
    border-radius: 16px;
}

.news_context{
    padding: 10px 0;
}

.news_name{
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.news_desc{
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}


.news__details{
    display: flex;
    gap: 30px;
}

.tab-social {
    width: 40px;
}
.menu-social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.social-item-link {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    transition: .3s;
}

.social-item svg {
    fill: #777;
}





.news__details-body{
    width: calc(70% - 40px);
}

.news__details-nav{
    width: 30%;
}

.news__details-name{
    color: #2A254D;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: uppercase;
}

.news__details-date{
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 20px;
}

.news__details-content{
    margin-bottom: 20px;
}

.news__details-content figure{
    margin: 20px 0 20px;
}

.news__details-content figure img{
    width: 100%;
    height: auto;
    max-width: 600px;
}

.news__details-content figure figcaption{
   text-align: center;
   font-style: italic;
   padding: 4px 0 6px;
}

.news__details-content p{
    margin-bottom: 10px;
}

.news__details-content p img{
    display: inline-block;
    max-width: max-content;
}

.news__details-img{
    text-align: center;
    padding: 10px 0;
}

.news__details-img i{
    display: inline-block;
    margin-top: 10px;
    font-weight: 300;
}

.news__nav-related {
    margin-top: 50px;
}

.news__nav-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.news-related-content {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.news-related-content .image {
    width: 120px;
    height: 85px;
}

.news-related-content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-related-content .info {
    width: calc(100% - 120px);
}

.news-related-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: .3s;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.news-details-created {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.8;
    font-style: italic;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-related-created {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.8;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-related-content:hover .news-related-name{
    color: var(--primary-color);
}

.wrapper-comment {
    padding: 40px 0;
}

.wrapper-title-comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.title-comment {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 6px 0;
}

.write-comment {
    color: #fff;
    font-weight: 600;
    padding: 6px 16px;
    background: #087eec;
    transition: .3s;
    border: 1px solid transparent;
    cursor: pointer;
}

.comment-main {
    margin-top: 10px;
    padding: 20px 10px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.comment-content {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.comment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.comment-created{
    font-size: 14px;
    font-weight: 300;
}

.comment-name img {
    width: 40px;
    border-radius: 50%;
}

.comment-text {
    padding: 10px 0;
}



/* Modal comment */

.modal-comment {
    position: fixed;
    top: 0px;
    right: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    animation: showMenu 0.2s ease-in;
    transition: .3s;
}


.modal-comment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.modal-comment.active {
    opacity: 1;
    visibility: visible;
}

.comment-body {
    position: absolute;
    width: 40%;
    right: 0;
    top: 0;
    background: #fff;
    height: 100vh;
    max-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all .3s cubic-bezier(.39, .575, .565, 1);
    padding: 50px 50px 20px;
}

.comment-body.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.btn-close-comment {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    display: inline-block;
    color: rgba(0, 0, 0, 0.7);
}

.btn-close-comment svg {
    width: 30px;
    height: 30px;
}

.comment-head-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 40px;
}


.group-input {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.group-input input {
    width: 100%;
    height: 50px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 0 14px;
}

.group-input textarea {
    width: 100%;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 14px;
}

.group-input input:focus,
.group-input textarea:focus {
    outline: none;
}

.comment-confirm {
    background: var(--primary-color);
    border: none;
    padding: 15px 60px;
    color: #fff;
    cursor: pointer;
}


/* Contact */

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-heading {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--title-color);
    margin-bottom: 40px;
}

.contact-head {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-text {
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.8;
    margin-right: 20px;
}

.contact-info {
    font-weight: 300;
    margin-right: 20px;
}

.contact-info li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-info span {
    color: var(--primary-color);
    margin-right: 4px;
}

.contact-input {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.contact-input input {
    height: 44px;
    width: 100%;
    border: 1px solid #ddd;
    padding: 0 12px;
}

.contact-input textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px 12px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-contact {
    display: inline-block;
    padding: 10px 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    transition: .3s;
    line-height: 1.8;
    cursor: pointer;
}

.gg-map {
    margin-top: 50px;
}

.gg-map iframe {
    width: 100%;
    height: 400px;
}





/* Nav mobile */

.nav-mobile{
    display: none;
    align-items: center;
    gap: 20px;
    min-width: 50px;
}

.logo-mobile{
    max-width: 80px;
    margin-left: 30px;
    margin-bottom: 20px;
}

.logo-mobile a{
    display: block;
}

.logo-mobile img{
    width: 65px;
    display: block;
}

.btn_show-menu{
    padding: 10px 0;
    cursor: pointer;
    width: 100%;
}

.nav-mobile-toggle{
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
}
.nav-mobile-toggle > span{
    display: block;
    width: 20px;
    height: 1px;
    background-color: #333;
    transition: .3s;
}

.nav_mobile-menu{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vh - 0px);
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}


.nav_mobile-list{
    position: relative;
    top: 0;
    width: 300px;
    background: #fff;
    height: 100vh;
    max-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all .3s cubic-bezier(.39,.575,.565,1);
    padding-top: 40px;
    overflow-y: auto;
}
.nav_mobile-list.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


.nav_mobile-menu.active{
    opacity: 1;
    visibility: visible;
}

.btn-close-nav{
    position: absolute;
    top: 6px;
    right: 10px;
    z-index: 2;
    display: inline-block;
    padding: 0 6px;
    font-size: 20px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 9999;
}

.line-nav {
    width: 100%;
    height: 1px;
    margin-top: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-logo{
    max-width: 80px;
    margin-left: 30px;
    margin-bottom: 20px;
}

.nav_mobile-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px;
    cursor: pointer;
    font-weight: 600;
}
.nav_mobile-item span{
    color: rgba(0, 0, 0, 0.8);
    display: inline-block;
    transition: .3s;
    position: relative;
}
.nav_mobile-item span::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: #000;
    transition: .3s;
}

.nav_mobile-item svg{
    width: 14px;
    height: 14px;
    transition: .3s;
}

.nav_mobile-item.active svg{
    transform: rotate(90deg);
}

.nav_mobile-item:hover span,
.nav_mobile-item.active span{
    color: #000;
}

.nav_mobile-item:hover span::after{
    width: 100%;
}

.phone-mobile{
    display: block;
    color: rgba(0, 0, 0, 0.8);
    font-family: "utm-caviar";
    position: absolute;
    bottom: 5px;
    left: 0;
    padding: 10px 46px;
}
.phone-mobile svg{
    transform: rotate(-35deg);
}
.btn-search-close{
    background: transparent;
    color: #ccc !important;
    cursor: pointer;
    font-size: 18px !important;
}

/*menu mobile */

.nav-submobile{
    max-height: 600px;
    overflow-y: auto;
    display: none;
}

.nav-submobile.active{

}

.nav-submobile-item{
    cursor: pointer;
    text-transform: capitalize;
}

.nav-submobile-link{
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 40px 8px 50px;
    color: #555;
}
.nav-submobile-link:hover{
    color: #000;
}

.nav-submobile-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 36px 10px 36px;
    color: #222;
}

.nav-submobile-head span{
    font-size: 16px;
}

.nav-submobile-head svg{
    width: 12px;
    height: 12px;
}

.submobile-child{
    display: none;
}


.nav-action{
    display: none;
    min-width: 50px;
    text-align: end;
}


.search-icon svg{
    color: #fff;
    width: 20px;
    height: 20px;
}


/* Search */

.search-body{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
    animation: scrollSearch 0.2s linear;
  }
  
  @keyframes scrollSearch {
    0%{transform: translateY(-30px); opacity: 0.5;}
    100%{transform: translateY(0px); opacity: 1;}
  }
  
  .search-body.active{
    display: block;
  }
  .search-body-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .container-search{
    width: 992px;
  }
  
  .search-top{
    display: flex;
    height: 32px;
    justify-content: space-between;
  }
  .search-top span{
    font-family: system-ui;
    color: #555;
    font-size: 14px;
    text-transform: uppercase;
  }
  .search-top span i{
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
  }
  .search_bottom{
  
  }
  .form-search{
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .search_input{
    display: block;
    width: 100%;
    font-family: system-ui;
    height: 40px;
    border: none;
  }
  .search_input:focus{
    outline: none;
  }
  
  .btn-search-submit{
    padding: 4px 10px;
    background: transparent;
    font-size: 20px;
    border: none;
    cursor: pointer;
  }
  


.recruit_body{
    padding-top: 40px;
}