/**
 * ------------------------------------------------
 * FVD General Stylesheet
 * Provides global styles for theme
 * Should be called before module specific sheets.
 * ------------------------------------------------
 */

/* ===== Global Element Styles ===== */
/**
 * The default base on which all other styles adhere or deviate from
 * Font size / line height are by default 0 to prevent whitespace influence
 * All elements that have copy need to specify a font-size / line-height
 */

html{
	overflow-x: hidden;
}

html, body{
	border: 0;
	padding: 0;
	margin: 0;
	line-height: 0;
	font-size: 0;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	background-color: #ffffff;
	color: #ff0000; /* Change to black in production */
}

img{
	max-width: 100%;
}

hr{
	clear: both;
	width: 100%;
	margin: 15px 0;
}

h1{
	margin: 0;
	line-height: inherit;
}

h2{
	margin: 0;
	line-height: inherit;
}

h3{
	margin: 0;
	line-height: inherit;
}

h4{
	margin: 0;
	line-height: inherit;
}

h5{
	margin: 0;
	line-height: inherit;
}

h6{
	margin: 0;
	line-height: inherit;
}

a{
	text-decoration: none;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: color, background-color;
	transition-property: color, background-color;
	color: #c43d2d;
}

a.active,
html:not(.touch) a:hover{
	color: #832b20;
	cursor: pointer;
}

ul,ol{
	font-size: 16px;
	line-height: 25px;
}

figure{
	font-size: 16px;
	line-height: 25px;
}

/*
 * Wysiwyg
 */

 .wysiwyg{
 	font-size: 20px;
 	line-height: 24px;
 }
 
 .wysiwyg a{
	text-decoration: underline;
 }

/*
 * Modules
 */
.module{
	
}

/*
 * Page Header
 */


.page-header {
	width: 100%;
	height: 145px;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('../assets/images/menu-shade.png');
	background-size: contain;
	background-repeat: repeat-x;
	pointer-events: none;
	z-index: 20;
}

@media screen and (max-width: 767px) {
	.page-header {
		background-image: url('../assets/images/footer-background.jpg');
		background-size: cover;
		background-repeat: no-repeat;
		position: relative;
		height: 100px;
	}	
}
@media screen and (max-width: 414px) {
	.page-header {
		height: 70px;
	}	
}
.page-header .title {
	display: block;
	width: 214px;
	height: 36px;
	position: absolute;
	left: 10px;
    top: 20px;
	background-image: url('../assets/images/art-can-logo-2x.jpg');
	background-size: 100% auto;
	background-repeat: no-repeat;
	pointer-events: all;
}

@media screen and (max-width: 767px) {
	.page-header .title {
		width: 150px;
	}
}

.page-header .menu-label {
	position: absolute;
	right: 70px;
	top: 25px;
	line-height: 18px;
    font-size: 18px;
	font-family: 'Source Sans Pro', sans-serif;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
	color: #ffffff;
}

@media screen and (max-width: 767px) {
	.page-header .menu-label {
		display: none;
	}
}

.page-header .menu-icon {
	position: absolute;
	right: 20px;
    top: 16px;
	line-height: 36px;
	font-size: 36px;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
	color: #ffffff;
	pointer-events: all;
	cursor: pointer;
}



/*
 * Footer
 */

footer{

}

