/* RESET */

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, landing, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video
{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, landing, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {	

}

ul li {
	list-style-type: disc;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
}

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

img {
	display: block;
	max-width: 100%;
	height: auto;
}

html, body {
	-webkit-text-size-adjust: none;	

	color: #111;
	background-color: #fff;
}

::selection {
  background-color: #111; 
  color: #fff;
}
::-moz-selection {
  background-color: #111; 
  color: #fff;
}

a {
	text-decoration: none;

}

img {
	-webkit-user-select: none;  
	-moz-user-select: none;    
	-ms-user-select: none;      
	user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

/*

UTILS

*/

.reset {
	clear: both;
}

.gap {
	height: 40px;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


.widthCheck {
	position: fixed;
	top: 1px;
	left: 0px;
	z-index: 999;
	width: 100vw;	
	height: 1px;
	background-color: black;
	visibility: hidden;
	pointer-events: none;
}

.heightCheck {
	position: fixed;
	top: 0px;
	left: 1px;
	z-index: 998;
	width: 1px;	
	height: 100vh;
	background-color: black;
	visibility: hidden;
	pointer-events: none;
}

/*

TYPOGRAPHY

*/

@font-face {
	font-family: 'Caecilia';
	src: url('fonts/Caecilia LT Std 55 Roman.woff') format('woff');
}

@font-face {
	font-family: 'CaeciliaItalic';
	src: url('fonts/Caecilia LT Std 65 Italic.woff') format('woff');
}

@font-face {
	font-family: 'CaeciliaBold';
	src: url('fonts/Caecilia LT Std 75 Bold.woff') format('woff');
}

@font-face {
	font-family: 'CaeciliaBoldItalic';
	src: url('fonts/Caecilia LT W04 76 Bold Italic.woff') format('woff');
}


body {
	font-family: "Caecilia", serif;
	font-weight: 400;

	line-height: 140%;

	color: #000;
	background-color: #fff;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Caecilia", serif;
	font-weight: 400;
	line-height: 125%;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;	

	margin: 0;
}

h1 {
	font-size: 60px;
	letter-spacing: 7px;
	line-height: 140%;
	margin-bottom: 20px;
}

h2 {
	font-size: 33px;
	font-family: "CaeciliaBold", serif;
	margin-bottom: 18px;
	letter-spacing: 4px;
	line-height: 140%;
	margin-bottom: 20px;
}

h3 {
	font-size: 24px;
	letter-spacing: -0.3px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

h3:first-of-type {
	margin-top: 1px;
}

h4 {
	font-size: 20px;
	line-height: 140%;
	text-transform: uppercase;
}

a {
	color: #000;
	font-family: "CaeciliaBold", serif;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;		

	transition: 0.15s color ease-in-out;
}

a:hover {
	color: #111;
}

p, li, div, i, em, h5, h6, select, input, textarea {
	font-family: "Caecilia", serif;
	font-weight: 400;

	font-size: 20px;
	letter-spacing: 2px;
	line-height: 200%;
	
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;		

	margin: 0;
}

p {
	margin-bottom: 40px;
}

i {
	font-family: "CaeciliaItalic";	
}

em {
	font-family: "CaeciliaBold";	
}

strong {
	font-family: "CaeciliaBold";	
}

.noMarginTop {
	margin-top: 0px;
}

ul {
	margin-top: 10px;
	margin-bottom: 20px;
	margin-left: 25px;
}

ul li {
	margin-bottom: 10px;
}

small {
	font-size: 15px;
	color: #999;
}

.floatLeft {
	float: left;
}

/*

UI

*/

.btnRect {
	background-color: #503c23;
	color: #fff;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 16px;
	padding: 6px 14px 7px 14px;
	box-sizing: border-box;
	display: inline-block;
	margin-bottom: 10px;
	margin-right: 7px;
}

.btnRect:hover {
	color: #f5b40f;
}

/*

STRUCTURE, HEADER & NAVIGATION

*/

.wrapper {
	position: relative;
	opacity: 1;
 	overflow: hidden;
}

.header {
	width: 100%;
	box-sizing: border-box;

	padding-top: 70px;

	margin: 0 auto;
	margin-bottom: 80px;

	background-color: #fff;
	border-bottom: 1px solid #808080;
	overflow: hidden;
	text-align: center;
}

.headerLogo {
	width: 300px;
	height: auto;
	margin: 0 auto;
}

.navi {
	display: inline-block;
	margin-top: 15px;
	margin-bottom: 25px;
}

.naviItem {
	position: relative;
	display: block;
	float: left;
	background-color: #fff;
	padding: 0px 12px 0 15px;
	height: 60px;
	transition: 0.25s background-color ease-in-out;
	box-sizing: border-box;
	overflow: hidden;
}

.naviItem p {
	position: relative;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-top: 13px;
}

.naviItemHover {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0;
	top: 31px;
	background-color: #eee;
	transition: 0.15s top ease-in-out, 0.15s height ease-in-out;
}

.naviItem:hover .naviItemHover {
	top: 0px;
	height: 62px;
}

.btnStore,
.btnMenu,
.btnCloseImage,
.btnDownload {
	position: absolute;
	z-index: 101;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	transition: 0.25s background-color ease-in-out;
	cursor: pointer;
	overflow: hidden;
}

.btnStore img,
.btnMenu img,
.btnCloseImage img,
.btnDownload img {
	position: relative;
}

.btnStore:hover {
	//background-color: #eee;
}

.btnHover {
	position: absolute;
	background-color: #eee;
	left: 50%;
	top: 50%;
	width: 0%;
	height: 0%;
	border-radius: 50%;
	transition: 0.2s left ease-in-out,
				0.2s top ease-in-out,
				0.2s width ease-in-out,
				0.2s height ease-in-out;
}

.btnStore:hover .btnHover,
.btnMenu:hover .btnHover,
.btnCloseImage:hover .btnHover,
.btnDownload:hover .btnHover {
	left: -25%;
	top: -25%;
	width: 150%;
	height: 150%;
}

.iconClose {
	display: none;
}

.naviFloat {
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 60px;
	background-color: #fff;
	overflow: hidden;
	border-bottom: 1px solid #aaa;
	box-sizing: border-box;
	top: -60px;
}

.naviFloatLogo {
	float: left;
	height: 20px;
	width: auto;
	margin-left: 10px;
	margin-top: 21px;
	margin-right: 20px;
}

.naviFloat .btnStore {
	top: 0;
	right: 0px;
}

.naviFloat .btnMenu {
	left: 0px;
	top: 0;
	display: none;
}

.naviFloatItems {

}

.naviFloat .naviItem {
	height: 60px;
}

.naviFloat .naviItem p {
	font-size: 15px;
	margin-top: 16px;
}

.toggleMenu {
	cursor: pointer;
}

.menu {
	position: fixed;
	top: -100vh;
	display: none;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	z-index: 99;
	text-align: center;
	padding-top: 80px;
	box-sizing: border-box;
}

.menu .naviItem {
	display: inline-block;
	float: none;
	margin-bottom: 10px;
}

.section {
	width: 100%;
	max-width: 1600px;
	padding: 0 5%;
	box-sizing: border-box;
	margin: 0 auto;
	margin-bottom: 40px;
}

.section:after {
	content: "";
	display: block;
	float: none;
	clear: both;
}

.sectionTitle {
	width: 100%;
	position: relative;
	margin-bottom: 100px;
	display: table;
}

.sectionTitle img {
	width: 100%;
	height: auto;
}

.titleContainer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	display: table;
	opacity: 0;
}

.titleContent {
	width: 100%;
	display: table-cell;	
	vertical-align: middle;
}

.sectionTitle h1 {
	font-family: "CaeciliaBold";
	position: relative;
	width: 100%;
	max-width: 750px;
	text-align: center;
	margin: auto;
	color: #fff;
	text-shadow: 0px 0px 40px rgba(0,0,0,0.6);
}

.section img {
	margin: 80px 0;
	width: 100%;
	height: auto;
}

.sectionTitle img {
	margin: 0;
}


.leftCol {
	width: 47.225%;
	float: left;
	margin-bottom: 80px;
}

.rightCol {
	width: 47.225%;
	float: right;
	margin-bottom: 80px;
}

.has-2-columns .wp-block-column {
	width: 47.225%;
	margin-right: 5.55%;
	float: left;
	margin-bottom: 40px;
}

.has-2-columns .wp-block-column:nth-of-type(2) {
	margin-right: 0%;
}

.has-2-columns:after {
	content: "";
	display: block;
	float: none;
	clear: both;
}


.col3,
.has-3-columns .wp-block-column {
	width: 29.6%;
	margin-right: 5.555%;
	float: left;
	margin-bottom: 40px;
}

.has-2-columns,
.has-3-columns {
	padding: 40px 0;
}

.has-3-columns:after {
	content: "";
	display: block;
	float: none;
	clear: both;
}

.col3:nth-of-type(3),
.has-3-columns .wp-block-column:nth-of-type(3) {
	margin-right: 0;
}

.col3 img,
.has-2-columns .wp-block-column img,
.has-3-columns .wp-block-column img {
	width: 100%;
	height: auto;
	margin: 0;
}

.centerCol {
	margin-bottom: 80px;
}

.centerCol p {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;

}

.centerCol h1,
.centerCol h2,
.centerCol h3 {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.leftCol img,
.rightCol img {
	margin: 0;
}

.centerCol img {
	width: 100%;
	height: auto;
	max-width: 900px;
	margin: 80px auto;
}

.centeredText {
	text-align: center;
	margin-bottom: 80px;
}

.centerCols {
	position: relative;
	display: table;
	margin-bottom: 80px;
}

.centerCols .leftCol,
.centerCols .rightCol {
	float: none;
	clear: both;
	position: relative;
	display: table-cell;
	vertical-align: middle;
}

.centerCols .leftCol {
	box-sizing: border-box;
	padding-right: 2.775%;
}

.centerCols .rightCol {
	box-sizing: border-box;
	padding-left: 2.775%;
}

.collaborationContent,
.collectionContent {
	padding-bottom: 40px;
}

.collaborationContent h1,
.collaborationContent h2,
.collaborationContent h3,
.collectionContent h1,
.collectionContent h2,
.collectionContent h3 {
	max-width: 1000px;
	margin: 40px auto;
	text-align: center;
}

.collaborationContent p,
.collectionContent p {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.collaborationContent img,
.collectionContent img {
	//width: 100%;
	//height: auto;
}

.collectionContent .portrait img, 
.collaborationContent .portrait img {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.aboutMoreInfo {
	text-align: center;
}

.aboutMoreInfo h1 {
	margin-bottom: 20px;
}

.aboutMoreInfo h3 {
	font-size: 25px;
	margin-bottom: 20px;
	font-family: "CaeciliaBold", serif;
}

.aboutMoreInfo img {
	margin: 40px auto;
}

.instaFeed2 {
	display: none;
}

.instaTitle {
	text-align: center;
	padding: 24px 5% 0px 5%;
	margin: 0;
}

.instaFeed {
	padding: 40px 5% 120px 5%;
}


.footer {
	width: 100%;
	background-color: #ccc;
}

.footerContent {
	width: 100%;
	max-width: 1600px;
	padding: 50px 5%;
	box-sizing: border-box;
	margin: 0 auto;
}

.footerContent p {
	padding: 0;
	margin:  0;
}

.footerContent a {
	display: block;
	text-align: center;
	font-family: "Caecilia", serif;
	text-transform: uppercase;
	font-size: 16px;
}

.footerCopy {
	margin-top: 40px;
	text-align: center;
	font-size: 16px;

}

/*

PRESS

*/

.press h2 {
	margin-bottom: 5px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.press p {
	margin-bottom: 10px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/*

WP GALLERY

*/

.wp-block-image img {
	//max-width: 800px;
	//margin: 0 auto;
}

.wp-block-gallery {
	margin: 0;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 80px;
}

.columns-2 {
	max-width: 800px;
}

.columns-1 {
	max-width: 400px;
}

.wp-block-gallery figcaption {
	display: none;
}

.wp-block-gallery:after {
	display: block;
	content: "";
	float: none;
	clear: both;
}

.wp-blockgallery li {
	list-style-type: none;
}

.columns-8 .blocks-gallery-item {
	width: 12.5%;
}

.columns-8 .blocks-gallery-item:nth-child(8n+9) {
	clear: left;
}

.columns-7 .blocks-gallery-item {
	width: 14.285%;
}

.columns-7 .blocks-gallery-item:nth-child(7n+8) {
	clear: left;
}

.columns-6 .blocks-gallery-item {
	width: 16.666%;
}

.columns-6 .blocks-gallery-item:nth-child(6n+7) {
	clear: left;
}

.columns-5 .blocks-gallery-item {
	width: 20%;
}

.columns-5 .blocks-gallery-item:nth-child(5n+6) {
	clear: left;
}

.columns-4 .blocks-gallery-item {
	width: 25%;
}

.columns-4 .blocks-gallery-item:nth-child(4n+5) {
	clear: left;
}

.columns-3 .blocks-gallery-item {
	width: 33.33333%;
}

.columns-3 .blocks-gallery-item:nth-child(3n+4) {
	clear: left;
}

.columns-2 .blocks-gallery-item {
	width: 50%;
}

.columns-2 .blocks-gallery-item:nth-child(2n+3) {
	clear: left;
}


.blocks-gallery-item {
	float: left;
	margin: 0;
	padding: 5px;
	box-sizing: border-box;
	cursor: zoom-in;
}

.blocks-gallery-item img {
	margin: 0;
	padding: 0;
}

.btnCloseImage {
	right: 0px;
	top: 0px;
}

.btnDownload {
	right: 0px;
	top: 70px;
}

.imageViewer {
	position: fixed;
	z-index: 500;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	display: none;
	cursor: pointer;
	overflow: none;

	box-sizing: border-box;
	padding: 10px;

	vertical-align: middle
}

.imageViewerBg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.9);
}

.imageViewerSrc {
	position: relative;

	margin: auto;
	box-sizing: border-box;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;

	top: 50%;
	transform: translateY(-50%);	

/*
	position: relative;
	top: 0;
	left: 0;

	width: null;
	height: null;
*/
}

.btnCloseImage,
.btnDownload {
	background-color: #fff;
}

.imageViewerInfo {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width: 100%;
	z-index: 1550;
	background-color: #fff;
	box-sizing: border-box;
	overflow: none;
	padding: 20px 20px 15px 20px;
	display: none;
}

.imageViewerInfoText {
	text-align: center;
	margin-bottom: 0;
}

.imageViewerInfo .btnCloseImage {
	width: 50px;
	height: 50px;
	right: -10px;
	top: -40px;
}

.imageViewerInfoText {

}

.awardsText p {
	margin-bottom: 0;
}

/*

MEDIA QUERIES

*/

@media (max-width: 800px) {
	.instaFeed4 {
		display: none;
	}

	.instaFeed2 {
		display: block;
	}


	.columns-8 .blocks-gallery-item {
		width: 33.3333%;
	}

	.columns-8 .blocks-gallery-item:nth-child(8n+9) {
		clear: none;
	}

	.columns-8 .blocks-gallery-item:nth-child(3n+4) {
		clear: left;
	}

	.columns-7 .blocks-gallery-item {
		width: 33.333%;
	}

	.columns-7 .blocks-gallery-item:nth-child(7n+8) {
		clear: none;
	}

	.columns-7 .blocks-gallery-item:nth-child(3n+4) {
		clear: left;
	}

	.columns-6 .blocks-gallery-item {
		width: 33.33333%;
	}

	.columns-6 .blocks-gallery-item:nth-child(6n+7) {
		clear: none;
	}

	.columns-6 .blocks-gallery-item:nth-child(3n+4) {
		clear: left;
	}

	.columns-5 .blocks-gallery-item {
		width: 33.33333%;
	}

	.columns-5 .blocks-gallery-item:nth-child(5n+6) {
		clear: none;
	}

	.columns-5 .blocks-gallery-item:nth-child(3n+4) {
		clear: left;
	}

	.columns-4 .blocks-gallery-item {
		width: 33.33333%;
	}

	.columns-4 .blocks-gallery-item:nth-child(4n+5) {
		clear: none;
	}

	.columns-4 .blocks-gallery-item:nth-child(3n+4) {
		clear: left;
	}

}

@media (max-width: 600px) {

	.columns-8 .blocks-gallery-item,
	.columns-7 .blocks-gallery-item,
	.columns-6 .blocks-gallery-item,
	.columns-5 .blocks-gallery-item,
	.columns-4 .blocks-gallery-item,
	.columns-3 .blocks-gallery-item {
		width: 50%;
	}

	.columns-8 .blocks-gallery-item:nth-child(3n+4),
	.columns-7 .blocks-gallery-item:nth-child(3n+4),
	.columns-6 .blocks-gallery-item:nth-child(3n+4),
	.columns-5 .blocks-gallery-item:nth-child(3n+4),
	.columns-4 .blocks-gallery-item:nth-child(3n+4),
	.columns-3 .blocks-gallery-item:nth-child(3n+4) {
		clear: none;
	}

	.columns-8 .blocks-gallery-item:nth-child(2n+3),
	.columns-7 .blocks-gallery-item:nth-child(2n+3),
	.columns-6 .blocks-gallery-item:nth-child(2n+3),
	.columns-5 .blocks-gallery-item:nth-child(2n+3),
	.columns-4 .blocks-gallery-item:nth-child(2n+3),
	.columns-3 .blocks-gallery-item:nth-child(2n+3) {
		clear: left;
	}


}

@media (max-width: 800px) {
	.footerContent .col3 {
		width: 100%;
		margin-right: 0;
	}

	.footerCopy {
		margin-top: 40px;
	}
}

@media (max-width: 1200px) {
	h1 {
		font-size: 50px;
		letter-spacing: 6px;
	}
}

@media (max-width: 900px) {
	h1 {
		font-size: 40px;
		letter-spacing: 5px;
	}

	h2 {
		font-size: 28px;
	}

	p {
		font-size: 17px;
		letter-spacing: 1.6px;
	}

	.leftCol,
	.rightCol,
	.centerCol,
	.col3 {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.section {
		margin-bottom: 40px;
	}

	.sectionTitle {
		margin-bottom: 40px;
	}

	.naviFloat .naviItem {
		padding: 0 7px 0 10px;
	}

	.btnStore {
		top: 0;
		right: 0;
	}
}

@media (max-width: 800px) {
	.naviFloat .naviItem {
		display: none;
	}

	.naviFloat .btnMenu {
		display: block;
	}

	.naviFloatLogo {
		float: none;
		clear: both;
		display: block;
		margin: 0 auto;
		margin-top: 21px;
	}
}

@media (max-width: 600px) {
	h1 {
		font-size: 30px;
		letter-spacing: 4px;
		text-align: center;
	}

	h2 {
		font-size: 24px;
	}

	p {
		font-size: 16px;
		letter-spacing: 1.5px;
	}

	.naviItem {
		display: block;
		float: none;
	}

	.leftCol,
	.rightCol,
	.col3 {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.naviFloat .btnStore {
		right: 0;
	}

	.naviFloat .btnMenu {
		left: 0;
	}

	.naviFloatLogo {
		height: 18px;
		margin-top: 22px;
	}
}



















