/*---------------------------------------------------------------------------------

Theme Name: wp_ab
Version: 1.0
Description: WordPress Theme
Author: Arne Bellstorf

---------------------------------------------------------------------------------*/

/*--------------------------------------------------------------
01. Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

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

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
Root
--------------------------------------------------------------*/
:root {
    --bg-color: #f2f2f2;
	--space-xsmall: .2625rem;
	--space-small: .525rem;
	--space-medium: 1.05rem;
	--space-large: 2.1rem;
}

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html * {
	/*-webkit-font-smoothing: antialiased;*/
	-webkit-font-smoothing: subpixel-antialiased;
}

body {
	overflow-x: hidden;
	background-color: var(--bg-color);
	-webkit-transition: background-color 300ms ease;
	-o-transition: background-color 300ms ease;
	transition: background-color 300ms ease;
}

/*--------------------------------------------------------------
Animations
--------------------------------------------------------------*/
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
	opacity:0; /* make things invisible upon start */
	-webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;
	-webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
}

/*--------------------------------------------------------------
Typograhpy
--------------------------------------------------------------*/
@font-face {
    font-family: 'Tex Gyre Heros';
    src: url('assets/fonts/texgyreheros-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
	font-family: 'Tex Gyre Heros';
    src: url('assets/fonts/texgyreheros-italic-webfont.woff') format('woff');
	font-weight: normal;
	font-style: italic;
}
@font-face {
	font-family: 'Nimbus Sans';
    src: url('assets/fonts/NimbusSans-Regular.woff') format('woff');
	font-weight: normal;
}
@font-face {
	font-family: 'Nimbus Sans';
    src: url('assets/fonts/NimbusSans-Italic.woff') format('woff');
	font-style: italic;
}

body {
	/*font-family: 'Nimbus Sans';*/
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-weight: 400;
	font-style: normal;
	/*font-kerning: normal;
	font-variant-ligatures: common-ligatures;*/
	letter-spacing: 0.02em;
	font-size: 14px;
	line-height: var(--space-medium);
	color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote, 
q {
	line-height: inherit;
	margin: 0;
	text-rendering: optimizeLegibility;
	clear: both;
	font-weight: normal;
	word-wrap: break-word;
	-ms-word-wrap: break-word;
	font-size: 1em;
}

p {
	margin: 0 0;
	width: 100%;
}
p.indent {
	text-indent: var(--space-medium); 
}
p.inline {
	margin-bottom: 0 !important;
}
p.paragraph {
	margin: 0 0 var(--space-medium) 0;
	width: 100%;
}
.aligncenter,
.center-text {
	text-align: center;
}
.alignleft {
	text-align: left;
}
.alignright {
	text-align: right;
}
.nowrap {
	white-space: nowrap;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
address {
	margin: 0 0;
}
code, kbd, tt, var {
	font-family: monospace;
}
abbr, acronym {
	border-bottom: 1px dotted inherit;
	cursor: help;
}
mark, ins {
	text-decoration: none;
}
small {
	font-size: .8em;
}
@media screen and (min-width: 40em) {
	big, .big {
		font-size: 22px;
		line-height: calc(var(--space-medium) + var(--space-small));
	}
	.big a,
	.big a:visited {
		background-size: 100% 2px;
	}
}
@media screen and (min-width: 80em) {
	/*big, .big,*/
	article.site-main-block big, 
	article.site-main-block .big {
		/*font-size: 1em;
		line-height: inherit;*/
	}
	/*.big a,
	.big a:visited,*/
	article.site-main-block .big a, 
	article.site-main-block .big a:visited {
		/*background-size: 100% 1px;*/
	}
}
@media screen and (min-width: 100em) { 
	big, .big,
	article.site-main-block big, 
	article.site-main-block .big {
		
	}
	article.site-main-block .big a, 
	article.site-main-block .big a:visited {
		
	}
}

/*--------------------------------------------------------------
Elements
--------------------------------------------------------------*/
/* Links */
a, 
button {
	-webkit-transition: all 0.15s linear;
	-moz-transition: all 0.15s linear;
	transition: all 0.15s linear;
}

a, 
a:visited {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	text-decoration: none;
	background-image: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0));
	background-size: 100% 1px;
	background-position: 100% 99%, 0 100%;
	background-repeat: no-repeat;
}

a:active, 
a:hover, 
a:focus {
	color: inherit !important;
	text-decoration: none !important;
	outline: 0 !important;
	background-size: 100% 0px !important;
}

a.button {
	border: 1px solid;
	padding: var(--space-small) var(--space-medium);
	text-decoration: none;
	background: none;
	border-radius: 2em;
}
a.button:active, 
a.button:hover, 
a.button:focus {
	color: inherit;
	text-decoration: none;
	outline: 0 !important;
	background: #fff;
}
a[href^=tel],
a img,
figure a,
.site-header a,
.site-header a:active, 
.site-header a:hover, 
.site-header a:focus,
.site-footer a,
.site-footer a:active, 
.site-footer a:hover, 
.site-footer a:focus
.site-footer a:visited {
	background-image: none;
	text-decoration: none;
	color: inherit;
	outline: 0 !important;
}

/* Horizontal Rule */
hr {
	border-bottom: 1px solid black;
	border-left: none;
	border-right: none;
	border-top: none;
	margin: 1.5em 0;
	opacity: .2;
}

/* Lists */
ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*--------------------------------------------------------------
Media
--------------------------------------------------------------*/
img,
picture {
	margin: 0;
	padding: 0;
	max-width: 100%;
	height: auto !important;
	vertical-align: middle;
	/* Fade in */
	animation: fadeIn ease 2s;
	-webkit-animation: fadeIn ease 2s;
	-moz-animation: fadeIn ease 2s;
	-o-animation: fadeIn ease 2s;
	-ms-animation: fadeIn ease 2s;
}
}
embed,
iframe,
object {
	max-width: 100%;
}
figure {
	margin: 0;
	padding: 0;
}
figcaption,
.caption {
	margin: var(--space-small);
	margin-bottom: var(--space-medium);
}

