@font-face {
    font-family: 'Open Sans Condensed';
    src: url('fonts/opensans/OpenSansCondensed-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('fonts/opensans/OpenSansCondensed-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('fonts/opensans/OpenSansCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html {
	margin:0px;
	padding:0px;
}

body {
	margin:0px;
	padding:0px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	font-family: 'Open Sans Condensed', sans-serif;
	font-weight:400;
	line-height:27px;
	letter-spacing: 0.32px;
	font-size: 18px;
	color: rgb(33, 37, 41);	
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;	
	height:100%;
}

h1 {
	font-weight:700;
}

h2 {
	font-weight: 700;
	color: #256db2;
	font-size: 2rem;
	letter-spacing: 0.8px;
	margin-top:50px;
	margin-bottom:50px;
	text-align: center;
}

.header {
	max-width:1220px;
	margin:0 auto;
	width:100%;
	padding:0px;
	background:#fff;

	overflow:auto;
}

.header .logo {
	float:left;
	padding:10px;
	margin:0 auto;	
}

.logo img {
	height:100px;
	max-width:100px;
	height:auto;
}

.nav {
	float:right;
}

.nav a {
	color: #ffffff;
	text-decoration: none;
	margin-left:20px;
}

.nav a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.header  a {
	text-decoration:none;
	color: #000;
	margin:15px;
}

.header  a:hover {
	color:#555;
}

.banner-container {
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	height: 530px;
  	background-image: url(banner.jpg);
  	background-repeat: no-repeat;
  	background-position: center center;
  	background-attachment: scroll;
  	background-size: cover;
}

.banner-text {
	color:#fff;
	font-size:4rem;
	text-shadow: 0px 0px 3px #000;
	font-weight: 700;
  	line-height: 1;
	text-align:right;
	padding-bottom:70px;
}

.content {
	max-width:1220px;
	width:100%;
	margin:0 auto;
    box-sizing: border-box;

    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;	
	overflow:hidden;
}

.col-50 {
	width:50%;
	float:left;
	padding-bottom:0px;

	box-sizing:border-box;
}

.footer-container {
	background: #123659;
	color: #ffffff;
}

.footer {
	max-width:1220px;
	width:100%;
	margin:0 auto;
	margin-top:30px;
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding-top:15px;
	padding-bottom:15px;
}

.footer .copyright {
	font-weight:700;
	font-size:14.4px;
}

.card {
	display: flex;
	border-radius: 6px;
	width: 98%;
	margin-left: 1%;
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.25);
}

.card-image {
	background: url(crops-hat.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	width: 50%;
	border-radius: 6px 0 0 6px;
}

.card-text {
	width: 50%;
	background: #d6e1ee;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 20px;
	border-radius: 0 6px 6px 0;
}


/* Sub-Card unter dem Bild */
.sub-card {
	display: flex;
	flex-direction: column;
	width: 98%;
	margin-left: 1%;
	margin-top: 20px;
	padding: 30px 40px;
	box-sizing: border-box;
	background: #f5f5f5;
	box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
	border-radius: 6px;
}

.sub-card-text p {
	line-height: 1.6;
	margin: 0 0 15px 0;
	font-size: 18px;
	color: #212529;
}



.accordion {
	width:100%;
}

.accordion-item {
	margin-bottom:10px;
}

.accordion-header {
	background: #0064ad;
	color: #ffffff;
	padding:15px 15px 15px 20px;

}
.accordion-content {
	background: #f9f9f9;
	padding: 20px;
}
.accordion-content p:first-child {
	margin-block-start: 0em;
}
.accordion-content p:last-child {
	margin-block-end: 0em;
}

@media (max-width: 1220px ) {
    .content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .nav {
        margin-right: 20px;
    }

    .copyright {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .card {
        margin: 0 auto;
        flex-direction: column;
        row-gap:0px;
        gap: 0px;
        width:90%;
        box-sizing: border-box;        
        height:auto;
    }

    .banner-text {
        font-size: 3rem;
    }

    .card-image {
        width:100%;
        max-width: 100%;
        height:300px;
        box-sizing: border-box;
    }

    .card-image img {
        max-width: 100%;
    }

    .card-text {
        width:100%;
        box-sizing: border-box;
        margin:0px;
    }
}


@media (max-width: 480px) {

    .banner-text {
        font-size: 1.6rem;
    }

    .h2 {
        margin-left:15px;
        margin-right:15px;
    }

	.logo a {
		margin:0px;
	} 
	
	.nav a {
		font-size:0.9em;
		padding:0px;
		margin-right:0px;

	}
	
	.content {
		padding:15px;
	}

    .card {
        width: 100%;
        box-shadow: none;
        margin-left:0px;
    }

    .footer {
        flex-direction: column;
    }	
}

