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;
	vertical-align: baseline;
	font: inherit;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}
body {
	min-height: 280px;
	font-family: 'Arial', sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.4;
	cursor: default;
	color: #000;
	background-color: #fff;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	-o-hyphens: none;
	hyphens: none;
}

img {
	width: 100%;
	height: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
}
svg {
	width: 100%;
	height: auto;
	fill: #000;
}

a {
	text-decoration: none;
	outline: none;
	color: inherit;
	fill: #000;

	-o-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
a svg {
	fill: inherit;

	-o-transition: fill 0.2s;
	-moz-transition: fill 0.2s;
	-webkit-transition: fill 0.2s;
	transition: fill 0.2s;
}
a:hover {
	color: #00a !important;
	fill: #00a !important;
}

hr {
	height: 1px;
	border: 0;
	background-color: #000;
}

ol, ul, li {
	list-style: none;
}

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

strong, b, .strong {
	font-weight: bold;
}
em, i {
	font-style: italic;
}
sup {
	vertical-align: super;
	font-size: 0.7em;
}
sub {
	vertical-align: sub;
	font-size: 0.7em;
}

p {
	margin-bottom: 1em;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
}

button,
input,
textarea,
select {
	width: 100%;
	padding: 8px 10px;
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	color: #000;
	background: none;
	background-color: #fff;
	border: 1px solid #999;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-o-transition: border-color 0.2s;
	-moz-transition: border-color 0.2s;
	-webkit-transition: border-color 0.2s;
	transition: border-color 0.2s;
}
textarea {
	max-width: 100%;
	min-height: 2.2em;
	max-height: 20em;
	resize: vertical;
}
input[type="submit"]::-moz-focus-inner { /* firefox extra submit padding */
	padding: 0;
	border: 0
}
input[type="radio"],
input[type="checkbox"] {
	width: auto;
	margin-left: 0;
	margin-right: 0.4em;
}
input:focus:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
textarea:focus {
	border-color: #00a;
	outline: none; /* remove chrome outline */
}
a.submit-btn,
button,
input[type="submit"] {
	color: #fff;
	background-color: #000;
	border-color: #000;
	cursor: pointer;

	-o-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
	-moz-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
	-webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
	transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
a.submit-btn:hover,
button:hover,
input[type="submit"]:hover {
	background-color: #00a;
	border-color: #00a;
}
.search-form > div {
	white-space: nowrap;
}
.search-form .search-field {
	max-width: 300px;
}
.search-form .search-submit {
	width: auto;
	margin-left: 0.4em;
}
.search-form .screen-reader-text {
	display: none;
}
@media all and (max-width: 600px) {
	.search-form .search-field {
		width: 60%;
	}
}

.table-center {
	display: table;
	width: 100%;
	height: 100%;
}
.table-center.inline {
	display: inline-table;
}
.table-center > * {
	display: table-cell;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}

.h-center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.v-center {
	position: relative;
	top: 50%;

	-webkit-transform: perspective(1px) translateY(-50%);
	-ms-transform: perspective(1px) translateY(-50%);
	transform: perspective(1px) translateY(-50%);
}

.hide,
.hidden {
	display: none;
}

.pull-left {
	float: left;
}
.pull-right {
	float: right;
}

.svg-span > * {
	display: inline-block;
	vertical-align: middle;
}
.svg-span > svg {
	width: auto;
	height: 1.4em;
}
.svg-span > *:first-child {
	margin-right: 0.7em;
}

.round {
	font-size: 0;
	overflow: hidden;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.background-image {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}

.background-contain {
	background-repeat: no-repeat;
	background-position: center;

	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
}

.background-cover {
	background-repeat: no-repeat;
	background-position: center;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.aspect-ratio {
	position: relative;
}
.aspect-ratio:before {
	display: block;
	content: "";
	width: 100%;
	padding-top: 100%; /* (height/width)*100 */
}
.aspect-ratio.ratio-4-3:before {
	padding-top: 75%;
}
.aspect-ratio.ratio-3-2:before {
	padding-top: 66.667%;
}
.aspect-ratio.ratio-16-9:before {
	padding-top: 56.25%;
}
.aspect-ratio.ratio-2-1:before {
	padding-top: 50%;
}
.aspect-ratio.ratio-3-1:before {
	padding-top: 33.333%;
}
.aspect-ratio > * {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}

/* loading system */
.loadme{ /* hide for loading */
	opacity: 0;
	visibility: hidden;

	-ms-transform: translateY(35px);
	-webkit-transform: translateY(35px);
	transform: translateY(35px);

	-o-transition: opacity 0.4s, transform 0.6s;
	-moz-transition: opacity 0.4s, transform 0.6s;
	-webkit-transition: opacity 0.4s, -webkit-transform 0.6s;
	transition: opacity 0.4s, transform 0.6s;
}
.loadme.loadme-static{ /* just opacity */
	visibility: hidden;

	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.loadme.loaded{ /* load */
	opacity: 1;
	visibility: visible;

	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
footer.loadme.loaded{ /* fix 1 bottom px bug */
	-ms-transform: none;
	-webkit-transform: none;
	transform: none;
}

/* loader */
#h-loader {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	font-size: 0;
}
#h-loader svg {
	width: 60px;
	stroke: #666;
	stroke-width: 2px;

	-webkit-animation: loader 1s infinite linear;
	animation: loader 1s infinite linear;
}
@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


/* archive pages */
body.search #head-block {
	z-index: 1;
}
body.error404 #head-block .head-search,
body.search #head-block .head-search {
	margin-top: 0.8em;
}
body.search h1 .highlight,
body.archive h1 .highlight,
body.attachment h1 .highlight {
	color: #00a;
}
body.search .search-excerpt,
body.search .search-highlight {
	background-color: rgba(255, 255, 0, 0.8);
}

/* pagination */
#bottom-pagination {
	font-size: 16px;
	text-align: center;
}
#bottom-pagination > hr {
	display: none;
	width: 160px;
	margin: 0 auto 40px auto;
	background-color: #666;
}
#bottom-pagination a {
	text-decoration: none;
}
#bottom-pagination .page-numbers,
#bottom-pagination .page-arrows {
	margin-bottom: 0;
	color: #666;
	font-weight: bold;
	font-size: 1.2em;
	vertical-align: middle;
}
#bottom-pagination .page-numbers {
	margin: 0 0.25em;
}
#bottom-pagination .page-numbers.current {
	color: #333;
}
#bottom-pagination .page-arrows.prev-page {
	float: left;
}
#bottom-pagination .page-arrows.next-page {
	float: right;
}
#bottom-pagination .page-arrows {
	font-weight: normal;
}
#bottom-pagination .page-arrows.disabled {
	pointer-events: none;
	opacity: 0.4;
}
@media all and (max-width: 600px) {
	#bottom-pagination .page-numbers,
	#bottom-pagination .page-arrows {
		font-size: 1.1em;
	}
	#bottom-pagination .page-arrows .letter {
		display: none;
	}
}

