
/* =======================
   Möglichkeiten / Optionen
======================= */

.options-section {
	background-color: #DCDCDC;
	padding: 80px 0px 80px 0px;
}

.options-headline {
	margin: 0px 0px 48px 0px;
	padding: 0px;
	color: #000000;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
	text-align: left;
}

.options-headline span.font1 {
	color: #E3B344;
}

.options-headline span.font2 {
	color: #A6A6A6;
}

.options-grid {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 38px;
}

.option-card {
	flex: 1 1 0;
	background-color: #FFFFFF;
	padding: 28px 26px 24px 26px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 395px;
}

.option-icon {
	display: block;
	width: 140px;
	height: 100px;
	margin: 0px auto 22px auto;
	background-image: url("../images/icons3.png");
	background-repeat: no-repeat;
	background-size: 140px auto;
}

.option-icon-filiale {
	background-position: 0px 10px;
}

.option-icon-post {
	background-position: 0px -135px;
}

.option-icon-zuhause {
	background-position: 0px -278px;
}

.option-card h3 {
	margin: 0px 0px 18px 0px;
	padding: 0px;
	color: #E3B344;
	font-size: 32px;
	font-weight: bold;
	line-height: 1.15;
}

.option-card p {
	margin: 0px 0px 26px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.28;
	max-width: 100%;
}

.option-button {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: left;
	gap: 0px;
	min-width: 272px;
	padding: 12px 22px 12px 10px;
	background-color: #E3B344;
	color: #000000;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.option-button:hover,
.option-button:focus {
	color: #FFFFFF;
}

.option-button-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 45px;
	height: 30px;
	background-image: url("../images/button-icons1.png");
	background-repeat: no-repeat;
	background-size: auto 168px;
	background-position: 0px -65px;
}

/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.options-section {
		padding: 70px 0px 70px 0px;
	}

	.options-headline {
		font-size: 34px;
		margin-bottom: 42px;
	}

	.options-grid {
		gap: 24px;
	}

	.option-card {
		padding: 26px 20px 22px 20px;
		min-height: 380px;
	}

	.option-icon {
		width: 120px;
		height: 80px;
		margin-bottom: 20px;
		background-size: 120px auto;
	}

	.option-icon-filiale {
		background-position: 0px 10px;
	}

	.option-icon-post {
		background-position: 0px -115px;
	}

	.option-icon-zuhause {
		background-position: 0px -240px;
	}

	.option-card h3 {
		font-size: 28px;
	}

	.option-card p {
		font-size: 15px;
	}

	.option-button {
		min-width: 240px;
		font-size: 17px;
		padding: 10px 18px 10px 8px;
	}
}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {

	.container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.options-section {
		padding: 60px 0px 60px 0px;
	}

	.options-headline {
		margin: 0px 0px 34px 0px;
		font-size: 34px;
		line-height: 1.25;
		text-align: left;
	}

	.options-grid {
		display: block;
	}

	.option-card {
		width: 100%;
		min-height: 0;
		margin: 0px 0px 44px 0px;
		padding: 30px 24px 24px 24px;
	}

	.option-card:last-child {
		margin-bottom: 0px;
	}

	.option-icon {
		width: 140px;
		height: 100px;
		margin-bottom: 22px;
		background-size: 140px auto;
	}

	.option-icon-filiale {
		background-position: 0px 10px;
	}

	.option-icon-post {
		background-position: 0px -135px;
	}

	.option-icon-zuhause {
		background-position: 0px -278px;
	}

	.option-card h3 {
		font-size: 34px;
		line-height: 1.15;
		margin-bottom: 18px;
	}

	.option-card p {
		font-size: 16px;
		line-height: 1.3;
		margin-bottom: 26px;
	}

	.option-button {
		min-width: 0;
		width: 100%;
		max-width: 300px;
		font-size: 19px;
		padding: 12px 22px 12px 10px;
	}
}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

	.options-section {
		padding: 50px 0px 50px 0px;
	}

	.options-headline {
		font-size: 30px;
		margin-bottom: 30px;
	}

	.option-card {
		padding: 28px 18px 22px 18px;
		margin-bottom: 36px;
	}

	.option-icon {
		width: 140px;
		height: 100px;
		background-size: 140px auto;
	}

	.option-icon-filiale {
		background-position: 0px 10px;
	}

	.option-icon-post {
		background-position: 0px -135px;
	}

	.option-icon-zuhause {
		background-position: 0px -278px;
	}

	.option-card h3 {
		font-size: 30px;
	}

	.option-card p {
		font-size: 15px;
	}

	.option-button {
		display: flex; /* wichtig: flex statt inline-flex */
		align-items: center;
		justify-content: center; 
		text-align: center;

		width: 100%;
		max-width: 100%;

		gap: 0px; 
	}
}





/* =======================
   Filialen
======================= */

.filialen-section {
	background-color: #DCDCDC;
	padding-top: 80px;
	padding-bottom: 80px;
}

.filialen-intro {
	margin-bottom: 80px;
}

.filialen-headline,
.filialen-subheadline {
	margin: 0px;
	padding: 0px;
	font-weight: bold;
	line-height: 1.25;
	color: #000000;
}

.filialen-headline {
	font-size: 40px;
	margin-bottom: 28px;
}

.filialen-headline span {
	color: #E3B344;
}

.filialen-text {
	margin: 0px 0px 34px 0px;
	padding: 0px;
	font-size: 16px;
	line-height: 1.3;
	color: #000000;
}

.filialen-subheadline {
	font-size: 32px;
}

.filialen-grid {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 42px;
}

.filiale-card {
	flex: 1 1 0;
}

.filiale-card-image {
	position: relative;
	overflow: hidden;
}

.filiale-card-image img {
	display: block;
	width: 100%;
	height: auto;
}

.filiale-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.72);
}

.filiale-card-title {
	position: absolute;
	top: 34px;
	left: 32px;
	display: flex;
	align-items: stretch;
	z-index: 2;
}

.filiale-card-title-left,
.filiale-card-title-right {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 92px;
	font-size: 32px;
	font-weight: bold;
	line-height: 1;
}

