@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
.view {
	width: 320px;
	height: 320px;
	margin: 0;
	padding: 20px;
	overflow: hidden;
	position: relative;
	text-align: center;
	-webkit-box-shadow: 1px 1px 2px #e6e6e6;
	-moz-box-shadow: 1px 1px 2px #e6e6e6;
	box-shadow: 1px 1px 2px #e6e6e6;
	cursor: default;
	background: #fff no-repeat center center;
	box-sizing: border-box;
}
.view .mask,
.view .content {
	width: 280px;
	height: 280px;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	background-color: #000;
	margin: 20px;
	box-sizing: border-box;
}
.view img {
	display: block;
	position: relative;
}
.view h2 {
	color: #fff;
	text-align: center;
	position: relative;
	font-size: 1.1em;
	padding: 0px;
	background: rgba(0, 0, 0, 0.8);
	margin: 20px 0 0 0;
}
.view p {
	font-family: sans-serif;
	font-size: 1em;
	position: relative;
	color: #fff;
	padding: 10px 20px 20px;
	text-align: center;
	line-height: 150%;
}
.view .info {
	display: inline-block;
	font-style: italic;
	font-size: .8em;
	font-family: Times, Times New Roman, serif;
	text-decoration: none;
	padding: 7px 14px;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	text-transform: uppercase;
	-webkit-box-shadow: 0 0 1px #000;
	-moz-box-shadow: 0 0 1px #000;
	box-shadow: 0 0 1px #000;
}

