@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,800");

/* ========== RESET & BASE ========== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em,
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup,
tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	-webkit-text-size-adjust: none;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	appearance: none;
}

/* Viewport for old Edge/IE (harmless elsewhere) */
@-ms-viewport {
	width: device-width;
}

/* ========== BASE TYPOGRAPHY & BODY ========== */

body {
	background: linear-gradient(
		340deg,
		rgba(128, 167, 196, 1) 0%,
		rgba(41, 65, 79, 1) 41%,
		rgba(39, 58, 74, 1) 89%,
		rgba(74, 39, 65, 1) 100%
	);
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
    font-size: 11pt;
	line-height: 1.85em;
}

h1, h2, h3, h4, h5, h6 {
	text-transform: none;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #404248;
	margin: 0 0 1em;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
	outline: 0;
}

h2 {
	font-size: 2em;
	margin: 0 0 1.5em;
	line-height: 1em;
}

h3 {
	font-size: 1.35em;
	margin-top: 2em;
}

b, strong {
	color: #404248;
	font-weight: 700;
}

i, em {
	font-style: italic;
}

br.clear {
	clear: both;
}

sub {
	position: relative;
	top: 0.5em;
	font-size: 0.8em;
}

sup {
	position: relative;
	top: -0.5em;
	font-size: 0.8em;
}

hr {
	border: 0;
	border-top: 1px solid #ddd;
}

blockquote {
	border-left: 0.5em solid #ddd;
	padding: 1em 0 1em 2em;
	font-style: italic;
}

p, ul, ol, dl, table {
	margin-bottom: 2em;
}

.date {
	display: block;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.065em;
	font-size: 0.9em;
	color: #696969;
	margin: 0 0 0.25em;
}

/* ========== GRID / LAYOUT ========== */

/* Base grid: mobile-first, 12 columns, customizable gutter */
.row {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	--base-gutter: 50px;
	--gutter: var(--base-gutter);
	gap: var(--gutter);
	align-items: stretch;
}

/* On small screens, every child is full-width */
.row > * {
	grid-column: span 12;
}

/* Alignment helpers */
.row.aln-left   { justify-items: start; }
.row.aln-center { justify-items: center; }
.row.aln-right  { justify-items: end; }

.row.aln-top    { align-items: start; }
.row.aln-middle { align-items: center; }
.row.aln-bottom { align-items: end; }

/* Important (order) helpers */
.row > .imp       { order: -1; }
.row > .imp-large { order: -1; }
.row > .imp-medium{ order: -1; }
.row > .imp-small { order: -1; }

/* Uniform rows: remove margin under last child in each cell */
.row.gtr-uniform > * > :last-child {
	margin-bottom: 0;
}

/* Gutter variants using CSS variables */
.row.gtr-0   { --gutter: 0px; }
.row.gtr-25  { --gutter: calc(var(--base-gutter) * 0.25); }
.row.gtr-50  { --gutter: calc(var(--base-gutter) * 0.5); }
.row.gtr-150 { --gutter: calc(var(--base-gutter) * 1.5); }
.row.gtr-200 { --gutter: calc(var(--base-gutter) * 2); }

/* Desktop / wide screens: enable column spans and offsets */
@media (min-width: 980px) {

	/* Column spans */
	.row > .col-1  { grid-column: span 1; }
	.row > .col-2  { grid-column: span 2; }
	.row > .col-3  { grid-column: span 3; }
	.row > .col-4  { grid-column: span 4; }
	.row > .col-5  { grid-column: span 5; }
	.row > .col-6  { grid-column: span 6; }
	.row > .col-7  { grid-column: span 7; }
	.row > .col-8  { grid-column: span 8; }
	.row > .col-9  { grid-column: span 9; }
	.row > .col-10 { grid-column: span 10; }
	.row > .col-11 { grid-column: span 11; }
	.row > .col-12 { grid-column: span 12; }

	/* Offsets only on larger screens */
	.row > .off-1  { margin-left: calc(100% / 12 * 1); }
	.row > .off-2  { margin-left: calc(100% / 12 * 2); }
	.row > .off-3  { margin-left: calc(100% / 12 * 3); }
	.row > .off-4  { margin-left: calc(100% / 12 * 4); }
	.row > .off-5  { margin-left: calc(100% / 12 * 5); }
	.row > .off-6  { margin-left: calc(100% / 12 * 6); }
	.row > .off-7  { margin-left: calc(100% / 12 * 7); }
	.row > .off-8  { margin-left: calc(100% / 12 * 8); }
	.row > .off-9  { margin-left: calc(100% / 12 * 9); }
	.row > .off-10 { margin-left: calc(100% / 12 * 10); }
	.row > .off-11 { margin-left: calc(100% / 12 * 11); }
	.row > .off-12 { margin-left: calc(100% / 12 * 12); }
}

