/*################### A-G-Trading ###############################*/

/* Reset margin und border */

* {
	border: 0;
	margin: 0;
}

a:focus, :-moz-focusring {
	color: transparent;
	border: 0;
	outline: 0;
	text-decoration: none;
}

/* Clearfix */
.clearfix::after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

/* Basics für Bilder */
img {
	display: block;
	max-width: 100%;
	
}

/*Fonts*/
@font-face {
				font-family: "lato";
				src: url("../fonts/lato-regular-webfont.eot");
				src: url("../fonts/lato-regular-webfont.eot?#iefix") format("embedded-opentype"),
				url("../fonts/lato-regular-webfont.woff") format("woff"),
				url("../fonts/lato-regular-webfont.svg#lato-regular-webfont") format("svg");
				font-weight: 300;
				font-style: normal;
			}
			
/*------ Basic Layout -------*/
.wrapper {
	width: 100%;
}

.inner {
	max-width: 1440px;
	width: 100%;
	margin: auto;
}

.inner_small {
	max-width: 800px;
	width: 100%;
	margin: auto;
}

.header {
	width: 100%;
	height: 100px;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	background: #fff;
	border-bottom: 3px solid #000;
	box-sizing: border-box;
	padding: 20px 0px;
}

.sprachen {
	float: right;
}

.sprachen a img {
	width: 20px;
	height: 20px;
	margin-right: 20px;
}

.langlink {
	float: left;
}

.logo {
	float: left;
	width: 200px;
}

.nav {
	float: right;
}

#context {
	background: #000;
	display: none;
}

.onepage_linklabel {
	background: #000;
	color: #fff;
	box-sizing: border-box;
	padding: 10px 5px;
	border-bottom: 1px solid #fff;
}

.onepage_linklabel a {
	color: #fff;
	text-decoration: none;
	font-family: 'lato';
	
}

.footer {
	width: 100%;
	height: 60px;
	/*position: fixed;*/
	z-index: 1000;
	bottom: 0;
	left: 0;
	background: #000;
	box-sizing: border-box;
	padding: 20px 0px;
}

.imprint {
	float: right;
}

.imprint a {
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-family: 'lato';
	text-decoration: none;
}

.intropic {
	width: 100%;
	height: 57vw;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media (min-width: 1020px) {
	.intropic {
	width: 100vw;
	height: 80vh;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
}

.trennbalken {
	width: 100%;
	height: 60px;
	margin: 60px 0px 40px 0px;
	background-image: url('/media/balken.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.headline2_inner {
	width: auto;
	margin: auto;
	box-sizing: border-box;
	padding: 20px 0px;
	margin: 60px 0px 40px 0px;
}
/*------------- Farben -----------------------------------------------*/

.red {
	color: red;
}

/*--------- Abstände --------------------------------------------*/
.topmargin {
	margin-top: 50px;
}

.bottommargin {
	margin-bottom: 30px;
}

/*------------- Schriftelemente ------------------------------------- */
h1 {
	font-family: 'lato';
	font-size: 40px;
	line-height: 50px;
	color: #000;
	border-bottom: 2px solid red;
	width: fit-content;
	margin: auto;
	text-align: center;
}

h2 {
	font-family: 'lato';
	font-size: 35px;
	line-height: 42px;
	color: #000;
	border-bottom: 2px solid red;
	width: fit-content;
	margin: auto;
	text-align: center;
}

h3 {
	font-family: 'lato';
	font-size: 20px;
	line-height: 26px;
	color: #000;
	border-bottom: 2px solid red;
	width: fit-content;
}

.faq_frage h3 {
	border-bottom: none;
}

p {
	font-family: 'lato';
	font-size: 20px;
	line-height: 24px;
	color: #000;
	margin-bottom: 15px;
}

/*------------ Aufklapperelement Leistungen / FAQ ----------------------------*/
.faq_entry {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid red;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq_entry .faq_arrow i.fa {
    transition: all 0.1s linear 0s;
}

.faq_frage.lounge_opened .faq_arrow i.fa {
    transform: rotate(180deg);
}
.faq_antwort {
	margin: 20px 0px 10px 0px;
}

/*------------------------ Bilder dreier -------------------------------------*/
.flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
}

.flex_item {
	flex: 0 1 33%;
	max-width: calc(33% - 30px);
    box-sizing: border-box;
    padding: 20px;
    margin: 15px 15px;
    /*border: 1px solid #515151;
    border-radius: 18px;
    background:#E9F2F9;*/
}