/*--------------------------------------------------------------
Layout & Styling
--------------------------------------------------------------*/
.hidden,
.mobile_only {
	display: none !important;
}
@media (max-width: 40em) {
	.mobile_only {
		display: block !important;
	}
	.desktop_only {
		display: none !important;
	}
}

.border-bottom {
	border-bottom: 1px solid;
}
.border-top {
	border-top: 1px solid;
}

.zoom  {
	cursor: zoom-in;
}
.zoom > p:empty  {
    display: none;
}

.marquee3k {
	overflow: hidden;
	height: var(--space-large);
	line-height: var(--space-large);
}
.marquee3k p {
	padding: 0 var(--space-xsmall) 0 0;
}

.justify {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* Rows & Columns */
.row {
	width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
			-ms-flex-direction: row;
				flex-direction: row;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
		-ms-flex-line-pack: start;
			align-content: flex-start;
}
@media screen and (min-width: 40em) {
	
}
.col-fix-25 {
	width: 25%;
}
.col-fix-50 {
	width: 50%;
}
.col-25,
.col-50,
.col-100 {
	width: 100%;
}
.push {
	padding-left: var(--space-small); 
}
@media screen and (min-width: 40em) {
	.col-25 {
		width: 25%;
	}
	.col-50 {
		width: 50%;
	}
}

/* Gutter */
.gutter {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
	/*justify-content: space-between;*/
	justify-content: stretch;
}
.gutter > * {
	margin-bottom: 2px;
}

.gutter.gutter-large > * {
	margin-bottom: var(--space-large);
	margin-left: var(--space-large);
}
.gutter.gutter-large.nowrap > * {
	margin-left: var(--space-large);
}
.gutter.nowrap {
    flex-wrap: nowrap;
}
.gutter.nowrap > * {
	margin-left: 2px;
}
.gutter.nowrap > *:first-child {
	margin-left: 0;
}
.gutter + p {
	margin-top: var(--space-medium);
}

@media screen and (min-width: 40em) {
	.gutter {
		flex-wrap: nowrap;
	}
	.gutter > * {
		margin-left: 2px;
	}
	.gutter.gutter-large > * {
		margin-bottom: var(--space-large);
		margin-left: var(--space-large);
	}
	.gutter.gutter-large > *:first-child,
	.gutter > *:first-child {
		margin-left: 0;
	}
	.gutter.gutter-25-50 > * {
		flex: initial;
		width: calc(50% - 1px);
		margin-left: 0;
	}
}
@media screen and (min-width: 60em) {
	.gutter.gutter-large > * {
		margin-bottom: calc(2 * var(--space-large));
		margin-left: calc(2 * var(--space-large));
	}
}

/* Grid */
.grid {
	display: grid;
    grid-template-columns: repeat(1, 1fr);
    overflow: hidden; /*this will hide -1px the top and left line */
	column-gap: 1px;
	row-gap: 1px;
	gap: 1px;
	background: #000;
	border-bottom: 1px solid;
}
.grid article.site-main-block {
	width: 100%;
	border: 0px !important;
}

@media screen and (min-width: 35em) {
	.grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (min-width: 70em) {
	.grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.grid article.site-main-block.col-span-2 {
		grid-column: span 2;
	}
}

/* Site */
.site,
.site-content,
.content-area,
.site-main {
	width: 100%;
}
.site-content {
	margin-top: var(--space-large); /* site-header height */
}

/* Site Main Blocks */
article.site-main-block {
	width: 100%;
	background: var(--bg-color);
}
article.site-main-block .entry-content {
    padding: var(--space-small);
	width: 100%;
}
article.site-main-block .entry-header {
	line-height: inherit;
	margin-top: var(--space-small);
	margin-bottom: 0;
}
article.site-main-block .entry-footer p {
    display: inline;
}
@media screen and (min-width: 40em) {
	article.site-main-block {
		width: 50%;
		display: flex;
	}
	article.site-main-block + article.site-main-block {
		border-left: 1px solid;
	}
	article.site-main-block:nth-of-type(2n) + article.site-main-block {
		border-left: 0;
	}
	article.site-main-block .entry-header {
		/*margin-bottom: var(--space-xsmall);*/
	}
}
@media screen and (min-width: 80em) {
	article.site-main-block {
		width: 33.333%;
	}
	article.site-main-block + article.site-main-block,
	article.site-main-block:nth-of-type(2n) + article.site-main-block {
		border-left: 1px solid;
	}
	article.site-main-block:nth-of-type(3n) + article.site-main-block {
		border-left: 0;
	}
}
@media screen and (min-width: 120em) {
	article.site-main-block {
		width: 25%;
	}
	article.site-main-block + article.site-main-block,
	article.site-main-block:nth-of-type(2n) + article.site-main-block,
	article.site-main-block:nth-of-type(3n) + article.site-main-block {
		border-left: 1px solid;
	}
	article.site-main-block:nth-of-type(4n) + article.site-main-block {
		border-left: 0;
	}
}

/* Site Main Blocks Post Types */
article.site-main-block.format-quote {

}
article.site-main-block.format-image {
	width: ;
}
article.site-main-block.format-gallery {
	width: ;
	/*grid-column: span 2;*/
}

/* Posts & Pages */
article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
    	-ms-flex-direction: column;
			flex-direction: column;
	-ms-flex-wrap: wrap;
    	flex-wrap: wrap;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	width: 100%;
}
.error404 article,
.single article {
    padding: 0 var(--space-small);
}
.page article {
    padding: var(--space-small);
}

/* Entry */
.entry-header {
	margin-top: var(--space-small);
	margin-bottom: 0;
	width: 100%;
}
@media screen and (min-width: 40em) {
	.entry-header {
		margin-top: var(--space-small);
		margin-bottom: var(--space-xsmall);
	}
}
.entry-content {
	width: 100%;
}
.page .entry-content p,
.single .entry-content p {
	margin-bottom: var(--space-medium);
}
.entry-footer {
	width: 100%;
}

/* View More Link */
.view-more {
    /*position: relative;
    padding-left: 1.15em;*/
	white-space: nowrap;
}
.view-more::before {
	display: inline-block;
	content: '';
	-webkit-border-radius: 100%;
	border-radius: 100%;
	height: .8em;
	width: .8em;
	margin: 0 .2em .15em 0;
	background-color: #000;
	vertical-align: middle;
	/*position: absolute;
	left: 0;
	top: 0;
	scale: .75;*/
}
.single-post .view-more {
	display: none;
}

/*--------------------------------------------------------------
Forms
--------------------------------------------------------------*/
input,
label,
select {
	display: block;
}
label {
	
}
label.required:after {
	content: "*";
}
label abbr {
	display: none;
}
textarea,
input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea,
select[multiple=multiple] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: border-color;
	-moz-transition: border-color;
	transition: border-color;
	background-color: transparent;
	border-radius: 2px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: none;
	padding: 0.5em 0.5em;
	width: 100%;
}
textarea:hover,
input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="email"]:hover, input[type="month"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="time"]:hover, input[type="url"]:hover, input[type="week"]:hover, input:not([type]):hover, textarea:hover,
select[multiple=multiple]:hover {
	opacity: 1;
}
textarea:focus,
input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus,
select[multiple=multiple]:focus {
	box-shadow: none;
	outline: none;
	opacity: 1;
}
input[type="checkbox"],
input[type="radio"] {
	display: inline;
	margin-right: 0.375em;
}
input[type="file"] {
	padding-bottom: 0.75em;
	width: 100%;
}
select {
	margin-bottom: 1.5em;
	max-width: 100%;
	width: auto;
}