/* ========== SECTION / ARTICLE ========== */

section, article {
	margin-bottom: 5em;
}

section > :last-child,
article > :last-child,
section:last-child,
article:last-child {
	margin-bottom: 0;
}

header h2, header h3 {
	margin: 0 0 0.25em;
}

header p {
	display: block;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.065em;
	font-size: 0.9em;
	color: #696969;
	margin: 0;
}

header p strong {
	color: #404248;
	font-weight: 800;
}

footer {
	margin: 2.5em 0 0;
}

header.major {
	border-bottom: 1px solid #dbdbdb;
	margin: 0 0 3em;
}

header.major::after {
	content: '';
	display: block;
	border-top: 1px solid #dbdbdb;
	height: 8px;
}

header.major h2,
header.major h3 {
	margin: 0 0 1.2em;
}

header.major p {
	margin: 0 0 1.5em;
	position: relative;
	top: -1em;
}

/* ========== FORMS ========== */

form label {
	display: block;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #404248;
	margin: 0 0 1em;
	font-size: 0.8em;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
	display: block;
	width: 100%;
	border-radius: 8px;
	border: 1px solid #eee;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select {
	line-height: 3em;
	padding: 0 1em;
}

form textarea {
	min-height: 9em;
	padding: 1em;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form select:focus,
form textarea:focus {
	box-shadow: 0 0 2px 1px #4091bf;
}

form ::placeholder {
	color: #555;
}

/* ========== TABLES ========== */

table {
	width: 100%;
}

table.default tr {
	border-top: 1px solid #eee;
}

table.default tr:first-child {
	border-top: 0;
}

table.default td,
table.default th {
	padding: 0.5em 1em;
}

table.default th {
	text-align: left;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.04em;
	font-size: 0.8em;
}

table.default thead {
	background: #404248;
	color: #fff;
}

/* ========== IMAGE ========== */

.image {
	position: relative;
	display: inline-block;
}

.image img {
	display: block;
	width: 100%;
	border-radius: 8px;
}

.image::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background: url("img/bg01.png");
	opacity: 0.75;
}

.image.fit {
	display: block;
	width: 100%;
}

.image.featured {
	display: block;
	width: 100%;
	margin: 0 0 2.5em;
}

.image.left {
	float: left;
	margin: 0 2em 2em 0;
}

.image.centered {
	display: block;
	margin: 0 0 2.5em;
	text-align: center;
}

.image.centered img {
	margin: 0 auto;
	width: auto;
}

/* ========== BUTTONS ========== */

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
	position: relative;
	display: inline-block;
	background-color: #4091bf;
	background-image:
		linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)),
		url("img/bg02.png");
	border-radius: 8px;
	box-shadow:
		inset 0 0 0 1px rgba(0, 0, 0, 0.35),
		inset 0 2px 1px 0 rgba(255, 255, 255, 0.35);
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
	color: #fff !important;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 0.95em;
	letter-spacing: 0.075em;
	padding: 1em 2em;
	outline: 0;
	border: 0;
	white-space: nowrap;
	cursor: pointer;
    transition: all .3s ease;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover {
	background-color: #50a1cf;
}

input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active,
.button:active {
	background-color: #3081af;
}

input[type="button"].medium,
input[type="submit"].medium,
input[type="reset"].medium,
button.medium,
.button.medium {
	font-size: 1.25em;
	padding: 1em 2.25em;
}

input[type="button"].large,
input[type="submit"].large,
input[type="reset"].large,
button.large,
.button.large {
	font-size: 1.5em;
	padding: 1em 2.25em;
}

input[type="button"].alt,
input[type="submit"].alt,
input[type="reset"].alt,
button.alt,
.button.alt {
	background-color: #464a52;
}

input[type="button"].alt:hover,
input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
button.alt:hover,
.button.alt:hover {
	background-color: #565a62;
}

input[type="button"].alt:active,
input[type="submit"].alt:active,
input[type="reset"].alt:active,
button.alt:active,
.button.alt:active {
	background-color: #363a42;
}

/* ========== LISTS ========== */

dl.contact {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 1em;
    row-gap: 0.5em;
    margin: 0;
}

