/* Banner  */
.banner-slider .item {
	position: relative;
}

.banner-slider .item::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(11, 28, 57, .7);
	z-index: 1;
}

/* .banner-slider .wrap-img {
	padding-bottom: 40%;
} */

.banner-slider .item .wrap-img img {
	height: 85vh;
	width: 100%;
	min-height: 700px;
}

.banner-slider .wrap-img:hover img {
	transform: scale(1);
}

.banner-slider .text-content {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1224px;
	padding: 0 12px;
	color: #FFF;
	height: 100%;
	display: flex;
	align-items: center;
}

.banner-slider .text-content .left {
	width: 60%;
}

.banner-slider .text-content .hero-sub-title svg {
	width: 25px;
	height: 25px;
	stroke: #FDA31B;
	fill: none;
	transform: translateY(-2px);
}

.banner-slider .text-content .hero-sub-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FDA31B;
	font-size: clamp(16px, 2.5vw, 25px);
	letter-spacing: 3px;
	font-weight: 800;
	position: relative;
	text-transform: uppercase;
	border-bottom: 3px solid #FDA31B;
}

.banner-slider .text-content h2 {
	color: #FFF;
	font-size: clamp(30px, 4vw, 72px);
	font-weight: 800;
	margin: 20px 0 0;
	text-transform: uppercase;
}

