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

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

a {
	color: #9f1e11;
}

body {
	background-color: #fff;
	background-image: url(body-bg.png);
	background-position: center top;
	background-repeat: no-repeat;
}

.header-wrapper {
	background-color: #a12114;
}

.container {
	width: 1200px;
}

.header {
	display: flex;
	justify-content: space-between;
	height: 128px;
	margin-bottom: 80px;
}

.header-right {
	text-align: right;
	align-self: flex-end;
}

.header-right a {
	color: #fff;
}

.header__nav {
	font-size: 0;
	font-family: "Open Sans", sans-serif;
	margin-bottom: 10px;
}

.header__nav a {
	font-size: 18px;
	padding: 10px 15px;
}

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

.header__nav a:last-child {
	padding-right: 0;
}

.header-socials {
	margin-bottom: 30px;
	font-size: 0;
}

.header-socials a {
	font-size: 24px;
	margin-left: 24px;
}

.header-socials a:hover {
	text-decoration: none;
	color: #e8dab8;
}

.main {
	box-shadow: 0 0 4px #e3e3e3;
	padding: 2rem;
}

.sidebar {
	margin-right: 2rem;
}

@media screen and (max-width: 1018px) {
    .header-right {
        display: none;
    }
}