* {
    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%;
	}
}

.kontakt {
    top: 0;
    width: 85%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	padding-top: 30px;
	padding-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.kontakt .links {
    background-color: var(--bg2);
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1580px) {
    .kontakt {
        flex-direction: column-reverse;
    }

	.kontakt .links {
		margin-top: 50px;
	}
}

.kontakt .links img {
    width: 100%;
    max-width: 400px;
}

.kontakt .links .optionen .option {
    width: 300px;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 70px;
}

.kontakt .links .optionen .option i {
   font-size: 30px;
}

.kontakt .links .optionen .option span {
    font-weight: bold;
    font-size: 18px;
}

.kontakt .links .optionen .option p {
    font-size: 18px;
}

.kontakt .links .optionen .option a {
    color: white;
}

.kontakt-formular {
	max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-input {
	color:var(--main-text-color);
	font-weight:500;
	font-size: 110%;
	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;
}

.feedback-input::placeholder {
    color: var(--main-text-color);

}
  
.feedback-input:focus { border:2px solid var(--cta-color); }
  
textarea {
	height: 150px;
	line-height: 150%;
	resize:vertical;
}
  
[type="submit"] {
	width: 100%;
	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;
}
[type="submit"]:hover {
    transition: all .7 ease;
    background:#a5d4b1; 
}