.banner-slider .text-content h3 {
	color: #FFF;
	font-size: clamp(25px, 4vw, 40px);
	font-weight: 800;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.banner-slider .text-content p {
	color: #FFF;
	line-height: 30px;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 5px;
}

.banner-slider .text-content .btn-group {
	gap: 16px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 35px;
	justify-content: start;
}

.banner-slider .text-content .btn-group .chu_ky {
	max-width: 200px;
	width: 100%;
}

.banner-slider .slick-arrow {
	width: 55px;
	height: 55px;
	border-radius: 50%;
}

.banner-slider .slick-arrow svg {
	width: 20px;
}

.anim-item {
  opacity: 0;
}

/* FadeInUp */

.fadeInUp {
  animation: fadeInUp .8s ease forwards;
  animation-delay: var(--delay);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* FadeInDown */

.fadeInDown {
  animation: fadeInDown .8s ease forwards;
  animation-delay: var(--delay);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* FadeInLeft */

.fadeInLeft {
  animation: fadeInLeft .8s ease forwards;
  animation-delay: var(--delay);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* FadeInRight */

.fadeInRight {
  animation: fadeInRight .8s ease forwards;
  animation-delay: var(--delay);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn-web {
	font-size: 14px;
	color: #FFF;
	padding: 14px 20px;
	transition: all 0.5s;
	text-transform: uppercase;
	position: relative;
	border-radius: 8px;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
	border: none;
	background: #FDA31B;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
	display: inline-flex;
	align-items: center;
}

.btn-web::before {
	content: "";
	height: 300px;
	width: 300px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0);
	transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}

.btn-web:hover {
	color: #FFF;
}

.btn-web:hover::before {
	transform: translateY(-50%) translateX(-50%) scale(1);
}

.btn-web svg {
	margin-left: 7px;
	transform: translateY(-1.5px);
}

.btn-web svg path {
	fill: currentColor;
	stroke: currentColor;
}

.btn-web2 {
	background: #FFF;
	color: #000;
}

.btn-web2::before {
	background: #FDA31B;
}

.btn-web2:hover {
	color: #FFF;
}

.banner-slider .text-content .right {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 32%;
}

.banner-slider .text-content .right img {
	width: 100%;
}

@media (max-width: 992px) {
	.banner-slider .item .wrap-img img {
		height: 60vh;
		min-height: 500px;
	}
}

@media (max-width: 768px) { 
	.banner-slider .text-content .left {
		width: 75%;
	}
}

@media (max-width: 575px) { 
	.banner-slider .text-content .right img {
		display: none;
	}

	.banner-slider .text-content .left {
        width: 100%;
    }

	.banner-slider .text-content p {
		margin-bottom: 10px;
	}

	.banner-slider .text-content .hero-sub-title {
		letter-spacing: 2px;
	}

	.banner-slider .item .wrap-img img {
        height: 50vh;
        min-height: 400px;
    }

	.btn-web {
		font-size: 13px;
    	padding: 12px 15px;
	}
}

/* feature area */
.feature-area {
	position: relative;
	margin-top: -110px;
	z-index: 1;
}

.feature-wrapper {
	background: #000;
	border-radius: 20px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.feature-item {
	position: relative;
	padding: 20px 25px;
	z-index: 1;
	height: 100%;
}

.feature-item.active::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #FDA31B;
	border-radius: 20px;
	transform: scale(1.1);
	z-index: -1;
}

.feature-item.active .feature-content h4 {
	text-transform: uppercase;
	line-height: 1.3;
	font-size: 38px;
}

.feature-item.active {
	text-align: center;
}

.feature-item.active .feature-content p {
	font-size: 18px;
}

.feature-item .count {
	position: absolute;
	right: 30px;
	top: 0px;
	font-size: 50px;
	font-weight: 800;
	-webkit-text-stroke: 2px #FDA31B;
	-webkit-text-fill-color: transparent;
}

.feature-icon {
	width: 80px;
	height: 80px;
	line-height: 65px;
	border-radius: 50%;
	text-align: center;
	color: #FFF;
	font-size: 60px;
	background: #FDA31B;
	margin-bottom: 25px;
	box-shadow: 5px 5px 0 #F2F3F5;
	position: relative;
	transition: all .5s ease-in-out;
}

.feature-item:hover .feature-icon {
	transform: rotateY(360deg);
}

.feature-icon img {
	width: 48px;
	filter: brightness(0) invert(1);
	vertical-align: middle;
}

.feature-content {
	flex: 1;
}

.feature-content h4 {
	color: #FFF;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-content p {
	color: #FFF;
}

.feature-item.active .count {
	-webkit-text-stroke-color: #000;
}

.feature-item.active .feature-icon {
	background: #000;
	display: none;
}


@media all and (max-width: 1199px) {
	.feature-area {
		margin-top: -20px;
	}

	.feature-item.active::before {
		transform: scale(1);
	}
}

/* ABout us  */
.about-us {
	padding: 80px 0;
}

.about-left {
	position: relative;
	padding-right: 20px;
	z-index: 1;
	padding-left: 24px;
}

.about-left::before {
	content: "";
	position: absolute;
	bottom: -20px;
	right: 0px;
	width: 250px;
	height: 250px;
	background: #313256;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	border-radius: 0 0 10px 0;
	z-index: -1;
}

.about-left::after {
	content: "";
	position: absolute;
	top: -25px;
	left: 0px;
	width: 250px;
	height: 70%;
	border: 12px solid #FDA31B;
	border-radius: 20px;
	z-index: -1;
}

.about-left img {
	width: 100%;
	border-radius: 10px;
}

.about-experience {
	position: absolute;
	bottom: 80px;
	left: 0px;
	text-align: center;
	background: #FDA31B;
	padding: 15px 20px 15px 15px;
	color: #FFF;
	border-radius: 0 10px 10px 10px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
	font-weight: 700;
}

.about-experience-icon {
	color: #FDA31B;
	font-size: 65px;
	width: 90px;
	height: 90px;
	line-height: 70px;
	text-align: center;
	margin: auto;
	background: #FFF;
	border-radius: 50px;
	margin-bottom: 5px;
}

.about-experience-icon img {
	width: 50px;
	    transition: .3s;
}

.about-experience-icon img:hover {
	transform: rotate(360deg);
}

.title-sub {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 18px;
	font-weight: 700;
	color: #FDA31B;
	position: relative;
	border-bottom: 2px solid #FDA31B;
	display: inline-grid;
    grid-template-columns: 20px auto;
	align-items: center;
	gap: 10px;
}

.title-sub svg {
	width: 20px;
    height: 20px;
    stroke: #FDA31B;
    fill: none;
    transform: translateY(-1px);
}

.title-page {
	font-weight: 800;
	text-transform: capitalize;
	font-size: clamp(27px, 4vw, 45px);
	color: #313256;
	margin-top: 10px;
	margin-bottom: 0;
	position: relative;
}

.title-page.text-white {
	color: #FFF;
}

.title-page strong {
	color: #FDA31B;
}

.title-wrap .desc {
	margin-top: 15px;
}

.title-wrap .desc.text-white {
	color: #FFF;
}

.about-right .title-wrap {
	margin-bottom: 16px;
}

.about-right {
	position: relative;
	display: block;
}

.about-content {
	margin-top: 25px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-item {
	position: relative;
	display: flex;
	gap: 12px;
	margin-bottom: 25px;
}

.about-item-icon {
	width: 70px;
	height: 70px;
	line-height: 58px;
	text-align: center;
	margin-bottom: 12px;
	background: #FDA31B;
	border-radius: 50px;
	font-size: 45px;
	color: #FDA31B;
	box-shadow: -5px 5px 0 rgb(17, 110, 99, 0.09);
}

.about-item-icon img {
	width: 45px;
	filter: brightness(0) invert(1);
	transition: .3s;
}

.about-item-icon img:hover {
	transform: rotate(360deg);
}

.about-item-content {
	flex: 1;
}

.about-item-content h3 {
	font-size: 22px;
	margin-bottom: 5px;
}

.about-item-content p {
	font-size: 14px;
}

.about-quote {
	position: relative;
	color: #000;
	padding: 20px 22px;
	background: rgb(17, 110, 99, 0.09);
	border-radius: 20px;
}

.about-quote img {
	position: absolute;
	width: 60px;
	height: 60px;
	right: 15px;
	bottom: -32px;
}

.about-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-top: 30px;
}

.about-phone {
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-phone .icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0bb0af;
	color: #FFF;
	border-radius: 50px;
	box-shadow: -5px 5px 0 rgb(17, 110, 99, 0.09);
}

.about-phone .icon img {
	width: 35px;
	filter: brightness(0) invert(1);
}

.about-phone .number {
	line-height: 1;
}

.about-phone .number h3 {
	color: #000;
	font-weight: 500;
}

.about-phone .number p {
	font-size: 20px;
	margin-top: 8px;
}

.about-phone .number p strong {
	color: #FDA31B;
}

@media (max-width: 992px) {
	.about-right {
		margin-top: 50px;
	}
}

@media (max-width: 575px) { 
	.about-experience {
		bottom: 30px;
	}

	.title-sub {
		font-size: 16px;
	}

	.title-page {
		line-height: 1.3;
	}

	.about-content {
		padding-bottom: 40px;
	}

	.about-phone .icon {
		width: 40px;
    	height: 40px;
	}

	.about-us {
		padding: 60px 0;
	}

	.about-bottom {
		gap: 20px;
	}

	.about-text,
	.about-item-content p,
	.about-quote {
		text-align: justify;
	}
}

/* counter */
.counter-section {
	padding: 60px 0;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.counter-section::before {
	content: "";
	position: absolute;
	background: #000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .7;
}

.counter .ctnr {
	position: relative;
}

.counter-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.counter-box .icon {
	position: relative;
	text-align: center;
	font-size: 60px;
	width: 100px;
	height: 100px;
	line-height: 88px;
	border-radius: 30px;
	color: #FFF;
	background: #FDA31B;
}

.counter-box .icon img {
	width: 60px;
	filter: brightness(0) invert(1);
}

.counter-box .icon::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 10px;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	border: 3px solid #FFF;
	transition: all .5s ease-in-out;
	z-index: -1;
}

.counter-box:hover .icon::before {
	left: 0;
	top: 0;
}

.counter-box .counter {
	display: block;
	line-height: 1;
	color: #FFF;
	font-size: 50px;
	font-weight: 600;
}

.counter-box .title {
	color: #FFF;
	margin-top: 20px;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

@media all and (max-width: 991px) {
	.counter-box {
		margin: 20px 0;
	}
}

@media all and (max-width: 575px) { 
	.counter-box .counter {
		font-size: 35px;
	}

	.counter-box .title {
		margin-top: 12px;
    font-size: 16px;
	}

	.counter-section {
		    padding: 30px 0;
	}
}

/* course section */
.course-section {
	position: relative;
	padding: 50px 0 30px;
}
.course-section .row {
	justify-content: center;
}

.title-wrap .desc {
	margin-top: 15px;
}

.title-wrap.center {
	width: 62%;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 50px;
}

.course-item {
	position: relative;
	background: #FFF;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 25px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.course-tag {
	position: absolute;
	left: 25px;
	top: 25px;
	background: #FDA31B;
	color: #FFF;
	border-radius: 8px;
	padding: 2px 10px;
	display: inline-flex;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
	align-items: center;
	gap: 4px;
}

.course-tag svg {
	width: 15px;
	height: 15px;
	transform: translateY(-1px);
}

.course-tag svg path {
	stroke: currentColor;
}

.course-img {
	position: relative;
	display: block;
}

.course-img img {
	border-radius: 10px;
}

.course-img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	border-radius: 10px;
	background: #000;
	transition: all .5s ease-in-out;
}

.course-item:hover .course-img::before {
	opacity: 0.5;
	visibility: visible;
}

.course-img .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 100%;
	line-height: 50px;
	padding: 0;
	margin: -25px 0 0 -25px;
	color: #FFF;
	background: #FDA31B;
	transform: scale(3);
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease-in-out;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.course-img .btn svg {
	width: 20px;
	height: 20px;
}

.course-img .btn svg path {
	stroke: currentColor;
}

.course-item:hover .course-img .btn {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.course-item:hover .course-img .btn:hover {
	background: #FFF;
	color: #FDA31B;
}

.course-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 15px 0;
}

.course-meta-left {
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.course-meta-left svg {
	width: 20px;
	height: 20px;
	color: #FDA31B;
}

.course-meta-left svg path {
	stroke: currentColor;
}

.course-rating {
	color: #FDA31B;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 5px;
}

.course-rating .star {
	display: block;
	transform: translateY(1px);
}

.course-rating svg {
	width: 16px;
	height: 16px;
}

.course-rating svg path {
	fill: currentColor;
}

.course-title {
	margin-bottom: 10px;
	font-size: 22px;
	margin-top: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 24px;
}

.course-title:hover {
	color: #FDA31B;
}

.course-text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 70px;
}

.course-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.course-bottom-left span {
	margin-right: 10px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;

}

.course-bottom-left svg {
	color: #FDA31B;
	margin-right: 4px;
	width: 22px;
	height: 22px;
	transform: translateY(-1px);
}

.course-bottom-left svg path {
	stroke: currentColor;
}

.course-price {
	display: inline-block;
	background: #FDA31B;
	color: #FFF !important;
	padding: 3px 15px;
	border-radius: 8px;
	font-weight: 500;
}

.course-price:hover {
	background-color: #000;
}

@media (max-width: 768px) {
	.title-wrap.center {
		width: 100%;
		margin-bottom: 30px;
	}

	.course-section {
		padding: 40px 0 20px;
	}

}

/* Video area  */
.video-content {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.video-content::before {
	content: "";
	position: absolute;
	background: rgba(3, 2, 7, .2);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.video-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	border-radius: 5px;
	height: 550px;
	/* z-index: 100; */
}

.video-area .play-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	height: 75px;
	width: 75px;
	text-align: center;
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #FDA31B;
	color: #FFF;
}

.play-btn svg {
	width: 21px;
	height: 21px;
	position: relative;
	z-index: 1;
}

.play-btn svg path {
	fill: currentColor;
}

.play-btn::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #FDA31B;
	border-radius: 50px;
	animation: ripple-wave 1s linear infinite;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
	0% {
		opacity: 0.8;
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(2);
		transform: scale(2);
	}
}

@media (max-width: 575px) {
	.video-wrapper {
		height: 375px;
	}
}

/* ===== why-choose ===== */
.why-choose {
	padding: 50px 0;
	position: relative;
	background: #FDA31B;

}

.why-choose .title-wrap {
	color: #000;
}

.why-choose .title-page {
	color: #000;
}

.why-choose .title-sub {
	color: #FFF;
}

.why-choose .title-sub svg {
	    stroke: #FFF;
}

.why-choose .title-page strong {
	color: #FFF;
}

.why-choose::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: rgb(253 163 27 / 40%);
	height: 100%;
}

.choose-content-wrap {
	margin-top: 30px;
}

.choose-img {
	position: relative;
	margin-left: 30px;
	overflow: hidden;
}

.choose-img::before {
	content: "";
	position: absolute;
	left: -15px;
	bottom: -15px;
	width: 100%;
	height: 100%;
	border: 5px solid #FDA31B;
	border-radius: 50% 0 50% 50%;
}

.choose-img img {
	border-radius: 50% 0 50% 50%;
}

.choose-img:hover img {
	transform: scale(1.05);
}

.choose-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #FFF;
	border-radius: 18px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	padding: 15px;
	overflow: hidden;
	margin-bottom: 24px;
}

.choose-item-icon {
	width: 80px;
	height: 80px;
	line-height: 75px;
	text-align: right;
	background: #FDA31B;
	border-radius: 50%;
	padding-right: 12px;
	margin-left: -35px;
}

.choose-item-icon i {
	color: #FDA31B;
	font-size: 50px;
}

.choose-item-icon img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: .3s;
}

