::-ms-expand {
	display: none;
}
:root {
	--accent-color: #FCA510;
	--bg-color: #FFFFFF;
	--font-family: 'Montserrat', sans-serif;
	--primary-text-color: #00037c;
	--secondary-text-color: #f0f0f0;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
*,
::before,
::after {
	box-sizing: border-box;
}
a {
	color: var(--primary-text-color);
	text-decoration: none;
}
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	touch-action: manipulation;
}
a.event-card {
	color: var(--primary-text-color);
	display: flex;
	text-decoration: none;
}
body {
	background-color: var(--bg-color);
	color: var(--primary-text-color);
	font-family: var(--font-family);
	line-height: 1.6;
}
button:focus,
input:focus,
select:focus,
textarea:focus,
[contenteditable]:focus {
	outline: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
input[type="number"] {
	-moz-appearance: textfield;
}
table {
	border-collapse: collapse;
}
ul {
	list-style: none;
}
#order-total {
	border-top: 2px solid var(--primary-text-color);
	margin-top: 20px;
	padding-top: 20px;
}
#registration-form fieldset {
	border: none;
	margin: 0;
	padding: 0;
}
.absolute {
	position: absolute;
}
.block {
	display: block;
}
.btn {
	border-radius: 5px;
	font-weight: 600;
	padding: 15px 30px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.btn-next {
	background-color: var(--accent-color);
	color: var(--bg-color);
}
.btn-next:hover {
	opacity: 0.9;
}
.btn-prev {
	background-color: #eee;
	color: #333;
}
.btn-prev:hover {
	background-color: #ddd;
}
.btn-primary {
	background-color: var(--accent-color);
	border: 2px solid var(--accent-color);
	color: var(--bg-color);
}
.btn-primary:hover {
	background-color: transparent;
	color: var(--accent-color);
}
.btn-secondary {
	background-color: transparent;
	border: 2px solid var(--bg-color);
	color: var(--bg-color);
	margin-left: 15px;
}
.btn-secondary:hover {
	background-color: var(--bg-color);
	color: var(--primary-text-color);
}
.btn-submit {
	background-color: var(--primary-text-color);
	color: var(--bg-color);
}
.center {
	text-align: center;
}
.container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
}
.detail-section {
	margin-bottom: 80px;
}
.event-btn {
	display: inline-block;
}
.event-card {
	align-items: center;
	background: var(--bg-color);
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	display: flex;
	padding: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}
.event-date {
	background-color: var(--primary-text-color);
	border-radius: 5px;
	color: var(--bg-color);
	margin-right: 30px;
	padding: 10px 20px;
	text-align: center;
}
.event-date .day {
	display: block;
	font-size: 2rem;
	font-weight: 700;
}
.event-date .month {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
}
.event-info {
	flex-grow: 1;
}
.event-info h3 {
	font-size: 1.4rem;
	margin-bottom: 5px;
}
.event-info p {
	color: #666;
}
.events {
	background-color: #f9f9f9;
}
.events-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.faq-accordion {
	margin: 0 auto;
	max-width: 800px;
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0;
	transition: max-height 0.3s ease-out;
}
.faq-answer p {
	color: #333;
	padding: 0 10px 20px;
}
.faq-item {
	border-bottom: 1px solid #ddd;
}
.faq-item.active .faq-question::after {
	content: '-';
	transform: translateY(-50%) rotate(45deg) scale(0);
}
.faq-item.active .faq-question::before {
	color: var(--accent-color);
	content: '-';
	font-size: 1.5rem;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
}
.faq-question {
	background: none;
	border: none;
	color: var(--primary-text-color);
	cursor: pointer;
	font-family: var(--font-family);
	font-size: 1.2rem;
	font-weight: 600;
	padding: 20px 0;
	padding-right: 40px;
	position: relative;
	text-align: left;
	width: 100%;
}
.faq-question::after {
	color: var(--accent-color);
	content: '+';
	font-size: 1.5rem;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}
