@charset "utf-8";
/* CSS Document */

	
* {
		box-sizing: border-box;
	}
	
html, body {
	background-image: url(../images/paper-tile.jpg);
	margin: 0;
	height: 100%;
	min-width:320px;
    width: auto !important;
    width:320px;
	}
	
.container {
	position: relative;
	min-height: 100%;
	margin-bottom: -144px;
}	
	
/* HEADER */	
	
.header {
	width: 100%;
	height: 77px;
	background: #FFFFFF;
	margin: 0px;		
}
	
.header-logo{
	background: inherit;
	width:320px;
	height:100%;
	padding: 14px 0 0 14px;	
	float: left;
}
	
.logo-only {
	display: none;		
}
	
.nav-menu{
	background: inherit;
	float: right;
	padding-right:14px;
	font-family: europa, sans-serif;
   	font-size: 28px;
    font-weight: 400;
	height: 77px;
	line-height: 77px;	
}
	
.separator {
	vertical-align: baseline;		
}
		
a.menu-links:link {
    color: black;
	text-decoration: none;
}

a.menu-links:visited {
    color: black;
	text-decoration: none;
}

a.menu-links:hover {
    color: lightslategrey;
	text-decoration: none;
}

a.menu-links:active {
    color: lightgrey;
}	
	
/* FOOTER */	
	
.clear-footer{
	height: 144px;
	clear: both;
}
	
.footer {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
	height: 144px;
    background-color: #FFFFFF;
    color: black;
	font-family: europa, sans-serif;
   	font-size: 17px;
    font-weight: 400;
	clear: both;	
}
	
.footer-box{
	width: 33.33%;
	height: 100%;
	float: left;
	vertical-align: middle;
	text-align: center;
	padding: 45px 0;		
}
	
.contact-footer {
	padding-left: 40px;
}
	
.contact-mobile {
	display: none;
}
	
.contact-wide {	
	display: block;	
}
	
.footer-logo{
	width:70%;
	height: 100%;
	line-height: 100%;
	vertical-align: middle;		
}
	
.footer-logo-mobile {
	display: none;
}

.social-links {
	font-size: 24px;
}

.social-links a:link {
    color: black;
	text-decoration: none;
}

.social-links a:visited {
    color: black;
	text-decoration: none;
}

.social-links a.fb:hover {
    color: 	#3b5998;
	text-decoration: none;
}

.social-links a.fb:active {
    color: 	#3b5998;
}
	
.social-links a.ig:hover {
    color: 	#c13584;
	text-decoration: none;
}

.social-links a.ig:active {
    color: 	#c13584;
}
	
.social-links a.vm:hover {
    color: 	#1ab7ea;
	text-decoration: none;
}

.social-links a.vm:active {
    color: #1ab7ea;
}
	
/* HEADER AND FOOTER MEDIA QUERIES */
	
/* Screen sizes smaller than 600px */	
	
@media only screen and (max-width:599px) {

		.container {
		position: relative;
		min-height: 100%;
		margin-bottom: -50px;	
	}
	
	/* HEADER */
	
	.header {
		position: relative;	
		width: 100%;
		height: 60px;
		background: #FFFFFF;
		margin: 0px;		
	}
	
	.header-logo{
		position: absolute;
		width:40px;
		height:36px;
		padding: 5px 0px 0 0;	
		left: 50%;
		margin-left: -20px;
	}
	
	.nav-menu{
		position: absolute;
		background: transparent;
		text-align: center;
		font-family: europa, sans-serif;
   		font-size: 12px;
    	font-weight: 400;
		width: 100%;
		height: 20px;
		float: none;
		padding-right:0;
		line-height: 20px;
		top: 35px;
	}

	.full-logo {
		display: none;
	}
	
	.logo-only {
		display: block;
		width: 100%;
		margin: auto;
	}
	
	.separator {
		vertical-align: baseline;		
	}
	
	
	/* FOOTER */
	
	.footer {
   		position: relative;
    	left: 0;
    	bottom: 0;
    	width: 100%;
		height: 50px;
    	background-color: #FFFFFF;
    	color: black;
		font-family: europa, sans-serif;
   		font-size: 5px;
    	font-weight: 400;
		clear: both;	
	}
	
	.clear-footer{
		height: 50px;
		clear: both;
	}
	
	.footer-box{
		width: 50%;
		height: 100%;
		float: left;
		vertical-align: middle;
		text-align: center;
		padding: 0% 0;		
	}
	
	.contact-footer {
		padding-top: 14px;
		
	}
	
	.footer-logo{
		width:70%;
		height: 100%;
		line-height: 100%;
		vertical-align: middle;		
	}
	
	.footer-logo-mobile {
		display: block;
		width: 100px;
		margin: auto;
	}

	.footer-box.logo-wide {
		display: none;
		
	}
	
	.contact-mobile {
		display: block;
	}
	
	.contact-wide {
		display: none;
	}
	
	.social-links {
		padding-top: 9px;
		font-size:14px;
		line-height: 14px;
	}
	
	
	/* PAGE CONTENT */
	
	
	
	
}
	
/* Screen sizes between 600px and 899px */	
	