.view .info: hover {
	-webkit-box-shadow: 0 0 5px #000;
	-moz-box-shadow: 0 0 5px #000;
	box-shadow: 0 0 5px #000;
}
.view img {
	-webkit-transition: all 0.4s ease-in-out 0.5s;
	-moz-transition: all 0.4s ease-in-out 0.5s;
	-o-transition: all 0.4s ease-in-out 0.5s;
	-ms-transition: all 0.4s ease-in-out 0.5s;
	transition: all 0.4s ease-in-out 0.5s;
}
.view .mask {
	background-color: rgba(0, 0, 0, 0.6);
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: all 0.3s ease-in 0.4s;
	-moz-transition: all 0.3s ease-in 0.4s;
	-o-transition: all 0.3s ease-in 0.4s;
	-ms-transition: all 0.3s ease-in 0.4s;
	transition: all 0.3s ease-in 0.4s;
}
.view h2 {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	background: transparent;
	margin: 20px 40px 0px 40px;
	-webkit-transform: scale(10);
	-moz-transform: scale(10);
	-o-transform: scale(10);
	-ms-transform: scale(10);
	transform: scale(10);
	-webkit-transition: all 0.3s ease-in-out 0.1s;
	-moz-transition: all 0.3s ease-in-out 0.1s;
	-o-transition: all 0.3s ease-in-out 0.1s;
	-ms-transition: all 0.3s ease-in-out 0.1s;
	transition: all 0.3s ease-in-out 0.1s;
}
.view p {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transform: scale(10);
	-moz-transform: scale(10);
	-o-transform: scale(10);
	-ms-transform: scale(10);
	transform: scale(10);
	-webkit-transition: all 0.3s ease-in-out 0.2s;
	-moz-transition: all 0.3s ease-in-out 0.2s;
	-o-transition: all 0.3s ease-in-out 0.2s;
	-ms-transition: all 0.3s ease-in-out 0.2s;
	transition: all 0.3s ease-in-out 0.2s;
}
.view .info {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	-o-transform: translateY(100px);
	-ms-transform: translateY(100px);
	transform: translateY(100px);
	-webkit-transition: all 0.3s ease-in-out 0.1s;
	-moz-transition: all 0.3s ease-in-out 0.1s;
	-o-transition: all 0.3s ease-in-out 0.1s;
	-ms-transition: all 0.3s ease-in-out 0.1s;
	transition: all 0.3s ease-in-out 0.1s;
	cursor: pointer;
}
a:focus > .view .mask,
.view:hover .mask,
.lock .mask {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	-ms-transition-delay: 0s;
	transition-delay: 0s;
}
a:focus > .view img,
.view:hover img {
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	-ms-transition-delay: 0s;
	transition-delay: 0s;
}
a:focus > .view h2,
.view:hover h2,
.lock h2 {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
	-ms-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
a:focus > .view p,
.view:hover p,
.lock p {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
a:focus > .view .info,
.view:hover .info,
.lock .info {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
html {
	height: 100%;
}
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	*zoom: 1;
}
.og-expander img {
	display: block;
	margin: 0 auto;
	max-height: 100%;
	max-width: 100%;
	-webkit-box-shadow: 0 20px 30px 0 rgba(00, 00, 00, .7);
	box-shadow: 0 20px 30px 0 rgba(00, 00, 00, .7);
}
body {
	font-family: 'Lato', Calibri, Arial, sans-serif;
	background: #f9f9f9;
	font-weight: 300;
	font-size: 16px;
	color: #333;
	overflow: scroll;
	overflow-x: hidden;
}
a {
	color: #555;
	cursor: pointer;
}
.container {
	width: 100%;
	position: relative;
}
.container > header {
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
	padding: 0 30px 50px 30px;
}
.container > header {
	padding: 60px 30px 50px;
	text-align: center;
}
.container > header h1 {
	font-size: 34px;
	line-height: 38px;
	margin: 0 auto;
	font-weight: 700;
	color: #333;
}
.container > header h1 span {
	display: block;
	font-size: 20px;
	font-weight: 300;
}
.main > p {
	text-align: center;
	padding: 50px 20px;
}
.og-grid {
	list-style: none;
	padding: 20px 0;
	margin: 0 auto;
	text-align: center;
	width: 100%;
}
.og-grid li {
	display: inline-block;
	margin: 0 5px 10px 5px;
	vertical-align: top;
	height: auto;
}
.og-grid li > a,
.og-grid li > a img {
	border: none;
	outline: none;
	display: block;
	position: relative;
}
.og-grid li.og-expanded > a::after {
	top: auto;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #181818;
	/*z-index: -1;*/

	border-width: 25px;
	left: 50%;
	margin: -40px 0 0 -25px;
}
.og-expander {
	position: absolute;
	background: #333;
	top: auto;
	left: 0;
	width: 100%;
	margin-top: 10px;
	text-align: left;
	height: 0;
	overflow: hidden;
	box-shadow: inset 0 30px 30px 0 rgba(00, 00, 00, .5);
	border-bottom: white solid 2px;
}
.og-expander-inner {
	padding: 30px;
	height: 100%;
	text-shadow: 0 1px 1px black !important;
}
.og-expander-inner img {
	max-height: 800px;
}
.og-close,
.og-leave {
	color: white;
	font-size: 20px;
	position: absolute;
	height: 40px;
	top: 15px;
	cursor: pointer;
}
.og-close {
	right: 30px;
}
.og-leave {
	left: 30px;
}
.og-close:hover,
.og-leave:hover,
.og-details a:hover .og-leave {
	color: gray !important;
}
.og-fullimg,
.og-details {
	width: 50%;
	float: left;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.og-expander-inner a {
	color: white;
}
.og-expander-inner a:hover {
	color: gray;
}
.og-expander-inner p {
	text-align: center;
	margin-bottom: 10px;
}
.og-details {
	padding: 0 40px 0 20px;
	color: white;
}
.og-fullimg {
	text-align: center;
}
.og-fullimg img {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	-webkit-box-shadow: 0 20px 30px 0 rgba(00, 00, 00, .7);
	box-shadow: 0 20px 30px 0 rgba(00, 00, 00, .7);
}
.og-details h3 {
	color: white;
	font-weight: 300;
	font-size: 52px;
	padding: 40px 0 10px;
	margin-bottom: 10px;
}
.og-details p {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #999;
}
.og-details img {
	-webkit-box-shadow: 0 30px 30px 0 rgba(00, 00, 00, .9);
	box-shadow: 0 30px 30px 0 rgba(00, 00, 00, .9);
}
.og-details a {
	font-weight: 700;
	font-size: 16px;
	color: white;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px 20px;
	border: 3px solid #333;
	display: inline-block;
	margin: 30px 0 0;
	outline: none;
}
.og-details a::before {
	content: '\2192';
	display: inline-block;
	margin-right: 10px;
}
.og-details a:hover {
	border-color: #999;
	color: #999;
}
.og-loading {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ddd;
	box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	-webkit-animation: loader 0.5s infinite ease-in-out both;
	-moz-animation: loader 0.5s infinite ease-in-out both;
	animation: loader 0.5s infinite ease-in-out both;
}
@-webkit-keyframes loader {
	0% {
		background: #ddd;
	}
	33% {
		background: #ccc;
		box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
	}
	66% {
		background: #ccc;
		box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
	}
}
@-moz-keyframes loader {
	0% {
		background: #ddd;
	}
	33% {
		background: #ccc;
		box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
	}
	66% {
		background: #ccc;
		box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
	}
}
@keyframes loader {
	0% {
		background: #ddd;
	}
	33% {
		background: #ccc;
		box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
	}
	66% {
		background: #ccc;
		box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
	}
}
@media screen and (max-width: 830px) {
	.og-expander h3 {
		font-size: 32px;
	}
	.og-expander p {
		font-size: 13px;
	}
	.og-expander a {
		font-size: 12px;
	}
}
@media screen and (max-width: 650px) {
	.og-fullimg {
		display: none;
	}
	.og-details {
		float: none;
		width: 100%;
	}
}
/* dialog */

.dialog,
.dialog__overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.dialog {
	position: fixed;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	pointer-events: none;
}
.dialog__overlay {
	position: absolute;
	z-index: 1003 !important;
	background: rgba(55, 58, 71, 0.9);
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-backface-visibility: hidden;
}
.dialog--open .dialog__overlay {
	opacity: 1;
	pointer-events: auto;
	z-index: 1003 !important;
}
.dialog__content {
	width: 50%;
	min-width: 290px;
	background: #fff;
	padding: 4em;
	text-align: center;
	position: relative;
	z-index: 1004;
	opacity: 0;
}
.dialog--open .dialog__content {
	pointer-events: auto;
}
/* Content */

.dialog h2 {
	margin: 0;
	font-weight: 400;
	font-size: 2em;
	padding: 0 0 2em;
	margin: 0;
}
/*wilma*/

.dialog--open .dialog__overlay {
	-webkit-transition-duration: 0.8s;
	transition-duration: 0.8s;
}
.dialog--close .dialog__overlay {
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.dialog__content {
	padding: 0;
	background: transparent;
}
.dialog.dialog--open .dialog__content {
	opacity: 1;
}
.morph-shape {
	position: absolute;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	top: -2px;
	left: -2px;
	z-index: -1;
}
.morph-shape svg rect {
	stroke: #fff;
	stroke-width: 2px;
	stroke-dasharray: 1680;
}
.dialog--open .morph-shape svg rect {
	-webkit-animation: anim-dash 0.6s forwards;
	animation: anim-dash 0.6s forwards;
}
.dialog-inner {
	opacity: 0;
	background: #fff;
}
.dialog--open .dialog-inner {
	padding: 4em;
	opacity: 1;
	-webkit-transition: opacity 0.85s 0.35s;
	transition: opacity 0.85s 0.35s;
}
.dialog.dialog--open h2 {
	-webkit-animation: anim-elem-1 0.7s ease-out both;
	animation: anim-elem-1 0.7s ease-out both;
}
.dialog.dialog--open button {
	-webkit-animation: anim-elem-2 0.7s ease-out both;
	animation: anim-elem-2 0.7s ease-out both;
}
@keyframes anim-dash {
	0% {
		stroke-dashoffset: 1680;
	}
	100% {
		stroke-dashoffset: 0;
	}
}
@-webkit-keyframes anim-dash {
	0% {
		stroke-dashoffset: 1680;
	}
	100% {
		stroke-dashoffset: 0;
	}
}
/* Inner elements animations */

@-webkit-keyframes anim-elem-1 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-150px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
	}
}
@keyframes anim-elem-1 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-150px, 0, 0);
		transform: translate3d(-150px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@-webkit-keyframes anim-elem-2 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(150px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
	}
}
@keyframes anim-elem-2 {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(150px, 0, 0);
		transform: translate3d(150px, 0, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.dialog__overlay {
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
.dialog__content {
	overflow: hidden;
}
.dialog.dialog--open .dialog__content,
.dialog.dialog--close .dialog__content {
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.dialog.dialog--open .dialog__content {
	-webkit-animation-name: anim-open;
	animation-name: anim-open;
	-webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.dialog.dialog--close .dialog__content {
	-webkit-animation-name: anim-close;
	animation-name: anim-close;
}
.dialog.dialog--open h2,
.dialog.dialog--open button {
	-webkit-animation: anim-elem 0.4s both;
	animation: anim-elem 0.4s both;
}
.dialog.dialog--open h2 {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}
.dialog.dialog--open button {
	-webkit-animation-delay: 0.15s;
	animation-delay: 0.15s;
}
@-webkit-keyframes anim-open {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -400px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
	}
}
@keyframes anim-open {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -400px, 0);
		transform: translate3d(0, -400px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@-webkit-keyframes anim-close {
	0% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100px, 0);
	}
}
@keyframes anim-close {
	0% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100px, 0);
		transform: translate3d(0, 100px, 0);
	}
}
/* Inner elements animations */

@-webkit-keyframes anim-elem {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
	}
}
@keyframes anim-elem {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100px, 0);
		transform: translate3d(0, -100px, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
/* inline */

.SRO {
	text-indent: -9999px !important;
	float: left
}
.top {
	margin-top: 40px;
}
#logo {
	display: block;
	margin: 0 auto 20px auto;
	width: 500px;
}
#sticky {
	width: 100%;
	background-color: rgba(51, 51, 51, .9);
	z-index: 1001;
	display: block;
	position: absolute;
}
#sticky a {
	color: white;
}
#sticky ul {
	margin: 0px auto;
	text-align: center;
	padding: 12px 0px;
}
#sticky li {
	text-transform: uppercase;
	list-style: none;
	display: inline;
	margin-right: 20px;
}
#sticky .selected {
	opacity: 0.6;
}
a:focus {
	color: #00bcdf !important;
	outline: none;
	text-decoration: underline;
}
.top p {
	width: 78%;
	font-size: 16px;
	text-align: justify;
	margin: 20px auto;
}
.main .tagline {
	display: block;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
}
.main li > a:focus {
	border-bottom: none !important;
	border: none !important;
}
.main li > a:focus .view {
	box-shadow: 0px 0px 50px #00bcdf;
	background-color: #91edfe;
}
.main li .view a:focus {
	color: #00bcdf !important;
	outline: #00bcdf!important;
	box-shadow: 0px 0px 50px #00bcdf;
}
.view,
.top,
.tagline {
	opacity: 0;
}
.info {
	color: white;
	margin: 0 auto;
	max-width: 950px !important;
}
.info.long {
	text-align: left;
}

