@font-face {
	font-family: 'Garamond';
	src: url("fonts/Garamond/static/EBGaramond-Regular.ttf") format('truetype');
}

@font-face {
	font-family: 'Garamond';
	src: url("fonts/Garamond/static/EBGaramond-Bold.ttf") format('truetype');
	font-weight: bold;
}

@font-face {
	font-family: 'Garamond';
	src: url("fonts/Garamond/static/EBGaramond-BoldItalic.ttf") format('truetype');
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: 'Helvetica Neue';
	src: url("fonts/Helvetica-Neue-Font/Helvetica Neue Medium Extended/Helvetica Neue Medium Extended.ttf") format('truetype');
}

body {
	font-family: 'Garamond';
	font-size: 16px;
}

@media  (min-width: 840px) {
	body {
		font-size: 24px;
	}
}

h1, h2, h3, h4, h5, h6, .desktop-menu {
	font-family: 'Helvetica Neue';
}

/* Hero section */

.hero__paragraph {
	font-size: 100%!important;
	font-weight: bold;
	color: #53a818;
	background-color: rgba(0, 0, 0, 0.75);
	border-radius: 1rem;
	padding: 1rem;
	margin-left: 1rem;
	margin-right: 1rem;
}

.hero__logo-image {
	display: none;
}

.hero__login-link {
	display: inline-block;
	background-color: #53a818;
	color: black;
	border-radius: 0.5rem;
	padding: 0.5rem;
	margin-top: 0.5rem;
	font-family: 'Helvetica Neue';
	text-transform: uppercase;
}

.hero__login-link:hover {
	text-decoration: none;
	color: unset;
}

@media  (min-width: 840px) {
	.grid__container {
		display: flex;
		justify-content: space-between;
	}

	.hero__logo-image {
		display: block;
		height: 30rem;
		width: auto;
		margin: unset;
	}

	.hero__paragraph {
		font-size: 160%!important;
		width: 90%;
		font-weight: bold;
		color: #53a818;
		background-color: rgba(0, 0, 0, 0.75);
		border-radius: 1rem;
		padding: 1rem;
		margin-left: auto;
		margin-right: unset;
	}
}

/* Multiple columns */
@media  (min-width: 840px) {
	.theme-columns {
		display: flex;
		justify-content: space-between;
	}

	.theme-column {
		width: 49%;
	}
}

.paragraph-quote-open {
	padding-left: 2rem;
	background-image: url("quote-open.svg");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 1.5rem;
	font-size: 120%;
	font-style: italic;
	color: #53a818;
}

.paragraph-quote-close {
	padding-left: 2rem;
	padding-right: 2rem;
	background-image: url("quote-close.svg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 1.5rem;
	font-size: 75%;
	font-style: italic;
	text-align: right;
	margin-bottom: 2rem;
}

.columns__title {
	font-family: 'Helvetica Neue';
	text-transform: uppercase;
}

.diagram__image-container img {
	display: block;
	width: 100%;
	height: auto;
}

/* Multicolumn with header image */
.column-images__column {
	margin-bottom: 2rem;
}

.column-images__image-display img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 50%;
	border: 2px solid #8b8b8b;
}

.column-images__column-title {
	text-align: center;
}

@media  (min-width: 840px) {
	.column-images__container {
		display: flex;
		justify-content: space-between;
	}

	.column-images__column {
		margin-bottom: unset;
		width: 23%;
	}
}