@media only screen and (min-width:600px) and (max-width: 899px) {
	
	.container {
		position: relative;
		min-height: 100%;
		margin-bottom: -80px;	
	}
	
	
	/* HEADER */
	
	.header-logo{
		background: inherit;
		width:100px;
		height:100%;
		padding: 10px 0px 0 14px;	
		margin-left: 5px;
		float: left;
	}
	
	.nav-menu{
		background: inherit;
		float: right;
		padding-right:20px;
		font-family: europa, sans-serif;
   		font-size: 24px;
    	font-weight: 400;
		height: 77px;
		line-height: 77px;	
	}
	
	.full-logo {
		display: none;
	}
	
	.logo-only {
		display: block;
		width: 100%;
	}
	
	.separator {
		vertical-align: baseline;		
	}
	
	
	/* FOOTER */
	
	.footer {
		position: relative;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 80px;
		background-color: #FFFFFF;
		color: black;
		font-family: europa, sans-serif;
		font-size: 1.4vw;
		font-weight: 400;
		clear: both;	
	}
	
	.clear-footer{
		height: 80px;
		clear: both;
	}
	
	.footer-box{
		width: 50%;
		height: 100%;
		float: left;
		vertical-align: middle;
		text-align: center;
		padding: 1.2% 0;		
	}
	
	.contact-footer {
		padding-left: 40px;
	}
	
	.footer-logo{
		width:70%;
		height: 100%;
		line-height: 100%;
		vertical-align: middle;		
	}
	
	.footer-logo-mobile {
		display: block;
		width: 50%;
		margin: auto;
	}

	.footer-box.logo-wide {
		display: none;		
	}
	
	.contact-mobile {
		display: block;
	}
	
	.contact-wide {
		display: none;
	}
	
	.social-links {
		font-size: 2.5vw;
	}
	
	
	/* PAGE CONTENT */
	
	
	
		
}
	
/* Screen sizes between 900px and 1099px */	
	
@media only screen and (min-width:900px) and (max-width: 1099px)  {
	
	.container {
		position: relative;
		min-height: 100%;
		margin-bottom: -100px;		
	}
	
	
	/* FOOTER */
	
	.footer {
		position: relative;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100px;
		background-color: #FFFFFF;
		color: black;
		font-family: europa, sans-serif;
		font-size: 1.4vw;
		font-weight: 400;
		clear: both;	
	}
	
	.footer-box{
		width: 33.33%;
		height: 100%;
		float: left;
		vertical-align: middle;
		text-align: center;
		padding: 2% 0;		
	}
	
	.clear-footer{
		height: 100px;
		clear: both;
	}
	
	.contact-footer {
		padding-left: 40px;
	}
	
	.footer-logo{
		width:70%;
		height: 100%;
		line-height: 100%;
		vertical-align: middle;		
	}	
	
	.social-links {
		font-size: 2.5vw;
	}
	
	
	/* PAGE CONTENT */
	

	
}
	

	
/* PAGE CONTENT */	

.page-banner {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
}	

.gallery-flex-container {
	display: flex;
	padding: 75px 50px;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
	justify-content: center;
	
		
}
.thumbnail{
	position: relative;
	width: 320px;
	height: 250px;	
	margin: 15px 25px ;
}
	
.thumbnail img {
    border: 5px solid #FFFFFF;
    border-radius: 5px;
    width: 320px;
	box-shadow: -2px 2px 10px 0px grey;
	
}

.thumbnail img:hover {
    box-shadow: -3px 3px 10px 0px black;
}
	
.caption-container{
	position: absolute;
	bottom: 15px;
	width: 100%;
	text-align: center;
	font-family: europa, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
}
	
/* LIGHTBOX */
	
	.lightbox{
		display: block;
		opacity: 0;
		position: fixed;
		top: 0;
		left: 0;
		background: rgba(0,0,0,.85);
		width: 100%;
		height: 100%;
		z-index: -1;
		transition: opacity 1000ms ease;
		
	}
	
	.lightbox-content{
		position: relative;
		width: 100%;
		padding-bottom: 56.25%;
		top:-28.125vw;
		left:-50%;
		margin-top: 50vh;
		margin-left: 50%;	
		z-index:-1;
		
	}
	
	.lightbox-content iframe{
		position: absolute;
		width: 100%;
		height: 100%;
		z-index:-1;
	}
	
	.overlay{
		position: fixed;
		rgba: (45,64,235,1);
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index:-1;
	}
	
	
	/* THUMBNAIL MEDIA QUERIES */
	
	 @media only screen and (max-width:1476px){
		.gallery-flex-container {
	display: flex;
	padding: 50px;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
	justify-content: center;
	
		
}
	}
	
	/* LIGHTBOX MEDIA QUERIES*/
	
	@media only screen and (min-width:880px){
		.lightbox{
			position: fixed;
			background: rgba(0,0,0,.85);
			width: 100%;
			height: 100%;
		}
	
		.lightbox-content{
			position: absolute;			
			width: 880px;
			height: 495px;
			padding-bottom: 0;
			top:-247.5px;
			left:-440px;
			margin-top:50vh;
			margin-left:50%;		
		
		}
	
		.lightbox-content iframe{
			position: absolute;
			width: 100%;
			height: 100%;
		}
	}