@font-face {
    font-family: Roboto-Regular;
    src: url(../fonts/ROBOTO-REGULAR.TTF)
}

@font-face {
    font-family: Opensans-Bold;
    src: url(../fonts/OPENSANS-BOLD.TTF)
}

@font-face {
    font-family: Roboto-Bold;
    src: url(../fonts/Roboto-Bold.ttf)
}

@font-face {
    font-family: VL-GOODVIBES-PRO;
    src: url(../fonts/VL-GOODVIBES-PRO.OTF)
}

body {
    font-size: 14px;
    font-family: Roboto-Regular;
    overflow-x: hidden;
    color: #000;
}

.tit_page {
    font-size: 24px;
    line-height: 30px
}

.container {
    width: 1200px;
    max-width: 100%;
    padding: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.menu_mb {
    background: #fff;
    z-index: 9;
    height: 60px;
}

.top_mb {
    padding: 5px 0;
    align-items: center;
    justify-content: space-between;
}

.logo_mb {
    padding: 0 10px;
}

.search_mb {
    padding: 10px;
}

#go_top {
    position: fixed;
    width: 24px;
    height: 25px;
    background: #6ab83f;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: 700;
    background-size: 100% 100%;
    display: inline-block;
    z-index: 100;
    bottom: 25px;
    right: 25px;
    -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.img_logo_mb {
    max-height: 50px;
}

.logo_pc img {
    padding-top: 35px;
}

.menu_main .nav.is-fixed {
    position: relative;
    z-index: 105;
    font-family: Roboto-Regular;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: #efefef;
}

.nav-container {
    position: fixed;
    top: 110px;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    visibility: hidden;
    width: 300px;
    max-width: 70%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.nav-container.is-visible {
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.nav-toggle {
    border: 0;
    background: 0;
    z-index: 99;
    padding: 0;
    margin: 7px 10px;
}

.nav-toggle:focus {
    outline: 0;
}

.nav-toggle .icon-menu {
    position: relative;
    width: 28px;
    height: 20px;
}

.icon-menu .line {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: #6ab83f;
}

.icon-menu .line-1 {
    top: 0;
}

.is-active .icon-menu .line-1 {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    -ms-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
}

.icon-menu .line-2 {
    top: 50%;
    margin-top: -2px;
}

.is-active .icon-menu .line-2 {
    opacity: 0;
}

.icon-menu .line-3 {
    bottom: 0;
}

.is-active .icon-menu .line-3 {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
}

.nav-menu {
    background-color: #6ab83f;
}

.nav-menu>.menu-item.is-active {
    background: #6ab83f;
}

.nav-menu>.menu-item:hover {
    background: #6ab83f;
}

.nav-menu>.menu-item.is-active.has-dropdown:after,
.nav-menu>.menu-item:hover.has-dropdown:after {
    color: #ff6801;
}

.nav-menu>.menu-item.is-active a,
.nav-menu>.menu-item:hover a {
    color: #fff;
}

.nav-menu .menu-link {
    color: #fff;
    display: block;
    padding: 8px 15px;
}

.has-dropdown {
    position: relative;
    cursor: pointer;
}

.has-dropdown>.menu-link {
    display: inline-block;
}

.has-dropdown:after {
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 1rem;
    bottom: 0;
    height: 36px;
    content: "+";
    color: #fff;
    line-height: 36px;
}

.has-dropdown.is-active:after {
    content: "\2013";
}

.nav-dropdown {
    display: none;
    background-color: #6ab83f;
}

.has-dropdown.is-active>.nav-dropdown {
    display: block;
}

.nav-dropdown .nav-dropdown {
    background-color: #6ab83f;
}

.nav-dropdown .menu-item {
    border-bottom: 1px solid #fff;
}

.nav-dropdown .menu-item .menu-link {
    display: block;
    padding: 8px 15px;
}

@media (min-width: 992px) {
    .nav,
    .nav-container,
    .nav-container.is-visible {
        position: static;
        top: auto;
        left: auto;
        /* z-index: auto; */
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .nav-container,
    .nav-container.is-visible {
        visibility: visible;
        height: auto;
        min-height: 0;
        overflow-y: visible;
        width: 100%;
        max-width: 100%;
    }
    .nav-toggle {
        display: none;
    }
    .nav-menu>.menu-item:hover,
    .nav-menu>.menu-item.is-active {
        background-color: transparent;
    }
    .nav-menu .menu-item {
        -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
        transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    }
    .nav-menu>.has-dropdown:after {
        position: absolute;
        right: 0;
        top: 4px;
        font-size: 14px;
        content: "\f107";
        font-family: FontAwesome;
        color: #fff;
    }
    .nav-dropdown .has-dropdown:after {
        position: absolute;
        top: 3px;
        font-size: 14px;
        content: "\f105";
        font-family: FontAwesome;
    }
    .nav-dropdown {
        left: -35%;
        display: block;
        opacity: 0;
        position: absolute;
        top: 100%;
        width: 250px;
        margin: 0;
        background-color: transparent;
        border-radius: 0;
        box-shadow: 0 0 4px hsla(0, 0%, 0%, 0.15);
        visibility: hidden;
        -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s; 
    }
    .has-dropdown:hover>.nav-dropdown {
        visibility: visible;
        opacity: 1;
        -webkit-transition: all 0.35s linear;
        -moz-transition: all 0.35s linear;
        -o-transition: all 0.35s linear;
        transition: all 0.35s linear;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .nav-dropdown .menu-item:last-child {
        border-bottom: none;
    }
    .nav-dropdown>.menu-item:hover>.menu-link,
    .nav-dropdown>.nav-dropdown>.menu-item:hover>.menu-link {
        color: #ff6801;
    }
    .nav-dropdown {
        z-index: 997;
    }
    .nav-dropdown .nav-dropdown {
        z-index: 998;
        top: 0;
        left: 100%;
    }
    .nav-menu>.menu-item>.menu-link {
        display: inline-block;
        padding: 2px 15px;
        color: #fff;
        font-family: Roboto-Bold;
        font-size: 16px;
        text-transform: uppercase;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
    .nav-menu>.menu-item.active .nav-menu>.menu-item:hover {
        background: #7f1624;
    }
    .nav-menu>.menu-item {
        position: relative;
        padding: 8px 0;
    }
    .nav-menu {
        display: flex;
        justify-content: space-between;
    }
    .nav-menu,
    .nav {
        background: none;
    }
    .nav-menu>.menu-item.is-active>.menu-link,
    .nav-menu>.menu-item:hover>.menu-link {
        color: #ff6801;
    }
    .nav-dropdown>.menu-item {
        background: #6ab83f;
        border-bottom: 1px solid #ccc;
    }
    .nav-dropdown>.menu-item>.menu-link {
        color: #fff;
    }
}

@media (max-width: 991px) {
    .menu-item {
        border-bottom: 1px solid #fff;
    }
    .menu-item:last-child {
        border-bottom: 0;
    }
    .nav-dropdown .menu-item {
        border-bottom: 0;
        border-top: 1px solid #fff;
    }
    .nav-dropdown>.menu-item>.menu-link {
        padding: 5px 30px;
    }
    .nav-dropdown .nav-dropdown .menu-item>.menu-link {
        padding: 5px 40px;
    }
    .nav-menu>.menu-item.is-active.has-dropdown:after,
    .nav-menu>.menu-item:hover.has-dropdown:after {
        color: #fff;
    }
    .menu .menu-item.d-block {
        padding: 5px;
        background: #fff;
    }
}


/*============================*/

.header_top {
    background: #fff;
    z-index: 9;
    position: relative;
}

.header_top.fixed {
    position: fixed;
    left: 0;
    box-shadow: 0 3px 5px #ccc;
}

.form_search {
    position: absolute;
    top: 46px;
    right: 0;
    width: 300px;
    opacity: 0;
    pointer-events: none;
    margin-top: 40px;
    transition: all 0.4s;
    z-index: 9;
}

.form_search.active {
    opacity: 1;
    pointer-events: all;
    margin-top: 0;
}

.form_search input {
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
}

.form_search .search {
    height: 48px;
    padding: 0px 20px;
    font-size: 20px;
    background: #fff;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    position: absolute;
    right: 0;
    top: 1px;
    color: #6ab83f;
    border: 0;
    outline: 0;
}

.owl-carousel .owl-dots .owl-dot span {
    border: 1px solid #fff;
    background: 0 !important;
}

.slider_main .owl-dot.active span,
.slider_main .owl-dot:hover span {
    border: 1px solid #6ab83f;
    background: #6ab83f !important;
}

.owl-carousel .owl-nav [class*='owl-'] {
    opacity: 1 !important;
}

.cate_item {
    display: flow-root;
    margin-bottom: 30px;
}

.cate_item .image {
    float: left;
    width: 60%;
}

.cate_item .image>img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.cate_item .info_cate {
    float: left;
    width: 40%;
    background: #257f35;
    height: 500px;
    overflow-y: hidden;
    position: relative;
}

.info_cate {
    padding: 100px 30px 100px 150px;
}

.title_cate {
    font-size: 24px;
    font-family: Opensans-Bold;
    font-weight: bold;
    margin-bottom: 45px;
}

.title_cate a {
    color: #000;
}

.title_cate a:hover {
    color: #6ab83f;
}

.description_cate {
    line-height: 30px;
}

.description_cate ul li i {
    color: #6ab83f;
    font-size: 20px;
    padding-right: 5px;
}

.cate_item:nth-child(odd) .image {
    float: left;
}

.cate_item:nth-child(odd) .info_cate {
    float: right;
    background: #f5f5f7;
    padding: 100px 150px 100px 30px;
}

.product_item:nth-child(odd) .info_cate {
    float: left;
    background: #f5f5f7;
    padding: 40px 30px;
    width: 45%;
    height: 355px;
}

.product_item .title_cate {
    margin-bottom: 15px;
}

.product_item:nth-child(odd) .image {
    float: right;
    width: 55%
}

.product_item:nth-child(even) .info_cate {
    float: right;
    background: #f5f5f7;
    padding: 20px 20px 15px 15px;
    width: 45%;
    height: 355px;
}

.product_item:nth-child(even) .image {
    float: left;
    width: 55%
}

.product_item .description_cate {
    height: 240px;
    overflow-y: hidden;
}

.product_item .image img {
    height: 355px;
}

.product_item {
    margin-bottom: 40px;
}

.list_course {
    margin: 30px 0;
}

@media (max-width: 480px) {
    .nav-menu.menu {
        border: 1px solid #e1e1e1;
    }
    .container {
        width: 100%;
        padding: 0 10px;
    }
    main,
    footer {
        overflow: hidden;
    }
    .form_search {
        top: 55px;
        right: 5px;
    }
    .cate_item .image {
        width: 100%;
        float: unset;
    }
    .cate_item .image img {
        height: auto;
        width:100%;
    }
    .cate_item .info_cate,
    .cate_item:nth-child(odd) .info_cate {
        width: 100%;
        padding: 20px;
        height: auto;
        float: unset;
    }
    .product_item .description_cate,
    .product_item:nth-child(even) .info_cate {
        height: auto;
        overflow: visible;
    }
    .product_item .image .item img {
        height: auto;
    }
    .product_item:nth-child(odd) .image,
    .product_item:nth-child(even) .image,
    .product_item:nth-child(even) .info_cate {
        width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .nav-menu.menu {
        border: 1px solid #e1e1e1;
    }
    .container {
        width: 100%;
        padding: 0 10px;
    }
    main,
    footer {
        overflow: hidden;
    }
    .cate_item .image>img,
    .cate_item .info_cate {
        height: 350px;
    }
    .cate_item .info_cate,
    .cate_item:nth-child(odd) .info_cate {
        padding: 10px;
    }
    .title_cate {
        margin-bottom: 10px
    }
    .title_cate {
        font-size: 16px;
        margin-bottom: 5px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
    main,
    footer {
        overflow: hidden;
    }
    .nav-menu>.menu-item>.menu-link {
        font-size: 14px;
    }
    .cate_item .info_cate,
    .cate_item:nth-child(odd) .info_cate {
        padding: 25px;
    }
    .title_cate {
        font-size: 16px;
        margin-bottom: 5px;
    }
}


/* ================================================== */

a {
    color: #6ab83f;
    text-decoration: none;
}

a:hover {
    color: #ff6801;
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

.clearfix-60 {
    clear: both;
    height: 60px;
}

.clearfix-50 {
    clear: both;
    height: 50px;
}

.clearfix-30 {
    clear: both;
    height: 30px;
}

.clearfix-20 {
    clear: both;
    height: 20px;
}

.clearfix-10 {
    clear: both;
    height: 10px;
}

.header_top {
    height: 50px;
    position: fixed;
    z-index: 99;
    border-bottom: 1px solid #eee;
}

.tit_header_top {
    font-size: 20px;
    color: #6ab83f;
    line-height: 40px;
    padding: 5px 0;
    margin-bottom: 0;
    font-family: Roboto-Bold;
}

.header_top .content_right {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 0;
    height: 50px;
    justify-content: space-between;
}

.hotline_header a span {
    color: #ff6801;
}

.content_right .item_right:not(:last-child) {
    margin-right: 15px;
}

.item_right a {
    font-family: Roboto-Bold;
}

.item_right>a>i {
    margin-right: 5px;
}

.link_network span {
    font-size: 20px;
    display: inline-block;
}

.link_network span:not(:last-child) {
    padding-right: 8px;
}

.header_middle {
    margin: 15px 0;
}

.header_bot {
    background: #6ab83f!important;
    position: relative;
    z-index: 98;
}

.header_bot.fixed {
    position: fixed;
    top: 50px;
    box-shadow: 0 3px 5px #ccc;
}

.header_bot .nav-menu>.menu-item>.menu-link.consult_now {
    background: #fff;
    color: #6ab83f;
    font-weight: bold;
    border-radius: 6px;
    position: relative;
}

.header_bot .nav-menu>.menu-item>.menu-link.consult_now::after {
    font-size: 15px;
    padding-left: 5px;
    content: "\f0a9";
    font-family: FontAwesome;
    color: #6ab83f;
}

.header_bot .nav-menu>.menu-item>.menu-link.consult_now::before {
    content: "";
    position: absolute;
    right: -25px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    border-right: 2px solid #fff;
}


/* academy courses */

.academy_courses {
    padding-bottom: 50px;
}

.tit_home {
    font-size: 24px;
    font-family: Roboto-Bold;
    color: #6ab83f;
    padding: 20px 10px;
    line-height: 25px;
}

.tit_prd {
    font-size: 16px;
    font-family: Roboto-Bold;
    color: #6ab83f;
    padding: 20px 0;
}

.img_product {
    overflow: hidden;
}

.item_product .img_product img {
    height: 200px;
    /* object-fit: cover; */
    transition: all 0.5s;
}

.img_product img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.btn_register {
    padding-bottom: 20px;
}

.btn_register a {
    font-size: 15px;
    color: #fff;
    font-family: Roboto-Bold;
    padding: 6px 15px;
    border-radius: 15px;
    background: #6ab83f;
    transition: all 0.5s;
}

.content_courses {
    background: #ececed;
}


/* Register Advisory */

.register_advisory {
    background: url(../img/bg_register.png) no-repeat;
    background-size: cover;
    color: #fff;
    padding: 50px 0 25px 0;
}

.register_advisory .content_left {
    height: 100%;
    padding-top: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.register_advisory .tit_register {
    font-size: 32px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.register_advisory .des_register {
    font-size: 13px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.register_advisory .form_regiser input, .register_advisory .form_regiser textarea.form-control,
.register_advisory .form_regiser select {
    background: transparent;
    border: 1px solid #fff;
    outline: 0;
    color: #fff;
}
.register_advisory .form_regiser .error{
   color:red; 
}
.register_advisory .form_regiser input::placeholder,
.register_advisory .form_regiser select {
    color: #fff;
}

.register_advisory .form_regiser select option {
    color: #000;
}

.register_advisory .form_regiser .btn_wrap {
    display: flex;
    /* align-items: center;
    justify-content: center; */
    /* height: 80%;*/
} 

.register_advisory .form_regiser .btn_wrap .btn_submit {
    width: 156px;
    border: 1px solid #fff;
    background: #6ab83f;
    height: 40px;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-family: Roboto-Bold;
    text-align: center;
    border-radius: 6px;
    transition: all 0.5s;
}

.register_advisory .form_regiser .btn_wrap .btn_submit:hover,
.btn_register a:hover {
    border: 1px solid #6ab83f;
    background: #fff;
    color: #6ab83f;
}

.quote_famous {
    position: relative;
    margin-top: 15px;
    padding-top: 20px;
}

.quote_famous::after {
    content: url(../img/line_quote.png);
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.quote_famous .content_quote {
    font-family: VL-GOODVIBES-PRO;
    color: #ffba00;
    font-size: 36px;
}

.quote_famous .people_quote {
    font-size: 18px;
}


/* Teachers */

.teachers {
    padding-bottom: 30px;
    background-image: url(./img/seigaiha.png);
    background-repeat: repeat;
}
h3.title-teachers{
    font-size: 18px;
    line-height: 26px;
    margin: 15px 0px;
}
.item-teachers{
    margin-bottom: 35px;
}
.item-teachers .images-teachers, .item_news .img_news{
    overflow: hidden;
    width: 100%;
    height:200px;
}
.item-teachers .images-teachers img{
    opacity: 0.8; 
    transition: all 0.5s;
}
.item-teachers .images-teachers:hover img{
    opacity: 1; 
    transform: scale(1.2);
}

@media (max-width:525px) {
    .teachers .col-6{ 
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* address business */

.address_business {
    padding: 45px 0;
}

.slider_address.owl-carousel .owl-nav {
    top: calc(50% - 25px);
    transform: translateY(-50%);
    ;
}

.info_address .address {
    font-size: 15px;
    color: #000;
    line-height: 1.6em;
    margin: 10px 0;
}

.info_address .address span {
    font-family: Roboto-Bold;
    text-transform: uppercase;
}


/* Footer */

footer {
    background: url(../img/footer-green.png) no-repeat;
    background-size: 100% 100%;
    padding-top: 40px;
}

.item_footer {
    color: #fff;
    margin-bottom: 15px;
}

.item_footer .tit_footer {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
}

.item_footer ul li {
    padding: 6px 0;
}

.item_footer ul li i {
    width: 20px;
    padding-right: 10px;
}

.coppy_right {
    color: #fff;
    padding: 15px 0;
    border-top: 1px dashed #fff;
}

.btn_view_more a {
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    background: #6ab83f;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.5s;
}

.btn_view_more a:hover {
    color: #6ab83f;
    background: #fff;
    border: 1px solid #6ab83f
}

h3.title_video {
    font-size: 15px;
    margin: 15px 0 30px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.contact-page .map iframe {
    height: 350px;
}

.bread_crumb ul li:not(:last-child) {
    padding-right: 10px;
}

.product_bycate .img_product img {
    height: auto;
}

@media (max-width: 991px) {
    .search_mb i {
        font-size: 24px;
        color: #6ab83f;
    }
    .search_mb .form_search {
        top: 60px;
    }
    .register_advisory .content_left,
    .item_product {
        margin-bottom: 15px;
    }
    .tit_header_top {
        font-size: 14px;
    }
    .hotline_header {
        display: none;
    }
}

@media (max-width: 767px) {
    .header_top .content_right {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hotline_header {
        display: none;
    }
    .quote_famous::after {
        left: -80px;
    }
    .email_header a i{
        display: none;
    }
    .link_network span:not(:last-child){
        padding-right: 5px;
    }
}


/*===================TEACHERS================*/

.tit_page {
    margin: 30px auto;
}

.teacher-main {
    padding: 20px 0;
    position: relative;
}

.teacher {
    margin-bottom: 30px;
}

.teacher-des,
.teacher-img {
    margin: 20px 0;
}

.teacher-des {
    background-color: #f5f5f5;
}

.teacher-info h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 800;
    margin: 20px 0;
}

.teacher-info p {
    margin-bottom: 10px;
}

.teacher-achievement h4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.teacher-achievement i {
    margin-right: 5px;
    font-family: 'FontAwesome';
}


/*================================MODAL================================*/

.register_advisory_modal {
    max-width: 650px;
}

.register_advisory_modal .close {
    border-radius: 100px;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    line-height: 20px;
    height: 20px;
    color: rgb(255, 0, 119);
    background-color: #6ab83f;
    outline: none;
}

.register_advisory_modal .register_advisory {
    margin-top: 50vh;
    transform: translateY(-50%);
    padding: 50px;
}

.register_advisory_modal--title {
    text-align: center;
    margin-bottom: 20px;
}


/* =============================USEABLE====================================*/

.title_contact {
    font-size: 24px;
    margin: 25px 0 15px 0;
    position: relative;
    width: 100%;
}

.contact-main {
    margin-bottom: 20px;
}

.contact-main p {
    line-height: 26px;
}

.contact-main p>b {
    padding-right: 5px;
}

.form_contact button.btn_submit {
    height: 40px;
    padding: 5px 20px;
    border: 1px solid #6ab83f;
    outline: 0;
    background: #6ab83f;
    color: #fff;
}

.title_contact::before {
    content: "";
    background: #6ab83f;
    position: absolute;
    height: 2px;
    width: 100px;
    bottom: 0;
    z-index: 2;
}

.title_contact::after {
    content: "";
    background: rgba(0, 0, 0, .1);
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.title_contact+h5 {
    font-size: 14px;
}
.video_wrap img{
    width: 100%;
} 
@media (max-width:575px){
    .register_advisory_modal{
        margin: inherit;
    }
}
@media (max-width:425px) {
    .tit_prd {
        font-size: 16px;
    }
    .btn_register a{
        font-size: 13px;
        padding: 6px 8px;
    }
}
.clearfix{
    clear: both; 
}
.pagination-wrapper {
    position: relative;
    width: 100%;
}

@media (max-width: calc(1120px - 1px)) {
    .pagination-wrapper {
        height: 85px
    } 
    .pagination-wrapper .button.next {
        right: 5px
    }

    .pagination-wrapper .button.prev {
        left: 5px
    }
}

@media (min-width: 1120px) {
    .pagination-wrapper {
        margin-top: 30px;
        margin-bottom: 30px;
    }  
}

.pagination-wrapper .pagination.menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.pagination-wrapper .pagination.menu .item {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 10px
}

.pagination-wrapper .pagination.menu .item.active, .pagination-wrapper .pagination.menu .item:hover {
    color: #da1919;
    text-decoration: underline
}

.pagination-wrapper .pagination.menu .item[aria-label="Next »"], .pagination-wrapper .pagination.menu .item[aria-label="« Previous"] {
    display: none
}
.button {
    color: #111;
    width: 120px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    padding: 0 10px;
    cursor: pointer;
    background-color: #fff;
    border: 2px solid #111;
}
/*  css content  single content */
.block-breakcrumb{
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
}
h2.tit_news{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0px;
    line-height: 28px;
}
.list_news .item_news .content_news {
    font-family: Roboto-Regular;
}
.block-tax-item-content h1.single-title{
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
}
.single-content  .block-breakcrumb{
    margin-top: 20px;
    margin-bottom: 29px;
    font-size: 16px;
}
.single-content p{
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 26px;
}
/* don tuyen moi nhat */
.don-tuyen{
    padding: 30px 0px;
    background: #f5f5f5;
}

.item-don-tuyen{
    margin-bottom: 30px;
    overflow: hidden;
}
.don-tuyen .img-dontuyen{
    overflow: hidden;
    width: 100%;
    height: 200px;
}
.don-tuyen .img-dontuyen img{
    opacity: 0.8; 
    transition: all 0.5s;
}
.don-tuyen .img-dontuyen:hover img{
    opacity: 1; 
    transform: scale(1.2);
}
.don-tuyen .dcs-dontuyen h3.title-dontuyen{
    font-size: 18px;
    line-height: 26px;
    margin: 15px 0px;
}
.sub-dcs {
    padding-top: 10px;
}
.sub-dcs p{
    display: flex;
    line-height: 30px;
    align-items: center;
    
}
.sub-dcs p i{
    width: 15px;
    margin-right:12px;
    font-size: 18px;
    text-align: center;
}
/***** css bo xung ***/
.content.content_news h1{
    font-size: 20px;
    color: #3498db;
    line-height: 23px;
}
.content.content_news h2{
    font-size: 1.3em;
    line-height: 1.5em;
    margin: 0.5em 0 0.5em 0;
}
.content.content_news p{
    font-size: 16px;
    line-height: 1.6em;
    margin: 0.5em 0 0.5em 0;
}

@media (min-width:1350px) {
    .don-tuyen .col-lg-2{
        flex: 0 0 20%;
        max-width:20%;
    }
}
@media (min-width:1200px) and (max-width:1349px){
    .don-tuyen .col-lg-2{
        flex: 0 0 25%;
        max-width:25%;
    }
}
@media (min-width:992px)and (max-width:1199px){
    .don-tuyen .col-lg-2{
        flex: 0 0 33.333333%;
        max-width:33.333333%;
    }
}
@media (max-width:575px){
    .don-tuyen .col-6{
        flex: 0 0 100%;
        max-width:100%;
    }
}
/* content detail  */
.left-content{
    padding-top: 30px;
}
.left-content h3{
    margin-bottom:20px;
    border-bottom: 1px solid #e5e8ec;
    padding-bottom: 10px;
}
.list-recruit{
    margin-bottom: 35px;
}
.list-recruit li{
    margin-bottom: 15px;
}
.list-recruit li a{
    display: flex;
    color: #000;
}
.list-recruit li a:hover{
    color: #ff6801;
}
.list-recruit li a img{
    width: 63px;
    height: 63px;
    max-width: 100%;
    margin-right: 15px;
}
.list-recruit li a p{
    font-size: 14px;
}
.content-detail{
    padding-top: 30px;
}
.content-detail img{
    max-width: 100%;
    margin-bottom: 15px;
}

.content-detail h1{
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #FFFFFF;
    color: #202124;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #e5e8ec;
    padding-bottom: 15px;
}
.post_time {
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 2px 0px 0px 0px;
    position: relative;
    color: #4c4d4f;
    margin-bottom: 10px;
    opacity: 0.6;
}
.pro_alltext {
    font-size: 16px;
}
.content-detail p {
    line-height: 1.6em;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    float: left;
    margin: 0.5em 0 0.5em 0;
}
.content-detail ul {
    line-height: 1.6;
    display: block;
    /* list-style-type: disc; */
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}
.content-detail ul li{
    line-height: 1.6;
}
.item.item_address img {
    height: 200px;
}

.register_advisory .form_register.contact-form textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
  }

@media (min-width:1350px) {
    .don-tuyen .col-lg-2{
        flex: 0 0 20%;
        max-width:20%;
    }
}
@media (min-width:1200px) and (max-width:1349px){
    .don-tuyen .col-lg-2{
        flex: 0 0 25%;
        max-width:25%;
    }
    section.register_advisory.aos-init.aos-animate .form_register.contact-form textarea{
        height:91px;
    }
}
@media (min-width:992px)and (max-width:1199px){
    .don-tuyen .col-lg-2{
        flex: 0 0 33.333333%;
        max-width:33.333333%;
    }
    section.register_advisory.aos-init.aos-animate .form_register.contact-form textarea{
        height:91px;
    }
}
@media (max-width:767px){
    .content_center .container .row{
        flex-direction: column-reverse;
    }
    .register_advisory .form_regiser .btn_wrap .btn_submit{
        margin:0 auto;
    }
}
@media (max-width:575px){
    .don-tuyen .col-6{
        flex: 0 0 100%;
        max-width:100%;
    }
    .don-tuyen .img-dontuyen, .list_item .item_product .img_product img, .item-teachers .images-teachers{
        height: 265px;
    }
}
