/* Allgemeine Styles */
@font-face {
    font-family: 'Mona Sans';
    src: url('../fonts/Mona-Sans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Mona Sans';
    src: url('../fonts/MonaSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Mona Sans';
    src: url('../fonts/MonaSans-Medium.ttf') format('truetype');
    font-weight: medium;
    font-style: normal;
}

body {
    font-family: "Mona Sans";
    margin: 0;
    padding: 0;
    min-width: 400px;
}

p, h1, h2 {
    color: #083050;
}

h1, h2 {
    font-size: 45px;
    font-weight: 800;
}

p {
    font-size: 20px;
    font-weight: normal;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    width: 100%;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    width: 500px;
}

.top-bar-left .small-image {
    max-width: 40px;
    margin-right: 10px;
}

.top-bar-left p {
    font-size: 15px;
    font-weight: medium;
}

.top-bar-right {
    width: auto;
    display: flex;
    gap: 70px;
    white-space: nowrap;
    padding-right: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #083050;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-link .icon {
    margin-right: 10px;
    max-width: 40px;
}

header {
    background-color: #083050;
    padding: 0;
    width: 100%;
    border-top: solid 3px #A2DC59;
    border-bottom: solid 3px #A2DC59;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo img {
    width: 250px;
    height: auto;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

.nav-links {
    padding-top: 15px;
}

/* Page Wrapper */
.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.cta-button {
    background: linear-gradient(to bottom, #8AC640, #A6E05D);
    color: white;
    padding: 10px 30px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 15px;
    margin: 20px 0;
    border-top: 3px solid #539500;
    border-left: 3px solid #539500;
    border-right: 3px solid #539500;
    border-bottom: 10px solid #539500;
    font-size: 25px;
    font-weight: bold;
    margin-right: auto;
    cursor: pointer;
    margin-top: 50px;
}

.button-icon {
    width: 50px;
}

.cta-button:hover {
    background: linear-gradient(to bottom, #76B639, #91CF4F);
    border-bottom: 10px solid #437600;
}

/* Flex-Container */
.flex-container {
    display: flex;
    justify-content: space-between;    height: 50px;
    margin-right: 20px;
	margin-bottom: 80px;
	margin-top: 80px;
    align-items: center;
    gap: 20px;
    min-height: 400px;
}

.flex-container-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw; 
    width: 100vw; 
    min-height: 400px;
    background-image: linear-gradient(#576B7B, #334B5F);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    gap: 20px;
    padding: 20px 0;
    box-sizing: border-box;
	border-top: solid 3px #A2DC59;
    border-bottom: solid 3px #A2DC59;
}

.background-logo {
    position: absolute; /* Positioniert das Logo relativ zu flex-container-2 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Zentriert das Logo */
    z-index: 1; /* Setzt das Logo in den Hintergrund */
    opacity: 0.1; /* Leicht durchsichtig für dezenten Hintergrundeffekt */
}
	
.flex-container-2 form-section {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.upper-section h2 {
    font-size: 25px;
}

.upper-section-green p {
    font-size: 15px;
    font-weight: bold;
    color: #8AC640;
}

.upper-section p {
    font-size: 16px;
    margin-top: -15px;
}

.upper-section-dark p {
    font-size: 16px;
    margin-top: -15px;
	color: white
}

.upper-section-dark h2 {
    font-size: 25px;
   
	color: white
}

.form-section {
    flex: 1;
    max-width: 450px;
    text-align: left;
}
.form-container {
    background: #EFEFEF;
    padding: 20px;
    border-radius: 15px;
}

.form-container p {
    font-size: 18px;
}

input[type="email"] {
    width: 400px;
    padding: 20px 25px;
    border: 3px solid #3E7FAF;
    border-radius: 15px;
    font-size: 16px;
    box-sizing: border-box;
    margin-bottom: 5px;
}

.data-protection p {
    font-size: 15px;
}

.cta-button-2 {
    width: 360px;
    background: linear-gradient(to bottom, #61B7F7, #1C8ADB);
    color: white;
    padding: 11px 20px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 15px;
    border-top: 3px solid #397DB1;
    border-left: 3px solid #397DB1;
    border-right: 3px solid #397DB1;
    border-bottom: 6px solid #397DB1;
    font-size: 25px;
    font-weight: bold;
    margin-right: auto;
    cursor: pointer;
    margin-top: 5px;
}

.second-button-icon {
    width: 40px;
    margin-right: 15px;
}

/* Rechte Seite: Das Bild */
.image-section img {
    width: 400px;
    height: 600px;
}

.image-section-dark img {
    width: 550px;
    height: 600px;
}
.image-section-dark, .form-section {
    position: relative; 
    z-index: 1; 
}

.first-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 400px;
    padding-bottom: 0px;
}

.second-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 400px;
}

.third-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 400px;
	margin-top: -85px;
}

.container-left{
    flex: 1;
    max-width: 400px;
	height: 250px;
    text-align: left;
	background: #EFEFEF;
    padding: 20px;
    border-radius: 55px;
	border: solid 2px #A2DC59
}

.container-left-2{
    flex: 1;
    max-width: 400px;
	height: 250px;
    text-align: left;
    padding: 20px;
    border-radius: 55px;
}

.upper-topic h2{
    font-size: 25px;
	text-align: center
}

.upper-text p {
    font-size: 15px;
    font-weight: bold;
	text-align: center
}

.upper-text-3 {
	
	margin-top: 50px;
	margin-bottom: 50px;
}

.upper-text-3 h1{
	color: #A2DC59;
	
}

.page-wrapper-2 {
    position: relative; 
    z-index: 2; 
    margin: 0 auto; 
    padding: 20px;
	max-width: 900px;
    text-align: center;
}

.headpic {
    position: absolute;
    top: 95%;
    left: 15%;
    width: 80%;
    z-index: 1;
    pointer-events: none;
}

.headpic img {
    max-width: 20%; 
    height: auto; 
    opacity: 0.3; 
}

.container-left-2 {
    position: relative; 
    z-index: 3; 
}

.upper-topic-2 h2 {
    font-weight: bold;
    color: #333; 
    margin-bottom: 10px;
	font-size: 25px;
}

.upper-text-2 p {
    color: #555;
    line-height: 1.5;
	font-size: 15px;
}
.container-right{
	flex: 1;
    max-width: 400px;
	height: 250px;
    text-align: left;
	background: #EFEFEF;
    padding: 20px;
    border-radius: 55px;
		border: solid 2px #A2DC59
}

.upper-text-right p{
	font-size: 15px;
    font-weight: bold;
	text-align: center
}

.upper-topic-right h2{
	 font-size: 25px;
	text-align: center
	
}

.upper-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    height: 120px;
}

.upper-image img {
    width: 110px; 
    height: auto;
}

.upper-image-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
    height: 120px;
}

.upper-image-right img {
    width: 110px; 
    height: auto;
}

#background-image-wolke {
background-image: url('../bilder/icons/logo-background-1.svg');
background-position: center; 
background-repeat: no-repeat; 

}

#background-image-wolke img {
	
	max-height: 426px;
	padding-top: 40px;
}

