/* Blockquotes */

blockquote {
	font-size: 1.1em;
	font-style: italic;
	font-weight: 800;
	line-height: 1.8em;
	padding: 0.5em;
}

blockquote:before, blockquote:after {
	color: var(--rd);
	font-family: "Font Awesome 5 Free";
	font-style: italic;
	font-weight: 800;
}

blockquote:before {
	content: '\f10d';
	margin-right: 0.5em;
}

blockquote:after {
	content: '\f10e';
	margin-left: 0.5em;
}

blockquote p {
	display: inline ;
}

/* Titles */

h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a {
	font-weight: 800;
	line-height: 1.8;
	padding: 0;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

h1 {
	color: var(--st);
	display: inline-block;
	font-family: var(--title-font);
	font-size: 1.5em;
	line-height: 1.5;
	margin: 0 0 1em 0;
	position: relative;
}

h1:before, h1:after {
	content: ' ';
	display: block;
	position: absolute;
	z-index: -99;
}

h1:before {
	background-color: var(--th);
	height: 1em;
	left: -5px;
	top: 0;
	width: 120px;
}

h1:after {
	background-color: var(--rd);
	bottom: 8px;
	height: 8px;
	right: -12px;
	width: 8px;
}

h2 {
	background-color: var(--rd);
	color: var(--wh);
	font-family: var(--title-font);
	font-size: 1.2em;
	margin: 2em 0 1em 0;
	overflow: hidden;
	padding: 0 20px;
	position: relative;
	text-overflow: ellipsis;
	width: 100%;
}

h2:before, h2:after {
	content: '';
	height: 0;
	width: 0;
}

h2:before {
	border-bottom: 35px solid transparent;
	border-left: 20px solid var(--wh);
	left: 0;
	position: absolute;
}

h2:after {
	border-top: 35px solid transparent;
	border-right: 20px solid var(--wh);
	position: absolute;
	right: 0;
}

h2 span {
	position: relative;
	top: -80px;
}

h3 {
	border-bottom: 2px solid var(--st);
	color: var(--st);
	font-family: var(--subtitle-font);
	font-size: 1.4em;
	margin: 1em 0;
}

/* Buttons */

button {
	background-color: var(--st);
	border-radius: 2.5px;
	box-shadow: 1px 1px 5px rgb(0 0 0 / 25%);
	color: var(--wh);
	cursor: pointer;
	font-weight: 500;
	line-height: 1;
	margin: 1em 0.5em 1em 0;
	padding: 0.5em 1em;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: 1s;
	white-space: nowrap;
}

button:hover {
	background-color: var(--nd);
	color: var(--bl);
	transition: 0.75s;
}