.filiale-card-title-left {
	background-color: rgba(255, 255, 255, 0.85);
	color: #E3B344;
	padding: 0px 34px;
}

.filiale-card-title-right {
	background-color: rgba(0, 0, 0, 0.78);
	color: #FFFFFF;
	padding: 0px 28px;
}

.filiale-card-content {
	position: absolute;
	left: 32px;
	right: 32px;
	top: 164px;
	z-index: 2;
	color: #000000;
}

.filiale-card-address,
.filiale-card-hours {
	margin: 0px;
	padding: 0px;
	font-weight: bold;
	line-height: 1.22;
	color: #000000;
}

.filiale-card-address {
	font-size: 32px;
	margin-bottom: 60px;
}

.filiale-card-hours {
	font-size: 28px;
}

.filiale-card-button {
	margin-top: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: left;
	gap: 0px;
	padding: 12px 22px 12px 10px;
	min-width: 292px;
	background-color: #E3B344;
	color: #000000;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.filiale-card-button:hover,
.filiale-card-button:focus {
	color: #FFFFFF;
}

/* CTA-Pfeil */
.option-button-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 45px;
	height: 30px;
	background-image: url("../images/button-icons1.png");
	background-repeat: no-repeat;
	background-size: auto 168px;
	background-position: 0px -65px;
}

/* =======================
   1024 - 1199px
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.filialen-section {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.filialen-intro {
		margin-bottom: 70px;
	}

	.filialen-headline {
		font-size: 34px;
	}
	
	.filialen-subheadline {
		font-size: 28px;
	}

	.filialen-text {
		font-size: 15px;
	}

	.filialen-grid {
		gap: 28px;
	}

	.filiale-card-title {
		top: 26px;
		left: 24px;
	}

	.filiale-card-title-left,
	.filiale-card-title-right {
		height: 78px;
		font-size: 28px;
	}

	.filiale-card-title-left {
		padding: 0px 24px;
	}

	.filiale-card-title-right {
		padding: 0px 22px;
	}

	.filiale-card-content {
		left: 24px;
		right: 24px;
		top: 138px;
	}

	.filiale-card-address {
		font-size: 28px;
		margin-bottom: 48px;
	}

	.filiale-card-hours {
		font-size: 24px;
	}

	.filiale-card-button {
		min-width: 260px;
		font-size: 17px;
		padding: 10px 18px 10px 8px;
	}
}

/* =======================
   <= 1023px
======================= */

@media only screen and (max-width: 1023px) {

	.filialen-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.filialen-intro {
		margin-bottom: 60px;
	}

	.filialen-headline {
		font-size: 34px;
		line-height: 1.3;
	}
	
	.filialen-subheadline {
		font-size: 28px;
		line-height: 1.3;
	}

	.filialen-headline {
		margin-bottom: 24px;
	}

	.filialen-text {
		font-size: 16px;
		margin-bottom: 34px;
	}

	.filialen-grid {
		display: block;
	}

	.filiale-card {
		margin-bottom: 60px;
	}

	.filiale-card:last-child {
		margin-bottom: 0px;
	}

	.filiale-card-title {
		top: 28px;
		left: 26px;
	}

	.filiale-card-title-left,
	.filiale-card-title-right {
		height: 82px;
		font-size: 34px;
	}

	.filiale-card-title-left {
		padding: 0px 28px;
	}

	.filiale-card-title-right {
		padding: 0px 24px;
	}

	.filiale-card-content {
		left: 30px;
		right: 30px;
		top: 152px;
	}

	.filiale-card-address {
		font-size: 34px;
		margin-bottom: 54px;
	}

	.filiale-card-hours {
		font-size: 28px;
	}

	.filiale-card-button {
		min-width: 0;
		width: 100%;
		max-width: 300px;
		font-size: 19px;
		padding: 12px 22px 12px 10px;
	}
}

/* =======================
   <= 560px
======================= */