.fit {
	width: fit-content;
}
.fixed {
	position: fixed;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	opacity: 0.7;
	padding-top: 20px;
	text-align: center;
}
.footer-col a {
	color: var(--secondary-text-color);
	transition: opacity 0.3s ease;
}
.footer-col a:hover {
	opacity: 1;
}
.footer-col h4 {
	font-size: 1.2rem;
	margin-bottom: 20px;
}
.footer-col p,
.footer-col ul li {
	margin-bottom: 10px;
	opacity: 0.8;
}
.footer-grid {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 40px;
}
.form-container {
	background: var(--bg-color);
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	margin: 0 auto;
	max-width: 800px;
	padding: 40px;
}
.form-group {
	margin-bottom: 20px;
}
.form-group input,
.form-group select {
	border: 1px solid #ddd;
	border-radius: 5px;
	font-family: var(--font-family);
	font-size: 1rem;
	padding: 12px;
	width: 100%;
}
.form-group label {
	color: var(--primary-text-color);
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
}
.form-nav-btn {
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 12px 25px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.form-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.form-navigation.align-right {
	justify-content: flex-end;
}
.form-section {
	background-color: #f9f9f9;
	padding-bottom: 80px;
	padding-top: 140px;
}
.form-step {
	display: none;
}
.form-step h3 {
	color: var(--primary-text-color);
	font-size: 1.8rem;
	margin-bottom: 30px;
	text-align: center;
}
.form-step.active {
	display: block;
}
.full {
	width: 100%;
}
.gallery-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gallery-item {
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}
.gallery-item img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	width: 100%;
}
.gallery-item-overlay {
	background: linear-gradient(to top, rgba(0, 3, 124, 0.8), transparent);
	bottom: 0;
	color: var(--bg-color);
	font-size: 1.2rem;
	font-weight: 600;
	left: 0;
	padding: 40px 20px 20px;
	position: absolute;
	transform: translateY(100%);
	transition: transform 0.4s ease;
	width: 100%;
}
.gallery-item-overlay span {
	display: inline-block;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay span {
	transform: translateY(0);
}
.gallery-item:hover img {
	transform: scale(1.1);
}
.hero {
	align-items: center;
	background-image: url('/hero-cat-1.png');
	background-position: center;
	background-size: cover;
	color: var(--bg-color);
	display: flex;
	height: 100vh;
	justify-content: center;
	position: relative;
	text-align: center;
	transition: background-image 1s ease-in-out;
}
.hero h1 {
	font-size: 4rem;
	margin-bottom: 20px;
}
.hero p {
	font-size: 1.2rem;
	margin-bottom: 40px;
}
.hero-buttons {
	margin-top: 30px;
}
.hero-content {
	max-width: 800px;
	z-index: 1;
}
.hero::after {
	background-color: rgba(0, 3, 124, 0.5);
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.hidden {
	display: none;
}
.hide-x {
	overflow-x: hidden;
}
.hide-y {
	overflow-y: hidden;
}
.intro-grid {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(3, 1fr);
	text-align: center;
}
.intro-item .intro-icon {
	height: 60px;
	margin-bottom: 20px;
	width: 60px;
}
.intro-item h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}
.item-description {
	max-width: 70%;
}
.item-sub {
	opacity: .8;
}
.label.child {
	max-height: 100px;
	overflow-y: auto;
}
.label.child a {
	display: block;
}
.label.datetime {
	white-space: nowrap;
}
.label.datetime .icon.clock-blue,
.label.datetime .icon.clock-yellow,
.label.datetime .icon.clock-red {
	float: left;
	margin-top: .4em !important;
}
.label.many {
	flex-wrap: wrap;
}
.label.many a {
	display: block;
	width: 100%;
}
.label.number,
.input.number input {
	text-align: right;
}
.left {
	text-align: left;
}
.logo {
	color: var(--primary-text-color);
	font-size: 1.8rem;
	font-weight: 700;
}
.main-footer {
	background-color: var(--primary-text-color);
	color: var(--secondary-text-color);
	padding: 60px 0 20px;
}
.main-header {
	background-color: var(--bg-color);
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	padding: 20px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}
.main-header .container {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.main-nav ul {
	display: flex;
}
.main-nav ul li {
	margin-left: 30px;
}
.main-nav ul li a {
	font-weight: 600;
	transition: color 0.3s ease;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
	color: var(--accent-color);
}
.margin {
	margin: 1rem;
}
.margin-auto {
	margin: auto;
}
.member-portal {
	background-color: #f9f9f9;
	padding-bottom: 80px;
	padding-top: 140px;
}
.order-summary {
	margin-bottom: 30px;
}
.overflow {
	overflow: auto;
}
.overflow-x {
	overflow-x: auto;
}
.overflow-y {
	overflow-y: auto;
}
.padded {
	padding: 1rem;
}
.payment-actions {
	margin-top: 30px;
	text-align: center;
}
.payment-details-title {
	color: var(--primary-text-color);
	margin-bottom: 20px;
	margin-top: 40px;
}
.payment-page .form-container {
	max-width: 700px;
}
.payment-success-msg {
	text-align: center;
}
.pointer {
	cursor: pointer;
}
.portal-actions {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.portal-actions .btn {
	max-width: 400px;
	text-align: center;
	width: 100%;
}
.price {
	font-weight: 700;
	white-space: nowrap;
}
.program-list {
	border-left: 3px solid var(--accent-color);
	list-style: none;
	margin: 0 auto;
	max-width: 600px;
	padding: 0;
}
.program-list .time {
	color: var(--primary-text-color);
	font-size: 1.1rem;
	font-weight: 700;
	margin-right: 25px;
	min-width: 60px;
}
.program-list li {
	align-items: center;
	border-bottom: 1px solid #eee;
	display: flex;
	padding: 15px 20px;
}
.progress-bar {
	counter-reset: step;
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
.progress-bar li {
	color: #ccc;
	float: left;
	font-size: 1rem;
	font-weight: 600;
	list-style-type: none;
	position: relative;
	text-align: center;
	width: 33.33%;
}
.progress-bar li.active {
	color: var(--primary-text-color);
}
.progress-bar li.active + li:after {
	background-color: var(--accent-color);
}
.progress-bar li.active:before {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: white;
}
.progress-bar li:after {
	background-color: #ccc;
	content: '';
	height: 2px;
	left: -50%;
	position: absolute;
	top: 15px;
	width: 100%;
	z-index: -1;
}
.progress-bar li:before {
	background-color: white;
	border: 2px solid #ccc;
	border-radius: 50%;
	content: counter(step);
	counter-increment: step;
	display: block;
	height: 30px;
	line-height: 30px;
	margin: 0 auto 10px auto;
	text-align: center;
	width: 30px;
}
.progress-bar li:first-child:after {
	content: none;
}
.relative {
	position: relative;
}
.right {
	text-align: right;
}
.route-content {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr;
}
.route-map img {
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	width: 100%;
}
.route-text h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	margin-top: 20px;
}
.route-text h3:first-child {
	margin-top: 0;
}
.section {
	padding: 80px 0;
}
.section-title {
	color: var(--primary-text-color);
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 60px;
	text-align: center;
}
.show-hero {
	align-items: center;
	background-image: url('/show-hero.png');
	background-position: center;
	background-size: cover;
	color: var(--bg-color);
	display: flex;
	height: 50vh;
	justify-content: center;
	min-height: 350px;
	padding-top: 80px;
	position: relative;
	text-align: center;
}
.show-hero h1 {
	font-size: 3rem;
}
.show-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
}
.show-hero-content {
	z-index: 1;
}
.show-hero::after {
	background-color: rgba(0, 3, 124, 0.5);
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.social-links a {
	margin-right: 15px;
}
.social-links a:hover img {
	opacity: 1;
}
.social-links img {
	filter: brightness(0) invert(1);
	height: 24px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	width: 24px;
}
.sticky {
	position: sticky;
}
.summary-item {
	align-items: center;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
}
.total-line {
	align-items: center;
	display: flex;
	font-size: 1.5rem;
	font-weight: 700;
	justify-content: space-between;
}
.underline {
	text-decoration: underline;
}
.wide {
	max-width: 1200px;
}
@media (max-width: 768px){
	.event-btn {
		margin-top: 15px;
	}
	.event-card {
		align-items: flex-start;
		flex-direction: column;
		text-align: left;
	}
	.event-date {
		margin-bottom: 15px;
		margin-right: 0;
	}
	.hero h1 {
		font-size: 2.5rem;
	}
	.intro-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.main-header .container {
		flex-direction: column;
	}
	.main-nav ul {
		margin-top: 15px;
	}
	.main-nav ul li {
		margin: 0 10px;
	}
	.route-content {
		grid-template-columns: 1fr;
	}
	.section-title {
		font-size: 2rem;
	}
	.show-hero h1 {
		font-size: 2.2rem;
	}
}