._top {
	display: block;
	width: 100%;
	margin-bottom: 30px;
}

.bcenter {
	text-align: center;
	font-weight: bold;
}

._main_cont {
	background: url(images/bg.png) repeat-y;
	background-size: 100%;
	min-height: 200vh;
	font-size: 20px;
}

._inner {
	max-width: 90vw;
	width: 1200px;
	margin: 0 auto;
}

._title {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	height: 200px;
	margin-bottom: 80px;
}

._title>._left {
	background: url(images/left-a.png?1) repeat-x right center;
	background-size: contain;
}

._title>._right {
	background: url(images/right-a.png?1) repeat-x left center;
	background-size: contain;
}

._title>div {
	font-size: 23px;
	display: flex;
	flex-direction: column;
	gap: 0px;
	justify-content: center;
	margin-top: 80px;

	align-items: center;
	font-weight: bold;

	text-align: center;
}

._title>div>span {
	font-size: 23px;
}

._btn {
	display: block;
	width: fit-content;
	padding: 8px 20px;
	border-radius: 12px;
	color: white;
	background-color: var(--clr, silver);
	text-decoration: none;
	margin: 0 auto;
	transition: all 0.3s ease;
}

._btn:hover {
	color: white;
	transform: scale(1.03);
}