.choose-item-icon img:hover {
	transform: rotate(360deg);
}

.choose-item-info {
	flex: 1;
}

.choose-item-info h3 {
	color: #000;
	margin-bottom: 10px;
	font-size: 18px;
}

.choose-item-info p {
	font-size: 14px;
}

.choose-video-wrap {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

@media (max-width: 991px) {
	.choose-img {
		margin-left: 0;
		margin-top: 30px;
	}
}

/* Gallery  */
.gallery-section {
	padding: 50px 0;
}

.gallery-item .gallery-img {
	padding-bottom: 100%;
	border-radius: 10px;
}

.gallery-item .gallery-img.img-small {
	padding-bottom: 75%;
}

.gallery-item .gallery-img.img-big {
	padding-bottom: 125%;
}

.gallery-item {
	margin-bottom: 24px;
}

.gallery-content {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.gallery-content::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	background: #FDA31B;
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.gallery-content:hover::before {
	opacity: 0.9;
	visibility: visible
}

.gallery-link {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: 0.5s;
	border-radius: 50px;
	opacity: 0;
	visibility: hidden;
	font-size: 60px;
	color: #FFF;
}

.gallery-link svg {
	width: 60px;
	height: 60px;
}

.gallery-link svg path {
	stroke: currentColor;
}

.gallery-content:hover .gallery-link {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 575px) {
	.gallery-section {
		padding: 40px 0 20px;
	}

	.gallery-item {
		margin-bottom: 12px;
	}
}

/* offer  */
.offer {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 80px 0;
}

.offer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7);
}

