/* header */
.subpage-header{
	width: 100%;
}

.subpage-header .header-title{
	padding: 0.5em 5%;
	font-size: 225%;
	font-weight: var(--fontWeightBold);
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
}

.subpage-header .header-title a{
	font-size: 100%;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.25s;
}

.subpage-header .header-title a:hover{
	opacity: 0.8;
	text-decoration: none;
}

@media(max-width: 750px){
	.subpage-header .header-title{
		font-size: 175%;
		padding: 0.75em 5%;
	}
}

@media(max-width: 600px){
	.subpage-header .header-title{
		font-size: 125%;
		justify-content: flex-start;
	}
}

/* subpage-title */
.subpage-title{
	position: relative;
	padding: 1.25em 1.5em;
	font-size: 200%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.subpage-title-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.subpage-title-text{
	position: relative;
	display: block;
	max-width: 100%;
	margin: 0;
	padding: 0.5em 1.5em;
	color: #FFF;
	background-color: #FF8800;
	font-size: 100%;
	font-weight: var(--fontWeightBold);
	text-align: center;
	z-index: 10;
}

@media(max-width: 960px){
	.subpage-title{
		font-size: 150%;
	}
}

@media(max-width: 540px){
	.subpage-title{
		font-size: 125%;
	}
}