@media only screen and (max-width: 560px) {

	.filialen-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.filialen-intro {
		margin-bottom: 50px;
	}

	.filialen-headline {
		font-size: 30px;
	}
	
	.filialen-subheadline {
		font-size: 28px;
	}

	.filialen-text {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.filiale-card {
		margin-bottom: 50px;
	}

	.filiale-card-title {
		top: 28px;
		left: 26px;
	}

	.filiale-card-title-left,
	.filiale-card-title-right {
		height: 60px;
		font-size: 28px;
	}

	.filiale-card-title-left {
		padding: 0px 20px;
	}

	.filiale-card-title-right {
		padding: 0px 20px;
	}

	.filiale-card-content {
		left: 28px;
		right: 28px;
		top: 116px;
	}

	.filiale-card-address {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.filiale-card-hours {
		font-size: 24px;
	}

	.filiale-card-button {
		font-size: 19px;
		gap: 0px;
	}
}


@media only screen and (max-width: 380px) {
	
	.filiale-card-title-left,
	.filiale-card-title-right {
		height: 50px;
		font-size: 28px;
	}

	.filiale-card-title-left {
		padding: 0px 15px;
	}

	.filiale-card-title-right {
		padding: 0px 15px;
	}

	.filiale-card-address {
		font-size: 24px;
	}

	.filiale-card-hours {
		font-size: 24px;
	}
	
}





/* =======================
   Orte
======================= */

.orte-section {
	background-color: #FFFFFF;
	padding-top: 80px;
	padding-bottom: 80px;
}

.orte-headline {
	margin: 0px 0px 28px 0px;
	padding: 0px;
	color: #000000;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.25;
}

.orte-headline span {
	color: #E3B344;
}

.orte-text {
	margin: 0px 0px 24px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.orte-text-strong {
	margin-bottom: 36px;
}

.orte-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 70px;
	row-gap: 0px;
	align-items: start;
}

/* Desktop-Reihenfolge:
   oben: 1 | 3 | 5
   unten: 2 | 4 | 6
*/
.orte-group-1 { order: 1; }
.orte-group-2 { order: 4; padding-top:10px; }
.orte-group-3 { order: 2; }
.orte-group-4 { order: 5; padding-top:10px; }
.orte-group-5 { order: 3; }
.orte-group-6 { order: 6; padding-top:10px; }

.orte-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ort-link {
	display: inline-flex;
	align-items: center;
	gap: 0px;
	width: fit-content;
	min-height: 42px;
	padding: 6px 14px 6px 0px;
	border: 2px solid #B9B9B9;
	background-color: #FFFFFF;
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.ort-link:hover,
.ort-link:focus {
	color: #E3B344;
	border-color: #A8A8A8;
}

.ort-link-active {
	color: #E3B344;
}

.ort-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	background-image: url("../images/icons4.png");
	background-repeat: no-repeat;
	background-position: 0px 0px;
	background-size: 40px auto;
}

.orte-note {
	margin: 46px 0px 0px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

/* =======================
   1024 - 1199px
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.orte-section {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.orte-headline {
		font-size: 34px;
	}

	.orte-text,
	.orte-note,
	.ort-link {
		font-size: 15px;
	}

	.orte-grid {
		column-gap: 40px;
	}

	.orte-text-strong {
		margin-bottom: 32px;
	}
}

/* =======================
   <= 1023px
======================= */

@media only screen and (max-width: 1023px) {

	.orte-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.orte-headline {
		font-size: 34px;
		line-height: 1.3;
		margin-bottom: 24px;
	}

	.orte-text,
	.orte-note,
	.ort-link {
		font-size: 16px;
	}

	.orte-text-strong {
		margin-bottom: 34px;
	}

	.orte-grid {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 40px;
		row-gap: 0px;
	}

	/* Mobile-Reihenfolge:
	   links: 1,2,3
	   rechts: 4,5,6
	*/
	.orte-group-1 { order: 1; padding-top:10px; }
	.orte-group-2 { order: 3; padding-top:10px; }
	.orte-group-3 { order: 5; padding-top:10px; }
	.orte-group-4 { order: 2; padding-top:10px; }
	.orte-group-5 { order: 4; padding-top:10px; }
	.orte-group-6 { order: 6; padding-top:10px; }

	.orte-note {
		margin-top: 40px;
	}
}

/* =======================
   <= 560px
======================= */

@media only screen and (max-width: 560px) {

	.orte-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.orte-headline {
		font-size: 30px;
	}

	.orte-text,
	.orte-note,
	.ort-link {
		font-size: 15px;
	}

	.orte-grid {
		column-gap: 0px;
	}

	.ort-link {
		gap: 4px;
		padding: 6px 12px 6px 4px;
		min-height: 40px;
	}

	.ort-icon {
		width: 25px;
		height: 30px;
		background-position: 0px 2px;
		background-size: 25px auto;
	}

	.orte-note {
		margin-top: 34px;
	}
}




/* =======================
   Edelmetall-Auswahl
======================= */

.edelmetall-auswahl {
    background-color: #dcdcdc;
    padding: 80px 0px;
    overflow: hidden;
}

.edelmetall-headline {
    margin: 0px 0px 48px 0px;
    padding: 0px;
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    text-align: left;
}

.edelmetall-headline span {
    color: #E3B344;
}

.edelmetall-slider-area {
    position: relative;
    padding: 0px 0px;
}

.edelmetall-card-title {
    background-color: #000000;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.15;
    text-align: center;
    padding: 16px 18px;
}

.edelmetall-card-title span.font1 {
    color: #E3B344;
}

.edelmetall-card-title span.font2 {
    color: #BFBFBF;
}

.edelmetall-card-image img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.edelmetall-card-content {
    padding: 18px 18px 20px 18px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.edelmetall-card-content p {
    margin: 0px 0px 22px 0px;
    padding: 0px;
    color: #000000;
    font-size: 16px;
    line-height: 1.3;
    min-height: 84px;
}

.edelmetall-card-button {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: left;
    max-width: 220px;
    padding: 12px 22px 12px 10px;
    background-color: #E3B344;
    color: #000000;
    font-size: 19px;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.edelmetall-card-button:hover,
.edelmetall-card-button:focus {
    color: #ffffff;
}

.edelmetall-card-button-icon {
	display: inline-block;
	flex: 0px 0px auto;
	width: 45px;
	height: 30px;
	background-image: url("../images/button-icons1.png");
	background-repeat: no-repeat;
	background-size: auto 168px;
	background-position: 0px -65px;
}

.edelmetall-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0px;
    background-color: rgba(0, 0, 0, 1);
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    padding: 0px;
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
    .edelmetall-auswahl {
        padding: 70px 0;
    }

    .edelmetall-headline {
        font-size: 34px;
        margin-bottom: 42px;
    }

    .edelmetall-slider-area {
        padding: 0 0px;
    }

    .edelmetall-card-title {
        font-size: 21px;
        padding: 15px 14px;
    }
	
	.edelmetall-arrow {
		background-color: rgba(0, 0, 0, 0.3);
	}

    .edelmetall-card-image img {
        height: 240px;
    }

    .edelmetall-card-content p {
        font-size: 15px;
        min-height: 95px;
    }

    .edelmetall-card-button {
        max-width: 190px;
        font-size: 17px;
        padding: 10px 18px 10px 8px;
    }
	
}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {
    .edelmetall-auswahl {
        padding: 60px 0;
    }

    .edelmetall-headline {
        margin: 0 0 34px 0;
        font-size: 34px;
        line-height: 1.2;
    }

    .edelmetall-slider-area {
        padding: 0 0px;
    }

    .edelmetall-card-title {
        font-size: 28px;
        padding: 18px 16px;
    }

    .edelmetall-card-image img {
        height: 270px;
    }

    .edelmetall-card-content {
        padding: 20px 20px 24px 20px;
    }

    .edelmetall-card-content p {
        font-size: 16px;
        min-height: 0;
        margin-bottom: 24px;
    }

    .edelmetall-card-button {
        min-width: 0;
        width: 100%;
        max-width: 220px;
        font-size: 19px;
		padding: 12px 22px 12px 10px;
    }

    .edelmetall-arrow {
        width: 38px;
        height: 38px;
        font-size: 26px;
		background-color: rgba(0, 0, 0, 0.3);
    }

}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {
    .edelmetall-auswahl {
        padding: 50px 0;
    }

    .edelmetall-headline {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .edelmetall-slider-area {
        padding: 0 0px;
    }

    .edelmetall-card-title {
        font-size: 24px;
        padding: 16px 14px;
    }

    .edelmetall-card-image img {
        height: 235px;
    }

    .edelmetall-card-content {
        padding: 18px 18px 22px 18px;
    }

    .edelmetall-card-content p {
        font-size: 15px;
    }

    .edelmetall-card-button {
        max-width: 100%;
        width: 100%;
		justify-content: center;
    }
}




/* =======================
   CTA / WhatsApp
======================= */

.cta-section {
	background-color: #000000;
	padding: 80px 0px 80px 0px;
	text-align: center;
}

.cta-headline {
	margin: 0px 0px 34px 0px;
	padding: 0px;
	color: #E3B344;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}

.cta-text {
	margin: 0px 0px 60px 0px;
	padding: 0px;
	color: #FFFFFF;
	font-size: 17px;
	font-weight: bold;
	line-height: 1.35;
	text-align: center;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 0px;
	padding: 18px 25px 18px 18px;
	background-color: #E3B344;
	color: #000000;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
	color: #FFFFFF;
}

.cta-button-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 45px;
	height: 38px;
	background-image: url("../images/button-icons1.png");
	background-repeat: no-repeat;
	background-size: auto 168px;
	background-position: 0px -125px;
}

/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.cta-section {
		padding: 70px 0px 70px 0px;
	}

	.cta-headline {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.cta-text {
		font-size: 17px;
		margin-bottom: 52px;
	}

	.cta-button {
		font-size: 22px;
		padding: 16px 24px;
	}
}

/* =======================
   Mobile / Tablet
======================= */

@media only screen and (max-width: 1023px) {

	.cta-section {
		padding: 60px 0px 60px 0px;
	}

	.cta-headline {
		font-size: 34px;
		line-height: 1.25;
		margin-bottom: 26px;
	}

	.cta-text {
		font-size: 16px;
		line-height: 1.4;
		margin-bottom: 42px;
	}

	.cta-button {
		margin: 0px auto;
		padding: 18px 20px;
		font-size: 22px;
	}
}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

	.cta-section {
		padding: 50px 0px 50px 0px;
	}

	.cta-headline {
		font-size: 30px;
		margin-bottom: 24px;
	}

	.cta-text {
		font-size: 15px;
		margin-bottom: 34px;
	}

	.cta-button {
		gap: 14px;
		padding: 12px 15px;
		font-size: 20px;
	}

	.cta-button-icon {
		width: 45px;
		height: 38px;
		background-size: auto 168px;
		background-position: 0px -125px;
	}
}





/* =======================
   Vorteile / Vertrauen
======================= */

.vorteile-section {
	background-color: #FFFFFF;
	padding: 80px 0px;
}

.vorteile-headline {
	margin: 0px 0px 28px 0px;
	color: #000000;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
}

.vorteile-headline span {
	color: #E3B344;
}

.vorteile-text {
	margin: 0px 0px 60px 0px;
	font-size: 16px;
	line-height: 1.3;
	color: #000000;
}

.vorteile-grid {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.vorteile-image {
	flex: 1 1 50%;
}

.vorteile-image img {
	width: 100%;
	height: auto;
	display: block;
}

.vorteile-list {
	flex: 1 1 50%;
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.vorteil-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.vorteil-item p {
	margin: 0;
	font-size: 16px;
	line-height: 1.60;
}

.vorteil-item strong {
	font-weight: bold;
}

.vorteil-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	background-image: url("../images/icons4.png");
	background-repeat: no-repeat;
	background-size: 50px auto;
}

/* individuelle Icons */
.icon-beratung   { background-position: 0px -72px; }
.icon-analyse    { background-position: 0px -145px; }
.icon-schnell    { background-position: 0px -225px; }
.icon-kurs       { background-position: 0px -305px; }
.icon-auszahlung { background-position: 0px -380px; }


/* =======================
   1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.vorteile-section {
		padding: 70px 0;
	}

	.vorteile-headline {
		font-size: 34px;
	}
	
	.vorteile-text {
		font-size: 15px;
	}
	
	.vorteil-item p {
		font-size: 15px;
	}

	.vorteile-grid {
		gap: 40px;
	}
}

/* =======================
   <=1023 (Mobile)
======================= */

@media only screen and (max-width: 1023px) {

	.vorteile-section {
		padding: 60px 0;
	}

	.vorteile-headline {
		font-size: 34px;
		line-height: 1.25;
	}

	.vorteile-text {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.vorteile-grid {
		display: block;
	}

	.vorteile-image {
		margin-bottom: 40px;
	}

	.vorteil-item {
		gap: 16px;
	}
	
	.vorteil-item p {
		margin-top: 10px;
		font-size: 16px;
	}

	
}

/* =======================
   <=560
======================= */

@media only screen and (max-width: 560px) {

	.vorteile-section {
		padding: 50px 0;
	}

	.vorteile-headline {
		font-size: 30px;
	}

	.vorteile-text {
		font-size: 15px;
	}

	.vorteil-item p {
		margin-top: 0px;
		font-size: 15px;
	}
}






/* =======================
   Bewertungen
======================= */

.bewertungen-section {
	background-color: #DCDCDC;
	padding: 80px 0px 80px 0px;
	overflow: hidden;
}

.bewertungen-headline {
	margin: 0px 0px 34px 0px;
	padding: 0px;
	color: #000000;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
	text-align: left;
}

.bewertungen-headline span {
	color: #E3B344;
}

.bewertungen-text {
	margin: 0px 0px 56px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.bewertungen-slider-area {
	position: relative;
	padding: 0px 0px;
}

.bewertungen-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border: 0px;
	background-color: rgba(0, 0, 0, 1);
	color: #FFFFFF;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	padding: 0px;
}

.bewertung-card {
	background-color: #FFFFFF;
	padding: 22px 22px 26px 22px;
	min-height: 288px;
}

.bewertung-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.bewertung-profilbild {
	display: block;
	height: 68px;
	width: auto;
	max-width: 100%;
}

.bewertung-google-logo {
	display: inline-block;
	width: 29px;
	height: 29px;
	flex: 0 0 auto;
	margin-top: 6px;

	background-image: url("../images/google.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.bewertung-card-text p {
	margin: 0px 0px 24px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.28;
}

.bewertung-card-text p:last-child {
	margin-bottom: 0px;
}

.bewertungen-bottom-text {
	margin: 58px 0px 0px 0px;
}

.bewertungen-bottom-text p {
	margin: 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.bewertungen-button-wrap {
	margin-top: 44px;
	text-align: center;
}

.bewertungen-button {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0px;
	min-width: 298px;
	padding: 12px 22px 12px 10px;
	background-color: #E3B344;
	color: #000000;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.bewertungen-button:hover,
.bewertungen-button:focus {
	color: #FFFFFF;
}

.bewertungen-button-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 45px;
	height: 30px;
	background-image: url("../images/button-icons1.png");
	background-repeat: no-repeat;
	background-size: auto 168px;
	background-position: 0px -65px;
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.bewertungen-section {
		padding: 70px 0px 70px 0px;
	}

	.bewertungen-headline {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.bewertungen-text,
	.bewertung-card-text p,
	.bewertungen-bottom-text p {
		font-size: 15px;
	}
	
	.bewertungen-arrow {
		background-color: rgba(0, 0, 0, 0.3);
	}

	.bewertungen-text {
		margin-bottom: 48px;
	}

	.bewertung-card {
		padding: 20px 20px 24px 20px;
		min-height: 280px;
	}

	.bewertungen-bottom-text {
		margin-top: 50px;
	}

	.bewertungen-button-wrap {
		margin-top: 40px;
	}
	
	.bewertungen-button {
		min-width: 272px;
		font-size: 17px;
		padding: 10px 18px 10px 8px;
	}
}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {

	.bewertungen-section {
		padding: 60px 0px 60px 0px;
	}

	.bewertungen-headline {
		margin: 0px 0px 26px 0px;
		font-size: 34px;
		line-height: 1.25;
	}

	.bewertungen-text {
		margin: 0px 0px 40px 0px;
		font-size: 16px;
		line-height: 1.3;
	}

	.bewertungen-arrow {
		width: 38px;
		height: 38px;
		font-size: 26px;
		background-color: rgba(0, 0, 0, 0.3);
	}

	.bewertung-card {
		padding: 20px 18px 24px 18px;
		min-height: 0px;
	}

	.bewertung-card-top {
		margin-bottom: 12px;
	}

	.bewertung-card-text p,
	.bewertungen-bottom-text p {
		font-size: 16px;
		line-height: 1.3;
	}

	.bewertungen-bottom-text {
		margin-top: 40px;
	}

	.bewertungen-button-wrap {
		margin-top: 36px;
		text-align: center;
	}
	
	.bewertungen-button {
		min-width: 0px;
		font-size: 19px;
		padding: 12px 22px 12px 10px;
	}
}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

	.bewertungen-section {
		padding: 50px 0px 50px 0px;
	}

	.bewertungen-headline {
		font-size: 30px;
		margin-bottom: 24px;
	}

	.bewertungen-text,
	.bewertung-card-text p,
	.bewertungen-bottom-text p {
		font-size: 15px;
	}

	.bewertung-card {
		padding: 18px 16px 22px 16px;
	}

	.bewertung-profilbild {
		height: 68px;
	}

	.bewertung-google-logo {
		width: 29px;
		margin-top: 4px;
	}

	.bewertungen-bottom-text {
		margin-top: 34px;
	}

	.bewertungen-button-wrap {
		margin-top: 32px;
		text-align: center;
	}

	.bewertungen-button {
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		width: auto;
		max-width: none;
		min-width: 0px;
		font-size: 18px;
		padding: 12px 16px 12px 10px;
	}
}




/* =======================
   FAQ
======================= */

.faq-section {
	background-color: #FFFFFF;
	padding: 80px 0px 80px 0px;
}

.faq-headline {
	margin: 0px 0px 34px 0px;
	padding: 0px;
	color: #000000;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
	text-align: left;
}

.faq-headline span {
	color: #E3B344;
}

.faq-text {
	margin: 0px 0px 64px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.faq-list {
	margin: 0px;
	padding: 0px;
}

.faq-item {
	margin: 0px 0px 34px 0px;
	padding: 0px;
}

.faq-item:last-child {
	margin-bottom: 0px;
}

.faq-question-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.faq-number {
	display: inline-block;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	background-image: url("../images/numbers.png");
	background-repeat: no-repeat;
	background-size: 50px auto;
}

.faq-number-1 { background-position: 0px 0px; }
.faq-number-2 { background-position: 0px -90px; }
.faq-number-3 { background-position: 0px -176px; }
.faq-number-4 { background-position: 0px -263px; }
.faq-number-5 { background-position: 0px -349px; }

.faq-question-content {
	display: inline-block;
	padding-top: 8px;
}

.faq-question {
	margin: 0px;
	padding: 0px;
	color: #000000;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.25;
}

.faq-question a {
	color: #000000;
	text-decoration: none;
}

.faq-question a:hover,
.faq-question a:focus {
	color: #000000;
}

.faq-answer a {
	color: #000000;
	font-weight: bold;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.faq-answer a:hover,
.faq-answer a:focus {
	color: #E3B344;
	text-decoration: underline;
}

.faq-line {
	height: 2px;
	background-color: #B8B8B8;
	margin-top: 10px;
	width: calc(100% + 15px);
}

.faq-answer {
	margin: 18px 0px 0px 62px;
	padding: 0px;
	max-width: 1120px;
}

.faq-answer p {
	margin: 0px 0px 22px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.32;
}

.faq-answer p:last-child {
	margin-bottom: 0px;
}

.faq-cta-box {
	margin-top: 68px;
}

.faq-cta-text {
	margin: 0px 0px 34px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.faq-button {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0px;
	min-width: 270px;
	padding: 12px 22px 12px 10px;
	background-color: #E3B344;
	color: #000000;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-button:hover,
.faq-button:focus {
	color: #FFFFFF;
}

.faq-button-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 45px;
	height: 30px;
	background-image: url("../images/button-icons1.png");
	background-repeat: no-repeat;
	background-size: auto 168px;
	background-position: 0px -65px;
}

/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.faq-section {
		padding: 70px 0px 70px 0px;
	}

	.faq-headline {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.faq-text,
	.faq-answer p,
	.faq-cta-text {
		font-size: 15px;
	}

	.faq-text {
		margin-bottom: 56px;
	}

	.faq-question {
		font-size: 20px;
	}

	.faq-number {
		width: 46px;
		height: 46px;
		background-size: 46px auto;
	}

	.faq-number-1 { background-position: 0px 0px; }
	.faq-number-2 { background-position: 0px -83px; }
	.faq-number-3 { background-position: 0px -162px; }
	.faq-number-4 { background-position: 0px -242px; }
	.faq-number-5 { background-position: 0px -321px; }

	.faq-question-content {
		padding-top: 7px;
	}

	.faq-answer {
		margin-left: 60px;
	}

	.faq-cta-box {
		margin-top: 60px;
	}

	.faq-button {
		min-width: 248px;
		font-size: 17px;
		padding: 10px 18px 10px 8px;
	}
}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {

	.faq-section {
		padding: 60px 0px 60px 0px;
	}

	.faq-headline {
		margin: 0px 0px 26px 0px;
		font-size: 34px;
		line-height: 1.25;
	}

	.faq-text {
		margin: 0px 0px 48px 0px;
		font-size: 16px;
		line-height: 1.3;
	}

	.faq-item {
		margin-bottom: 30px;
	}

	.faq-question-row {
		gap: 12px;
	}

	.faq-number {
		width: 50px;
		height: 50px;
		background-size: 50px auto;
	}

	.faq-number-1 { background-position: 0px 0px; }
	.faq-number-2 { background-position: 0px -90px; }
	.faq-number-3 { background-position: 0px -176px; }
	.faq-number-4 { background-position: 0px -263px; }
	.faq-number-5 { background-position: 0px -349px; }

	.faq-question-content {
		padding-top: 5px;
	}

	.faq-question {
		font-size: 18px;
		line-height: 1.3;
	}

	.faq-line {
		margin-top: 8px;
	}

	.faq-answer {
		margin: 16px 0px 0px 56px;
	}

	.faq-answer p,
	.faq-cta-text {
		font-size: 16px;
	}

	.faq-cta-box {
		margin-top: 54px;
	}

	.faq-button {
		min-width: 0px;
		font-size: 19px;
		padding: 12px 22px 12px 10px;
	}
}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

	.faq-section {
		padding: 50px 0px 50px 0px;
	}

	.faq-headline {
		font-size: 30px;
		margin-bottom: 24px;
	}

	.faq-text,
	.faq-answer p,
	.faq-cta-text {
		font-size: 15px;
	}

	.faq-item {
		margin-bottom: 26px;
	}

	.faq-question-row {
		gap: 10px;
	}

	.faq-number {
		width: 36px;
		height: 36px;
		background-size: 36px auto;
	}

	.faq-number-1 { background-position: 0px 0px; }
	.faq-number-2 { background-position: 0px -65px; }
	.faq-number-3 { background-position: 0px -127px; }
	.faq-number-4 { background-position: 0px -190px; }
	.faq-number-5 { background-position: 0px -252px; }

	.faq-question {
		font-size: 16px;
	}
	
	.faq-question-content {
		display: block;
	}

	.faq-line {
		display: block;
		width: 100%;
		max-width: none;
	}

	.faq-answer {
		margin: 14px 0px 0px 52px;
	}

	.faq-cta-box {
		margin-top: 46px;
	}

	.faq-button {
		min-width: 0px;
		font-size: 18px;
		padding: 12px 16px 12px 10px;
	}
}





/* =======================
   Formular
======================= */

.formular-section {
	background-color: #DCDCDC;
	padding: 80px 0px 80px 0px;
}

.formular-headline {
	margin: 0px 0px 34px 0px;
	padding: 0px;
	color: #000000;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
	text-align: left;
}

.formular-headline span {
	color: #E3B344;
}

.formular-text {
	margin: 0px 0px 58px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.formular-form {
	margin: 0px;
	padding: 0px;
}

.formular-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 40px;
	row-gap: 0px;
	align-items: stretch;
}

.formular-left {
	display: grid;
	grid-template-rows: repeat(4, 58px);
	row-gap: 40px;
}

.formular-right {
	display: block;
}

.formular-field.formular-field-message {
	height: 100%;
	margin: 0px;
}

.formular-left .formular-field:last-child,
.formular-right .formular-field:last-child {
	margin-bottom: 0px;
}

.formular-field input,
.formular-field select,
.formular-field textarea {
	display: block;
	width: 100%;
	border: 0px;
	outline: none;
	background-color: #FFFFFF;
	color: #000000;
	font-size: 16px;
	font-family: Arial, sans-serif;
	line-height: 1.2;
	padding: 0px 18px;
	box-sizing: border-box;
	border-radius: 0px;
}

.formular-field input,
.formular-field select {
	height: 58px;
}

.formular-field textarea {
	height: 100%;
	min-height: 0px;
	padding-top: 16px;
	padding-bottom: 16px;
	line-height: 1.35;
	resize: none;
}

/* Placeholder grau */
.formular-field input::placeholder,
.formular-field textarea::placeholder {
	color: #7A7A7A;
	opacity: 1;
}

.formular-field input:-ms-input-placeholder,
.formular-field textarea:-ms-input-placeholder {
	color: #7A7A7A;
}

.formular-field input::-ms-input-placeholder,
.formular-field textarea::-ms-input-placeholder {
	color: #7A7A7A;
}

.formular-field select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	color: #7A7A7A;
	padding-right: 52px;
	background-color: #FFFFFF;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%237A7A7A' d='M1 1l5 5 5-5'/></svg>");
	background-repeat: no-repeat;
	background-position: right 18px center;
	background-size: 12px 8px;
}

.formular-field select.filled {
	color: #000000;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23000000' d='M1 1l5 5 5-5'/></svg>");
	background-repeat: no-repeat;
	background-position: right 18px center;
	background-size: 12px 8px;
}

.formular-field select option {
	color: #000000;
}

.formular-field select option[value=""] {
	color: #7A7A7A;
}

.formular-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.formular-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 40px;
	align-items: end;
	margin-top: 30px;
}

.formular-datenschutz {
	display: flex;
	align-items: center;
	margin: 0px;
	padding: 0px;
	min-height: 58px;
}

.formular-datenschutz input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.formular-datenschutz-label {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	cursor: default;
	margin: 0px;
	padding: 0px;
}

.formular-checkbox-box {
	position: relative;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	background-color: #FFFFFF;
	border: 0px solid #FFFFFF;
	box-sizing: border-box;
	cursor: pointer;
}

.formular-datenschutz-text {
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.formular-datenschutz-text a {
	color: #000000;
	text-decoration: underline;
}

.formular-datenschutz-text a:hover {
	color: #000000;
	text-decoration: none;
}

/* Haken */
.formular-checkbox-box::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 4px;
	width: 7px;
	height: 14px;
	border-right: 3px solid #000000;
	border-bottom: 3px solid #000000;
	transform: rotate(45deg);
	opacity: 0;
}

/* Aktiv */
.formular-datenschutz input[type="checkbox"]:checked + .formular-datenschutz-label .formular-checkbox-box::after {
	opacity: 1;
}

/* Fokus */
.formular-datenschutz input[type="checkbox"]:focus + .formular-datenschutz-label .formular-checkbox-box {
	outline: 0px solid #E3B344;
	outline-offset: 2px;
}

.formular-submit-wrap {
	text-align: left;
}

.formular-button {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 18px;
	min-width: 480px;
	padding: 18px 25px 18px 18px;
	border: 0px;
	background-color: #E3B344;
	color: #000000;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.2;
	font-family: Arial, sans-serif;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.formular-button:hover,
.formular-button:focus {
	color: #FFFFFF;
}

.formular-button-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 45px;
	height: 38px;
	background-image: url("../images/button-icons1.png");
	background-repeat: no-repeat;
	background-size: auto 168px;
	background-position: 0px 0px;
}



/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.formular-left {
		grid-template-rows: repeat(4, 50px);
		row-gap: 25px;
	}

	.formular-section {
		padding: 70px 0px 70px 0px;
	}

	.formular-headline {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.formular-text {
		font-size: 15px;
		margin-bottom: 50px;
	}

	.formular-grid,
	.formular-bottom {
		column-gap: 28px;
	}

	.formular-field {
		margin-bottom: 28px;
	}

	.formular-field input,
	.formular-field select {
		height: 52px;
		font-size: 15px;
	}

	.formular-field textarea {
		height: 276px;
		font-size: 15px;
	}

	.formular-datenschutz span {
		font-size: 15px;
	}

	.formular-button {
		min-width: 420px;
		font-size: 19px;
		padding: 14px 20px 14px 12px;
	}
}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {

	.formular-section {
		padding: 60px 0px 60px 0px;
	}

	.formular-headline {
		margin: 0px 0px 26px 0px;
		font-size: 34px;
		line-height: 1.25;
	}

	.formular-text {
		margin: 0px 0px 44px 0px;
		font-size: 16px;
	}

	.formular-grid {
		grid-template-columns: 1fr;
		row-gap: 0px;
	}

	.formular-left {
		display: block;
		margin-bottom: 24px;
	}

	.formular-right {
		display: block;
		margin-top: 0px;
	}

	.formular-field {
		margin-bottom: 24px;
	}
	
	.formular-field.formular-field-message {
		height: auto;
	}

	/* wichtig: auch rechts in Mobile Abstand wie links */
	.formular-right .formular-field {
		margin-bottom: 24px;
	}

	.formular-field input,
	.formular-field select {
		height: 56px;
		font-size: 16px;
	}

	.formular-field textarea {
		height: 220px;
		font-size: 16px;
		resize: none;
	}

	.formular-bottom {
		grid-template-columns: 1fr;
		row-gap: 20px;
		margin-top: 20px;
	}

	.formular-submit-wrap {
		text-align: left;
	}

	.formular-button {
		min-width: 0px;
		width: auto;
		font-size: 20px;
		padding: 14px 18px 14px 12px;
	}
}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

	.formular-section {
		padding: 50px 0px 50px 0px;
	}

	.formular-headline {
		font-size: 30px;
		margin-bottom: 24px;
	}

	.formular-text {
		font-size: 15px;
		margin-bottom: 36px;
	}

	.formular-field {
		margin-bottom: 20px;
	}

	.formular-right .formular-left .formular-field {
		margin-bottom: 20px;
	}

	.formular-field input,
	.formular-field select {
		height: 52px;
		font-size: 15px;
		padding: 0px 14px;
	}

	.formular-field textarea {
		height: 200px;
		font-size: 15px;
		padding: 14px;
		resize: none;
	}

	.formular-datenschutz {
		gap: 14px;
	}

	.formular-datenschutz span {
		font-size: 15px;
	}

	.formular-button {
		width: 100%;
		max-width: 100%;
		justify-content: center;
		font-size: 18px;
		padding: 14px 16px;
	}
}



/* =======================
   Formular Ergebnisseiten
======================= */

.formular-ergebnis-section {
	background-color: #DCDCDC;
	padding: 80px 0px 80px 0px;
}

.formular-ergebnis {
	max-width: 820px;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
}

.formular-ergebnis-icon {
	margin: 0px 0px 40px 0px;
}

.formular-ergebnis-icon img {
	display: inline-block;
	width: 180px;
	max-width: 100%;
	height: auto;
}

.formular-ergebnis-headline {
	margin: 0px 0px 34px 0px;
	padding: 0px;
	color: #000000;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}

.formular-ergebnis-success .formular-ergebnis-headline span,
.formular-ergebnis-error .formular-ergebnis-headline span {
	color: #E3B344;
}

.formular-ergebnis-text {
	max-width: 760px;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
}

.formular-ergebnis-text p {
	margin: 0px 0px 22px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.formular-ergebnis-text p:last-child {
	margin-bottom: 0px;
}

.formular-ergebnis-text a {
	color: #000000;
	font-weight: bold;
	text-decoration: underline;
}

.formular-ergebnis-text a:hover,
.formular-ergebnis-text a:focus {
	color: #000000;
	text-decoration: none;
}

.formular-ergebnis-button-wrap {
	margin-top: 40px;
	text-align: center;
}

.formular-ergebnis-button {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0px;
	min-width: 270px;
	padding: 12px 22px 12px 10px;
	background-color: #E3B344;
	color: #000000;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.formular-ergebnis-button:hover,
.formular-ergebnis-button:focus {
	color: #FFFFFF;
}

.formular-ergebnis-button-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 45px;
	height: 30px;
	background-image: url("../images/button-icons1.png");
	background-repeat: no-repeat;
	background-size: auto 168px;
	background-position: 0px -65px;
}


/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.formular-ergebnis-section {
		padding: 70px 0px 70px 0px;
	}

	.formular-ergebnis-icon {
		margin-bottom: 35px;
	}

	.formular-ergebnis-icon img {
		width: 165px;
	}

	.formular-ergebnis-headline {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.formular-ergebnis-text p {
		font-size: 15px;
	}

	.formular-ergebnis-button-wrap {
		margin-top: 35px;
	}

	.formular-ergebnis-button {
		min-width: 248px;
		font-size: 17px;
		padding: 10px 18px 10px 8px;
	}
}


/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {

	.formular-ergebnis-section {
		padding: 60px 0px 60px 0px;
	}

	.formular-ergebnis {
		max-width: 100%;
	}

	.formular-ergebnis-icon {
		margin-bottom: 30px;
	}

	.formular-ergebnis-icon img {
		width: 150px;
	}

	.formular-ergebnis-headline {
		margin: 0px 0px 26px 0px;
		font-size: 34px;
		line-height: 1.25;
	}

	.formular-ergebnis-text p {
		font-size: 16px;
	}

	.formular-ergebnis-button-wrap {
		margin-top: 30px;
	}

	.formular-ergebnis-button {
		min-width: 0px;
		font-size: 19px;
		padding: 12px 22px 12px 10px;
	}
}


/* =======================
   Kleine Smartphones <=560
======================= */

@media only screen and (max-width: 560px) {

	.formular-ergebnis-section {
		padding: 50px 0px 50px 0px;
	}

	.formular-ergebnis-icon {
		margin-bottom: 24px;
	}

	.formular-ergebnis-icon img {
		width: 130px;
	}

	.formular-ergebnis-headline {
		font-size: 30px;
		margin-bottom: 24px;
	}

	.formular-ergebnis-text p {
		font-size: 15px;
	}

	.formular-ergebnis-button-wrap {
		margin-top: 25px;
	}

	.formular-ergebnis-button {
		min-width: 0px;
		font-size: 18px;
		padding: 12px 16px 12px 10px;
	}
}



/* =======================
   News 
======================= */

.news-section {
	background-color: #FFFFFF;
	padding: 80px 0px 80px 0px;
}

.news-headline {
	margin: 0px 0px 34px 0px;
	padding: 0px;
	color: #000000;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
	text-align: left;
}

.news-headline span.font1 {
	color: #E3B344;
}

.news-headline span.font2 {
	color: #A6A6A6;
}

.news-intro {
	margin: 0px 0px 58px 0px;
	padding: 0px;
	max-width: 1180px;
}

.news-intro p {
	margin: 0px 0px 22px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.news-intro p:last-child {
	margin-bottom: 0px;
}

.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 76px;
	row-gap: 0px;
	align-items: start;
}

.news-image img {
	display: block;
	width: 100%;
	height: auto;
}

.news-subheadline {
	margin: 0px 0px 40px 0px;
	padding: 0px;
	color: #000000;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.25;
}

.news-content p {
	margin: 0px 0px 30px 0px;
	padding: 0px;
	color: #000000;
	font-size: 16px;
	line-height: 1.3;
}

.news-content p:last-child {
	margin-bottom: 0px;
}

.news-cta-box {
	margin-top: 30px;
}

.news-button {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0px;
	min-width: 340px;
	padding: 12px 22px 12px 10px;
	background-color: #E3B344;
	color: #000000;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.news-button:hover,
.news-button:focus {
	color: #FFFFFF;
}

.news-button-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 45px;
	height: 30px;
	background-image: url("../images/button-icons1.png");
	background-repeat: no-repeat;
	background-size: auto 168px;
	background-position: 0px -65px;
}





/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.news-section {
		padding: 70px 0px 70px 0px;
	}

	.news-headline {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.news-intro {
		margin-bottom: 50px;
	}

	.news-intro p,
	.news-content p {
		font-size: 15px;
	}

	.news-grid {
		column-gap: 42px;
	}

	.news-subheadline {
		font-size: 20px;
		margin-bottom: 32px;
	}
	
	.news-cta-box {
		margin-top: 25px;
	}

	.news-button {
		min-width: 290px;
		font-size: 17px;
		padding: 10px 18px 10px 8px;
	}	
}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {

	.news-section {
		padding: 60px 0px 60px 0px;
	}

	.news-headline {
		margin: 0px 0px 26px 0px;
		font-size: 34px;
		line-height: 1.25;
	}

	.news-intro {
		margin-bottom: 40px;
	}

	.news-intro p,
	.news-content p {
		font-size: 16px;
		line-height: 1.3;
	}

	.news-grid {
		grid-template-columns: 1fr;
		row-gap: 40px;
	}

	.news-subheadline {
		font-size: 22px;
		margin-bottom: 28px;
	}
	
	.news-cta-box {
		margin-top: 35px;
	}

	.news-button {
		min-width: 0px;
		font-size: 19px;
		padding: 12px 22px 12px 10px;
	}
}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

	.news-section {
		padding: 50px 0px 50px 0px;
	}

	.news-headline {
		font-size: 30px;
		margin-bottom: 24px;
	}

	.news-intro {
		margin-bottom: 34px;
	}

	.news-intro p,
	.news-content p {
		font-size: 15px;
	}

	.news-grid {
		row-gap: 34px;
	}

	.news-subheadline {
		font-size: 18px;
		line-height: 1.3;
		margin-bottom: 24px;
	}
	
	.news-cta-box {
		margin-top: 30px;
	}

	.news-button {
		min-width: 0px;
		font-size: 18px;
		padding: 12px 16px 12px 10px;
	}
}