a.load-more-posts.inactive {
	opacity: 0.8;
	pointer-events: none;
}

/* site notice */
.site-notice {
	display: table;
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #fff;
}
.site-notice div {
	display: table-cell;
	width: 100%;
	height: 100%;
	padding: 4%;
	font-size: 30px;
	font-family: Arial, sans-serif;
	color: #000;
	text-align: center;
	vertical-align: middle;
}
.site-notice div p {
	font-size: inherit;
	color: inherit;
}
.site-notice div a {
	font-size: inherit;
	color: inherit;
	text-decoration: underline;
}

/* menu toggle */
.menu-toggle {
	display: inline-block;
	position: relative;
	z-index: 1000;
	vertical-align: middle;
	font-size: 0;
}
.menu-toggle > div {
	display: inline-block;
	position: relative;
	z-index: 1;
	width: 32px;
	height: 32px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	text-align: left;
	cursor: pointer;
}
.menu-toggle .line, .menu-toggle .line:after, .menu-toggle .line:before {
	position: absolute;
	width: inherit;
	height: 3px;
	content: "";
	background-color: #000;

	-o-transition: background-color 0.2s, top 0.4s;
	-moz-transition: background-color 0.2s, top 0.4s;
	-webkit-transition: background-color 0.2s, top 0.4s;
	transition: background-color 0.2s, top 0.4s;
}
.menu-toggle .line {
	top: 14px;
}
.menu-toggle .line:before {
	top: -11px;
}
.menu-toggle .line:after {
	top: 11px;
}
.menu-toggle > div:hover .line:before {
	top: -13px;
}
.menu-toggle > div:hover .line:after {
	top: 13px;
}
.menu-toggle > div:hover .line, .menu-toggle > div:hover .line:before, .menu-toggle > div:hover .line:after {
	background-color: #00a;
}

