html, body {
	position: relative;
	font-family: 'Comfortaa', cursive;
	line-height: 1.6;
	font-size: 14px;
	word-break: break-word;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: pkna;
	text-rendering: optimizeLegibility;
	background: #333;
	color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
	opacity: 0.7;
	transition: all 0.25s ease;
}

img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}

.wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
	background: #f5f8f6;
	color: #111;
}

.l-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1em;
}


.header {
	padding: 2em;
	text-align: center;
	background: #3aa682;
	color: #fff;
}

.header h1 {
	padding-top: 0.2ex;
	font-size: 3rem;
	font-weight: bold;
}
.header__icon {
	margin-bottom: 0.5ex;
	font-size: 5rem;
}


.content {
	padding: 2.5em 0;
}


.c-breadcrumbs {
	padding: 1ex;
	background: #333;
	color: #fff;
}
.c-breadcrumbs__item {
	margin-right: .5em;
}
.c-breadcrumbs__item:before {
	content: "<<";
	margin-right: .5em;
}


.c-btn {
	outline: 0;
    border: 0;
    padding: 1ex 1.5em;
    border-radius: 4px;
    font-size: 1.2rem;
    background: #3aa682;
    color: #fff;
    cursor: pointer;
}
.c-btn:active {
	opacity: 0.7;
}