/* TABLE OF CONTENTS */

/* ------------------
1. ALLGEMEIN
2. SCHRIFTEN
3. HEADER
4. PIKTOGRAMME
5. TEXTBOXEN
6. KONTAKT
7. FOOTER
-------------------- */

/* 1. ALLGEMEIN */

* {
	-webkit-font-smoothing: antialiased;
	-moz-os-font-smoothing: grayscale;
	box-sizing: border-box;
}

html {
	font-family: sans-serif;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Roboto Condensed', sans-serif;
	padding: 0;
	margin: 0;
	background-color: rgb(251, 251, 251);
	background-image: linear-gradient(rgb(252, 252, 252), rgb(251, 251, 251), rgb(245, 245, 245), rgb(240, 240, 240));
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	font-size: 1em;
	font-weight: 400;
}

.padding-0 {
	padding: 0 !important;
}

.wrapper {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0!important;
	overflow: hidden;
}

button:focus {
	outline: none !important;
}

a {
	color: rgb(169, 3, 41);
	font-weight: 400;
}

a:hover {
	color: rgb(190, 150, 50);
}

/* 2. SCHRIFTEN */

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Light.eot');
    src: url('../fonts/RobotoCondensed-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/RobotoCondensed-Light.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Light.woff') format('woff'),
        url('../fonts/RobotoCondensed-Light.ttf') format('truetype'),
        url('../fonts/RobotoCondensed-Light.svg#RobotoCondensed-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Regular.eot');
    src: url('../fonts/RobotoCondensed-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/RobotoCondensed-Regular.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Regular.woff') format('woff'),
        url('../fonts/RobotoCondensed-Regular.ttf') format('truetype'),
        url('../fonts/RobotoCondensed-Regular.svg#RobotoCondensed-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url('../fonts/RobotoCondensed-Bold.eot');
    src: url('../fonts/RobotoCondensed-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/RobotoCondensed-Bold.woff2') format('woff2'),
        url('../fonts/RobotoCondensed-Bold.woff') format('woff'),
        url('../fonts/RobotoCondensed-Bold.ttf') format('truetype'),
        url('../fonts/RobotoCondensed-Bold.svg#RobotoCondensed-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-Bold.eot');
    src: url('../fonts/Exo2-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Exo2-Bold.woff2') format('woff2'),
        url('../fonts/Exo2-Bold.woff') format('woff'),
        url('../fonts/Exo2-Bold.ttf') format('truetype'),
        url('../fonts/Exo2-Bold.svg#Exo2-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-ExtraBold.eot');
    src: url('../fonts/Exo2-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Exo2-ExtraBold.woff2') format('woff2'),
        url('../fonts/Exo2-ExtraBold.woff') format('woff'),
        url('../fonts/Exo2-ExtraBold.ttf') format('truetype'),
        url('../fonts/Exo2-ExtraBold.svg#Exo2-ExtraBold') format('svg');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend Exa';
    src: url('../fonts/LexendExa-Regular.eot');
    src: url('../fonts/LexendExa-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/LexendExa-Regular.woff2') format('woff2'),
        url('../fonts/LexendExa-Regular.woff') format('woff'),
        url('../fonts/LexendExa-Regular.ttf') format('truetype'),
        url('../fonts/LexendExa-Regular.svg#LexendExa-Regular') format('svg');
	font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* 2. HEADER */

.header-scrolled {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 75px;
	background-color: rgb(255, 255, 255) !important;
	-webkit-box-shadow: 0 4px 6px 0 rgba(40, 40, 40, .05);
	-moz-box-shadow: 0 4px 6px 0 rgba(40, 40, 40, .05);
	box-shadow: 0 4px 6px 0 rgba(40, 40, 40, .05);
}

.header-scrolled .navbar-brand img {
	width: 80px;
	height: auto;
}

.header-scrolled .kontakt-button {
	padding: 5px 35px !important;
}

.navbar {
	background-color: transparent;
	padding-top: 15px;
	padding-bottom: 15px;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.navbar-nav {
	align-items: center;
}

.navbar-brand {
	display: flex;
	align-items: center;
}

.navbar-brand img {
	width: 144px;
	height: auto;
}

.menu-navbar-nav {
	width: 100%;
	display: flex;
	justify-content: center;
}

.nav-item {
	margin-left: 20px;
	margin-right: 20px;
}

.navbar-nav:not(.menu-navbar-nav) .nav-item:last-of-type {
	margin-left: 0!important;
	margin-right: 0!important;
}

.nav-item .nav-link {
	text-align: right;
}

.nav-item .nav-link:hover .nav-link-menu {
	color: rgb(190, 150, 50) !important;
}

.nav-link-menu {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 22px;
	font-weight: 400;
	color: rgb(0, 0, 0);
	line-height: 1;
	letter-spacing: .5px;
}

.kontakt-button {
	background: rgb(169, 3, 41);
	background: -moz-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(169, 3, 41)), color-stop(44%, rgb(143, 2, 34)), color-stop(100%, rgb(109, 0, 25)));
	background: -webkit-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: -o-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: -ms-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: linear-gradient(to bottom, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1px;
	color: rgb(255, 255, 255);
	padding: 10px 35px !important;
	border-radius: 100px;
}

.kontakt-button:hover {
	color: rgb(255, 255, 255);
	background: rgb(169, 3, 41);
}

.navbar-toggler-icon {
	background-image: url("../images/menu.png");
}

@media screen and (max-width: 991.98px) {
	.navbar {
		background-color: rgb(255, 255, 255);
		-webkit-box-shadow: 0 4px 6px 0 rgba(40, 40, 40, .05);
		-moz-box-shadow: 0 4px 6px 0 rgba(40, 40, 40, .05);
		box-shadow: 0 4px 6px 0 rgba(40, 40, 40, .05);
	}
	.navbar-brand img {
		width: 120px!important;
		padding: 0;
	}
	.header-scrolled {
		height: inherit;
	}
}

@media screen and (max-width: 575.98px) {
	.navbar {
		padding-top: 0;
		padding-bottom: 0;
	}
	.menu-navbar-nav {
		padding-bottom: 10px;
	}
}

.header {
	display: flex;
	width: 100%;
	padding: 175px 0 25px;
	justify-content: center;
	align-items: center;
}

.header-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.header-img-section img {
	width: 100%;
	border-radius: 10px;
}

.learn-more-btn-section {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 20px;
}

@media screen and (max-width: 991.98px) {
	.header-container {
		flex-direction: column;
	}
	.header-title-section {
		text-align: center;
		margin-top: 40px;
	}
	.navbar-collapse {
		background: rgb(255, 255, 255);
		color: rgb(80, 80, 80);
		padding-bottom: 20px;
		padding-top: 20px;
		margin-bottom: 20px;
	}
	.navbar-collapse .nav-link-menu {
		color: rgb(80, 80, 80);
	}
	.nav-link-menu {
		color: rgb(255, 255, 255);
	}
	.learn-more-btn-section {
		justify-content: center;
	}
}

@media screen and (max-width: 799.98px) {
	.header {
		padding-top: 175px;
	}
}

@media screen and (max-width: 499.98px) {
	.header {
		padding-top: 125px;
	}
}

/* 4. PIKTOGRAMME */

.icons-section {
	position: relative;
	margin-top: 50px;
}

.strategy-container {
	position: relative;
	display: flex;
	padding-bottom: 25px;
	flex-wrap: wrap;
}

.piktogramme {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.piktogramme img {
	height: 80px;
	width: auto;
}

.piktogramme p {
	color: rgb(50, 50, 50);
	font-family: 'Lexend Exa', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 2;
	padding-top: 25px;
	padding-bottom: 25px;
	text-transform: uppercase;
}

@media screen and (max-width: 576.98px) {
	.icons-section {
		margin-top: 25px;
	}
	.strategy-container {
		flex-direction: column;
	}
	.piktogramme img {
		height: 60px;
		width: auto;
	}
	.piktogramme p {
		font-size: 14px;
		line-height: 2;
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

/* 5. TEXTBOXEN */

.textbox-section {
	position: relative;
}

.textbox-container {
	position: relative;
	display: flex;
	padding-top: 100px;
	padding-bottom: 50px;
	flex-wrap: wrap;
}

.textbox-bild img {
	width: 100%;
}

.textbox-title-section {
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: left;
	width: 100%;
}

.textbox-subtitle {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 1px;
}

.textbox-title {
	font-family: 'Exo 2', sans-serif;
	font-weight: 800;
	font-size: 48px;
	line-height: 1;
	color: rgb(190, 150, 50);
	margin-bottom: 20px;
}

.textbox-title-small {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
	color: rgb(50, 50, 50);
	margin-bottom: 20px;
}

.textbox-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.75;
	margin-bottom: 20px;
	color: rgb(50, 50, 50);
}

.textbox-accordion .accordion {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 1px;
	color: rgb(255, 255, 255);
	background: rgb(169, 3, 41);
	background: -moz-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(169, 3, 41)), color-stop(44%, rgb(143, 2, 34)), color-stop(100%, rgb(109, 0, 25)));
	background: -webkit-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: -o-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: -ms-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: linear-gradient(to bottom, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	border-radius: 100px;
	padding: 10px 35px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
}

.textbox-accordion .panel {
	background-color: transparent !important;
}

.textbox-accordion .panel li {
	color: rgb(50, 50, 50);
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
	list-style: none;
}

.textbox-accordion .panel li::before {
	content: "\f068";
	font-family: "FontAwesome";
	display: inline-block;
	margin-left: -2em;
	width: 1.5em;
}

@media screen and (max-width: 991.98px) {
	.textbox-section .textbox-container {
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		text-align: left;
	}
	.textbox-container img {
		margin-bottom: 25px;
	}
	.textbox-title-section {
		text-align: left;
	}
}

.accordion {
	cursor: pointer;
	width: 100%;
	border-radius: 5px;
	border: none;
	outline: none;
	transition: .4s;
}

.accordion:after {
	content: '\f078';
	font-family: "FontAwesome";
}

.accordion.active:after {
	content: "\f077";
	font-family: "FontAwesome";
}

.panel {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s ease-out;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* 6. KONTAKT */

.kontakt-section {
	padding-top: 0;
	padding-bottom: 100px;
}

.kontakt-container {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.kontakt-bild {
	padding: 20px;
}

.kontakt-bild img {
	width: 100%;
}

@media screen and (max-width: 991.98px) {
	.kontakt-container {
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		text-align: left;
	}
}

/* 7. FOOTER SECTION */

.footer-section {
	padding-top: 75px;
	padding-bottom: 55px;
	margin-bottom: 0!important;
	position: relative;
	background: rgb(109, 0, 25);
	background: -moz-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(169, 3, 41)), color-stop(44%, rgb(143, 2, 34)), color-stop(100%, rgb(109, 0, 25)));
	background: -webkit-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: -o-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: -ms-linear-gradient(top, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	background: linear-gradient(to bottom, rgb(169, 3, 41) 0%, rgb(143, 2, 34) 44%, rgb(109, 0, 25) 100%);
	color: rgb(255, 255, 255);
}

.footer-section a {
	color: rgb(255, 255, 255);
}

.footer-container {
	display: flex;
	position: relative;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	margin-bottom: 60px;
	padding-right: 40px;
	align-items: center;
	text-align: center;
}

.footer-logo img {
	width: 125px;
	margin-bottom: 15px;
}

.footer-logo p {
	max-width: 250px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
}

.footer-subsection {
	padding-left: 40px;
	padding-right: 40px;
}

.footer-subsection-title {
	font-size: 30px;
	font-family: 'Exo 2', sans-serif;
	font-weight: 700;
	color: rgb(255, 255, 255);
	line-height: 2.2;
	margin-bottom: 10px;
}

.footer-subsection-text {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
}

.footer-subsection-text a {
	text-decoration: none;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
}

.footer-subsection-list {
	list-style: none;
	padding-left: 35px;
}

.footer-subsection-list li {
	color: rgb(255, 255, 255);
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
	text-align: left;
	display: table-row;
}

.footer-subsection-list li:after {
	content: "";
	display: block;
	margin-bottom: 10px;
}

.footer-subsection-list li:nth-child(1):before {
	font-family: "FontAwesome";
	content: "\f007";
	font-size: 24px;
	line-height: 1.25;
	left: 40px;
	position: absolute;
	display: table-cell;
	color: rgb(190, 150, 50);
}

.footer-subsection-list li:nth-child(2):before {
	font-family: "FontAwesome";
	content: "\f041";
	font-size: 30px;
	line-height: 1.25;
	left: 40px;
	position: absolute;
	display: table-cell;
	color: rgb(190, 150, 50);
}

.footer-subsection-list li:nth-child(3):before {
	font-family: "FontAwesome";
	content: "\f095";
	font-size: 24px;
	line-height: 1.25;
	left: 40px;
	padding-top: 1px;
	position: absolute;
	display: table-cell;
	color: rgb(190, 150, 50);
}

.footer-subsection-list li:nth-child(4):before {
	font-family: "FontAwesome";
	content: "\f1ac";
	font-size: 20px;
	line-height: 1.25;
	left: 40px;
	padding-top: 3px;
	position: absolute;
	display: table-cell;
	color: rgb(190, 150, 50);
}

.footer-subsection-list li:nth-child(5):before {
	font-family: "FontAwesome";
	content: "\f0e0";
	font-size: 20px;
	line-height: 1.25;
	left: 40px;
	padding-top: 3px;
	position: absolute;
	display: table-cell;
	color: rgb(190, 150, 50);
}

@media screen and (max-width: 991.98px) {
	.footer-container {
		flex-wrap: wrap;
	}
	.footer-logo {
		padding-left: 40px;
	}
}