/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Trirong:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
    overflow-x: hidden;
}

body {
    /*font-family: 'Open Sans', sans-serif;*/
    font-family: 'arial','Trirong', serif;
}

/*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;
    } 
}

.logo-section img {
    width: 160px;
    margin-top: 6px;
}

.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: 1;
}

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

.header-menu.fixed .menu-section ul {
    text-align: center;
}

.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: #ff7f50;
    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;
    padding-top: 172%;
}

.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-hightlight);
    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;
}

.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: 60px;
    color: var(--color-main);
    margin-bottom: 15px;
}

.info-company__item-title {
    font-weight: 700;
    font-size: 20px;
}

.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-container {
    float: right;
}

.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);
}

.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: 20px;
    }
}

@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%;
    }
}
/*End Responsive*/
.category-hx .category-slider__box-image {
    padding-top: 70%;
}

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

.skiptranslate > span {
    display: none !important;
}
@media (min-width: 992px) {
	.menu-section ul {
		text-align: center;
	}
	.logo-section img {
		margin: 10px 0px;
	}
}
header .footer-social a {
	background: #fff;
}