@charset "UTF-8";
/* CSS Document */

.accordion {
    max-width: 1200px;
    padding: 24px 120px 48px 120px;
    background: #FFFFFF;
    border-radius: 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	margin-bottom: 12px;
}

.accordion-intro {
	text-align: center;
	line-height: 1.5em;
	font-size: 1.2em;
}

.accordion-intro h1 {
	text-align: center;
	line-height: 1.5em;
	font-size: 1.8em;
	font-family: 'Roboto Slab', serif;
}

.accordion-intro h2 {
	text-align: center;
	line-height: 0.9em;
	font-size: 1.1em;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	color: #D12333;
}


.accordion-item:last-child {
    border-bottom: none;
}

.accordion-title:hover {
    background: #D8DDD4;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 30px 15px 30px;
    font-weight: bold;
    color: #163C18;
    background: #EFF1ED;
    border-radius: 4px;
    transition: background 0.8s ease;
    position: relative;
	margin: 1px 10px;
	text-transform: uppercase;
	font-family: 'Roboto Slab', serif;
}

.accordion-title::after {
    content: "";
    border: solid transparent;
    border-width: 6px;
    border-top-color: #333; /* Farbe des Dreiecks */
    transform: rotate(0deg); /* Standardrotation */
    transition: transform 0.8s ease;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .accordion-title::after {
    transform: rotate(180deg); /* Dreieck nach unten */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, padding 0.8s ease;
    padding: 0;
    background: #fff;
	line-height: 1.5em;
	margin: 0 120px;
}

.accordion-content a {
    text-decoration: none;
}

input[type="checkbox"]:checked ~ .accordion-content {
    max-height: 2000px; /* Genügend großer Wert für lange Inhalte */
    padding: 12px 0;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* -----------------------------------------------------------------------------------MAX-WIDTH: 700PX-----------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 1000px){
    .accordion {
        margin: 0px;
		padding: 0;
    }
	
.accordion-content {
		width: 100%;
		margin: 2px;
	}
	
.accordion-title {
		width: 95%;
		padding: 15px;
		margin: 0 auto;
	}
	
.accordion-intro {
	margin: 12px 0 0px 0px;
	padding: 12px 1%;
	text-align: center;
	line-height: 1.4em;
	font-size: 1em;
}

.accordion-intro h1 {
	text-align: center;
	line-height: 1.1em;
	font-size: 1.6em;
	font-family: 'Roboto Slab', serif;
}

.accordion-intro h2 {
	text-align: center;
	line-height: 1.5em;
	font-size: 0.9em;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	color: #D12333;
}
	
.accordion-intro h3 {
	margin: 3em;
}	
	
.accordion-content {
    max-height: 0;
	max-width: 99%;
    overflow: hidden;
    transition: max-height 0.8s ease, padding 0.8s ease;
    padding: 0;
    background: #fff;
	line-height: 1.5em;
}	
	.accordion-content h2{
    margin: 1em 0 0 0;
}
	
	.accordion-content h3{
    margin: 0 0 0 20px;
}
	
input[type="checkbox"]:checked ~ .accordion-content {
    max-height: 2000px; /* Genügend großer Wert für lange Inhalte */
    padding: 0px;
}
	
	
}