.og-expander em {
	font-size: 12px !important
}
footer .aiga p {
	display: inline-block;
}
.og-expander .og-expander-inner a,
.og-expander .og-expander-inner a .info {
	color: #9cb4b4 !important;
}
.og-expander .og-expander-inner a:hover,
.og-expander .og-expander-inner a:hover .info {
	color: white !important;
}
.mask {
	cursor: pointer;
}
.tagline {
	color: darkgray;
	/* Yes, I know. I like color names over hex codes for generic colors, too much LESS CSS coding got me in this habbit. */
}
.main,
.top {
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
}
.main {
	margin-top: 135px
}
hr {
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
	background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}
/* Update */

#update {
	height: 150px;
	min-height: 150px;
	font-family: "Baskervile", "Baskervile Old Face", serif;
	margin-bottom: 10px;
}
#update div {
	width: 100%;
	height: 150px;
	background-color: #842121;
	margin-bottom: 15px;
	text-align: center;
	box-sizing: border-box;
	color: #842121;
	padding-top: 30px;
	font-size: 1.2em;
	border-bottom: 2px solid white;
}
#update p {
	margin-bottom: 15px;
	-webkit-transition: color 0.3s ease-in-out 0.3s;
	-moz-transition: color 0.3s ease-in-out 0.3s;
	-o-transition: color 0.3s ease-in-out 0.3s;
	-ms-transition: color 0.3s ease-in-out 0.3s;
	transition: color 0.3s ease-in-out 0.3s;
}
@media screen and (max-width: 679px) {
	#update {
		display: none;
	}
	body {
		padding-top: 44px;
	}
	#sticky {
		position: fixed !important;
		top: 0px !important;
	}
	footer ul {
		width: 45% !important;
	}
	#logo {
		width: 400px !important;
		min-width: 90%;
	}
	#top br {
		display: none;
	}
}