footer{
	background-color: #0e1c2d;
	background-image: url('../assets/images/footer-background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
    display: inline-block;
    width: 100%;
	padding: 60px 0 70px 0;
}

footer .headline{
	font-family: 'Ultra', serif;
	font-weight: 400;
	font-size: 34px;
	line-height: 42px;
	color: #eddbbd;
	margin-bottom: 30px;
	display: block;
}

footer .address{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	line-height: 24px;
	color: #ffffff;
	display: block;
}

footer .address p{
	margin-top: 0;
}

footer .social{
	display: block;
}

footer .social .link{
	font-size: 40px;
	line-height: 40px;
	color: #ffffff;
	margin-right: 12px;
}

footer .social .link:last-child{
	margin-right: 0;
}

footer .social .link:hover{
	color: #ffffff;
}

footer .links-wrapper{
	text-align: right;
}

@media screen and (max-width: 767px){
	footer .links-wrapper{
		text-align: left;
		margin-top: 30px;
		display: none;
	}
}

footer .links{
	display: inline-block;
	text-align: left;
}

footer .links .link{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	line-height: 24px;
	color: #ffffff;
	display: block;
}

footer .links .link:hover{
	color: #ffffff;
}

footer .back-to-top {
	display: none;
}

@media screen and (max-width: 767px){
	footer .back-to-top {
		display: inline-block;
		margin-top: 30px;
	}
}

footer .back-to-top .back {
	line-height: 30px;
	font-size: 24px;
	font-family: 'Source Sans Pro', sans-serif;
	text-align: center;
	color: #ffffff;
}

footer .back-to-top .back:hover{
	color: #ffffff;
}


footer .desktop-top{
	display: inline-block;
	position: fixed;
	right: 30px;
	bottom: 30px;
	font-size: 60px;
	line-height: 60px;
	cursor: pointer;
	color: #ffffff;
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: opacity;
	transition-property: opacity;
}

@media screen and (max-width: 767px){
	footer .desktop-top{
		display: none;
	}
}

footer .desktop-top.visible{
	opacity: 1;
}


/*
 * Featherlight
 */

.featherlight{

}

.featherlight .featherlight-close{
	line-height: 30px;
	font-size: 20px;
}


/*
 * Page Menu
 */


.page-menu {
	width: -webkit-calc(300px + 6.25vw + 10vw);
	width: calc(300px + 6.25vw + 10vw);
	height: 100vh;
	position: fixed;
	right: -10vw;
	top: 0;
	-webkit-transform: translate(100%, 0%) translate(-10vw, 0%);
	transform: translate(100%, 0%) translate(-10vw, 0%);
	padding-top: 70px;
	padding-right: 10vw;
	background-color: #101a26;
	background-image: url('../assets/images/menu-noise.png');
	background-repeat: repeat;
	-webkit-transition: -webkit-transform 0.5s 0.0s cubic-bezier(0.5, -0.2, 0.75, 0.5);
	transition: -webkit-transform 0.5s 0.0s cubic-bezier(0.5, -0.2, 0.75, 0.5);
	transition: transform 0.5s 0.0s cubic-bezier(0.5, -0.2, 0.75, 0.5);
	transition: transform 0.5s 0.0s cubic-bezier(0.5, -0.2, 0.75, 0.5), -webkit-transform 0.5s 0.0s cubic-bezier(0.5, -0.2, 0.75, 0.5);
	pointer-events: all;
	z-index: 40;
}

.page-menu.show {
	-webkit-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	-webkit-transition: -webkit-transform 0.5s 0.0s cubic-bezier(0.25, 0.5, 0.5, 1.2);
	transition: -webkit-transform 0.5s 0.0s cubic-bezier(0.25, 0.5, 0.5, 1.2);
	transition: transform 0.5s 0.0s cubic-bezier(0.25, 0.5, 0.5, 1.2);
	transition: transform 0.5s 0.0s cubic-bezier(0.25, 0.5, 0.5, 1.2), -webkit-transform 0.5s 0.0s cubic-bezier(0.25, 0.5, 0.5, 1.2);
}

.page-menu .close {
	position: absolute;
	right: -webkit-calc(30px + 10vw);
	right: calc(30px + 10vw);
	top: 20px;
	line-height: 36px;
	font-size: 36px;
	color: #ffffff !important;
	pointer-events: all;
	cursor: pointer;
}

.page-menu .header {
	position: absolute;
	left: 20px;
	top: 30px;
	line-height: 24px;
	font-size: 24px;
	font-family: 'Ultra', serif;
	font-weight: 400;
	color: #eddbbd;
}

.page-menu .menu-item {
	display: block;
	position: relative;
	padding-left: 60px;
	border: 0px solid #20374f;
	border-bottom-width: 1px;
	line-height: 46px;
	font-size: 18px;
	color: #ffffff !important;
}

.page-menu .menu-item:last-of-type {
	border-bottom-width: 0;
}

.page-menu .menu-item span {
	display: block;
	position: absolute;
	left: 30px;
	top: 23px;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px){
    .page--map .page-header{
        background-image: none;
    }
}