.footer {
    background-color: #083050;
    color: white;
    padding: 20px 0;
    width: 100%;
    border-top: solid 3px #A2DC59;
    border-bottom: solid 3px #A2DC59;
}

.footer-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.footer-wrapper-2 {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.footer-left {
    width: 50%;
    text-align: left;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
    margin-left: 0;
}

.footer-text {
    margin-bottom: 20px;
    text-align: left;
}

.footer-text p {
    color: white;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-left: 0;
    margin-left: 0;
    margin: 0;
}

.footer-links ul li {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-right {
    width: 40%;
}

.footer-sections {
    display: flex;
    gap: 30px;
	float: right;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h4 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-right h4 {
    margin-bottom: 10px;
	color:#3E7FAE;
}

.footer-right ul {
    list-style: none;
    display: block;
    gap: 40px;
    padding: 0;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
}

.footer-right ul li a:hover {
    text-decoration: underline;
}

/* Allgemeine Listen-Resets */
ul {
    padding: 0;
    margin: 0;
}

.footer-right-2 p {
	color: white;
	font-size: 12px;
	padding-left: 0;
    margin-left: 0;
    margin: 0;
}

.background-image-schritte {
    position: relative;
    max-width: 900px;
    height: 1200px; /* Höhe an die Größe des Bildes anpassen */
    margin: 0 auto;
    background-image: url("../bilder/backpic/zahlen_pic.svg"); /* Bild mit den vier Kreisen */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Grundstil für die Schritt-Container */
.step-content {
    position: absolute;
    text-align: left;
    width: 600px; /* Breite des Textcontainers */
    padding-left: 200px;
}

.step-content p {
	font-size: 15px;
}
/* Schritt 1 Position */
.step-1 {
    top: 80px; /* Position des Textes in der Nähe des ersten Kreises */
    left: 50px;
}

/* Schritt 2 Position */
.step-2 {
    top: 350px; /* Position des Textes in der Nähe des zweiten Kreises */
    left: 50px;
}

/* Schritt 3 Position */
.step-3 {
    top: 625px; /* Position des Textes in der Nähe des dritten Kreises */
    left: 50px;
}

/* Schritt 4 Position */
.step-4 {
    top: 900px; /* Position des Textes in der Nähe des vierten Kreises */
    left: 50px;
}

/* Button-Styling für alle Schritte */
.step-button {
    margin-top: 10px;
    background-color: #60c2ff;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
}

.step-button:hover {
    background-color: #89c541;
}
/* Volle Breite des Hintergrunds */
.full-background {
    background-image: linear-gradient(#576B7B, #334B5F);
    padding: 40px 0; /* Abstand oben und unten */
    display: flex;
    justify-content: center; /* Zentriert das Formular horizontal */
}

/* Container für das gesamte Formular */
.form-container-2 {
    max-width: 600px; /* Maximale Breite des Formulars */
    width: 100%; /* Nimmt bis zur maximalen Breite den Platz ein */
    padding: 20px;
    border-radius: 8px;
    text-align: left; /* Textausrichtung links */
    color: white;
	align-items: center;
}

/* Überschrift und Beschreibung */
.form-container-2 h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
}

.form-container-2 p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #d1d1d1;
    text-align: center;
}

/* Labels über den Eingabefeldern */
.form-container-2 label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
}

/* Grundstil für die Eingabefelder */
.form-container-2 input[type="text"],
.form-container-2 input[type="tel"],
.form-container-2 input[type="email"],
.form-container-2 textarea {
    display: block;
    width: 100%; /* Nimmt die volle Breite des Containers ein */
    padding: 15px; /* Höhere Eingabefelder */
    margin-bottom: 15px;
    border: 2px solid #89c541; /* Setzt eine grüne Rahmenfarbe */
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 1em;
    color: #333;
    box-sizing: border-box;
}

/* Stil für den Platzhaltertext in allen Eingabefeldern und Textareas */
.form-container-2 input::placeholder,
.form-container-2 textarea::placeholder {
    font-family: inherit; /* Übernimmt die Schriftart vom umgebenden Element */
    font-size: 1em; /* Passt die Schriftgröße an */
    color: #888; /* Farbe für den Platzhaltertext */
}

/* Stil für die Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #d1d1d1;
    font-size: 0.9em;
    text-align: left;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-container a {
    color: #60c2ff;
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

/* Stil für die Schaltfläche */
.form-container-2 button {
    background: linear-gradient(to bottom, #8AC640, #A6E05D);
    color: white;
    padding: 10px 30px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Horizontale Zentrierung des Texts im Button */
    text-decoration: none;
    border-radius: 15px;
    border-top: 3px solid #539500;
    border-left: 3px solid #539500;
    border-right: 3px solid #539500;
    border-bottom: 10px solid #539500;
    font-size: 25px;
    font-weight: bold;
    margin: 50px auto 20px auto; /* Zentriert den Button und setzt Abstand oben */
    cursor: pointer;
    width: 100%; /* Macht den Button breiter, aber nicht die gesamte Breite */
    max-width: 800px; /* Begrenzte maximale Breite */
    box-sizing: border-box;
    height: auto; /* Stellt sicher, dass der Button die Höhe basierend auf Padding anpasst */
}

/* Hover-Effekt für den Button */
.form-container-2 button:hover {
    background: linear-gradient(to bottom, #A6E05D, #8AC640);
    border-color: #5ba300;
}
.form-container-2 textarea#message::placeholder {
    font-family: 'Mona Sans'; /* Ersetze dies durch die gewünschte Schriftart */
    font-size: 16px; /* Setzt die gewünschte Schriftgröße */
    color: #888; /* Farbe für den Platzhaltertext */
    font-weight: normal; /* Stelle sicher, dass der Platzhaltertext nicht fett ist */
}
.form-container-2 textarea#message {
    font-family: 'Mona Sans', sans-serif; /* Setzt Mona Sans für den regulären Text */
    font-size: 16px; /* Passe die Schriftgröße nach Bedarf an */
    color: #333; /* Farbe des regulären Textes */
}

#datenzelt-logo-background {
	background-image: url('../bilder/icons/logo-background-1.svg');
	background-blend-mode: color-dodge;
	background-color: #576B7B;
	background-size: auto;
	background-position: calc(70%) center;
	background-origin: content-box;
}

#datenzelt-logo-background-2 {
	background-image: url('../bilder/icons/logo-background-1.svg');
	background-blend-mode: color-dodge;
	background-color: #576B7B;
	background-size: 40%;
	background-position: center;
	/* background-origin: content-box; */
	background-repeat: no-repeat;
	
}
.top-bar-right-mobil {
    display: none;
}
.page-wrapper .container .first-container {
}
/*Tablet View*/
@media (min-width:601px) and (max-width:1050px){
.top-bar-right-mobil {
    display: flex;
	gap: 20px;
    white-space: nowrap;
    padding-right: 30px;
	
}
.top-bar-left .small-image {
	 max-width: 30px;
    margin-right: 5px;
}
body p {
}
.top-bar-right {
    display: none;
}
.top-bar-left p {
    font-size: 13px;
    font-weight: medium;
}
.contact-link-mobil .icon-mobil  {
    margin-right: 10px;
    display: inherit;
    min-width: 34px;
    min-height: 36px;
    float: none;
}
.contact-link-mobil .icon-mobil-2 {
    display: inherit;
    min-width: 36px;
    min-height: 35px;
}
#datenzelt-logo-background .image-section-dark img {
    display: none;
}
}
/*Mobile View*/
@media (max-width:600px){
.top-bar-right-mobil {
    display: flex;
	gap: 20px;
    white-space: nowrap;
    padding-right: 5px;
	
}
.top-bar-left .small-image {
	max-width: 30px;
    margin-right: 5px;
}
.top-bar-right {
    display: none;
}
.top-bar-left p {
    font-size: 10px;
    font-weight: medium;
}
.contact-link-mobil .icon-mobil  {
    display: inherit;
    min-width: 25px;
    min-height: 26px;
    float: none;
}
.contact-link-mobil .icon-mobil-2 {
    min-height: 19px;
    min-width: 25px;
    margin-top: 3px;
    display: inherit;
}
.logo img {
    display: inherit;
    max-width: 130px;
    margin-right: 12px;
    padding-right: 0px;
    margin-left: -26px;
}
	nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 11px;
    padding-bottom: 0px;
    padding-top: 0px;
}
.container .header-container nav {
    margin-top: 0px;
    margin-bottom: 13px;
    margin-left: 1px;
    margin-right: -14px;
}
	h1 {
    font-size: 30px;
    font-weight: 800;
}
	h2 {
	font-size: 20px;
	}
	
