* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "aktiv-grotesk-extended", sans-serif;
}

a {
	text-decoration: none;
	transition: all 0.3s ease;
}

.container {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
}

.d-flex {
	display: flex;
}

.justify-content-center {
	justify-content: center;
}

.bg-ivory {
	background-color: #EAE4DD;
}

.bg-wine {
	background-color: #741012;
}

.bg-red {
	background-color: #ED1C24;
}

.text-red
{
	color: #ED1C24;
}

.text-ivory {
	color: #EAE4DD;
}

.text-black {
	color: #000000;
}
img
{
	display: flex;
}

h1 {
	font-size: 72px;
	line-height: 72px;
	font-weight: 800;
	text-transform: uppercase;
}

h3 {
	font-size: 40px;
	line-height: 48px;
	font-weight: 600;
	text-transform: uppercase;
}

h4 {
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
	text-transform: uppercase;
}

p {
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}
ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}
.text-center
{
	text-align: center;
}
.btn-area {
	display: flex;
}

.btn-primary {
	height: 40px;
	padding: 0 32px;
	background: #ED1C24;
	border: 1px solid #ED1C24;
	color: #EAE4DD;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: #000;
	border-color: #000;
	color: #EAE4DD;
}
img
{
	max-width: 100%;
}
.site-header-open
{
	transform: translateY(-100%);
	transition: transform 0.5s ease;
}
.site-header-open.header-open
{
	transform: translateY(0);
}

@media all and (min-width: 768px)
{
	.site-header-open
	{
		display: none;
	}
}