/*Header Section*/
.header {
	background: url('../../assets/bg1.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	display: flex;
	color: white;
}
.header::before {
	content: '';
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: rgba(6, 12, 34, 0.85);
}
.header * {
	z-index: 1;
}
.header .h1 span {
	color: #DAA106;
}
.header .btn.btn-primary {
	background-color: #DAA106;
	border-color: #DAA106;
	border-radius: 0;
	color: white;
	padding: 12px 30px;
	text-transform: uppercase;
	font-weight: bold;
}
@media(min-width: 1200px) {
	.header .h2 {
		width: 70%;
	}
}

/*About Section*/
.about .h3 {
	color: #00305B;
}
.about .h3 span {
	color: #DAA106;
}
.about p {
	text-align: justify;
}

/*Calendar Section*/
.calendar .h4 {
	color: #00305B;
}
.calendar .table * {
	color: #00305B;
}
.calendar .table .table-active * {
	--bs-table-bg-state: #DAA106;
	color: white;
}