* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "noto-sans-display", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
	color: var(--main-text-color);
    background-color: var(--bg);
    font-family: "noto-sans-display", sans-serif;
    font-weight: 400;
    font-style: normal;
	width: 100%;
	max-width: 100%;
}

@media only screen and (max-width: 1150px) {
	.banner .text h2 {
		font-size: 300%;
	}
}
@media only screen and (max-width: 820px) {
	.banner .text h2 {
		font-size: 250%;
	}
}
@media only screen and (max-width: 700px) {
	.banner .text h2 {
		font-size: 200%;
	}
}
@media only screen and (max-width: 560px) {
	.banner .text h2 {
		font-size: 150%;
	}
}

.dienste {
    width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.dienste .flex {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    margin-top: 50px;
}

.dienste .flex .line {
	width: 50px;
	height: 3px;
	background: var(--gold);
	border-radius: 100px;
	margin: 10px;
}

.dienste h3 {
    color: var(--main-text-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 200%;
}

.dienste p {
    text-align: center;
    margin-bottom: 50px;
}

.dienste .boxen {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}

.dienste .boxen .box {
    background-color: var(--bg2);
    margin: 25px;
    width: 300px;
    height: 300px;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
}

.dienste .boxen .box i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 15px;
}

.dienste .boxen .box h4 {
    text-align: center;
    font-size: 180%;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dienste .boxen .box p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.dienste .boxen .box a {
    color: var(--gold);
}

.dienste .eins, .zwei, .drei {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px;
}

.dienste .eins .line {
    width: 30px;
}

.dienste .eins .content, .zwei .content, .drei .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.dienste .zwei .content {
    flex-direction: row-reverse;
}

.dienste .content .left { 
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}

.dienste .content .left img { 
    width: 100%;
    max-width: 500px;
}

.dienste .content .right { 
    background-color: var(--bg2);
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
}

.dienste .content .right p{ 
    font-size: 18px;
    margin: 20px;
    text-align: left;
}

.dienste .content .right a .button {
    text-align: center;
	color: white;
	background: var(--cta2);
	width: 300px;
	max-width: 90%;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	font-weight: bold;
	border-radius: 5px;
    margin-bottom: 15px;
	font-size: 120%;
	scale: 1;
	transition: scale .75s;
}
.dienste .content .right a .button:hover {
	cursor: pointer;
	scale: 1.05;
	transition: scale .75s;
}

/*Formular start*/

.formular {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg2);
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    border: 4px solid var(--gold);
}

.formular h3 {
    margin: 20px;
    text-align: center;
    color: var(--main-text-color);
}

.formular .content {
    display: flex;
    flex-direction: column;
    margin: 20px;
    width: 100%;
    max-width: 900px;

}  

.formular .content .unten {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.formular .content .unten .left {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 100%;
    max-width: 400px;
    margin: 20px;
}

.formular .content .mitte {
    margin-bottom: 10px;
    margin-top: 30px;
}

.formular .content .mitte .vvw form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

.vvw-content {
    display: flex;
    align-items: center;
    margin: 10px;
}

.formular .content .mitte .vvw label {
    color: var(--main-text-color);
    font-size: 120%;
    margin-left: 10px;
}

.formular .content .unten .left .objektart {
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.formular .content .left .objektart label {
    font-size: 120%;
    color: var(--main-text-color);
}

.formular .content .left .objektart select {
    font-weight: 500;
	font-size: 120%;
    width: 60%;
    margin-left: auto;
	border-radius: 5px;
	line-height: 15px;
    background-color: var(--bg2);
	border:2px solid rgba(255, 255, 255, 0.493);
	transition: all 0.3s;
	padding: 5px;
	box-sizing: border-box;
	outline:0;
    color: var(--main-text-color);
}

.formular .content .left .plz {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.plztext {
    color:var(--main-text-color);
	font-weight:500;
	font-size: 120%;
	border-radius: 5px;
	line-height: 22px;
	background-color: transparent;
	border:2px solid rgba(255, 255, 255, 0.493);
	transition: all 0.3s;
	padding: 13px;
	margin-bottom: 15px;
	width:100%;
	box-sizing: border-box;
	outline:0;
}

.plztext::placeholder {
    color: var(--main-text-color);
}

.plztext:focus { 
    border: 2px solid var(--gold); 
}

.formular .content .left .zeitpunkt {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.formular .content .left .zeitpunkt label {
    font-size: 120%;
    margin-bottom: 5px;
}

.formular .content .left .zeitpunkt select {
    font-weight: 500;
	font-size: 120%;
	border-radius: 5px;
	line-height: 15px;
	background-color: var(--bg2);
	border:2px solid rgba(255, 255, 255, 0.493);
	transition: all 0.3s;
	padding: 5px;
	box-sizing: border-box;
	outline:0;
    color: var(--main-text-color);
}

.formular .content .right {
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: baseline;
    width: 100%;
    max-width: 350px;
}

.formular .content .left {
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: baseline;
    width: 100%;
    max-width: 350px;
}

.formular .content .right .kontaktdaten {

}

.formular .content .right .kommunikation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.formular .content .right .kommunikation label {
    font-size: 120%;
}

.formular .content .right .kommunikation select {
    font-weight: 500;
	font-size: 120%;
	border-radius: 5px;
	line-height: 15px;
	background-color: var(--bg2);
	border:2px solid rgba(255, 255, 255, 0.493);
	transition: all 0.3s;
	padding: 5px;
	box-sizing: border-box;
	outline:0;
    color: var(--main-text-color);
}

.formular .content .right .antwort {
    margin-top: 20px;
}

.formular .content .right .antwort label {
    font-size: 120%;
    margin-left: 10px;
}

.formular .senden {
    width: 100%;
    max-width: 500px;
    margin: 20px;
}

[type="submit"] {
    width: 90%;
	background: var(--cta2);
	border-radius:5px;
	border:0;
	cursor:pointer;
	color:white;
	font-size:24px;
	padding-top:10px;
	padding-bottom:10px;
	transition: all .7s ease;
	margin-top:-4px;
	font-weight:700;
    margin: 20px;
}
[type="submit"]:hover {
    transition: all .7 ease;
    background:#a5d4b1; 
}

/*Formular ende*/