@charset "UTF-8";
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Scope+One|Trocchi");

body {
	/* margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
	vertical-align: baseline; */
	font-family: "Scope One", serif;
    font-size: 13pt;
    font-weight: 300;
	line-height: 1.65;
	background-color: #222;
	/* color: #999999; */
}

.wrapper {
	padding: 1em 0 4em 0;
	position: relative;
	background-color: #fafafa;
	/* color: #999999; */
}

.wrapper .inner {
	width: 90%;
	margin: 0 auto;
	position: relative;
	z-index: 99;
}

.wrapper p {
	margin: 0 0 2em 0;
}

.wrapper header {
	margin-bottom: 4em;
}
.wrapper header p {
	margin: 0 0 1.5em 0;
	/* color: #bfbfbf; */
	font-size: 1.25em;
	margin-top: -1em;
}

.wrapper h2 {
	color: #000;
	font-size: 2.5em;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 1em 0;
}

.wrapper .button {
	background-color: #3498db;
	/* color: #fff !important; */
	-moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    height: 2.85em;
    line-height: 2.95em;
    padding: 0 1.5em;
    text-align: center;
    text-decoration: none;
	white-space: nowrap;
}

.align-center {
	text-align: center;
}

.flex {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.round {
	border-radius: 100%;
}

.fit {
	display: block;
	margin: 0 0 2em 0;
	width: 100%;
}

img {
	display: block;
}

.round img {
	border-radius: 100%;
}

.image {
	border: 0;
	display: inline-block;
	position: relative;
	box-shadow: 0px 0px 0px 7px #fff, 0px 0px 0px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 736px) {
	.col {
		width: 28%;
	}
	.image {
		max-width: 100%;
	}
	.fit img {
		width: 100%;
		height: 25vw;
	}
}

@media (max-width: 735px) {
	.wrapper h2 {
		line-height: 1.0;
	}
	.col {
		width: 100%;
		order: 2;
		margin-bottom: 2em;
		padding-bottom: 2em;
		box-shadow: 1px 3px #888888;
	}
	.image {
		max-width: 60%;
		margin: 0 auto 2em auto;
	}
	.fit img {
		width: 100%;
		height: 50vw;
	}
}

#footer .copyright {
	color: #bfbfbf;
    font-size: 0.9em;
    margin: 0 0 2em 0;
    padding: 0;
    text-align: center;
}

a,
a:visited,
a:hover,
a:active {
	color: inherit;
	text-decoration: none;
}
.outer-menu {
	position: fixed;
	bottom: 14vh;
	left: 0;
	z-index: 1;
}
.outer-menu .checkbox-toggle {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	width: 60px;
	height: 60px;
	opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
	-webkit-transform: rotate(135deg);
			transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	top: 0;
	-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
	opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
	pointer-events: auto;
	visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
	-webkit-transform: scale(1);
			transform: scale(1);
	transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
	opacity: 1;
	transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
	-webkit-transform: rotate(225deg);
			transform: rotate(225deg);
}
.outer-menu .hamburger {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 60px;
	height: 60px;
	padding: 0.2em 0.5em;
	background: rgba(33, 150, 243, 0.75);
	border-radius: 0 0.12em 0.12em 0;
	cursor: pointer;
	transition: box-shadow 0.4s ease;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.outer-menu .hamburger > div {
	position: relative;
	flex: none;
	width: 100%;
	height: 2px;
	/* background: #FEFEFE; */
	background: #000;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: -10px;
	left: 0;
	width: 100%;
	height: 2px;
	background: inherit;
	transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
	top: 10px;
}
.outer-menu .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	visibility: hidden;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	outline: 1px solid transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}
.outer-menu .menu > div {
	width: 200vw;
	height: 200vw;
	color: #FEFEFE;
	background: rgba(0, 0, 0, 0.97);
	border-radius: 50%;
	transition: all 0.4s ease;
	flex: none;
	-webkit-transform: scale(0);
			transform: scale(0);
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.outer-menu .menu > div > div {
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition: opacity 0.4s ease;
	overflow-y: auto;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.outer-menu .menu > div > div > ul {
	list-style: none;
	padding: 0 1em;
	margin: 0;
	display: block;
	max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
	padding: 0;
	margin: 1em;
	font-size: 24px;
	display: block;
}
.outer-menu .menu > div > div > ul > li > a {
	position: relative;
	display: inline;
	cursor: pointer;
	transition: color 0.4s ease;
}
.outer-menu .menu > div > div > ul > li > a:hover {
	color: #3498db;
}
.outer-menu .menu > div > div > ul > li > a:hover:after {
	width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
	content: '';
	position: absolute;
	z-index: 1;
	bottom: -0.15em;
	left: 0;
	width: 0;
	height: 2px;
	background: #e5e5e5;
	transition: width 0.4s ease;
}
@media (max-width: 735px) {
	.outer-menu .menu > div > div > ul > li {
		font-size:16px;
	}
}
