@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');

html,
body {
	min-height: 100%;
}

body {
	background-color: #fbfaf7;
}

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

a {
	color: #354171;
}

.container {
	width: 1200px;
}

.header-wrapper {
	margin-bottom: 3rem;
}

.header {
	width: 100%;
	box-shadow: 0px -4px 9px 0px rgba(0, 0, 0, 0.5) inset;
	background-color: #392e2c;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 93px;
	padding: 0 22px;
}

.header__logo img {
	max-height: 23px;
}

.header__nav {
	font-size: 0;
}

.header__nav a {
	text-transform: uppercase;
	color: #b7a05c;
	font-size: 21px;
	font-family: "Domine", sans-serif;
	font-weight: 600;
	letter-spacing: 0.7px;
	margin-left: 22px;
}

.header__nav a:hover {
	text-decoration: none;
	opacity: 0.9;
}

.header-wrapper::after {
	height: 140px;
	content: "";
	display: block;
	background: url(banner.jpg) center/cover;
}

.main {
	padding: 3rem;
}

.sidebar {
	margin-right: 3rem;
}

@media screen and (max-width: 1063px) {
	.header__nav {
		display: none;
	}
}