dl.contact dt {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.065em;
    font-size: 0.9em;
    color: #696969;
    flex: 0 0 6em;      /* fixed label width */
    margin: 0;
    white-space: nowrap;
}

dl.contact dd {
    flex: 1 1 auto;     /* takes remaining space on the row */
    margin: 0;
}

ul.default {
	list-style: disc;
	padding-left: 1em;
}

ul.default li {
	padding-left: 0.5em;
}

ul.actions li {
	display: inline-block;
	padding-left: 0.25em;
	margin-left: 0.25em;
}

ul.actions li:first-child {
	margin-left: 0;
	padding-left: 0;
}

ul.menu li {
	border-left: 1px solid #eee;
	display: inline-block;
	padding-left: 1em;
	margin-left: 1em;
}

ul.menu li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

ul.divided li {
	border-top: 1px solid #eee;
	padding-top: 0.5em;
	margin-top: 0.5em;
}

ul.divided li:first-child {
	border-top: 0 !important;
	padding-top: 0 !important;
	margin-top: 0 !important;
}

ol.default {
	list-style: decimal;
	padding-left: 1.25em;
}

ol.default li {
	padding-left: 0.25em;
}

/* ========== BOXES ========== */

.box.excerpt {
	position: relative;
	overflow: hidden;
}

.box.excerpt header {
	margin: 0 0 1em;
}

.box.excerpt .image,
.box.excerpt p {
	margin-bottom: 0;
}

.box.feature1 {
	text-align: center;
}

.box.feature1 header.first h2 {
	font-size: 2.5em;
}

.box.feature1 header.first p {
	font-size: 1.2em;
}

.box.feature1 header.second {
	position: relative;
	display: inline-block;
	text-align: left;
	margin: 0 auto;
	white-space: nowrap;
	left: 24px;
}

.box.feature1 header.second p {
	line-height: 1em;
}

.box.feature1 header.second::before {
	font-size: 48px;
	position: absolute;
	right: 100%;
	margin-right: 18px;
	opacity: 0.5;
	bottom: -4px;
}

.box.feature2 {
	text-align: center;
}

.box.article-list article {
	border-bottom: 1px solid #dbdbdb;
	margin: 0 0 2.75em;
	padding: 0 0 2.75em;
}

.box.article-list article:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* ========== NAV ========== */

#nav {
	user-select: none;
}

#nav > ul {
    display:flex;
    justify-content: space-between;
    margin-top: 2.75em;
    padding: 0 1em;
    max-width: 640px;
}

#nav > ul > li {
	float: left;
    white-space: nowrap;
}

#nav > ul > li > a,
#nav > ul > li > span {
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.1em;
	letter-spacing: 0.03em;
	border-radius: 6px;
	outline: 0;
}

/* ========== BANNER ========== */

#banner {
	text-align: center;
	width: 940px;
	margin: 0 auto;
	overflow: hidden;
	padding: 3em 0 0;
}

#banner h2 {
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-left: 0;
	border-right: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 2.35em;
	font-weight: 700;
	margin: 0 0 1.5em;
}

#banner h2 strong {
	font-weight: 800;
	color: inherit;
}

#banner h2::before {
	content: '';
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	margin: 10px 0 1.25em;
}

#banner h2::after {
	content: '';
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	margin: 1.25em 0 10px;
}

#banner p {
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.5em;
	letter-spacing: 0.04em;
	float: left;
	text-align: right;
	width: 60%;
	margin: 0;
}

/* ========== SIDEBAR ========== */

#sidebar h2 {
	font-size: 1.5em;
}

/* ========== WRAPPERS ========== */

#header-wrapper {
	background: transparent;
	padding: 2em 0;
}

#main-wrapper {
	background: transparent;
}

#footer-wrapper {
    border-top: 2px solid #4d6479a0;
	background-image:
		linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
		url("img/bg03.png"),
		url("img/bg02.png");
	position: relative;
	background-repeat: repeat-x, no-repeat, repeat;
	background-size: 100% 100%, 100% 15em, auto;
	background-position: top left, top center, top left;
	padding: 3em 0;
    background: linear-gradient(
		340deg,
		rgba(41, 65, 79, 1) 0%,
		rgba(41, 65, 79, 1) 41%,
		rgba(39, 58, 74, 1) 89%,
		rgba(39, 58, 74, 1) 100%
	);
}

.wrapper {
	padding: 3em 0;
}

.wrapper > .inner {
	position: relative;
	z-index: 2;
}

