@font-face {
    font-family: "berlin";
    src: local("berlin"), url("../fonts/berlin.ttf") format("truetype");
}

body, html{
	padding: 0;
	margin: 0;
  	font-family: Arial, sans-serif;
}

body{
  	background-image: url(../img/bg2.jpg);
  	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: top center;
  	min-height: 100%;
}
.wrapper{
	background-color: rgba(255,255,255,0.3);
	min-height: 100vh;
}
.content{	
	width: 46%;
	margin: 0 auto;
	color: #201b1b;
	padding-left: 4%;
	font-size: 1.5vmax;
	line-height: 2vmax;
	text-align: center;
	padding-top: 15vh;
}
a, a:visited, a:focus{
	text-decoration: none;
	color: inherit;
}
p{
	margin: 0;
}
nav{
	width: 73%;
	padding: 1vh 0;
	padding-left: 27%;
	background-color: rgba(255,255,255,0.9);
}
.navlinks{
	font-size: 1.2vw;
	font-family: Arial, sans-serif;
	font-weight: bold;
	line-height: 5.5rem;
	margin: 0 1px;
	padding: 0.5vh 1vw;
	color: #fff;
	background-color: #990033;
	border: 2px solid #990033;
	transition: color 0.7s, background-color 0.7s;
}
.navlinks:visited{
	color: #fff;
}
.navlinks:hover{
	background-color: #fff;
	color: #990033;
	transition: color 0.5s, background-color 0.5s;
}
#nav_home{
	color: #808080;
	font-weight: bolder;
	font-size: 2vw;
	letter-spacing: -2px;
	position: absolute;
	top: 0;
	left: 0;
	font-family: Arial, sans-serif;
	padding: 1vh 1vw;
	padding-right: 1.5vw;
	border-bottom-right-radius: 12px;
	background-color: rgba(255,255,255,0.8);
}
#nav_home img{
	height: 5.5rem;
	width: auto;
	margin-left: 0.5vw;
	margin-right: 1vw;
	vertical-align: middle;
}
#nav_home a{
	vertical-align: middle;
	line-height: 5.5rem;
}
.content p, .content h1, .content .cell_left, .content li{
	text-align: left;
}
.content h1{
	font-size: 2vmax;
	margin: 0;
	text-decoration: underline; 
	line-height: 4vmax;
}
.content a{
	font-weight: bold;
	transition: 0.7s color;
	color: #990033;
}
.content a:hover{
	color: #808080;
	transition: 0.5s color;
}
.table{
	display: table;
	width: 100%;
	margin: 4% 0;
}
.table_row{
	display: table-row;
}
.first_row{
	text-decoration: underline;
	font-weight: bold;
	line-height: 4vmax;
	border-bottom: 2px solid #040404;
}
.table_cell{
	display: table-cell;
}
.cell_left{
	width: 60%;
}
.contact .cell_left{
	width: 25%;
}
.contact .cell_right{
	width: 75%;
}
.cell_right{
	text-align: right;
	font-weight: bold;
}
.img_wrapper{
	text-align: center;
	padding-top: 4%;
}
#home .img_wrapper img{
	width: 14%;
	height: auto;
	border: 1px solid #990033;
	opacity: 0.8;
	margin: 0.5%;
}
/*---------------------------------------------------------------------------
---------------------------------MEDIA-QUERIES-------------------------------
---------------------------------------------------------------------------*/
@media all and (min-width: 600px) {

}
@media only screen and (max-width: 768px) and (orientation:landscape){
	#nav_home{
		font-size: 2rem;
		padding: 0 1rem;
	}
	#nav_home img{
		height: 4rem;
	}
	.content{
		width: 90%;
		padding-left: 0;
		font-size: 1rem;
		line-height: 1.5rem;
		padding-top: 7rem;
	}
	.content h1{
		font-size: 1.5rem;
		line-height: 3rem;
		display: none;
	}
	.table{
		margin: 2% 0;
	}

}
@media only screen and (max-width: 768px) and (orientation:portrait){
	#nav_home{
		font-size: 2rem;
		width: 100%;
		padding: 0.5rem;
	}
	#nav_home img{
		height: 4rem;
	}
	.content{
		width: 90%;
		padding-left: 0;
		font-size: 1rem;
		line-height: 2rem;
		padding-top: 12rem;
	}
	.content h1{
		font-size: 1.5rem;
		line-height: 3rem;
		display: none;
	}
}
/*---------------------------------------------------------------------------------------
---------------------------------INTERNET EXPLORER---------------------------------------
---------------------------------------------------------------------------------------*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

}