@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

.t-primary-bgcolor {
	background-color: #b82126;
}

a {
	color: #004892;
}

body {
	background-image: url(body-bg.jpg);
}

.header {
	text-align: center;
	padding-top: 20px;
	width: 100%;
	background-color: #fff;
	background: url(body-bg.jpg) center 25%/cover;
    box-shadow: rgb(0 0 0 / 20%) 17px 17px 46px;
	border-top: 10px solid #b82126;
}

.header-inner {
	width: 1024px;
	margin: auto;
}

.header-wrapper::after {
	height: 240px;
	content: "";
	display: block;
	background-image: url(banner.jpg);
	background-size: cover;
	background-position: 50% 50%;
	border-bottom: 15px solid #f00;
}

.header__nav {
	font-family: "Montserrat", sans-serif;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__nav a {
	font-size: 18px;
	font-weight: 700;
	color: #b82126;
	text-align: center;
}

.header__nav a:hover {
	color: #004892;
	text-decoration: none;
}

.main {
	width: 1024px;
	box-shadow: rgb(0 0 0 / 15%) 0 0 15px;
	margin-top: -120px;
}