
html, body {
    overflow-x: hidden;
}


/*Header*/
@media (min-width: 1200px) {
   .header-logo {
        position: relative;
        background: #e1e1e1;
    }
    
    .header-logo:before {
        content: "";
        display: inline-block;
        width: calc(50% - 570px);
        left: 0px;
        top: 0px;
        position: absolute;
        height: 120px;
        background: #fff;
        z-index: 999;
    }
    
    .header-logo .logo-section {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 15px;
    }
    
    .header-logo .logo-section:before {
        content: "";
        width: 220px;
        position: absolute;
        background: #e1e1e1;
        left: 0;
        top: 0px;
        border-bottom: 37px solid #fff;
        border-right: 35px solid transparent;
    }
    
    .header-logo .logo-section:after {
        content: "";
        display: inline-block;
        background: none;
        width: 220px;
        position: absolute;
        left: 0;
        top: 37px;
        z-index: 999;
        border-top: 83px solid #fff;
        border-right: 75px solid transparent;
    }
    
    .header-logo .logo-section a {
        padding: 0;
        position: relative;
        z-index: 1000;
        top: 0;
        left: 0;
        padding-top: 5px;
        display: block;
    } 
	.menu-section ul {
	    text-align: center;
	}
}

.logo-section img {
    width: 160px;
    margin-top: 6px;
    height: 50px;
    object-fit: contain;
}

.header-search {
    margin-left: 20px;
}

.logo-section__text {
    font-size: 24px;
    line-height: 1.2;
    margin-top: 4px;
    color: var(--color-main);
    font-weight: 600;
}

.header-menu {
    background-color: var(--color-main);
    z-index: 10;
}

.header-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 15%);
}

.is-mobile .menu-section {
    background-color: var(--black);
}
.fixed {
    -webkit-animation-name: fadeInDown;
    -webkit-animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: anim_titles;
    -moz-animation-duration: 5s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: normal;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -webkit-animation-duration: .7s;
    -moz-animation-duration: .7s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
}

.header-main > .container > .row > .col-md-12 {
    display: flex;
    align-items: center;
}

.logo-main {
    flex: 1;
}

.header-topbar {
    background: #036b9f;
    padding: 4px 0;
}

.header-topbar .footer-social a {
    width: 36px;
    height: 36px;
    padding: 5px;
}
/*End Header*/

/*Header Phone*/
.phone-box a {
    color: var(--white);
    margin-right: 15px;
    padding: 5px 10px;
    background: var(--color-main);
    display: inline-block;
    border-radius: 5px;
    font-size: 18px;
    float: right;
}

.phone-box a .icon {
    font-size: 18px;
    padding-right: 25px;
    position: relative;
    display: inline-block;
}

.phone-box a .icon:before {
    content: "";
    position: absolute;
    top: -100%;
    right: 10px;
    width: 4px;
    height: 300%;
    background: var(--white);
    transform: rotate(40deg);
}

.phone-box a .icon i {
    margin-right: 5px;
}
/*End Header Phone*/

/*Banner Home*/
.banner-home {
    background-size: cover;
    background-position: center;
}

.banner-home__wrap {
    display: flex;
    align-items: center;
    padding: 50px 0 80px;
    flex-wrap: wrap;
}

.banner-home__content {
    width: 40%;
}

.banner-home__image {
    width: 60%;
}

.banner-home__title {
    font-size: 46px;
    color: var(--color-main);
    line-height: 1.4;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: 300;
}

.banner-home__title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 70%;
    border-bottom: 1px dotted var(--color-main);
}

.banner-home__desc {
    font-size: 16px;
    color: var(--color-main);
    line-height: 1.5;
}

.banner-home__button-full {
    display: inline-block;
    color: var(--white);
    background: var(--color-main);
    padding: 10px 36px;
    border-radius: 45px;
    margin-top: 10px;
    border: 2px solid var(--color-main);
}

.banner-home__button-full:hover {
    color: var(--white);
    background: var(--orange);
    border: 2px solid var(--orange);
}

.banner-home__button-outline {
    display: inline-block;
    color: var(--color-main);
    padding: 10px 36px;
    border-radius: 45px;
    margin-top: 10px;
    border: 2px solid var(--color-main);
}

.banner-home__button-outline:hover {
    color: var(--white);
    background: var(--color-main);
}

.banner-home__image img {
    width: 100%;
    transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s;
}

.banner-home__image img:hover {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
/*End Banner Home*/

/*Category*/
.category-slider {
    margin-top: 20px;
}

.category-slider__box {
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
    border-radius: 5px;
    border: 4px solid var(--color-main);
}

.category-slider__box-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.category-slider__box-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s;
}

.category-slider__box-text {
    transition: transform .3s;
    transform: scale(1) translateZ(0) translateY(5px) !important;
}

.category-slider__box-text .sv-title {
    margin: 0;
    text-align: center;
    padding: 4px;
    font-weight: bold;
    color: var(--color-main);
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 58px;
}