.offer-content {
	position: relative;
	padding: 30px 40px;
	z-index: 1;
}

.offer-content::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #FDA31B;
	border-radius: 25px;
	opacity: .9;
	z-index: -1;
}

.offer-content::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 8px;
	bottom: 8px;
	right: 8px;
	border: 8px double #FFF;
	border-radius: 20px;
	z-index: -1;
}

.offer-content h2 {
	color: #FFF;
	font-size: 42px;
}

.offer-content p {
	color: #FFF;
	margin-top: 15px;
	margin-bottom: 30px;
	font-size: 18px;
}

@media (max-width: 575px) {
	.offer-content h2 {
		font-size: 28px;
	}
}

/* Event  */
.event-section {
	padding: 50px 0;
	background: #F2F3F5;
}

.event-item {
	position: relative;
	background: #FFF;
	border-radius: 15px;
	padding: 20px 20px 20px 20px;
	/* margin-bottom: 25px; */
	height: 100%;
}

.event-info img {
	max-height: 300px;
	width: 100%;
	object-fit: cover;
}

.event-location {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.event-location svg {
	width: 16px;
	height: 16px;
}

.event-img {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	display: flex;
}

.event-img img {
	border-radius: 15px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.event-item:hover .event-img img {
	transform: scale(1.1);
}

.event-meta {
	display: flex;
	gap: 15px;
	margin: 14px 0;
}

.event-meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.event-meta span svg {
	width: 20px;
	height: 20px;
	transform: translateY(-1px);
}

.event-title {
	margin-bottom: 15px;
	font-size: 22px;
	margin-top: 20px;
}

.event-title:hover {
	color: #FDA31B;
}

.event-info ul {
	margin-left: 20px;
}

.event-btn {
	margin-top: 20px;
}

.event-btn .theme-btn {
	padding: 11px 15px;
}

.event-slider .slick-slide {
	margin: 0 12px;
}

.event-slider .slick-list {
	margin: 0 -12px;
}

@media (max-width: 768px) {
	.event-item {
		margin-bottom: 25px;
		height: auto;
	}

	.event-section {
		padding: 40px 0 20px;
	}

	.event-title {
		font-size: 20px;
	}
}

/* ===== .our-skill ===== */
.our-skill {
	padding: 80px 0;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.our-skill::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	opacity: .7;
	width: 100%;
	height: 100%;
}

.enroll-left {
	margin-right: 30px;
}

.enroll-form {
	background: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	;
}

.enroll-form form {
	padding: 20px 30px;
}

.enroll-form-header {
	border-radius: 10px 10px 50px 50px;
	padding: 15px 30px;
	border-bottom: 5px solid #000;
	background: #FDA31B;
}

.enroll-form-header h3 {
	color: #FFF;
	font-size: 28px;
	text-transform: uppercase;
}

.enroll-form-header p {
	color: #FFF;
}

.enroll-form .form-group {
	margin-bottom: 15px
}

.enroll-form .form-group .form-control {
	padding: 12px 22px;
	font-size: 14px;
	border-radius: 8px;
	color: #6C757D;
	background-color: #F2F3F5;
	border: none;
	box-shadow: none;
	display: block;
	width: 100%;
	font-weight: 400;
	line-height: 1.5;
}

.enroll-form .form-group textarea {
	height: 90px;
}

.enroll-form .form-group .form-select {
	padding: 15px 22px;
	background-color: #F2F3F5;
	color: #6C757D;
	border: none;
	box-shadow: none;
	border-radius: 8px;
	display: block;
	width: 100%;
	font-size: 16px;
	height: 51px;
}

/* 
.form-select {
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
} */

@media all and (max-width: 991px) {
	.enroll-left {
		margin-right: 0px;
	}
}

.skills-section {
	margin-bottom: 48px;
}

.progress-box {
	margin: 30px 0;
	position: relative;
	z-index: 1;
}

.progress-bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	color: #FFF;
	text-align: center;
	white-space: nowrap;
	background-color: #0d6efd;
	transition: width 0.6s ease;
}

.progress-box:last-child {
	margin-bottom: 0;
}

.progress-box h5 {
	color: #FFF;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.progress-box .progress {
	height: 8px;
	background: #FFF;
	border-radius: 50px;
	display: flex;
}

.progress-box .progress .progress-bar {
	background: #FDA31B;
	border-radius: 30px;
}

@media (max-width: 768px) {
	.enroll-right {
		margin-top: 30px;
	}

	.our-skill {
		padding: 40px 0;
	}

	.skills-section {
		margin-bottom: 30px;
	}
}

/* ===== .department ===== */
.department {
	padding: 60px 0;
	background-color: #F2F3F5;
}

.department-slider .slick-slide {
	margin: 0 12px;
}

.department-slider .slick-list {
	margin: 0 -12px;
}

.department-item {
	position: relative;
	background: #FFF;
	border-radius: 15px;
	padding: 30px;
	height: 100%;
}

.department-icon {
	margin-bottom: 20px;
}

.department-icon img {
	width: 60px;
	transition: .3s;
}

.department-icon img:hover {
	transform: rotate(360deg);
}

.department-item h3 {
	margin-bottom: 10px;
	font-size: 22px;
}

.department-item ul {
	margin-left: 20px;
}

.department-btn {
	margin-top: 10px;
}

.department-btn {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.department-btn svg path {
	stroke: currentColor;
	fill: currentColor;
}

@media (max-width: 992px) {
	.department-item {
		height: auto;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) { 
	.department {
		padding: 40px 0 20px;
	}
}

/* review customer  */
.testimonial-section {
	position: relative;
	padding: 65px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.testimonial-section::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
}

.testimonial-slider .slick-list {
	margin: 0 -12px;
}

.testimonial-single {
	background: #FFF;
	border-radius: 15px;
	padding: 25px 25px;
	margin: 6px 12px;
	position: relative;
}

.testimonial-single::before {
	content: "";
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: -6px;
	height: 6px;
	border-radius: 0 0 10px 10px;
	background: #FDA31B;
}

.testimonial-single .play-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	height: 40px;
	width: 40px;
	text-align: center;
	position: absolute;
	border-radius: 50%;
	top: 10px;
	right: 10px;
	background-color: #FDA31B;
	color: #FFF;
}

.testimonial-single .play-btn svg {
	width: 16px;
	height: 16px;
}

.testimonial-content {
	display: grid;
	grid-template-columns: 70px auto 60px;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.testimonial-quote p {
	color: #000;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 72px;
}

.testimonial-author-info {
	margin: 15px 0 10px 0;
}

.testimonial-author-img {
	width: 70px;
	padding: 4px;
	border-radius: 50px;
	border: 2px dashed #FDA31B;
}

.testimonial-author-img img {
	border-radius: 50%;
}

.testimonial-author-info h4 {
	font-size: 20px;
	color: #000;
	margin-bottom: 4px;
}

.testimonial-author-info p {
	color: #FDA31B;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.6;
}

.testimonial-quote-icon {
	color: #FDA31B;
}

.testimonial-quote-icon img {
	fill: currentColor;
	width: 60px;
}

.testimonial-rate {
	color: #FDA31B;
	margin-bottom: 15px;
}

.testimonial-rate svg path {
	fill: currentColor;
}

@media (max-width: 575px) {
	.testimonial-section {
		padding: 40px 0;
	}
}

/* Featured news  */
.featured-news {
	position: relative;
	padding: 70px 0;
	background-color: #F2F3F5;
}

.featured-news .blog-item {
	box-shadow: none;
}

.blog-slider .slick-slide {
	margin: 0 12px;
}

.blog-slider .slick-list {
	margin: 0 -12px;
}

.blog-item {
	position: relative;
	padding: 20px 20px 15px 20px;
	border-radius: 10px;
	background: #FFF;
	transition: all .5s ease-in-out;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 20px;
}

.blog-item-img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.blog-item-img .wrap-img {
	padding-bottom: 75%;
}

.blog-item-img img {
	border-radius: 10px;
}

.blog-item:hover .blog-item-img img {
	transform: scale(1.1);
}

.blog-date {
	position: absolute;
	padding: 4px 12px 4px 12px;
	right: 0px;
	top: 40px;
	font-weight: 500;
	background: #FDA31B;
	color: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 5px;
}

.blog-date svg {
	width: 20px;
	height: 20px;
	transform: translateY(-1px);
}

.blog-date svg path {
	stroke: currentColor;
}

.blog-item-info {
	position: relative;
}

.blog-item-meta ul {
	margin: 0;
	padding: 0;
	margin: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	padding-bottom: 6px;
}

.blog-item-meta ul li {
	display: inline-flex;
	margin-right: 15px;
	font-weight: 500;
	position: relative;
	color: #000;
	align-items: center;
	gap: 10px;
}

.blog-item-meta ul li i {
	margin-right: 5px;
	color: #FDA31B;
}

.blog-item-meta a:hover {
	color: #FDA31B;
}

.blog-title {
	font-size: 17px;
	margin-bottom: 20px;
	line-height: 1.2;
	text-transform: capitalize;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	height: 41px;
}

.blog-item-info p {
	margin-bottom: 16px;
}

.blog-item-info .theme-btn {
	margin-top: 15px;
	padding: 11px 15px;
}

@media (max-width: 575px) {
	.featured-news {
		padding: 40px 0;
	}	
}

.modal-video {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-video .modal-content {
    background: #FFF;
    padding: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    border-radius: 6px;
    line-height: 1;
}

.close-modal {
    position: absolute;
    right: 12px;
    top: -40px;
    font-size: 32px;
    cursor: pointer;
    color: white;
}

/* Quy trÃ¬nh  */
.quy-trinh {
	padding: 50px 0;
	color: #FFF;
	position: relative;
	scroll-margin-top: 100px;
}

.quy-trinh::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
}

.quy-trinh .title-page {
	color: #FFF;
}

.slider-nav .item-year {
    font-size: 40px;
    line-height: 1;
    color: #FFF;
    font-weight: 700;
    padding-bottom: 31px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.slider-nav .item-year:before {
    content: '';
    width: 13px;
    height: 13px;
    border: 3px solid #FFF;
    background-color: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-border-radius: 18px;
    -khtml-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    border-radius: 18px;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
    -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
    -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
    -o-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
}

.slider-nav .content {
	padding-top: 20px;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
}

.slider-nav .slick-slide.slick-current .item-year {
    color: #FDA31B !important;
}

.slider-nav .slick-slide.slick-current .item-year:before {
    background-color: #FDA31B;
    border-color: #FDA31B;
}

.slider-nav .slick-slide {
	padding: 0 15px;
}

.slider-nav .slick-arrow {
	height: 14px;
    width: 14px;
    line-height: 30px;
    text-align: center;
    color: #FDA31B;
    -webkit-transition: .3s cubic-bezier(.24, .74, .58, 1);
    -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
    -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
    -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
    -o-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 76px;
	opacity: 1;
	background: transparent !important;
}

.slider-nav .slick-arrow svg path {
	fill: #FDA31B;
}

.slider-nav .slick-arrow.slick-next {
    right: -3px;
}

.slider-nav .slick-arrow.slick-prev {
    left: -3px;
}

.slider-nav .slick-list:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #dfe3ef;
}

.slider-for {
	padding-top: 65px;
}

.slider-for .item-holder .inner {
	    max-width: 645px;
    margin: auto;
    text-align: center;
}

.slider-for .item-holder .title {
    font-size: 30px;
    line-height: 1.3333;
    margin-bottom: 19px;
    font-weight: 600;
    padding: 0 10%;
}

@media (max-width: 575px) {
	.quy-trinh {
		padding: 35px 0;
	}
}

.question-section {
	padding: 50px 0;
	color: #000;
	--gutter: 40px;
	position: relative;
}

.question-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(253 163 27 / 85%);
}

.question-section .title-sub {
	color: #FFF;
	border-bottom: 1px solid #FFF;
}

.question-section .title-sub svg {
	stroke: #FFF;
}

.question-section .item {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.question-section .item img {
	width: 50%;
	object-fit: contain;
}

.question-section .item ul {course-section
	flex: 1;
	margin-left: 20px;
	font-size: 18px;
}

.question-section .clm:nth-child(even) ul {
	order: -1;
}
.about-text p {
	padding-bottom: 15px;
}

@media (max-width: 1300px) { 
	.question-section {
		    --gutter: 12px;
	}
}


@media (max-width: 575px) {
	.question-section .item ul {
		font-size: 16px;
	}
}