p {
    font-size: 15px;
    font-weight: normal;
}
	.cta-button {
    background: linear-gradient(to bottom, #8AC640, #A6E05D);
    color: white;
    padding: 10px 30px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 15px;
    margin: 20px 0;
    border-top: 3px solid #539500;
    border-left: 3px solid #539500;
    border-right: 3px solid #539500;
    border-bottom: 10px solid #539500;
    font-size: 16px;
    font-weight: bold;
    margin-right: auto;
    cursor: pointer;
    margin-top: 22px;
}

.button-icon {
    width: 30px;
    margin-right: 12px;
}
.container .flex-container #background-image-wolke {
    display: none;
}
.flex-container .form-section .upper-section h2  {
    font-size: 20px;
}
.flex-container .form-section .upper-section p {
    font-size: 12px;
}
.flex-container .form-section .form-container p {
    font-size: 12px;
}
.form-section .form-container input {
    font-size: 12px;
    max-width: 304px;
}
.form-container {
    background: #EFEFEF;
    padding: 20px;
    border-radius: 15px;
}

.form-container p {
    font-size: 18px;
	
}
.flex-container .form-section .form-container {
    max-width: 300px;
}
.form-section .form-container .cta-button-2 {
    max-width: 254px;
    font-size: 20px;
}
.form-container .cta-button-2 .second-button-icon {
    max-width: 30px;
}
.form-section {
    margin-bottom: 123px;
    margin-left: -17px;
    padding-bottom: 0px;
}
.footer {
    background-color: #083050;
    color: white;
    padding: 20px 0;
    width: 100%;
    border-top: solid 3px #A2DC59;
    border-bottom: solid 3px #A2DC59;
    margin-top: -140px;
}