.category-slider__box:hover .category-slider__box-image img {
    opacity: .7;
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.category-slider__box:hover .category-slider__box-text {
    transform: scale(1) translateZ(0) translateY(0) !important;
}
/*End Category*/

/*Slide Course*/
.item-course {
    text-align: center;
    border-radius: 8px;
    background-color: #ffffff;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
    overflow: hidden;
    margin-bottom: 20px;
}

.item-course__image {
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
    position: relative;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.item-course__image-zoom {
    position: relative;
    padding-top: 58%;
}

.item-course__image a {
    display: block;
}

.item-course__image img {
    max-width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    transform: translateZ(0);
    margin: 0 auto; 
    transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s;
}

.item-course__box-text {
    padding: 10px;
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
}

.item-course__title {
    margin-bottom: 0;
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 42px;
    line-height: 1.4;
}

.item-course__box-text a {
    font-weight: bold;
    font-size: 15px;
    text-align: left;
    color: var(--color-main);
    text-transform: uppercase;
}

.item-course:hover {
    background: var(--color-main);
}

.item-course:hover .item-course__image {
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.item-course:hover .item-course__image-zoom img {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.item-course:hover .item-course__box-text {
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
    background-color: var(--white);
}
/*End Slide Course*/

/*Banner Slider*/
.banner-slider {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 20px;
}

.banner-slider__item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.banner-slider__box {
    position: relative;
    -webkit-box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    border-radius: 8px;
    overflow: hidden;

}

.banner-slider__box-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slider__box:hover {
    margin-top: -10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.banner-slider__box-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 1;
}

.banner-slider__box-text p {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.4;
    color: var(--white);
    text-align: center;
}
/*End Banner Slider*/

/*Box Title*/
.box-title {
    display: flex;
    align-items: center;
}

.box-title__icon {
    max-height: 100px;
    margin-right: 20px;
}

.box-title__main {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-main);
}

.title-section__icon {
    max-height: 50px;
}
/*End Box Title*/

/*Why Choose*/
.why-choose {
    -webkit-box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    padding-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.why-choose__wrap {
    display: flex;
    align-items: stretch;
    margin-top: 15px;
    flex-wrap: wrap;
}

.why-choose__list {
    width: 50%;
    padding: 15px;
}

.why-choose__image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.why-choose__image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose__box {
    display: flex;
    text-align: justify;
}

.why-choose__box-image {
    max-width: 42px;
    margin-right: 15px;
}

.why-choose__box-image img {
    max-width: 100%;
}

.why-choose__box-text {
    flex: 1;
}

.why-choose__box-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
    color: var(--color-main);
}

.why-choose__view-more {
    display: inline-block;
    background: var(--color-main);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 6px;
}

.why-choose__view-more:hover {
    background: var(--color-hightlight);
    color: var(--white);
}
/*End Why Choose*/

/*News Slide*/
.news-slide .article-item {
    border-radius: 8px;
    background: var(--white);
    -webkit-box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    margin-bottom: 10px;
    overflow: hidden;
}

.news-slide .article-item .inner-image {
    margin-bottom: 0;
}

.news-slide .article-item .inner-content {
    padding: 5px 15px 20px;
    transition: transform .3s;
    transform: scale(1) translateZ(0) translateY(10px);
}

.news-slide .article-item:hover .inner-content {
    transform: scale(1) translateZ(0) translateY(0);
}

.news-slide .article-item .inner-content .article-info {
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 5px;
}

.news-slide .article-item .article-title {
    margin-bottom: 0;
}
/*End News Slide*/

/*Events Slide*/
.events-slide .article-item .article-info {
    position: relative;
    padding-bottom: 2px;
    margin-bottom: 6px;
}

.events-slide .article-item .article-info:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: rgba(0,0,0,0.1);
}

.events-slide .article-item .inner-image {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 8px;
}

.events-slide .article-item .inner-image img {
    transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s;
}

.events-slide .article-item:hover .inner-image img {
    opacity: .7;
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.events-slide .article-item .inner-content {
    transition: transform .3s;
    transform: scale(1) translateZ(0) translateY(10px);
    padding-bottom: 10px;
}

.events-slide .article-item:hover .inner-content {
    transform: scale(1) translateZ(0) translateY(0);
}
/*End Events Slide*/

/*Form Info*/
.form-info {
    padding: 20px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.form-info__head {
    text-align: center;
    margin-bottom: 20px;
}

.form-info__head-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.form-info__head-desc {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--white);
}

.form-info .form-group {
    position: relative;
}

.form-info .form-group > i {
    position: absolute;
    top: 14px;
    left: 10px;
    font-size: 20px;
    color: #999;
}

.form-info .form-group input {
    height: 46px;
}

.form-info .form-group input, .form-info .form-group textarea {
    padding-left: 36px;
    -webkit-box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    border-radius: 8px;
}

.form-info .btn-submit {
    background: var(--color-highlight);
    border-radius: 25.5px;
    -webkit-box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    padding: 0 50px!important;
    height: 46px;
    line-height: 46px !important;
    font-weight: 700;
    font-size: 16px;
}

.form-info .btn-submit:hover {
    background: var(--color-text);
}
/*End Form Info*/

/*Button Call*/
.hotline-phone-ring-wrap {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999999;
}

.hotline-phone-ring {
	position: relative;
	visibility: visible;
	background-color: transparent;
	width: 110px;
	height: 110px;
	cursor: pointer;
	z-index: 11;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transition: visibility .5s;
	left: 0;
	bottom: 0;
	display: block;
}

.hotline-phone-ring-circle {
	width: 87px;
	height: 87px;
	top: 10px;
	left: 10px;
	position: absolute;
	background-color: transparent;
	border-radius: 100%;
	border: 2px solid #0068ff;
	-webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
	animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
	transition: all .5s;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
	width: 57px;
	height: 57px;
	top: 25px;
	left: 25px;
	position: absolute;
	background-color: rgb(0 132 255 / 70%);
	border-radius: 100%;
	border: 2px solid transparent;
	-webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
	animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
	transition: all .5s;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.hotline-phone-ring-img-circle {
	background-color: #0068ff;
	width: 33px;
	height: 33px;
	top: 37px;
	left: 37px;
	position: absolute;
	background-size: 20px;
	border-radius: 100%;
	border: 2px solid transparent;
	-webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
	animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hotline-phone-ring-img-circle .pps-btn-img {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	color: var(--white);
}

.hotline-phone-ring-img-circle .pps-btn-img i {
	font-size: 20px;
	transform: rotate(317deg);
}

.hotline-bar {
	position: absolute;
	background: rgb(0 132 255 / 75%);
	height: 40px;
	width: 200px;
	line-height: 40px;
	border-radius: 3px;
	padding: 0 10px;
	background-size: 100%;
	cursor: pointer;
	transition: all 0.8s;
	-webkit-transition: all 0.8s;
	z-index: 9;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.1);
	border-radius: 50px !important;
	/* width: 175px !important; */
	left: 33px;
	bottom: 37px;
}

.hotline-bar>a {
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	text-indent: 50px;
	display: block;
	letter-spacing: 1px;
	line-height: 40px;
	font-family: Arial;
}

.hotline-bar>a:hover,
.hotline-bar>a:active {
	color: #fff;
}

/**Danh sÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ch bÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â i viÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿t*/
.breadcrumbs-section {
    font-size: 15px !important;
}

.font-15 {
    font-size: 15px !important;
}

@-webkit-keyframes phonering-alo-circle-anim {
	0% {
		-webkit-transform: rotate(0) scale(0.5) skew(1deg);
		-webkit-opacity: 0.1;
	}
	30% {
		-webkit-transform: rotate(0) scale(0.7) skew(1deg);
		-webkit-opacity: 0.5;
	}
	100% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		-webkit-opacity: 0.1;
	}
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
	0% {
		-webkit-transform: rotate(0) scale(0.7) skew(1deg);
		opacity: 0.6;
	}
	50% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		opacity: 0.6;
	}
	100% {
		-webkit-transform: rotate(0) scale(0.7) skew(1deg);
		opacity: 0.6;
	}
}

@-webkit-keyframes phonering-alo-circle-img-anim {
	0% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
	}
	10% {
		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	20% {
		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
	30% {
		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	40% {
		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
	50% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
	}
	100% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
	}
}

@media (max-width: 768px) {
	.hotline-bar {
		display: none;
	}
}
/*End Button Call*/

/*Footer*/
.menu-footer__two-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-height: 200px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-social a {
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: var(--white);
    border-radius: 50%;
    padding: 8px;
}

.footer-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer .footer-social {
    margin-bottom: 20px;
}

footer .footer-social a {
    margin-bottom: 5px;
}
/*End Footer*/

/*Page*/
.blog-highlight > .row {
    margin-right: 0;
    margin-left: 0;
}

.blog-highlight > .row .col-12 {
    padding-right: 0;
    padding-left: 0;
}
.article-category a {
    display: none;
}

.article-category a:first-child {
    display: inline-block;
    background: var(--white);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.article-category a .comma-item {
    display: none;
}

.blog-highlight .article-description {
    display: none;
}

.blog-highlight .read-more {
    display: none;
}

.blog-highlight .article-item .inner-image {
    margin-bottom: 0;
}

.blog-highlight .inner-content {
    background: var(--color-main);
    padding: 10px 20px;
}

.blog-highlight .article-entry-info>span {
    font-size: 16px;
}

.blog-highlight .article-item .article-title {
    font-size: 22px;
    line-height: 1.4;
}

.blog-highlight .article-item .article-title a:hover {
    color: var(--white);
}

.blog-highlight .article-item:hover .inner-content {
    background: var(--orange);
}

.item-cate {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.item-cate .inner-image {
    padding-top: 23%;
    width: 40%;
    margin-bottom: 0;
}

.item-cate .inner-content {
    flex: 1;
    margin-left: 20px;
}

.info-company .col-md-4 {
    border-right: 1px dotted #707070;
}

.info-company .col-md-4:last-child {
    border-right: 0;
}

.info-company__title {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-company__item {
    text-align: center;
}

.info-company__item > i {
    font-size: 25px;
    margin-bottom: 0;
    margin-right: 10px;
}

.info-company__item-title {
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    margin-right: 10px;
}

.info-company__item-desc {
    font-size: 16px;
}

.form-contact .form-control {
    min-height: 50px;
    border-radius: 4px;
    background: #fff;
    -webkit-box-shadow: 0px 2px 4px rgb(0 0 0 / 16%);
    box-shadow: 0px 2px 4px rgb(0 0 0 / 16%);
    border: 0px;
}

.form-contact textarea {
    border-radius: 4px;
    background: #fff;
    -webkit-box-shadow: 0px 2px 4px rgb(0 0 0 / 16%);
    box-shadow: 0px 2px 4px rgb(0 0 0 / 16%);
    border: 0px;
}

.form-contact .btn-submit {
    -webkit-box-shadow: 0px 2px 4px rgb(0 0 0 / 16%);
    box-shadow: 0px 2px 4px rgb(0 0 0 / 16%);
    border: 0px;
    min-height: 50px;
    font-size: 18px;
    padding: 5px 64px!important;
    border-radius: 40px;
    font-weight: 700;
}

.live-ic {
    position: fixed;
    right: 24px;
    bottom: 80px;
}

.live-ic li.facebook {
    background: #0084ff!important;
}

.live-ic li.zalo {
    background: #0068ff!important;
}

.live-ic li.widget {
    background: #03a84e!important;
}

.live-ic li {
    list-style: none;
    width: 44px;
    height: 44px;
    line-height: 44px;
    display: block!important;
    border: none!important;
    font-size: 18px!important;
    color: #fff!important;
    text-align: center!important;
    position: relative;
    border-radius: 50%!important;
    cursor: pointer!important;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.11);
    margin-bottom: 10px;
}

.live-ic li .image {
    display: block;
}

.live-ic img {
    max-width: 100%;
}

.article-description {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
}

.article-content {
    font-family: "Montserrat", Arial, sans-serif;
}
/*End Page*/

/*Gallery*/

.slider.slider-nav .slick-slide{
    margin: 0 1px;
}
.slider.slider-for .slick-slide{
    margin: 0;
}
.gallery-box {
    overflow: hidden;
}

.gallery-item__for {
    position: relative;
    padding-top: 75%;
}

.gallery-item__for img, .gallery-item__for iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item__nav {
    position: relative;
    padding-top: 65%;
}

.gallery-item__nav img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-box .slick-list {
    margin: 0px -4px;
}

.gallery-box .slider-nav {
    margin-top: 4px;
}

.gallery-item__for.slick-slide {
    margin: 0 2px;
}

.gallery-item__nav.slick-slide {
    margin: 0 2px;
    border: 2px solid transparent;
}

.gallery-item__nav.slick-current {
    border: 2px solid var(--color-main);
}
/*End Gallery*/

/*Responsive*/

.is-mobile .menu-section>ul>li>a {
    color: var(--white);
}

.is-mobile .menu-section>ul>li:hover>a:before {
    display: none;
}

.is-mobile .menu-section .entry-menu.dropdown li:hover>a {
    color: var(--white);
}
.language-picker{
    color: var(--black);
}
.is-mobile a.language-picker {
    color: var(--white);
}

.is-mobile .language-section {
    float: right;
}

.is-mobile .header-translate {
    text-align: center;
}

@media (max-width: 1199px) {
    .menu-footer__two-col {
        max-height: initial;
    }
}

@media (max-width: 991px) {
    .why-choose__list {
        width: 100%;
    }
    
    .why-choose__image {
        flex: auto;
    }
}

@media (max-width: 767px) {
    .banner-home__content {
        width: 100%;
    }
    
    .banner-home__image {
        width: 100%;
    }
    
    .banner-home__title {
        font-size: 32px;
    }
    
    .title-section {
        font-size: 24px;
        line-height: 36px;
    }
    
    .item-course__box-text {
        padding: 5px;
    }
    
    .item-course__box-text a {
        font-size: 11px;
    }
    
    .category-slider__box-text .sv-title {
        font-size: 12px;
        height: 50px;
    }
    
    .box-title__icon {
        max-height: 50px;
        margin-right: 10px;
    }
    
    .box-title__main {
        font-size: 20px;
    }
    
    .why-choose__box-title {
        font-size: 14px;
    }
    
    .why-choose__box-desc {
        font-size: 12px;
    }
    
    .why-choose__box-image {
        max-width: 40px;
    }
    
    .article-title-detail {
        font-size: 24px;
    }
    
    .info-company .col-md-4 {
        border-right: 0;
    }
    
    .info-company__item {
        margin-bottom: 30px;
    }
    
    .info-company__item > i {
        margin-bottom: 5px;
    }
    
    .category-slider {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .item-cate .inner-image {
        padding-top: 70%;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .item-cate .inner-content {
        margin-left: 0;
    }
    
    /*.banner-slider__box {*/
    /*    padding-top: 112%;*/
    /*}*/
    .img-fluid-mobile {
        height: 36vw;
        object-fit: cover;
    }
}

/*End Responsive*/
.category-hx .category-slider__box-image {
    padding-top: 70%;
}

.skiptranslate {
    font-size: 0 !important;
}

.skiptranslate > span {
    display: none !important;
}

.image_gv {
    padding-top: 98% !important;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid var(--color-main);
}

.image_fb {
    /* padding: 0 !important; */
    /* overflow: hidden; */
    /* height: 100px; */
    /* width: 100px; */
    /* text-align: center; */
    /* border-radius: 50%; */
    display: inline-block;
    width: 285px;
    position: relative;
    z-index: 1;
    margin: 0 !important;
}
.image_fb +.inner-content {
    position: absolute;
    top: 35px;
    bottom: 25px;
    right: 0;
    left: 285px;
    padding: 20px 20px 15px;
    width: calc(100% - 285px);
}
@media (max-width: 1199px){
    .image_fb {
        width: 100%;
        display: block;
    }
	.image_fb +.inner-content {
	    position: inherit;
	    top: unset;
	    left: 0;
	    bottom: unset;
	    width: 100%;
	}
}

.w_custom {
    margin: auto;
    width: 60%;
}

.arrow_visible .slick-next, 
.arrow_visible .slick-prev {
    opacity: 1 !important;
    filter: opacity(1) !important;
}

.arrow_visible .slick-next:before, 
.arrow_visible .slick-prev:before {
    font-size: 40px;
    color: var(--color-hightlight);
}

.txt_custom,
.w_custom .title_test {
    margin: 0 !important;
}

.w_custom .article-description {
    color: #161616d4 !important;
}

.txt_custom a {
    text-transform: capitalize !important;
    font-size: 14px !important;
    padding: 0 !important;
}

.txt_custom:first-child a {
    color: #928e8e;
}

.txt_custom:last-child a {
    color: var(--color-main);
}

.title_test a {
    font-size: 1.4rem;
}




.btn-link-popup {
    position: absolute;
    bottom: 21%;
    left: 36%;
}

.btn-link-popup a {
    display: inline-block;
    background: var(--color-main);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
}

.khoa-hoc-slider .modal-dialog {
    max-width: 900px;
}

.khoa-hoc-slider .modal-dialog .modal-content {
    padding: 30px;
    border-radius: 6px;
}

.khoa-hoc-slider .modal-dialog .modal-content .modal-body {
    padding: 35px 45px;
    border: 2px dashed #FFC955;
    border-radius: 6px;
    color: #000;
}

.khoa-hoc-slider .modal-dialog button.close {
    font-size: 20px;
    width: 46px;
    height: 46px;
    background-color: #fff;
    right: -14px;
    top: -16px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -moz-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    opacity: 1;
    z-index: 99;
}

.khoa-hoc-slider .modal-dialog .title {
    font-size: 30px;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 40px;
}

.img-left {
    position: absolute;
    bottom: 0;
    right: 0;
}

.img-left img {
    max-width: 290px;
}

.khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-group .form-control {
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #E8E8E8;
    height: 30px !important;
    padding: 5px 0;
    border-radius: 0;
    line-height: 30px;
    min-height: auto;
}

.khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-check {
    font-weight: normal;
    font-size: 16px;
    padding-left: 35px;
    margin-bottom: 20px;
}

.khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 25px;
    width: 25px;
    top: 0px;
    margin: 0px;
    z-index: 1;
    left: 0;
}

.khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-check span.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 2px solid #f0932b;
    border-radius: 2px;
}

.khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-check span.checkmark:after {
    left: 8px;
    top: 2px;
    width: 7px;
    height: 12px;
    border: solid #f0932b;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}

.khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-check input:checked ~ span.checkmark:after {
    display: block;
}

.khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-check label.form-check-label {
    font-weight: 400;
    font-size: 16px;
}

.khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-group span.btn.btn-submit {
    border-radius: 4px;
    background: var(--color-hightlight);
    width: 100%;
    height: 45px;
    line-height: 45px !important;
    padding: 0 !important;
    min-height: auto;
    font-size: 14px;
    font-weight: 400;
}
.khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-contact {
    padding-right: 30px;
}

.section-count-why {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.section-count-why .item-counter {
    padding: 25px;
}

.section-count-why .item-counter .item-top {
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
    justify-content: center;
}

.section-count-why .item-counter .item-top .icon {
    margin-right: 10px;
}

.section-count-why .item-counter .item-top .counter-value, .section-count-why .item-counter .item-top>span {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-right: 5px;
    line-height: 1;
}

.section-count-why .item-counter .description {
    font-size: 16px;
    color: #fff;
    height: 51px;
    overflow: hidden;
    font-weight: 700;
    text-align: center;
}

.section-count-why .item-counter .item-top .icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.section-count-why .item-counter .item-top>span {
    font-size: 23px;
}

.section-count-why .row>div:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 2px;
    height: 72px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-count-why .row>div:last-child:before {
    display: none;
}
.phone-box {
    overflow: hidden;
}

.section-banner-vscn {
    position: relative;
}

.section-banner-vscn .img-banner img {
    height: 29vw;
    width: 100%;
    object-fit: cover;
}

.section-banner-vscn .contect-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.section-banner-vscn .contect-info .info .title {
    color: var(--white);
    font-size: 48px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-banner-vscn .contect-info .info .title span {
    display: block;
    font-weight: 700;
}

.section-banner-vscn .contect-info .info .description {
    max-width: 400px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.3;
}
.section-list-reason {
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -50px;
}
.section-list-reason .item-reason {
    height: 400px;
    position: relative;
}

.section-list-reason .item-reason .item-content {
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 3;
    padding: 70px 25px;
    padding-top: 31%;
    padding-bottom: 0;
    max-height: 100%;
    overflow: auto;
    opacity: 0;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    visibility: hidden;
    pointer-events: all;
}

.section-list-reason .item-reason>span.icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.section-list-reason .item-reason>span.icon:before,.section-list-reason .item-reason>span.icon:after {
    content: "";
    display: block;
    height: 1px;
    width: 13px;
    background: #fff;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}

.section-list-reason .item-reason>span.icon:after {
    -webkit-transform: translate(-50%,-50%) rotate(90deg);
    -ms-transform: translate(-50%,-50%) rotate(90deg);
    transform: translate(-50%,-50%) rotate(90deg);
}

.section-list-reason .item-reason .title-reason {
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    font-size: 1.1428571429rem;
    line-height: 1.2;
    color: #fff;
    font-size: 19px;
    position: absolute;
    padding: 0 25px;
    top: 50%;
    margin-top: 50px;
}

.section-list-reason .item-reason:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgb(39 164 221);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
}

.section-list-reason .item-reason:hover .item-content {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.section-list-reason .item-reason:hover:after {
    opacity: 1;
}

.section-list-reason .item-reason:hover .title-reason {
    margin-top: 30px;
    opacity: 0;
}

.section-list-reason .item-reason:hover span.icon {
    top: 40%;
    background: hsla(0,0%,100%,.4);
    opacity: 0;
}

.section-list-reason .item-reason:hover .item-content .title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    margin-bottom: 30px;
    line-height: 1.4;
}

.section-list-reason .item-reason:hover .item-content .title:before {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: #fff;
    margin-top: 17px;
    bottom: -10px;
    position: absolute;
}

.section-list-reason .item-reason:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    background: #fff;
    height: calc(100% - 80px);
    transform: translateY(-50%);
}
.section-khai-phong .item-left .title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: black;
}

.section-khai-phong .item-left .title span {
    display: block;
    font-weight: 700;
}

.section-khai-phong .item-left p {
    max-width: 500px;
    color: black;
}
.section-giang-vien .img-giang-vien img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 100%;
    border: 2px solid var(--color-highlight);
    margin: 0 auto;
}

.section-giang-vien .img-giang-vien {
    text-align: center;
    margin-bottom: 15px;
}

.section-giang-vien  .entire-content .inner-title {
    font-weight: 700;
    font-size: 16px;
    margin: 10px 0;
    color: black;
}

.section-giang-vien .entire-content  .inner-description {
    font-size: 14px;
    color: black;
}
.section-list-reason>.row>div:last-child .item-reason::before {
    display: none;
}
.section-video {
    margin-top: -50px;
}

.section-video .video .inner-image {
    border-radius: 10px;
    overflow: hidden;
}

.section-video .info-text {
    padding-top: 100px;
    color: black;
}
.videotvc-lefarm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.videotvc-lefarm-icon {
    position: relative;
    display: block;
}
.videotvc-lefarm-icon .icon {
    position: relative;
    display: inline-block;
}
.videotvc-lefarm-icon .icon .border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff;
    animation: squares 2.9s linear 0s infinite;
    -webkit-animation: squares 2.9s linear 0s infinite;
    -ms-animation: squares 2.9s linear 0s infinite;
    -o-animation: squares 2.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
    border-radius: 50%;
    border-width: 1px!important;
}
.videotvc-lefarm-icon .icon .border-animation.border-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    border-width: 2px!important;
}

.videotvc-lefarm-icon .icon .border-animation.border-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
        border-width: 3px!important;
}

.videotvc-lefarm-icon span.icon-play {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    color: #ffffff;
    font-size: 35px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.section-video .video .inner-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000021;
    z-index: 1;
}
/** squares **/

@-moz-keyframessquares {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0;
    }
}
@-moz-keyframes squares {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -moz-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1;
    }
    100% {
        -moz-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0;
    }
}
@-o-keyframes squares {
    0% {
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -o-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1;
    }
    100% {
        -o-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0;
    }
}
@keyframes squares {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(1.24);
        -moz-transform: scale(1.24);
        -o-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -o-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0;
    }
}
.section-box-form-ct {
    background: var(--color-main);
}

