
/* ############################################################
	205 - ICON-NAVIGATION
############################################################ */

/* Reset */
.mdl205-modul-box p + p {
	margin-top: 0;
}


/* Modulbox */
.mdl205-modul-box {
	position: relative;
	width: 100%;
}


/* Icon-Box */
.mdl205-modul-box .picture-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 140px;
	height: 140px;
	margin: 0 auto 20px;
	overflow: hidden;
	border: 10px solid var(--main-color-white);
	border-radius: 50%;
	background-color: var(--main-color-5);
	-o-transition: all 0.3s var(--cubic-bezier);
	-ms-transition: all 0.3s var(--cubic-bezier);
	-moz-transition: all 0.3s var(--cubic-bezier);
	-webkit-transition: all 0.3s var(--cubic-bezier);
	transition: all 0.3s var(--cubic-bezier);
}
.mdl205-modul-box .flex-item:hover .picture-wrapper {
	border-width: 0;
	background-color: var(--main-color-1);
}
	.mdl205-modul-box .picture-wrapper svg {
		display: inline-block;
		width: 42px;
		height: auto;
		fill: var(--main-color-1);
		-o-transition: fill 0.3s var(--cubic-bezier);
		-ms-transition: fill 0.3s var(--cubic-bezier);
		-moz-transition: fill 0.3s var(--cubic-bezier);
		-webkit-transition: fill 0.3s var(--cubic-bezier);
		transition: fill 0.3s var(--cubic-bezier);
	}
	.mdl205-modul-box .flex-item:hover .picture-wrapper svg {
		fill: var(--main-color-white);
	}
@media screen and (min-width: 992px) {
	.mdl205-modul-box .picture-wrapper {
		width: 140px;
		height: 140px;
		margin-bottom: 24px;
	}
}


/* Textbox */
.mdl205-modul-box .item-titel,
.mdl205-modul-box .item-subline {
	-o-transition: color 0.3s var(--cubic-bezier);
	-ms-transition: color 0.3s var(--cubic-bezier);
	-moz-transition: color 0.3s var(--cubic-bezier);
	-webkit-transition: color 0.3s var(--cubic-bezier);
	transition: color 0.3s var(--cubic-bezier);
}
.mdl205-modul-box .item-subline, .mdl205-modul-box .item-linktitel {
	font-size: 1rem; /* 16px */
	line-height: 1.4;
	letter-spacing: 0.32px;
}
.mdl205-modul-box .item-subline {
	margin-bottom: 20px;
}
.mdl205-modul-box .item-linktitel {
	color: var(--main-color-1);
	text-transform: uppercase;
}
@media screen and (min-width: 992px) {
	.mdl205-modul-box .item-subline, .mdl205-modul-box .item-linktitel {
		font-size: 1.125rem; /* 18px */
		letter-spacing: 0.36px;
	}
	.mdl205-modul-box .item-subline {
		margin-bottom: 24px;
	}
}


/* Hyperlink */
.mdl205-modul-box a {
	text-decoration: none;
	color: var(--main-color-2);
	font-weight: 300;
	-o-transition: none;
	-ms-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	transition: none;
}
.mdl205-modul-box a:hover {
	color: var(--main-color-2);
}


/* ############################################################
	RASTER
############################################################ */

/* Liste */
.mdl205-list {
	position: relative;
	display: block;
	width: 100%;
}

/* Rastersystem */
.mdl205-list > .flex-container {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: left;
	width: 100%;
}
	.mdl205-list > .flex-container > .flex-item {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		margin: 60px var(--gap) 0 0;
		padding-bottom: 25px;
		border-bottom: 1px solid var(--main-color-5);
	}
	.mdl205-list > .flex-container > .flex-item.mdl200-box-small {
		flex-direction: row;
	}
@media screen and (max-width: 767.98px) {
	/* 1/1  - 1 columns per row */
	.mdl205-list > .flex-container > .flex-item {
		width: 100%;
		margin-right: 0;
	}
	/* remove top margin from first row */
	.mdl205-list > .flex-container > .flex-item:nth-child(-n+1) {
		margin-top: 0;
	}
}
@media screen and (min-width: 768px) and (max-width: 1199.98px) {
	/* 1/2  - 2 columns per row */
	.mdl205-list > .flex-container > .flex-item {
		width: calc(1/2*100% - (1 - 1/2)*var(--gap));
	}
	/* align last row columns to the left */
	.mdl205-list > .flex-container > .flex-item:nth-child(2n),
	.mdl205-list > .flex-container > .flex-item:last-child {
		margin-right: 0;
	}
	/* remove top margin from first row */
	.mdl205-list > .flex-container > .flex-item:nth-child(-n+2) {
		margin-top: 0;
	}
	
	/* Inview: Delay  */
	.mdl205-list > .flex-container > .flex-item.come-in.delay-different:nth-child(even) {
		-webkit-animation-delay: 200ms;
		-moz-animation-delay: 200ms;
		-ms-animation-delay: 200ms;
		-o-animation-delay: 200ms;
		animation-delay: 200ms;
	}
}
@media screen and (min-width: 1200px) {
	/* 1/4  - 4 columns per row */
	.mdl205-list > .flex-container > .flex-item {
		width: calc(1/4*100% - (1 - 1/4)*var(--gap));
		margin-top: 36px;
		padding-bottom: 24px;
	}
	/* align last row columns to the left */
	.mdl205-list > .flex-container > .flex-item:nth-child(4n),
	.mdl205-list > .flex-container > .flex-item:last-child {
		margin-right: 0;
	}
	/* remove top margin from first row */
	.mdl205-list > .flex-container > .flex-item:nth-child(-n+4) {
		margin-top: 0;
	}
	
	/* Inview: Delay  */
	.mdl205-list > .flex-container > .flex-item.come-in.delay-different:nth-child(2) {
		-webkit-animation-delay: 200ms;
		-moz-animation-delay: 200ms;
		-ms-animation-delay: 200ms;
		-o-animation-delay: 200ms;
		animation-delay: 200ms;
	}
	.mdl205-list > .flex-container > .flex-item.come-in.delay-different:nth-child(3) {
		-webkit-animation-delay: 400ms;
		-moz-animation-delay: 400ms;
		-ms-animation-delay: 400ms;
		-o-animation-delay: 400ms;
		animation-delay: 400ms;
	}
	.mdl205-list > .flex-container > .flex-item.come-in.delay-different:nth-child(4) {
		-webkit-animation-delay: 600ms;
		-moz-animation-delay: 600ms;
		-ms-animation-delay: 600ms;
		-o-animation-delay: 600ms;
		animation-delay: 600ms;
	}
}

