/*== SECTION 1 - BANNER HOME ==*/
.home__slides .banner__overlay {
    min-height: calc(100vh - 50px);
}
.home__slides video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.home__slides .item .video-container {
	position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.home__slides .item .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.home__slides .item .video-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.home__slides .item img {
    width: 100%;
}
.home__slides-wrapper .slick-prev {
    left: 0;
}
.home__slides-wrapper .slick-next {
    right: 0;
}
.home__slides-wrapper .slick-arrow::before {
    color: #fff;
    opacity: 1;
}
.home__slides .scrolldown {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding-bottom: 25px;
}
.home__slides .scrolldown::after {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), #000000e0);
    content: '';
    left: 0;
    padding-top: 120px;
}
.home__slides .scrolldown .wrapper {
    width: fit-content;
    cursor: pointer;
    margin: 0 auto;
}
.home__slides .scrolldown span.title {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 4px;
    position: relative;
    z-index: 1;
}
.home__slides .scrolldown .icon {
    animation: mover 1s infinite alternate;
    position: relative;
    z-index: 1;
}
@keyframes mover {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}
/*== END SECTION 1 - BANNER HOME ==*/
/*== SECTION 2 - ABOUT US ==*/
.home__about .container-fluid {
    padding-left: 15px;
}
@media (min-width: 1400px){
    .home__about .container-fluid {
        padding-left: 100px;
    }
}
.home__about .row {
	align-items: center;
}
.home__about-content, .home__whychoose-content {
    flex-direction: column;
}
.home__about-content .sub-title {
    font-size: 20px;
    color: var(--cl-sub);
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.home__about-gallery .item .p-relative::before {
    content: '';
    display: block;
    padding-bottom: 78%;
}
.home__about-gallery .item img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home__about-gallery .slick-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home__about-gallery .slick-prev {
    left: 10px;
}
.home__about-gallery .slick-next {
    right: 10px;
}
.home__about-gallery .slick-arrow:hover {
    animation: shakex-hover 1s ease-in-out 1;
}
@keyframes shakex-hover {
    16.65% {
        transform: translateX(8px) translateY(-50%);
    }
    33.3% {
        transform: translateX(-6px) translateY(-50%);
    }
    49.95% {
        transform: translateX(4px) translateY(-50%);
    }
    66.6% {
        transform: translateX(-2px) translateY(-50%);
    }
    83.25% {
        transform: translateX(1px) translateY(-50%);
    }
    100% {
        transform: translateX(0) translateY(-50%);
    }
}
/*== END SECTION 2 - ABOUT US ==*/
/*== SECTION 3 - WHY CHOOSE ==*/
.home__whychoose-gallery .wrapper,
body.safari .home__whychoose-gallery .wrapper {
    display: flex;
    flex-wrap: wrap;
	list-style-type: none;
	height: 100%;
}
.home__whychoose-gallery .wrapper .item,
body.safari .home__whychoose-gallery .wrapper .item {
	overflow: hidden;
	border-radius: 7px;
	cursor: pointer;
    margin: 0 12px 24px;
}
.home__whychoose-gallery .wrapper .item:last-child,
body.safari .home__whychoose-gallery .wrapper .item:last-child {
	margin-bottom: 0;
}
.home__whychoose-gallery .wrapper .group,
.home__whychoose-gallery .wrapper .group {
	width: 50%;
}
.home__whychoose-gallery .wrapper .group:nth-child(2) .item:first-child img,
.home__whychoose-gallery .wrapper .group:nth-child(1) .item:last-child img,
body.safari .home__whychoose-gallery .wrapper .group:nth-child(2) .item:first-child img,
body.safari .home__whychoose-gallery .wrapper .group:nth-child(1) .item:last-child img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
    object-fit: cover;
    z-index: 5;
}
.home__whychoose-gallery .wrapper .group:nth-child(2) .item:first-child::before,
.home__whychoose-gallery .wrapper .group:nth-child(1) .item:last-child::before,
body.safari .home__whychoose-gallery .wrapper .group:nth-child(2) .item:first-child::before,
body.safari .home__whychoose-gallery .wrapper .group:nth-child(1) .item:last-child::before {
	content: '';
	display: block;
	padding-bottom: 120%;
}
.home__whychoose-gallery .item {
    position: relative;   
}
.home__whychoose-gallery .item img {
    border-radius: 7px;
    object-fit: cover;
}
.home__whychoose-content .desc {
    color: var(--cl-main);
    font-size: 15px;
}
.home__whychoose-content .item {
    gap: 15px;
}
.home__whychoose-content .content {
    width: calc(100% - 50px);
}
.home__whychoose-content .icon {
    width: 40px;
    height: 40px;
    background-color: var(--cl-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.home__whychoose-content .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.home__whychoose-content .title {
    font-size: 18px;
}
.home__whychoose-content .item .desc * {
	font-size: 15px;
    color: var(--cl-main);
}
.home__whychoose-content .item .desc p:last-child {
	margin-bottom: 0;
}
/*== END SECTION 3 - WHY CHOOSE ==*/
/*== SECTION 4 - CORE VALUES ==*/
.home__core {
    background-color: #F7F7F7;
}
.home__core-col {
    flex-direction: column;
    padding: 0 2px;
}
.home__core-content {
    margin-left: 0;
    margin-right: 0;
}
.home__core-content .item {
    background-color: var(--cl-main);
    height: 100%;
	cursor: pointer;
}
.home__core-content .item .img {
	overflow: hidden;
}
.home__core-content .item:hover img {
	transform: scale(1.05);
}
.home__core-content .item img {
	height: 100%;
	width: 100%;
}
/*== END SECTION 4 - CORE VALUES ==*/
/*== SECTION 5 - LEARNING PROGRAM ==*/
.home__learning .desc::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
	width: 80px;
	height: 6px;
	background-color: var(--cl-sub);
}
.home__learning-box .img {
    height: 100%;
}
.home__learning-box .img::before {
	content: '';
	display: block;
	padding-bottom: 100%;
}
.home__learning-box .img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home__learning-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.home__learning .desc {
    color: var(--cl-main);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.home__learning-box {
    padding: 0 5px;
}
.home__learning-box .img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.home__learning-box .box-content {
    top: 0;
    z-index: 1;
    left: 5px;
    width: calc(100% - 10px);
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 57.5%, rgba(0, 0, 0, 0.7) 100%);
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px 20px;
    border-radius: 12px;
    overflow: hidden;
}
.home__learning-box .btn-view {
    background-color: var(--cl-third);
    border-color: var(--cl-third);
}
.home__learning-box .btn-view:hover {
    color: var(--cl-main);
    background-color: #fff;
    border-color: #fff;
}
.home__learning-box .title {
    font-size: 24px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}
.home__learning-box .content {
    opacity: 0;
    visibility: hidden;
    height: 0;
    color: #fff;
    transition: .4s;
}
.home__learning-box:hover .content {
    opacity: 1;
    visibility: visible;
    height: 140px;
}
.home__learning-box .box-des {
	font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*== END SECTION 5 - LEARNING PROGRAM ==*/
/*== SECTION 6 - POSTS ==*/
.home__news {
    background: linear-gradient(180deg, #FFFFFF 0%, #f7f7f7 100%);
}
.home__news .heading-title {
    margin-bottom: 40px;
}
.home__news-first {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.home__news .post-item {
    background-color: var(--cl-main);
    border-radius: 14px;
    height: 100%;
    padding: 5px;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}
.home__news .post-thumb {
	border-radius: 11px;
}
.home__news .post-item:hover .post-thumb img {
	transform: scale(1.1);
}
.home__news .post-thumb::before {
    content: '';
    display: block;
    padding-bottom: 65%;
}
.home__news .post-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 11px;
	transform: scale(1);
}
.home__news .post-content,
.home__news-first .title {
	display: flex;
    flex-direction: column;
    flex: auto;
}
.home__news .title {
    font-size: 16px;
}
.home__news .post-content .title a {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}
.home__news .btn-outline-white {
    margin-left: auto;
    margin-right: auto;
}
.home__news-second .post-content {
    flex: auto;
}
.home__news-second .title {
    font-size: 22px;
}
.home__news-second .excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    color: #fff;
}
.home__news-second .excerpt p {
    margin-bottom: 0;
    color: #fff;
    font-size: 18px;
}
.home__news-second .btn-outline-white {
    margin-left: 0;
}
.home__news .btn-view {
    margin-left: auto;
    margin-right: auto;
}
/*== END SECTION 6 - LEARNING PROGRAM ==*/
/*== SECTION 7 - VIDEO ==*/
.home__video .img::before, .about__video .img::before {
    padding-bottom: 61.5% !important;
}
.home__video-first .img::before, .about__video .img::before {
    padding-bottom: 56.25% !important;
}
.home__video .img img {
    border-radius: 5px !important;
}
.home__video-second .icon-play {
    width: 40px !important;
    height: 40px !important;
}
.home__video-second .icon-play::before {
    width: 52px !important;
    height: 52px !important;
}
.home__video-second .icon-play img {
    width: 16px !important;
    height: 16px !important;
}
.home__video-second .play-vid {
    gap: 15px;
    margin-bottom: 10px;
    flex: auto;
}
.home__video-second .play-vid:last-child {
    margin-bottom: 0;
}
.home__video-second .thumb {
    width: 40%;
}
.home__video-second .content {
    width: calc(60% - 15px);
}
.home__video .title {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
}
/*== END SECTION 7 - VIDEO ==*/
/*== SECTION 8 - PARENT TESTIMONIALS ==*/
.home__testimonials .box {
    margin-right: 12px;
    margin-left: 12px;
    padding: 40px 50px;
    border-radius: 15px;
    color: #fff;
    height: 100%;
}
.home__testimonials .slick-track {
    padding-top: 100px;
    display: flex;
}
.home__testimonials .item {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    flex: auto;
}
.home__testimonials-inf {
    transform: translateY(-90px);
    margin-bottom: -90px;
    font-size: 25px;
    font-weight: 700;
}
.home__testimonials-inf .img {
    margin-left: auto;
    margin-right: auto;
    width: 180px;
    height: 180px;
}
.home__testimonials-inf .img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    box-shadow: 0px 6px 9px 0px #00000021;
    object-fit: cover;
    background-color: #fff;
}
.home__testimonials-inf .name {
    color: #fff;
    font-size: 25px;
    margin-bottom: 5px;
}
.home__testimonials-inf .icon-quote {
    top: 110px;
    right: -20px;
    width: 80px;
}
.home__testimonials-inf .inf::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 115px;
    height: 1px;
    background-color: #fff;
}
.home__testimonials-wrapper .slick-dots {
    bottom: -40px;
}
.home__testimonials-wrapper .slick-arrow {
    top: calc(50% + 40px);
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid var(--cl-main);
}
.home__testimonials-wrapper .slick-arrow::before {
    color: var(--cl-main);
}
.home__testimonials-wrapper .slick-arrow:hover::before {
    color: #fff;
}
.home__testimonials-wrapper .slick-arrow:hover {
    background-color: var(--cl-main);
    border-color: #fff;
    box-shadow: 0px 6px 9px 0px #00000021;
}
.home__testimonials-wrapper .slick-prev {
    left: -10px;
}
.home__testimonials-wrapper .slick-next {
    right: -10px;
}
/*== END SECTION 8 - PARENT TESTIMONIALS ==*/
/*== SECTION 9 - CAMPUS ==*/
.home__campus, .home__form {
    background-color: #F2FFFB;
}
.home__campus .desc {
    max-width: 490px;
}
.home__campus-wrapper .img::before {
    content: '';
    display: block;
    padding-bottom: 105%;
}
.home__campus-wrapper .slick-track {
    padding: 20px 0;
}
.home__campus-wrapper .slick-arrow {
    display: none;
}
.home__campus-wrapper .img {
	border-radius: 16px;
}
.home__campus-wrapper .img img {
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0px 0px 10px 0px #0000002E;
}
/*== END SECTION 9 - CAMPUS ==*/
/*== SECTION 10 - FORM - HOME ==*/
.home__form {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.home__form .row {
    margin: 0;
    border-radius: 20px;
}
.home__form .col-img img {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.home__form-content {
    border-radius: 20px;
    background: #FFFFFF;
	margin-left: auto;
}
.home__form-content input {
    color: #000 !important
}
.home__form-content input, .home__form-content select {
    background-color: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border: none !important;
    border-bottom: 1px solid #7A7A7A !important;
}
.home__form-content input::placeholder {
    color: #A4A4A4 !important;
    font-size: 16px !important;
}
.home__form-content .wpforms-submit-container {
    padding-top: 20px !important;
}
.home__form .logo-form {
    display: inline-block;
}
.home__form .logo-form img {
	width: 120px;
}
.home__form .heading-title {
	color: var(--cl-sub);
	font-size: 24px;
	margin-bottom: 15px;
}
.home__form .desc {
	text-align: justify;
}
/*== SECTION 10 - FORM HOME ==*/
/*== RESPONSIVE ==*/
@media (max-width: 769px){
    /*== HOME ABOUT ==*/
    .home__about {
        overflow-x: hidden;
    }
	.home__about-content {
		padding-right: 12px;
	}
    .home__about-content .heading-title {
        font-size: 30px;
    }
    .home__about-content {
        width: 100%;
    }
    .home__about-gallery {
		padding-left: 12px;
        margin-top: 40px;
    }
    /*== END HOME ABOUT ==*/
    /*== HOME - WHY TESLA  */
    .home__whychoose-content {
        padding-top: 30px !important;
    }
    .home__learning-box {
        padding: 5px;
    }
	.home__whychoose-content .title,
	.home__whychoose-content .item:last-child {
		margin-bottom: 0 !important;
	}
	.home__whychoose-content .item {
		margin-bottom: 15px !important;
	}
    /*== END HOME - WHY TESLA ==*/
    /*== HOME - LEARNING  ==*/
    .home__learning-content {
        grid-template-columns: repeat(2, 1fr);
    }
    /*== END HOME - LEARNING  ==*/
    /*== HOME - NEWS ==*/
    .home__news-first {
        gap: 15px;
        margin-bottom: 15px;
    }
    /*== END HOME - NEWS ==*/
    /*== HOME - VIDEO ==*/
    .home__video-first {
        margin-bottom: 10px;
    }
    .home__video-second {
        padding-left: 0.75rem;
    }
    /*== END HOME - VIDEO ==*/
    /*== HOME - TESTIMONIALS ==*/
    .home__testimonials .slick-track {
        padding-top: 120px;
    }
    /*== END HOME - TESTIMONIALS ==*/
    /*== HOME - FORM ==*/
    .home__form .col-img {
        padding-left: 0;
    }
    .home__form .col-img img {
        border-bottom-left-radius: 0px;
        border-top-right-radius: 20px;
    }
    .home__form-content {
        margin-top: -5px;
        background-color: #fff;
    }
    /*== HOME - FORM ==*/
}
@media (max-width: 641px){
    .home__slides .scrolldown {
        display: none !important;
    }
	.home__form {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
	.home__learning-box:hover .content {
		height: 0;
		opacity: 0;
		visibility: hidden;
	}
	.home__learning-box:hover .title {
		color: var(--cl-sub);
	}
	.home__news .heading-title {
		margin-bottom: 20px;
	}
    .home__about-content .heading-title {
        font-size: 24px;
    }
    .home__about-gallery .slick-slider::before, .home__about-gallery .slick-slider::after {
        width: 40px;
        height: 20px;
    }
    .home__about-gallery .slick-prev:before, .home__about-gallery .slick-next:before {
        font-size: 18px;
    }
    .home__about-gallery .slick-list::before {
        width: 41px;
    }
    .home__about-gallery .slick-prev {
        left: -5px;
    }
    .home__about-gallery .slick-next {
        right: -5px;
    }
    .home__about-gallery {
        padding-left: 12px;
    }
    .home__whychoose {
        padding-bottom: 60px;
    }
    .home__whychoose-gallery {
        padding-right: 12px;
    }
    .home__whychoose-content {
        padding-top: 60px;
    }
    .home__whychoose-gallery .wrapper {
        margin: 0 -5px;
    }
    .home__whychoose-gallery .wrapper .item {
        margin: 0 5px 10px;
    }
    .home__whychoose-gallery .item img {
        height: auto;
    }
    .home__core-col {
        padding: 2px;
        width: 50%;
    }
    .home__core-content .icon img {
        width: 70px;
        height: 70px;
    }
    .home__core-content .title {
        font-size: 20px;
    }
    .home__learning-box .title {
        font-size: 20px;
    }
    .home__learning-box .box-content,
    .home__testimonials .box {
        padding: 20px 12px;
    }
    .home__form-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .home__news-first {
        gap: 10px;
        margin-bottom: 10px;
    }
    .home__testimonials .slick-track {
        padding-top: 90px;
    }
    .home__testimonials-inf {
        transform: translateY(-70px);
        margin-bottom: -70px;
        font-size: 23px;
    }
    .home__testimonials-inf .img {
        width: 140px;
        height: 140px;
    }
	.home__campus-wrapper .slick-dots {
		bottom: -30px;
	}
}

@media (max-width: 575px){
	body.lang-vi .home__about-content .heading-title {
        font-size: 17px;
    }
}