/* close button */
.close {
	display: block;
	position: relative;
	z-index: 1000;
	vertical-align: middle;
	font-size: 0;
}
.close > div {
	display: inline-block;
	position: relative;
	z-index: 1;
	width: 32px;
	height: 32px;
	text-align: left;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;

	-o-transition: transform .2s;
	-moz-transition: transform .2s;
	-webkit-transition: -webkit-transform .2s;
	transition: transform .2s;
}
.close .line,
.close .line:after,
.close .line:before {
	width: inherit;
	content: "";
	position: absolute;
}
.close .line {
	top: 16px;
	background-color: #000;
}
.close .line:after,
.close .line:before {
	height: 3px;
	background-color: inherit;

	-o-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
}
.close .line:before {
	-ms-transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	transform: rotate(-45deg);
}
.close .line:after {
	-ms-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform: rotate(45deg);
}
.close > div:hover {
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.close > div:hover .line {
	background-color: #00a;
}

/* social links */
.social-shares > span {
	display: inline-block;
	margin-right: 1em;
	vertical-align: middle;
}
.social-shares > ul {
	display: inline-block;
	vertical-align: middle;
}
.social-shares,
.social-links {
	font-size: 0;
}
.social-shares ul li,
.social-links ul li {
	display: inline-block;
	width: 30px;
	margin-left: 10px;
}
.social-shares ul li:first-child,
.social-links ul li:first-child {
	margin-left: 0 !important;
}
.social-shares ul > li a,
.social-links ul > li a {
	display: block;
	padding: 5px;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-o-transition: color 0.2s, border-color 0.2s;
	-moz-transition: color 0.2s, border-color 0.2s;
	-webkit-transition: color 0.2s, border-color 0.2s;
	transition: color 0.2s, border-color 0.2s;
}
.social-shares ul > li a svg ,
.social-links ul > li a svg {
	width: 100%;
	height: auto;
	fill: inherit;
}
.social-shares ul > li a span,
.social-links ul > li a span {
	display: none;
}

/* over content */
.over {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	pointer-events: none;
}
.over > * > .text-content { /* add padding only if simple over block */
	padding: 0 40px;
}
.over.no-padding .text-content {
	padding: 0;
}
.over .text-content > * {
	pointer-events: all;
}
@media all and (max-width: 800px) {
	.over > * > .text-content  {
		padding: 0 20px;
	}
}

/* split field */
.split:before,
.split:after {
	content: "";
	display: table;
}
.split:after {
	clear: both;
}
.split {
	font-size: 0;
	letter-spacing: 0;
}
.split > * {
	position: relative;
	display: inline-block;
	width: 47%;
	margin-left: 6%;
	vertical-align: middle;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.split.top > * {
	vertical-align: top;
}
.split.bottom > * {
	vertical-align: bottom;
}
.split > *:first-child {
	/* width: 60%; */
	margin-left: 0 !important;
}
.split.desktop-invert > *:first-child {
	float: right;
}
.split.desktop-invert > *:last-child {
	float: left;
	margin-left: 0;
	margin-right: 6%;
}
.split.split-3 > * {
	width: 29%;
	margin-left: 6%;
}
.split.split-50-50 > * {
	width: 50%;
	margin-left: 0;
}
@media all and (max-width: 800px) {
	.split > *,
	.split.split-3 > * {
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.split > * {
		margin-top: 40px;
	}
	.split > *:first-child {
		margin-top: 0 !important;
	}
	.split.desktop-invert > * {
		float: none;
	}
}

/* embeded vimeo video */
.vimeo-link {
	position: relative;
	display: block;
	font-size: 0;
}
.vimeo-link img {
	width: 100%;
	height: auto;

	-o-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.vimeo-link:hover img {
	opacity: 0.8;
}
.vimeo-link .video-container {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	background-color: #000;
}
