@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: "" "";
}

sup {
	font-size: 9px;
	vertical-align: top;
}

/* 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;}

/* Effect */
.zoom { overflow: hidden; }
.zoom img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all ease-out 0.4s;
	   -moz-transition: all ease-out 0.4s;
	    -ms-transition: all ease-out 0.4s;
	        transition: all ease-out 0.4s;
}
.zoom:hover img {
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

/* Decoration */
.noborder { border: none;}

/* text */
.text-note { font-size: 1.2rem; }
.fc-red { color: #f00; }

/* Flexbox */
.flex-parent {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	flex-shrink: 0;
}
.reverse { flex-direction: row-reverse; }
.justify-sb {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.justify-fs {
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
.flex-wrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-row {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-shrink: 0;

	margin-right: -3%;
}
.flex-row > .flex-child { margin-right: 3%; margin-bottom: 3%;}

.flex-row.col-2 > .flex-child { width: 47%;}
.flex-row.col-3 > .flex-child { width: 30.33%;}
.flex-row.col-4 > .flex-child { width: 22%;}
.flex-row.col-5 > .flex-child { width: 17%;}
.flex-row.col-6 > .flex-child { width: 13.66%;}
.flex-row.col-8 > .flex-child { width: 9.5%;}

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

	.flex-row { margin-right: -3.125vw; }
	.flex-row > .flex-child { margin-right: 3.125vw; margin-bottom: 3.125vw; }
	.flex-row.flex-parent { margin-right: 0; }
	.flex-row.flex-parent > .flex-child { margin-right: 0; margin-bottom: 6.25vw;}
	.flex-row.flex-parent > .flex-child:last-child { margin-bottom: 0;}
	.flex-row.col-2 > .flex-child { width: calc(50% - 3.125vw);}
	.flex-row.col-3 > .flex-child { width: calc(33.33% - 3.125vw);}
	.flex-row.col-4 > .flex-child { width: calc(25% - 3.125vw);}
	.flex-row.col-5 > .flex-child { width: calc(20% - 3.125vw);}
	.flex-row.col-6 > .flex-child { width: calc(16.66% - 3.125vw);}
	.flex-row.col-8 > .flex-child { width: calc(12.5% - 3.125vw);}
}

/* Layout */
@media screen and (min-width: 600px) {
	.picture-content > .picture,
	.picture-content > .content {
		max-width: 48%;
	}
}
.picture-content > .picture,
.picture-content > .content {
	width: 100%;
}

/* 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: 600px) {
	/* 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: 599px) {
	.picture-content > * { margin-bottom: 3.125vw; }
	.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;
	}
}