/* res */
/*
.res {
	box-shadow: rgb(230, 230, 230) 1px 1px 2px 0px;
	background-color: white;
	padding: 20px;
	margin: 0 auto;
	display: inline-block;
}*/
/* prefooter */

footer {
	text-align: center;
	bottom: 0px;
	width: 100%;
	padding-top: 30px;
	background-color: rgb(51, 51, 51);
	color: white;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 30px 30px 0px inset;
}
footer h2 {
	font-family: Baskerville, Baskerville Old Face, Hoefler Text, Garamond, Times New Roman, serif;
	font-weight: 100;
	margin: 15px 0;
	font-size: 2em
}
footer > div {
	max-width: 1500px;
	margin: 20px auto 20px auto;
}
footer .aiga {
	width: auto;
	text-align: left;
	padding-left: 250px;
	display: inline-block;
	position: relative;
}
footer .aiga p:first-child {
	margin-bottom: 10px;
	margin-top: 5px;
}
footer .aiga img {
	position: absolute;
	left: 0;
	top: 0;
}
footer .aiga p {
	display: inline-block;
}
footer a {
	color: #9cb4b4;
}

footer .clients {
	padding-top: 15px;
}
footer .clients p {
	color: gray
}
footer .clients ul {
	list-style: none;
	text-align: center;
	margin: 0 auto;
	display: block;
	width: 1004px;
	max-width: 100%;
	box-sizing: border-box;
}
footer .clients li {
	display: inline-block;
	padding: 10px;
	width: 160px;
	box-sizing: border-box;
}