.footer-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: block;
    padding: 20px;
}

.footer-wrapper-2 {
    max-width: 800px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.footer-left {
    width: 100%;
    text-align: left;
}

.footer-logo img {
    width: 170px;
    margin-bottom: 20px;
    margin-left: 0;
    float: none;
    text-align: center;
}

.footer-text {
    margin-bottom: 20px;
    text-align: center;
    font-size: medium;
    margin-top: -26px;
}

.footer-text p {
    color: white;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding-top: 50px;
    text-align: center;
    margin-left: 3px;
}

.footer-links ul li {
    margin: 0;
    padding: 0;
    font-size: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-right {
    width: 100%;
}

.footer-sections {
    display: flex;
    gap: 40px;
    margin-right: 59px;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 14px;
	}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-right h4 {
    margin-bottom: 10px;
	color:#3E7FAE;
}

.footer-right ul {
    list-style: none;
    display: block;
    gap: 40px;
    padding: 0;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
}

.footer-right ul li a:hover {
    text-decoration: underline;
}

/* Allgemeine Listen-Resets */
ul {
    padding: 0;
    margin: 0;
}

.footer-right-2 p {
	color: white;
	font-size: 12px;
	padding-left: 0;
    margin-left: 0;
    margin: 0;
}
.footer-left .footer-logo {
    text-align: center;
    font-size: medium;
}
.footer-right-2 {
    display: none;
}
#datenzelt-logo-background .image-section-dark {
    display: none;
}
.flex-container-2 .form-section .form-container p {
    font-size: 12px;
}
.flex-conatiner-2 .form-section .form-container input {
    font-size: 12px;
    max-width: 304px;
}
.flex-container-2 .form-section .form-container {
    max-width: 300px;
}
#datenzelt-logo-background .form-section {
	margin-bottom: 123px;
    margin-left: -17px;
    padding-bottom: 0px;
}
#datenzelt-logo-background .form-section .upper-section-dark p {
    font-size: 12px;
}
	#datenzelt-logo-background .form-section .upper-section-dark h2 {
    font-size: 20px;
}
#datenzelt-logo-background .form-section {
    padding-left: 40px;
    margin-bottom: 30px;
}
.first-container{
    display: block;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 400px;
}