.wrapper.style1 {
	position: relative;
	text-shadow: 1px 1px 0 #fff;
	background-color: #fff;
	background-image:
		url("img/bg03.png"),
		url("img/bg04.png"),
		url("img/bg02.png");
	background-repeat: no-repeat, no-repeat, repeat;
	background-size: 100% 15em, 100% 15em, auto;
	background-position: top center, bottom center, top left;
}

.wrapper.style3 {
	position: relative;
	text-shadow: 1px 1px 0 #fff;
	background-color: #fff;
	background-image:
		url("img/bg03.png"),
		url("img/bg02.png");
	background-repeat: no-repeat, repeat;
	background-size: 100% 15em, auto;
	background-position: top center, top left;
}

/* ========== HEADER ========== */

#header {
	position: relative;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.75em;
	margin-bottom: 0;
}

#header .inner {
	position: relative;
	height: 5.5em;
	background-color: rgba(59, 62, 69, 0.9);
	background-image:
		linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)),
		url("img/bg02.png");
	border-radius: 8px;
	box-shadow:
		inset 0 0 0 1px rgba(0, 0, 0, 0.45),
		inset 0 2px 1px 0 rgba(255, 255, 255, 0.15);
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}

#header h1 {
	position: absolute;
	left: 1.75em;
	top: 50%;
	margin-top: -0.65em;
	font-size: 1.5em;
	color: #fff;
}

/* ========== FOOTER ========== */

#footer {
    color: #acb2bf;
	margin-bottom: 0;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
	position: relative;
	z-index: 2;
}

#footer h2 {
	font-size: 1.35em;
	color: #fff;
    margin:1.5em 0 0;
    text-transform: uppercase;
}

#footer strong {
	color: #fff;
}

#footer a {
    &:hover {color: #ccc;}
    &:active {color:#eee;}
}

#footer .button.alt {
	box-shadow:
		inset 0 0 0 1px rgba(0, 0, 0, 0.75),
		inset 0 2px 1px 0 rgba(255, 255, 255, 0.25);
}

#footer ul.divided li,
#footer ul.menu li {
	border-color: rgba(255, 255, 255, .15);
}

#footer ul.divided li a {
	text-decoration: none;
}

#footer ul.menu {
	margin: 0;
}

#footer dl.contact dt {
	color: #ddd;
}

#copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.075);
	text-align: center;
	margin-top: 1.4em;
	padding: 1em 0 0em;
    font-size: 1.4em;
    color: #89a;
}

/* ========== RESPONSIVE STYLES ========== */

/* Large (≤1280px) */
@media screen and (max-width: 1280px) {

	body {
		line-height: 1.75em;
		font-size: 10.75pt;
	}

	input, select, textarea {
		line-height: 1.75em;
		font-size: 10.75pt;
	}

	#header-wrapper {
		padding: 2em 0;
	}

	#footer-wrapper {
		padding: 2.5em 0;
	}

	.wrapper {
		padding: 2.5em 0;
	}

	#banner {
		width: 100%;
		padding: 4em 0 2em;
	}

	#banner h2 {
		font-size: 2.2em;
		line-height: 1.3em;
		margin: 0 0 1em;
	}

	#banner p {
		font-size: 1.25em;
		line-height: 1.75em;
		letter-spacing: 0.04em;
		float: none;
		text-align: center;
		width: 100%;
		margin: 0 0 2em;
	}

	/* Adjust base gutter for large screens */
	.row {
		--base-gutter: 35px;
	}
}

/* Hide mobile nav elements by default */
#navPanel,
#titleBar {
	display: none;
}

