* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Barlow';
	font-weight: 300;
}

*:root {
	--black: #222;
	--white: #fff;
	--grey: #ccc;
	--dark-grey: #888;
	--title-height: 40px;
	--carousel-scroll-space: 35px;
	--indent: 40px;
	--black-transparent: rgba(0, 0, 0, 0.4);
	--primary: #a43a3a;
	--blank-space-width: 75px;
	--gap: 30px;
}

@media (max-width: 1024px) {
	*:root {
		--blank-space-width: 30px;
	}
}

@media (max-width: 768px) {
	*:root {
		--blank-space-width: 0px;
	}
}

body {
	overflow-x: hidden;
	width: 100%;
	background-color: var(--black);
	font-size: 18px;
	line-height: 1.4;
}

h1 {
	font-family: 'Antonio';
}

h2,
h3,
h4,
h5 {
	font-family: 'Antonio';
	text-transform: uppercase;
	text-align: left;
}

ul,
ol,
li {
	list-style: none;
}

.bullet-points > * {
	text-indent: -13px;
	padding-left: 13px;
	padding-top: 8px;
}

.bullet-points > *:before {
	content: '– ';
}

h2 {
	font-family: 'Antonio';
	font-weight: 600;
}

h3 {
	padding-top: 40px;
	padding-bottom: 1.4rem;
}

p {
	padding-bottom: 1.4rem;
}

img {
	display: block;
}

.link {
	text-decoration: underline;
	cursor: pointer;
	color: var(--black);
}

.link:hover {
	text-decoration: none;
}

.centered {
	bottom: 50%;
	right: 50%;
	transform: translate(50%, 50%);
}

.position-fixed {
	position: fixed;
}

.d-none {
	display: none;
}
