
body, html{
	/* overflow: hidden; */
	height: 100%;
	width: 100%;
	 -webkit-text-size-adjust: 100%;
	/* position: fixed; */
}

.page *,
.page, .menu, .button {
	pointer-events: all;
}

body {
  margin: 0;
  background: #000;
  font-family: "proxima-nova", Arial, Tahoma;
  font-size: 15px;
  line-height: 1.3;
}

.logo{
	outline: 0px;
	border: 0px;
	position: absolute;
	top: 0;
	left: 30px;
	width: 150px;
	height: auto;
	z-index: 30;
	position: fixed;
	cursor: pointer;
}

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

.menu{
	list-style-type: none;
	position: fixed;
	top: 0;
	left: 15px;
	min-width: 190px;
	margin: 0;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 50px 15px 8px 15px;
	border-radius: 0 0 10px 10px;
	z-index: 20;
	padding-left: 25px;
	box-sizing: border-box;
	transition: 0.3s;
}
.menu a {
	text-decoration: none;
	font-size: 1.3em;
	padding: 0 0 8px;
	font-weight: 200;
	display: inline-block;
	cursor: pointer;
}
.menu a:hover{
	color: rgba(255, 255, 255, 0.8);
}

.button.icon-menu{
	font-size: 2em;
	color: #fff;
	position: absolute;
	right: 15px;
	top: 5px;
	display: none;
}

.button.icon-menu:before{
	font-family: "FontAwesome";
	content: "\f0c9";
}

.menu.opened .button.icon-menu:before{
	font-family: "FontAwesome";
	content: "\f00d"; 
}

.button.icon-speaker{
	position: absolute;
    width: 40px;
    height: 40px;
	right: 10px;
	top: 140px;
	/* display: none; */
	background-image: url('speaker-icon.svg');
	background-position: center;
	background-size: 35px;
	background-repeat: no-repeat;
}

.button.icon-speaker.hidden{
	display: none;
}

.button.icon-speaker.muted:after{
	content: " ";
	position: absolute;
	left: 50%;
	top: 0%;
	width: 3px;
	height: 40px;
	transform: rotate(45DEG);
	background-color: white;
	/* display: none; */
}

#video { 
    position: fixed;
    top: 0%;
    left: 0%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    /* transform: translateX(-50%) translateY(-50%); */
  	background-size: cover;
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	z-index: 10;
	opacity: 0;
}

.bg {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-repeat: no-repeat;
	background-color: #000;
	background-position: center;
	background-size: cover ;
	z-index: -2;
}

.video-layer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.8);
	z-index: 50;
	opacity: 0;
	display: none;
}

.video-layer #video-player{
	width: 96%;
    transform: translateY(-50%);
    position: absolute;
    left: 2%;
    top: 50%;
}

.button.close {
    line-height: 40px;
    position: absolute;
    right: 0px;
    top: 0;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-size: 30px;
    z-index: 50;
    border-radius: 0px 0 0px 5px;
    cursor: pointer;
}

.button.close:before{
	font-family: "FontAwesome";
	content: "\f00d"; 
}

.button.close:hover{
	background-color: #fff;
}

.page {
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	right:15px;
	top: 100px;
	width: 50%;
	color: #fff;
	padding: 3%;
	border-radius: 10px;
	display: none;
	opacity: 0;
	box-sizing: border-box;
	margin-bottom: 15px;
	z-index: 15;
	/* overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	max-height: calc(100% - 80px);
	pointer-events: all; */
}

.page .cell {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	max-height: calc(100% - 80px);
}

/* .page.contact {
    display: block;
    opacity: 1;
    top: 65px;
} */

.page h2{
	margin-top: 0;
}

.page .button{
	padding: 10px 20px 10px 10px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	background-color: rgba(226, 30, 37,1);
	border-radius: 6px;
	display: inline-block;
	margin: 0 5px 10px 0;
	border: 1px solid transparent;
	transition: 0.5s;
	cursor: pointer;
}

.page .button:before{
	font-family: "FontAwesome";
	margin-right: 5px;
	display: inline-block;
	width: 16px;
}

.page .button.red:hover{
	background-color: rgba(226, 30, 37,0.7);
	border-color: rgba(226, 30, 37,1);
}

.page .button.red:before{
	content: "\f1c0";
}

.page .button.white{
	background-color: rgba(255, 255, 255,1);
	color: #000;
}

.page .button.white:hover{
	background-color: rgba(255, 255, 255,0.7);
	border-color: rgba(255, 255, 255,1);
}
.page .button.white:before{
	content: "\f03d ";
}
 
.page .button.red.contact:before{
	content: "\f098";
}


.page .button.mp3:before{
	content: "\f04b ";
}

.page .button.mp3.paused:before{
	content: "\f04c  ";
}




ul {
	padding-left: 16px;
}

a {
	color: #fff;
}

a[href*="tel"] {
	text-decoration: none;
}

a[href*="tel"]:before{
	font-family: "FontAwesome";
	content: "\f098";
	margin-right: 5px;
}

a[href*="mailto"]:before{
	font-family: "FontAwesome";
	content: "\f0e0";
	margin-right: 5px;
}



.person {
	margin-bottom:25px;
}
.person a {
	display: block;
	padding-top: 3px;
	color: rgba(255,255,255,0.6);
}

.person .name{
	font-size: 1.4em;
}
.person .function{
	font-size: 0.8em;
	margin-bottom: 4px;
}

.visible-mobile{
	display: none !important;
}


@media only screen and (max-width: 767px) {
	.button.icon-menu {
		display: block;
	}

	.button.icon-speaker{
	   right: 55px;
		top: 5px;
	}

	.menu {
		padding: 50px 15px 0px 40px;
	    border-radius: 0;
	    width: 100%;
	    left: 0;
	}
	.menu.opened {
		padding: 60px 15px 8px 40px;
		background-color: #000;
	}

	.menu a {
		font-size: 1.5em;
		padding-bottom: 15px;
	}

	.menu .wrapper {
		display: none;
	}
	.page {
		width: calc(100% - 30px);
		left: 15px;
	}
	.visible-mobile{
		display: inline-block !important;
	}

	.visible-desktop{
		display: none !important;
	}
	.person {
		position: relative;
	}
	.person a {
		position: absolute;
		top: -10px;
		right: 0px;
		width: 50px;
		height: 50px;
	}
	.person a[href*="tel"] {
		position: absolute;
		right: 45px;
	}
	.person a[href*="tel"]:before{
		font-size: 43px;
		top: 5px;
	}
	.person a span{
		display: none;
	}
	.person a:before{
		font-size: 45px;
		line-height: 50px;
		position: absolute;
	}
}