/*--------------------------------------------------------------
Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:hover, 
.screen-reader-text:active, 
.screen-reader-text:focus {
	background-color: #eee;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: black;
	display: block;
	font-size: .8em;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.site-header {
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 4;
	-webkit-transition: background-color 0.1s;
	-moz-transition: background-color 0.1s;
	transition: background-color 0.1s;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	padding: 0 var(--space-small);
	border-bottom: 1px solid;
	line-height: var(--space-large);
	height: var(--space-large);
}
.site-header.is-fixed {
	/* when the user scrolls down, we hide the header right above the viewport */
	background-color: #f2f2f2;
	position: fixed;
	top: calc(var(--space-large) * -1);
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}
.site-header.is-visible {
	/* if the user changes the scrolling direction, we show the header */
	-webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.site-header.menu-is-open {
	/* add a background color to the header when the navigation is open */
	background-color: #ffffff;
}

.site-title {
	width: 50%;
}

.site-menu {
	width: 50%;
	position: relative;
}

.site-menu ul li {
	display: inline;
}

.site-menu li + li {
	padding-left: var(--space-small);
}

.site-info {

}

/* Site Navigation Button */
a.site-navigation-button {
	border-bottom: 0;
}

a.site-navigation-button:visited,
a.site-navigation-button:active, 
a.site-navigation-button:hover, 
a.site-navigation-button:focus {
	color: inherit;
	outline: none;
	text-decoration: none;
	border-bottom: 0;
	outline: none; 
}

.site-navigation-button .menu-button {
	display: grid;
	place-content: center;
}

.site-navigation-button .menu-button .open,
.site-navigation-button .menu-button .close {
	grid-area: 1 / 1;
	text-align: right;
}

@media (max-width: 40em) {
	.site-navigation-button .menu-button .open,
	.site-navigation-button .menu-button .close {
		text-align: left;
	}
}

.site-navigation-button .menu-button .open {
	opacity: 1;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.site-navigation-button .menu-button .close {
	opacity: 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.site-navigation-button .menu-button.is-clicked .open{
	opacity: 0;
}
.site-navigation-button .menu-button.is-clicked .close{
	opacity: 1;
}

/*--------------------------------------------------------------
Header Menu/Info Overlay
--------------------------------------------------------------*/
.site-navigation-wrapper {
	/* by default hidden on top of viewport */
	position: fixed;
	left: 0;
	top: 0;
	height: auto;
	width: 100%;
	background-color: #ffffff;
	z-index: 3;
	opacity: 1;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	padding-left: var(--space-small);
	padding-right: var(--space-small);
	padding-top: calc(var(--space-large) + var(--space-small));
	padding-bottom: var(--space-large);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: auto;
	/* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
	-webkit-overflow-scrolling: touch;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
.site-navigation-wrapper.is-visible {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.site-navigation-wrapper section {
	opacity: 0;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.site-navigation-wrapper.is-visible section {
	opacity: 1;
}

.main-navigation {
	opacity: 0;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.site-navigation-wrapper.is-visible .main-navigation {
	opacity: 1;
}
.main-navigation ul {
	padding: 0 0 60px;
}
.main-navigation li {
	padding: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.main-navigation li:last-child {
	border: none;
}
.main-navigation a {
	color: #f0f0f0;
}
.no-touch .main-navigation a:hover {
	color: rgba(0, 0, 0, 0.6);
}
.main-navigation .children, 
.main-navigation .sub-menu {
	padding: 0 0 0 0;
}
.main-navigation .children li, 
.main-navigation .sub-menu li {

}
@media screen and (min-width: 40em) {
	.main-navigation .children li, 
	.main-navigation .sub-menu li {

	}
}
.main-navigation .children li ul, 
.main-navigation .sub-menu li ul {
	padding: 0;
}
.main-navigation .children li ul li, 
.main-navigation .sub-menu li ul li {
	padding-bottom: .2em;
	padding-top: .2em;
}
.main-navigation .children li:last-child, 
.main-navigation .sub-menu li:last-child {
	margin-bottom: 0;
	border: none;
}

/*--------------------------------------------------------------
Sub Header
--------------------------------------------------------------*/
.sub-header {
	padding: var(--space-small);
	width: 100%;
}

@media screen and (min-width: 40em) {
	.home .format-link {
    	flex-direction: row;
   		flex-wrap: nowrap;
    	align-content: space-between;
    }
	.home .format-link .entry-content {
		width: calc(50% - .5em);
	}
}

/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.site-footer {
	margin: 2.5em 0 0 0;
	padding: var(--space-small);
	width: 100%;
	border-top: 1px solid;
}

.site-footer-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.site-footer a,
.site-footer a:active, 
.site-footer a:hover, 
.site-footer a:focus
.site-footer a:visited {
	color: inherit;
	border-bottom: 0;
	text-decoration: none;
	outline: none;
}

/*--------------------------------------------------------------
LightGallery
--------------------------------------------------------------*/
.lightgallery-default a {
	background-image: none;
	text-decoration: none;
}
.lg-toolbar {
    line-height: var(--space-large);
	padding: 0 var(--space-small);
}
.lg-outer .lg-img-wrap {
    padding: var(--space-large);
}
.lg-sub-html {
    padding: var(--space-small);
}

/*--------------------------------------------------------------
Swiper 3.3.1
--------------------------------------------------------------*/
.swiper-container {
	margin: 0 auto;
	/*padding-bottom: var(--space-large);*/
	height: auto;
	width: 100%;
	position: relative;
	overflow: hidden;
	/* Fix of Webkit flickering */
	z-index: 1; 
}
.swiper-container-no-flexbox .swiper-slide {
	float: left; 
}
.swiper-container-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column; 
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	-moz-transform: translate3d(0px, 0, 0);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0); 
}
.swiper-container-multirow > .swiper-wrapper {
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap; 
}
.swiper-container-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto; 
}
.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex: 0 0 auto;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	text-align: center; 
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto; 
}
.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-transition-property: -webkit-transform, height;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform, height; 
}
/* a11y */
.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000; 
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
	touch-action: pan-y; 
}
.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
	touch-action: pan-x; 
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 0;
	width: 10%;
	height: calc(100% - var(--space-large));
	z-index: 2;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	cursor: auto;
	pointer-events: none; 
}
.swiper-button-prev {

}
.swiper-button-next {

}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	cursor: w-resize;
	background-image: none;
	left: 0; 
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	cursor: e-resize;
	background-image: none;
	right: 0;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Caption/Pagination */