/* Medium (≤980px) */
@media screen and (max-width: 980px) {

	html, body {
		overflow-x: hidden;
	}

    body.mobile-hide-header #header-wrapper {
        padding: 0;
        height: 45px;
    }

	/* Adjust base gutter for medium screens */
	.row {
		--base-gutter: 50px;
	}

	/* Box */
	.box.feature2 section {
		margin: 1em 0;
	}

	/* Page wrapper for nav slide */
	#page-wrapper {
		backface-visibility: hidden;
		transition: transform 0.5s ease;
		padding-bottom: 1px;
	}

	/* Mobile title bar */
	#titleBar {
		backface-visibility: hidden;
		background-image:
			linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)),
			url("img/bg02.png");
		background-color: rgba(59, 62, 69, 0.9);
		box-shadow:
			inset 0 0 0 1px rgba(0, 0, 0, 0.5),
			inset 0 0 0 2px rgba(255, 255, 255, 0.075),
			0 1px 6px 0 rgba(0, 0, 0, 0.35);
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 44px;
		left: 0;
		position: fixed;
		text-shadow: -1px -1px 0 black;
		top: 0;
		width: 100%;
		z-index: 101;
		padding: 0.5rem 1rem;
        -moz-transition: -moz-transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
	}

	#titleBar .title {
		margin: 0 auto;
	}

	#titleBar .toggle {
		text-decoration: none;
		position: absolute;
		left: 0;
		top: 0;
		width: 52px;
		height: 44px;
		line-height: 44px;
		opacity: 0.7;
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		display: inline-block;
		text-rendering: auto;
		font-size: 19px;
		text-align: center;
		color: #fff;
		filter: unset;
	}

	#titleBar .toggle:active {
		opacity: 1;
	}

	/* Slide-out nav panel */
	#navPanel {
		backface-visibility: hidden;
		background-image:
			linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35)),
			url("img/bg01.png");
		transform: translateX(-275px);
		transition: transform 0.5s ease;
		background-color: #303238;
		box-shadow:
			inset -1px 0 0 0 rgba(0, 0, 0, 0.5),
			inset -2px 0 0 rgba(255, 255, 255, 0.15),
			inset -2px 0 10px 0 rgba(0, 0, 0, 0.35);
		display: block;
		height: 100%;
		left: 0;
		overflow-y: auto;
		position: fixed;
		top: 0;
		width: 275px;
		z-index: 102;
	}

	#navPanel .link {
		display: block;
		color: #fff;
		text-decoration: none;
		height: 44px;
		line-height: 44px;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		border-bottom: 1px solid rgba(0, 0, 0, 0.15);
		padding: 0 1em;
		text-transform: uppercase;
		font-weight: 700;
		font-size: 0.95em;
		letter-spacing: 0.075em;
	}

	#navPanel .link:active {
		background-color: #445;
		color: #ddd;
	}

	#navPanel .link:first-child {
		border-top: 0;
	}

	#navPanel .link:last-child {
		border-bottom: 0;
	}

	#navPanel .indent-1 { display: inline-block; width: 1em; }
	#navPanel .indent-2 { display: inline-block; width: 2em; }
	#navPanel .indent-3 { display: inline-block; width: 3em; }
	#navPanel .indent-4 { display: inline-block; width: 4em; }
	#navPanel .indent-5 { display: inline-block; width: 5em; }

	body.navPanel-visible #page-wrapper {
		transform: translateX(275px);
	}

	body.navPanel-visible #titleBar {
		transform: translateX(275px);
	}

	body.navPanel-visible #navPanel {
		transform: translateX(0);
	}

	/* Hide desktop header/nav */
	#header,
	#nav {
		display: none;
	}

	/* Banner */
	#banner {
		padding: 8em 0 4em;
	}

	#banner br {
		display: none;
	}

	/* Sidebar */
	#sidebar {
		margin-top: 1em;
	}
}

/* Small (≤736px) */
@media screen and (max-width: 736px) {

	body,
	input,
	select,
	textarea {
		line-height: 1.75em;
		font-size: 10pt;
		letter-spacing: 0;
	}

	h3, h4, h5, h6 {
		font-size: 13pt !important;
	}

	h2 {
		font-size: 1.5em !important;
		line-height: 1.5em;
	}

	section,
	article {
		margin-bottom: 3em;
	}

	.image.left {
		width: 25%;
	}

	.button {
		font-size: 1.1em;
		text-align: center;
		border-radius: 8px;
	}

	ul.menu li {
		display: block;
		border: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	ul.actions li {
		display: block;
		padding: 0;
		margin: 1em 0 0;
	}

	ul.actions li:first-child {
		margin-top: 0;
	}

	.box.excerpt .image-left {
		margin-right: 0;
	}

	.box.excerpt header {
		margin-left: 32%;
	}

	.box.excerpt p {
		clear: both;
	}

	.box.feature1 section {
		margin-bottom: 2em !important;
	}

	.box.spotlight {
		margin-top: 2em;
	}

	#header-wrapper {
		background-position: 35% 50%;
	}

	#footer-wrapper {
		padding: 2em 20px;
	}

	#footer-wrapper section,
	#footer-wrapper article {
		margin-bottom: 3em !important;
	}

	.wrapper {
		padding: 2em 20px;
	}

	#banner {
		padding: 40px 20px;
	}

	#banner h2 {
		font-size: 18pt !important;
	}

	#sidebar {
		margin-top: 2em;
	}

	/* Adjust base gutter for small screens */
	.row {
		--base-gutter: 10px;
	}
}