@charset "utf-8";

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

Reset default browser

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

/* =HTML5 Reset default browser CSS.
    Based on work by Eric Meyer
    http://meyerweb.com/eric/tools/css/reset/index.html
----------------------------------------------------------- */
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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
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  {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
	border-collapse: collapse !important;
}

:focus  {
	outline: 0;
}

body  {
	background: #fff;
	line-height: 1;
}

ol, ul  {
	list-style: none;
}

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

caption, th, td  {
	font-weight: normal;
	text-align: left;
}

blockquote:before, blockquote:after, q:before, q:after  {
	content: "";
}

blockquote, q  {
	quotes: "" "";
}

a img  {
	border: 0 !important;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section  {
	display: block;
}

audio, canvas, video  {
	display: inline-block;
	max-width: 100%;
	*display: inline;
	zoom: 1;
}

html  {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}


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

Basic Setup

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

img {
	display: inline-block;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a img {
	border: none;
}

strong {
	font-weight: bold;
}

iframe, video, embed {
	display: block;
	max-width: 100%;
}

.clearfix  {
	zoom:1; /* IE 5.5-7*/
}

.clearfix:after  {
	content:".";
	display: block;
	height: 0px;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

* html .clearfix  {
	display: inline-table;
	/**/display:block;/**/
}

.clear  {
	margin:0 !important;
	clear:both;
	visibility: hidden;
	height: 0;
}

.hidden  {
	display:none !important;
	visibility: hidden;
	height: 0;
}

.imgover {}

.anchor-link {}

.window-scale  {
	height: 100vh;
}

.pointer  {
	cursor: pointer;
}

.shadow  {
	box-shadow:1px 1px 8px #ccc;
}

.radius  {
	border-radius: 5px;
}

/* Flexbox */
.flex-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex-wrapper .flex-item {
	width: 50%;
}

/* Columns */
.row {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.row .col {}
.cnt-l, .cnt-r { width: 48%;}
.cnt-l { float: left;}
.cnt-r { float: right;}
.fl { float: left;}
.fr { float: right;}

/* Layout */
.picture-content {}
.picture-content .picture { width: 44%; }
.picture-content .content { width: 52%; }

.flex-row {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-right: -40px;
}
.flex-row .flex-item { margin-right: 40px; margin-bottom: 40px;}
.flex-row.column-2 .flex-item { width: calc(50% - 40px);}
.flex-row.column-3 .flex-item { width: calc(33.33% - 40px);}
.flex-row.column-4 .flex-item { width: calc(25% - 40px);}
.flex-row.column-5 .flex-item { width: calc(20% - 40px);}
.flex-row.column-6 .flex-item { width: calc(16.66% - 40px);}
.flex-row.column-8 .flex-item { width: calc(12.5% - 40px);}

/* Alignment */
.alignleft { display: block; float: left; margin: 0 2em 2em 0;}
.alignright { display: block; float: right; margin: 0 0 2em 2em;}
.aligncenter { clear: both; display: block; margin: 0 auto 2em;}

.ta-l { text-align: left !important;}
.ta-r { text-align: right !important;}
.ta-c { text-align: center !important;}

.ta-l img,
.ta-r img,
.ta-c img { display: inline-block !important;}

/* Object Fit */
.object-fit {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

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

Social Media Button Reset

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

/* Twitter Plugin Optimize */
iframe.twitter-share-button,
iframe.twitter-follow-button { overflow-x: hidden !important;}
iframe.twitter-share-button { max-width: 105px !important;}

/* Facebook Plugin Optimize */
.fb_iframe_widget { margin: 0 !important;}
.fb-like iframe,
.fb_iframe_widget iframe { max-width:none !important;}
.fb-like-box,
.fb-like-box iframe,
.fb-like-box span { max-width:100% !important;}



@media screen and (min-width: 800px) {
	/* Hover Effect */
	.over, .scaleup, .rotate, .scaleup-rotate  {
		-webkit-transition: all ease-out 0.1s;
		   -moz-transition: all ease-out 0.1s;
		    -ms-transition: all ease-out 0.1s;
		        transition: all ease-out 0.1s;
	}

	.over:hover  {
		opacity:0.6;
	}

	.scaleup:hover  {
		-webkit-transform: scale(2);
	}

	.rotate:hover  {
		-webkit-transform: rotate(360deg);
	}
	.scaleup-rotate:hover  {
		-webkit-transform: scale(2) rotate(360deg);
		box-shadow:1px 1px 8px #999;
	}
}


@media screen and (min-width: 0px) and (max-width: 799px) {
	/* Flexbox */
	.flex-wrapper {
		flex-direction: column;
	}
	.flex-wrapper .flex-item {
		width: 100% !important;
	}
	.flex-wrapper .flex-item { margin-bottom: 6.25vw; }
	.flex-wrapper .flex-item:last-child { margin-bottom: 0; }

	.flex-row { margin-right: -6.25vw; }
	.flex-row.flex-wrapper { margin-right: 0; }
	.flex-row .flex-item { margin-right: 6.25vw; margin-bottom: 6.25vw; }
	.flex-row.column-2 .flex-item { width: calc(50% - 6.25vw);}
	.flex-row.column-3 .flex-item { width: calc(33.33% - 6.25vw);}
	.flex-row.column-4 .flex-item { width: calc(25% - 6.25vw);}
	.flex-row.column-5 .flex-item { width: calc(20% - 6.25vw);}
	.flex-row.column-6 .flex-item { width: calc(16.66% - 6.25vw);}
	.flex-row.column-8 .flex-item { width: calc(12.5% - 6.25vw);}

	.picture-content > * { margin-bottom: 6.25vw; }
	.picture-content > *:last-child { margin-bottom: 0; }

	.cnt-l,
	.cnt-r {
		float: none;
		width: 100%;
		margin: auto;
		padding: 0;
	}

	.alignleft,
	.alignright,
	.aligncenter {
		display: block;
		float: none;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.fb-like iframe {
		max-width:100% !important;
	}
}