footer .services {
	padding-top: 15px;
}
footer .services ul {
	width: 20%;
	display: inline-block;
	text-align: left;
	list-style: none;
	vertical-align: top;
	margin: 0 0 15px 0;
}
footer .services ul li {
	padding-top: 10px;
	border-top: 1px #292929 solid
}
footer .services ul li:first-child {
	text-transform: uppercase;
	margin-bottom: 5px;
	color: gray;
	font-size: 1.2em;
	border-top: none;
}

footer a:hover {
	color: white;
	text-decoration: none;
}
footer aside {
	margin: 0 auto;
	text-align: center;
	padding: 15px 0;
	color: gray;
}
/* Contact*/

.dialog__content {
	width: 75% !important;
	/*box-shadow: rgba(0, 0, 0, 0.7) 0px 20px 30px 0px;*/
}
.dialog__overlay {
	background-color: rgba(51, 51, 51, .95);
}
.dialog-inner {
	width: 100%;
}
#contact button.action {
	position: absolute;
	right: 10px;
	top: 10px;
}
#contact-form {
	width: 100%;
}
#contact h2 {
	padding-bottom: 30px;
	font-family: "Baskervile", "Baskervile Old Face", serif;
}
#contact p {
	margin-bottom: 30px;
}
#contact-form * {
	font-family: "Lato";
	vertical-align: top;
}
#contact-left,
#contact-right {
	width: 49%;
	display: inline-block;
	box-sizing: border-box;
}
#contact-left {
	height: 100%;
	margin-right: 10px !important;
	box-sizing: border-box;
}
#contact-left textarea {
	font-size: 16px;
	width: 100%;
	height: 300px;
	padding: 10px;
	border: 1px solid #bfbfbf;
	display: block;
	margin-right: 10px !important;
}
#contact-right * {
	font-size: 16px;
	border: 1px solid #bfbfbf;
	/*border: none;*/

	float: left;
	width: 100%;
	height: auto;
	padding: 10px;
	margin-bottom: 15px;
}
#contact-right input.btn {
	margin-top: 142px;
	text-transform: uppercase;
	cursor: pointer;
}
#contact button {
	background-color: transparent;
	color: lightgrey !important;
	border: none!important;
}
#contact textarea:focus,
#contact input:focus {
	box-shadow: 0px 0px 25px #00bcdf;
	border: 1px solid #00bcdf;
	outline: none;
}
#contact button:focus {
	color: #91edfe !important;
	outline: none !important;
}
#contact-right input.btn:focus {
	background-color: #91edfe;
}
#contact button:hover {
	color: rgb(132, 33, 33) !important;
}


.lightgrade {
	background: rgb(254,254,255);
	background: -moz-radial-gradient(center, ellipse cover, rgb(254,254,255) 0%, rgb(186,185,186) 100%);
	background: -webkit-radial-gradient(center, ellipse cover, rgb(254,254,255) 0%,rgb(186,185,186) 100%);
	background: radial-gradient(ellipse at center, rgb(254,254,255) 0%,rgb(186,185,186) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefeff', endColorstr='#bab9ba',GradientType=1 );
}
.darkgrade {
	background: rgb(55,55,55);
	background: -moz-radial-gradient(center, ellipse cover, rgb(55,55,55) 0%, rgb(23,22,24) 100%);
	background: -webkit-radial-gradient(center, ellipse cover, rgb(55,55,55) 0%,rgb(23,22,24) 100%);
	background: radial-gradient(ellipse at center, rgb(55,55,55) 0%,rgb(23,22,24) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#373737', endColorstr='#171618',GradientType=1 );
}