.swiper-caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	z-index: 3;
	cursor: default;
	padding: 0;
	margin: var(--space-xsmall) 0 var(--space-medium);
	/*position: absolute;
	bottom: 0;*/
	width: 100%;
}
.swiper-info,
.swiper-pagination {
	/*width: 50%;*/
}
.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
	margin-left: var(--space-small);
	order: 1;
}
.swiper-expand {
	width: 100%;
	text-align: right;
}
/* Progress */
.swiper-pagination-progress {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-moz-transform-origin: left top;
	-ms-transform-origin: left top;
	-o-transform-origin: left top;
	transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
	-webkit-transform-origin: right top;
	-moz-transform-origin: right top;
	-ms-transform-origin: right top;
	-o-transform-origin: right top;
	transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
	background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
	background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
	background: #000;
}
/* 3D Container */
.swiper-container-3d {
	-webkit-perspective: 1200px;
	-moz-perspective: 1200px;
	-o-perspective: 1200px;
	perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	/* Safari 4+, Chrome */
	background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Chrome 10+, Safari 5.1+, iOS 5+ */
	background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Firefox 3.6-15 */
	background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Opera 11.10-12.00 */
	background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	/* Safari 4+, Chrome */
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Chrome 10+, Safari 5.1+, iOS 5+ */
	background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Firefox 3.6-15 */
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Opera 11.10-12.00 */
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	/* Safari 4+, Chrome */
	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Chrome 10+, Safari 5.1+, iOS 5+ */
	background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Firefox 3.6-15 */
	background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Opera 11.10-12.00 */
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
	/* Safari 4+, Chrome */
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Chrome 10+, Safari 5.1+, iOS 5+ */
	background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Firefox 3.6-15 */
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Opera 11.10-12.00 */
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	/* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
	/* Windows 8 IE 10 fix */
	-ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
	overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
	pointer-events: auto;
	visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}
/* Scrollbar */
.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}
.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	left: 0;
	top: 0;
}
.swiper-scrollbar-cursor-drag {
	cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	-moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	-webkit-background-size: 100%;
	background-size: 100%;
	background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg);
	}
}
