@charset "utf-8";

/* Badges & Title */
.edu-top {
	text-align: center;
	margin-bottom: 50px;
}
.edu-top .badges {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-bottom: 30px;
}
.edu-top .badges li  {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 15px;
	border: 1px solid #000;
	min-width: 83px;
}
.edu-top .badges li.cate {
	background-color: #fff;
	color: #333;
	border-color: #000;
}
.edu-top .badges li.area {
	background-color: #000;
	color: #fff;
	border-color: #000;
}
.edu-top .badges li.status.ing {
	border-color: #0f69ff;
	background-color: #0f69ff;
	color: #fff;
}
.edu-top .badges li.status.wait {
	border-color: #99d5ce;
	background-color: #99d5ce;
	color: #fff;
}
.edu-top .badges li.status.end {
	border-color: #eeeeee;
	background-color: #eeeeee;
	color: #898989;
}
.edu-top .badges li.status.ready {
	border-color: #bbbbbb;
	background-color: #bababa;
	color: #fff;
}
.edu-top .edu-title {
	font-size: 30px;
	font-weight: bold;
}

/* Info Section */
.edu-info-section {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 50px;
	margin-bottom: 180px;
}
.edu-info-section .edu-gallery {
	flex: 1;
	max-width: 600px;
}
.edu-info-section .edu-gallery .swiper {
	position: relative;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	background-color: #f8f8f8;
}
.edu-info-section .edu-gallery .swiper-slide a {
	display: block;
	width: 100%;
}
.edu-info-section .edu-gallery .img-box {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2.2;
	overflow: hidden;
	background-color: #eee;
}
.edu-info-section .edu-gallery .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.edu-info-section .edu-gallery .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 60px;
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
	opacity: 0.8;
	pointer-events: none;
}
.edu-info-section .edu-gallery .btn-zoom {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: #fff;
	border: none;
	padding: 10px 20px 10px 47px;
	border-radius: 20px;
	font-size: 16px;
	font-weight: normal;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	z-index: 10;
	background: rgba(0, 0, 0, 0.7) url("../img/layout/edu/ic_zoom.png") no-repeat left 17px center;
	background-size: 21px 21px;
}
.edu-info-section .edu-gallery .btn-zoom:hover {
	background-color: #000;
	transform: scale(1.05);
}
.edu-info-section .edu-gallery .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	gap: 15px;
}
.edu-info-section .edu-gallery .pagination button {
	background-color: #fff;
	border: none;
	width: 31px;
	height: 31px;
	transition: all 0.3s;
}
.edu-info-section .edu-gallery .pagination button img {
	width: 100%;
}
.edu-info-section .edu-gallery .pagination button[disabled] {
	opacity: 0.5;
}
.edu-info-section .edu-gallery .pagination .paging-info {
	font-size: 18px;
	font-weight: normal;
	color: #000;
}
.edu-info-section .edu-gallery .pagination .paging-info .current {
	font-weight: bold;
}

.edu-info-section .edu-info {
	flex: 1;
}
.edu-info-section .edu-info .info-title {
	font-size: 24px;
	font-weight: bold;
	position: relative;
	padding-top: 15px;
	margin-bottom: 40px;
}
.edu-info-section .edu-info .info-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background-color: #000;
}
.edu-info-section .edu-info .info-list {
	margin-bottom: 40px;
}
.edu-info-section .edu-info .info-list li {
	display: flex;
	font-size: 16px;
	margin-bottom: 15px;
}
.edu-info-section .edu-info .info-list li:last-child {
	border-bottom: none;
}
.edu-info-section .edu-info .info-list .label {
	width: 140px;
}
.edu-info-section .edu-info .info-list .val {
	color: #898989;
	flex: 1;
}
.edu-info-section .edu-info .blue-text {
	color: #0f69ff;
	font-weight: bold;
}

#container .btn-group {
	display: flex;
	gap: 12px;
}
#container .btn-group .btn {
	flex: 1;
}
#container .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 55px;
	padding: 0 30px;
	font-size: 16px;
	font-weight: normal;
	border-radius: 6px;
	transition: all 0.3s;
	text-decoration: none;
	box-sizing: border-box;
}
#container .btn-outline {
	border: 1px solid #ddd;
	background-color: #fff;
	color: #000;
}
#container .btn-outline:hover {
	background-color: #000;
	color: #fff;
	border-color: #000;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#container .btn-primary {
	background-color: #0066ff;
	color: #fff;
	border: 1px solid #0066ff;
}
#container .btn-primary:hover {
	background-color: #0052cc;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0,102,255,0.3);
}
#container .btn-disabled {
	border: none;
}