.section-form-chuong-trinh .form-group {
    margin-bottom: 0;
}

.section-form-chuong-trinh .title {
    text-align: center;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
}

.section-form-chuong-trinh .form-group span.btn.btn-submit {
    width: 100%;
    border-radius: 5px;
    background: var(--color-highlight);
    padding: 5px 5px!important;
}
.section-lo-trinh-hoc .img {
    padding-top: 41.25%;
}

.section-lo-trinh-hoc .img img {
    object-fit: contain;
}
.title-section {
    font-size: 36px;
    color: var(--color-main);
    font-weight: 700;
    margin-bottom: 10px;
}
.section-lo-trinh-hoc .title-section {
    font-size: 30px;
    color: var(--black);
}
.section-list-target .item-reason .content-left .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 30px;
    color: black;
}

.content-left .description {
    color: black;
}
.section-list-story {
    padding: 50px 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.section-list-story .title-section {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 30px;
}

.section-list-story .item-story .content-left {
    background: #fff;
    padding: 30px 15px 30px;
}

.section-list-story .item-story .content-left .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 14px;
}

.section-list-story .videotvc-lefarm-icon span.icon-play {
    width: 60px;
    height: 60px;
    line-height: 60px;
}
.section-article-chuong-trinh .article-item .inner-content .article-title {
    height: 45px;
    overflow: hidden;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.section-article-chuong-trinh .article-item .inner-image .link-more {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.section-article-chuong-trinh .article-item .inner-image .link-more a {
    display: inline-block;
    padding: 10px 15px;
    background: #000;
    color: #fff;
}

.section-article-chuong-trinh .article-item .inner-image .link-more a:hover {
    background: var(--color-main);
}

.link-more-all {
    text-align: right;
}

.link-more-all a {
    display: inline-block;
    padding: 10px 30px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.link-more-all a:hover {
    background: var(--color-main);
}
.section-article-chuong-trinh .title-section {
    color: var(--black);
    margin-bottom: 20px;
}
.section-list-story .item-story .inner-image {
    padding-top: 120%;
}
.section-article-page article.article-item .inner-image {
    margin-bottom: 0;
}

.section-article-page article.article-item .inner-content {
    background: #fff;
    padding: 15px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.04);
    margin: 0 auto;
    z-index: 1;
    width: calc(100% - 40px);
    margin-top: -30px;
    position: relative;
    min-height: 95px;
    border-radius: 4px;
}

.section-article-page article.article-item .inner-content .article-title {
    margin-bottom: 0;
}
.section-article-recruitment article.article-item {
    display: flex;
    align-items: center;
    box-shadow: 4px 4px 14px 2px rgb(0 0 0 / 23%);
    padding: 10px;
    border-radius: 5px;
}

.section-article-recruitment article.article-item .item-left {
    flex: 0 0 25%;
    max-width: 25%;
}

.section-article-recruitment article.article-item .item-left .inner-image {
    margin-bottom: 0;
    border-radius: 5px;
    overflow: hidden;
}

.section-article-recruitment article.article-item .inner-content {
    flex: 0 0 75%;
    max-width: 75%;
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-article-recruitment article.article-item .inner-content .link-contact a {
    display: inline-block;
    width: 100px;
    background: var(--color-highlight);
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    color: var(--white);
}

.section-article-recruitment article.article-item .inner-content .name-description .article-title {
    font-size: 16px;
}

.section-article-recruitment article.article-item .inner-content .name-description .article-description {
    font-weight: 400;
}
@media (min-width:768px){
    .section-list-target .item-reason:nth-child(2n)>.row>div:nth-child(1) {
        order: 2;
    }
}
@media (min-width:992px){
    .section-list-target .item-reason .content-left {
        margin-right: 90px;
    }
    
    .section-list-target .item-reason:nth-child(2n)>.row>div:nth-child(1) .content-left {
        margin-right: 0;
        margin-left: 90px;
    }
}
.section-contact-content {
    position: relative;
    padding-top: 50px;
}

.section-contact-content:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 68%;
    background: #f6f6f6;
    content: '';
}

.section-contact-content .info .title-contact {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: black;
}

.section-contact-content .info .info-company__item {
    text-align: left;
    display: flex;
    margin-bottom: 15px;
    color: black;
}

.section-map-contact iframe {
    width: 100%;
    height: 600px;
}
.is-mobile .menu-section .has-child>.entry-menu>li:last-child a {
    border-bottom: 0;
}

.is-mobile .menu-section .has-child>.entry-menu>li:first-child a {
    border-top: 1px solid #fff;
}
.social-footer-section iframe {
    height: 240px;
}
@media (max-width:1200px){
    .section-list-reason {
        margin-top: 30px;
    }
    
    
    
    .section-banner-vscn .contect-info .info .title {
        font-size: 32px;
    }
    
    .section-banner-vscn .contect-info .info .description {
        font-size: 14px;
    }
    
    .section-list-reason .item-reason .title-reason {
        display: none;
    }
    
    .section-list-reason .item-reason>span.icon {
        display: none;
    }
    
    .section-list-reason .item-reason .item-content {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
        padding: 30px 20px;
        position: inherit;
    }
    
    .section-list-reason .item-reason:after {
        display: none;
    }
    
    .section-list-reason .item-reason .item-content .description {
        font-size: 13px;
    }
    
    .section-list-reason .item-reason {
        height: 100%;
    }
    
    .section-list-reason .item-reason .item-content .title {
        font-weight: 700;
    }
    .section-article-chuong-trinh .article-item .inner-content .article-title {
        font-size: 14px;
        line-height: 1.5;
    }

}
@media (max-width:767px){
    .section-count-why .row>div:nth-child(2):before {
        display: none;
    }
    .btn-link-popup a {
        font-size: 14px;
        padding: 8px 20px;
        width: 100%;
        border-radius: 0;
        text-align: center;
    }
    
    .btn-link-popup {
        position: inherit;
    }
    .khoa-hoc-slider .modal-dialog .modal-content {
        padding: 20px;
    }
    
    .khoa-hoc-slider .modal-dialog .modal-content .modal-body {
        padding: 30px 30px;
    }
    
    .khoa-hoc-slider .modal-dialog .title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .khoa-hoc-slider .modal-dialog .modal-content .modal-body .form-contact {
        padding-right: 0;
    }
    .section-list-reason {
        margin-top: 30px;
    }
    
    .section-banner-vscn .img-banner img {
        height: 70vw;
    }
    
    .section-banner-vscn .contect-info .info .title {
        font-size: 25px;
    }
    
    .section-banner-vscn .contect-info .info .description {
        font-size: 14px;
    }
    .section-khai-phong .item-left .title {
        font-size: 21px;
    }
    .section-video {
        margin-top: 30px;
    }
    
    .section-video .info-text {
        padding-top: 30px;
    }
	.section-form-chuong-trinh .form-group {
	    margin-bottom: 10px;
	}
	
	.section-form-chuong-trinh .row {
	    margin-right: -5px;
	    margin-left: -5px;
	}
	
	.section-form-chuong-trinh .row>div {
	    padding-right: 5px;
	    padding-left: 5px;
	}
	.section-form-chuong-trinh .title {
        font-size: 15px;
    }
    .section-lo-trinh-hoc .title-section {
        font-size: 20px;
    }
    .section-list-target .item-reason .content-left .title,.section-list-story .title-section {
        font-size: 24px;
    }
    .section-article-recruitment article.article-item .inner-content {
        display: flex;
        flex-direction: column;
    }
        
    
    
    .section-contact-content {
        padding-top: 40px;
    }
    
}

@media (max-width:992px){
    .section-contact-content .content .img {
        display: none;
    }
    
    .section-contact-content:before {
        display: none;
    }
	.section-banner-vscn .img-banner img {
        height: 70vw;
    }
}

@media (min-width:767px) and (max-width:1200px){
    .section-video {
        margin-top: 40px;
    }
    .section-video .info-text {
        padding-top: 0;
    }
	.section-form-chuong-trinh .form-group {
	    margin-bottom: 20px;
	}
	.section-list-target .item-reason .content-left .title {
        font-size: 20px;
    }
    .section-list-story .item-story .content-left .description {
        height: 142px;
        overflow: hidden;
    }
}

@media (min-width:1400px) and (max-width:1600px){
    .btn-link-popup {
        left: 34%;
    }
}
@media (min-width:1200px) and (max-width:1400px){
    .btn-link-popup {
        left: 30%;
    }
}

.goog-te-gadget {
    font-family: arial;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

.title-footer {
    color: var(--white);
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 5px;
    line-height: 1.6;
    font-size: 16px;
}
.footer-menu-section ul li a {
    color: var(--white);
    font-size: 15px;
}
.coppyright-payment {
	border-top: 1px solid rgba(102, 102, 102, 0.2);
}

.coppyright-payment .coppyright {
	margin-bottom: 0;
	color: var(--white);
}
.py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.article-item .article-title {
    line-height: 24px;
    font-weight: 600;
    font-size: 20px !important;
    margin-bottom: 10px;
}
.article-item .article-title a {
    color: var(--color-text);
}
.article-entry-info {
    font-size: 12px;
    margin-bottom: 9px;
}
.text-black{
    color: #000;
}
.swiper-slide--description {
    text-align: center;
    font-size: 25px;
    color: white;
    font-weight: 700;
}
.bg-cth{
    background: url("http://cdn1797.cdn4s4.io.vn/media/bg-wheres.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    padding: 0 0 20px;
}