/*styles for sound-express.net*/

@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700');

* {
	box-sizing: border-box;
	margin:0;
	padding:0;
}

a {
	text-decoration:none;
	color:#0068b3;
	font-weight:bold;
}

img {
	max-width:100%;
}

ul {
	margin-left:25px;
}

body {
	background:rgb(0,0,0);
	font-size:18px;
	font-family: 'Ubuntu', sans-serif;
	font-weight:300;
	color:rgba(255,255,255,1);
}

header {
	height:100px;
	text-align:center;
}

nav {
	width:250px;
	left:0;
	top:100px;
	position:absolute;
	background:#222;
	padding:10px;
	animation: 1s navi ease-in-out;
}

	nav a {
		display:block;
		color:#fff;
		font-weight: 400;
		text-decoration: none;
		font-size:20px;
		line-height:40px;
		border-bottom:1px dotted #ddd;
		transition:color .5s;
	}

	nav a:before {
		content:url('../img/sinus.png');
		padding-right:5px;
	}

	nav a:last-child {
		border-bottom:none;
	}

	nav a:hover {
		color: #0068b3;
	}

section {
	width:1200px;
	margin:20px auto;
	max-width:95%;
}

#logo {
	width:850px;
	height:auto;
	max-width:100%;
	margin:auto;
}

.mobilenav {
	display:none;
}

.desktopnav {
	display:block;
}

.slogan {
	font-size:20px;
	margin-top:-20px;
	margin-bottom:20px;
}

.equipment {
	width:31%;
	margin:1%;
	background:#222;
	border-radius: 5px;
	min-height:350px;
	padding:10px;
	font-size:16px;
	float:left;
}


	.equipment ul li {
		font-weight: bold;
		margin-top:3px;
		margin-bottom:5px;
	}

	.equipment_description {
		font-weight:300 !important;
		font-style:italic;
	}

.geraete {
	width:100%;
	margin:auto;
	background:#222;
	border:1px solid #0068b3;
	border-radius:10px;
}

.geraet {
	float:left;
	width:31%;
	margin:1%;
}

.geraet h3 {
	color:#0068b3;
}

.clearfix {
	clear:both;
}

.action {
	display:none;
	padding:0 20px 20px 20px;
}

.action_headline {
	position:relative;
	margin-bottom:10px;
	padding:20px 20px 20px 42px;
	cursor:pointer;
	border:1px solid #0068b3;
	border-radius:5px;
}
	.action_headline:before {
		content:"";
		position:absolute;
		top:50%;
		left:0;
		transform:translateY(-50%);
		margin-right:10px;
		width:32px;
		height:32px;
		background-image:url('../img/icon_down.png');
		background-position:center;
		background-size:100%;
		background-repeat:no-repeat;
		transition:all .3s;
		transform:translateY(-50%) rotateZ(-90deg);
	}
	.action_headline.active:before, {
		transform:translateY(-50%) rotateZ(0deg);
	}


@media all and (max-width:1400px){

	.mobilenav {
		display:block;
		font-size:20px;
	}

	.desktopnav {
		display:none;
		padding-top:20px;
	}

	nav {
		width:100%;
		float:none;
		position:relative;
		top:0;
		text-align:center;
		animation: none;
	}

	nav a:after {
		content: url('../img/sinus2.png');
		margin-left:5px;	
	}

}

@media all and (max-width:1000px){
	.equipment, .geraet {
		width:48%;
	}
}

@media all and (max-width:768px){

	body {
		font-size:15px;
	}
}

@media all and (max-width:555px){
	.equipment, .geraet {
		width:100%;
	}

	.slogan {
		margin-top:00px;
	}
}

@keyframes navi {
	0% {left:-250px;};
	100% {left:0;};
}