/* transition */
section.m17_accordion .m17_akkordeon_item_head_icon_container,
section.m17_accordion .m17_akkordeon_item_content,
section.m17_accordion .m17_akkordeon_item_head {
	-webkit-transition: background-color 0.4s;
	-moz-transition: background-color 0.4s;
	-ms-transition: background-color 0.4s;
	-o-transition: background-color 0.4s;
	transition: background-color 0.4s;
}
/* *** */


/* item */
section.m17_accordion .m17_akkordeon_item {
	border: 1px solid #333333;
	background: #1a1a1a;
	position: relative;
}

section.m17_accordion .m17_akkordeon_item:before {
	content: '';
	background: rgba(75, 33, 15, .4);
	backdrop-filter: blur(15px);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
/* *** */


section.m17_accordion .m17_akkordeon_item_head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 17px 16px 39px;
	position: relative;
	z-index: 3;
	cursor:pointer;
}


/* beschriftung */
section.m17_accordion .m17_akkordeon_item_head_beschriftung *{
	font-weight: 300;
	color: rgba(255, 255, 255, .5);
	-webkit-transition: color 0.4s;
	-moz-transition: color 0.4s;
	-ms-transition: color 0.4s;
	-o-transition: color 0.4s;
	transition: color 0.4s;
}
/* ** */



/* icon */
section.m17_accordion .m17_akkordeon_item_head_icon_container{
	width:32px;
	height:32px;
	border:1px solid #333333;
	
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #2c2c2c;
}

section.m17_accordion .m17_akkordeon_item_head_icon_container svg{
	height: 10px;
	fill: #fff;
	
	-webkit-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-ms-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	transform:rotate(-90deg);
	
	-webkit-transition: transform 0.4s;
	-moz-transition: transform 0.4s;
	-ms-transition: transform 0.4s;
	-o-transition: transform 0.4s;
	transition: transform 0.4s;
}
/* *** */



/* content */
section.m17_accordion .m17_akkordeon_item_content{
	display:none;
	overflow:hidden;
	position: relative;
	z-index: 3;
	padding: 0 17px 0 39px;
}

section.m17_accordion .m17_akkordeon_item_content_main{
	padding-bottom: 16px;
	padding-top: 16px;
}
/* *** */



/* active & hover */
section.m17_accordion .m17_akkordeon_item_head:hover .m17_akkordeon_item_head_beschriftung *,
section.m17_accordion .m17_akkordeon_item.active .m17_akkordeon_item_head_beschriftung *{  
	color: #fff;
}

section.m17_accordion .m17_akkordeon_item_head:hover .m17_akkordeon_item_head_icon_container,
section.m17_accordion .m17_akkordeon_item.active .m17_akkordeon_item_head_icon_container{
	background-color: #e96730;
}

/* section.m17_accordion .m17_akkordeon_item.active .m17_akkordeon_item_head,
section.m17_accordion .m17_akkordeon_item.active .m17_akkordeon_item_content {
	background-color: #261a15;
} */

section.m17_accordion .m17_akkordeon_item.active .m17_akkordeon_item_head_icon_container svg{
	-webkit-transform:rotate(-270deg);
	-moz-transform:rotate(-270deg);
	-ms-transform:rotate(-270deg);
	-o-transform:rotate(-270deg);
	transform:rotate(-270deg);
}
/* *** */

section.m17_accordion {
	position: relative;
}

section.m17_accordion .mM_container {
	position: relative;
	z-index: 2;
}

section.m17_accordion .m17_background_container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

section.m17_accordion .m17_background_container img {
	height: 100%;
	object-fit: cover;
}

section.m17_accordion .m17_titel {
	text-align: center;
	color: #fff;
	margin-bottom: 54px;
}

section.m17_accordion .m17_akkordeon_items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

section.m17_accordion .m17_akkordeon_item_content_main * {
	color: rgba(255, 255, 255, .5);
}

section.m17_accordion .m17_akkordeon_item_head_beschriftung {
	display: flex;
	align-items: center;
}

section.m17_accordion .m17_akkordeon_item_head_beschriftung {
	width: calc(100% - 32px - 20px);
}

section.m17_accordion .m17_akkordeon_item_content_main strong {
	font-weight: 500;
}

@media screen and (max-width: 575px) {
	section.m17_accordion .m17_titel {
		margin-bottom: 34px;
	}
}

@media screen and (max-width: 400px) {
	section.m17_accordion .m17_akkordeon_item_head {
		padding: 16px 17px 16px 19px;
	}
	
	section.m17_accordion .m17_akkordeon_item_content {
		padding: 0 17px 0 19px;
	}
}