/* Tabs */
.edu-tabs {
    display: flex;
    border-bottom: 3px solid #000;
    margin-bottom: 100px;
}
.edu-tabs .tab {
    flex: 1;
    height: 65px;
    border: none;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
    background-color: #fff;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
}
.edu-tabs .tab.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}
.edu-tabs .tab:not(.active):hover {
    background-color: #f8f8f8;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* Detail Sections */
.detail-section {
	margin-bottom: 80px;
}
.detail-section .section-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
	position: relative;
	padding-top: 15px;
	color: #000;
}
.detail-section .section-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background-color: #000;
}
.detail-section .content-box {
	line-height: 1.4;
	font-weight: normal;
	word-break: keep-all;
	margin-bottom: 130px;
}
.detail-section .content-box p {
	margin: 0 0 8px 0;
}

/* Table */
.table-responsive {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 20px;
}
.table-responsive .edu-table {
	width: 100%;
	min-width: 800px;
	border-collapse: collapse;
	border: none;
}
.table-responsive .edu-table thead th {
	background-color: #f5f5f5;
	padding: 20px 10px;
	font-weight: bold;
	color: #000;
	border: 1px solid #e5e5e5;
	border-top: 2px solid #000;
	text-align: center;
}
.table-responsive .edu-table tbody td {
	padding: 18px 10px;
	font-size: 16px;
	color: #444;
	border: 1px solid #e5e5e5;
	text-align: center;
	font-weight: normal;
}
.table-responsive .edu-table thead th:first-child,
.table-responsive .edu-table tbody td:first-child {
	border-left: none;
}
.table-responsive .edu-table thead th:last-child,
.table-responsive .edu-table tbody td:last-child {
	border-right: none;
}
.table-responsive .edu-table tbody tr:hover {
	background-color: #fafafa;
}

/* Bottom Buttons */
.bottom-btns {
	text-align: center;
	margin: 60px 0;
}
.bottom-btns .btn.lg {
	min-width: 240px;
}

/* Contact Box */
.contact-box {
	border: 2px solid #000;
	border-radius: 20px;
	padding: 30px 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	margin-top: 40px;
}
.contact-box .contact-info {
	display: flex;
	align-items: center;
	gap: 15px;
}
.contact-box .contact-info .text {
	font-size: 20px;
}
.contact-box .phone {
	font-size: 20px;
	font-weight: bold;
}

/* GLightbox Custom */
.goverlay {
    background-color: rgba(0,0,0,.85);
}

/* Responsive */
@media (max-width: 1024px) {
	.edu-info-section {
		flex-direction: column;
		gap: 40px;
		margin-bottom: 80px;
	}
	.edu-info-section .edu-gallery {
		max-width: 100%;
	}
	.edu-info-section .edu-info {
		width: 100%;
	}
	.edu-info-section .edu-info .info-title {
		margin-bottom: 25px;
	}
}

@media (max-width: 768px) {
	.edu-top {
		margin-bottom: 30px;
	}
	.edu-top .edu-title {
		font-size: 24px;
	}
	.edu-info-section {
		margin-bottom: 60px;
	}
	.edu-info-section .edu-info .info-list {
		margin-bottom: 30px;
	}
	.edu-info-section .edu-info .info-list li {
		font-size: 15px;
		margin-bottom: 10px;
	}
	.edu-info-section .edu-info .info-list .label {
		width: 100px;
		flex-shrink: 0;
	}

	.edu-tabs {
		margin-bottom: 50px;
	}
	.edu-tabs .tab {
		height: 50px;
		font-size: 16px;
	}

	.detail-section {
		margin-bottom: 50px;
	}
	.detail-section .section-title {
		font-size: 20px;
		margin-bottom: 25px;
	}
	.detail-section .content-box {
		margin-bottom: 60px;
	}

	.bottom-btns {
		margin: 40px 0;
	}
	.bottom-btns .btn.lg {
		min-width: 100%;
	}

	.contact-box {
		flex-direction: column;
		gap: 15px;
		padding: 25px;
		text-align: center;
	}
	.contact-box .contact-info {
		flex-direction: column;
		gap: 8px;
	}
	.contact-box .contact-info .text {
		font-size: 17px;
	}
	.contact-box .phone {
		font-size: 22px;
	}
}