.second-container{
    display: block;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 400px;
    margin-bottom: 105px;
}
.third-container{
    display: block;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 400px;
    margin-bottom: 140px;
}
.container .first-container .container-left {
    margin-bottom: 20px;
    margin-top: 30px;
}
.page-wrapper .first-container .container-left {
}
#datenzelt-logo-background .form-section {
    margin-left: auto;
}
.container-left .upper-topic h2 {
    font-size: 20px;
}
.container-left .upper-text p {
    font-size: 15px;
}
.container-right .upper-topic-right h2 {
    font-size: 20px;
}
.container-right .upper-text-right p {
    font-size: 15px;
}
.container-right .upper-image-right img {
}
.page-wrapper .second-container .container-left {
    margin-bottom: 20px;
}
.container-left .upper-image img {
    max-width: 86px;
}
.container-right .upper-image-right img {
    max-width: 77px;
}
.container-left .upper-topic h2 {
}
.container-left .upper-text p {
}
.page-wrapper .third-container .container-left {
    margin-bottom: 20px;
}
.headpic {
    position: absolute;
    top: 130%;
    left: 58%;
    width: 80%;
    z-index: 1;
    pointer-events: none;
    display: none;
}
.headpic img {
    max-width: 45%;
    height: auto;
    opacity: 0.3;
    display: none;
}
.page-wrapper-2 .first-container .container-right {
    margin-top: 100px;
    margin-bottom: 139px;
}
.form-container-2 form button {
    margin-bottom: 119px;
    margin-top: 7px;
}
.page-wrapper .first-container .container-left {
    margin-bottom: 20px;
}
.page-wrapper .first-container .container-right {
    margin-bottom: 106px;
}
.page-wrapper .upper-text-3 {
    margin-bottom: 150px;
    margin-top: -150px;
}
.page-wrapper .background-image-schritte {
    display: none;
}
.container-left, .container-right {
 margin: 20px auto;
}
}

@media (min-width:601px) and (max-width: 750px){
.first-container, .second-container, .third-container {
    display: block;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 400px;
	margin-bottom: 20px;
}

.second-container{
    margin-bottom: 105px;
}
.third-container{
    margin-bottom: 40px;
}
.container-left, .container-right {
 margin: 20px auto;
}
	#third-container-use-case{
		margin-top: 20px;
}
}
