
body {
	
	margin:0  auto;
			padding:0;
			background-image: url('../images/new_images/Background.svg');
			background-size: cover ;
            background-repeat: no-repeat;
			background-attachment: fixed;
}


* {
    margin: 0;
    padding: 0;
}

.whitespace {
    padding: 90px 7.25% 60px;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    min-height: 100vh;
    width: 100%;
}


/*
* Header
*/

.headline {
    margin-top: 90px;
    /* margin-bottom: 116px; */
    margin-bottom: 50px;
}

/*
* Content
*/

/* Single Image Box */
.round-white-box {
    background-color: white;
    border-radius: 29px;
    margin-bottom: 40px; 
    padding-bottom: 50px;
}

.main-flexbox {
    display: flex;  
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-textbox {
    width: 40%;
    padding-left: 4.8%;
    margin: 18px;  
    /* margin-top: 18px; */
    /* background-color: rgb(146, 16, 206); */
}
.main-textbox-wide {
    /* width: 35.6%; */
    padding-left: 2.8%;
    padding-right: 2.8%;
    margin: 18px; 
    /* background-color: #c53dbc; */
}
.button-textbox-wide {
    /* width: 35.6%; */
    padding-left: 2.8%;
    padding-right: 2.8%;
    margin: 18px; 
    text-align: center;
    /* background-color: #c53dbc; */
}

.main-header {
    margin: 34px 0px 14px;
}

.center-video{
    text-align: center;
    padding-top: 1%;
    padding-bottom: 1%;

}

.main-button {
    border-radius: 64px;
    text-decoration: none;
    background-color: #3C64AD;
    display: inline-block;
    padding: 11px 0px;
    text-align: center;
    width: 340px;
    margin: auto;
    /* margin-top: 50px; */
}



.kontakt-flex {
    /* padding: 28px 5.9% 88px 5.9%; */
    display: flex;
    /* justify-content: space-between; */
    flex-direction: column;
    /* flex-wrap: wrap; */
    /* background-color: #c53dbc; */
}

.kontakt-form {
    padding-bottom: 20px;
    padding-top: 20px;
    margin: auto;
    display: block;
    margin-left: 4.8%;
    margin-right: 4.8%;
    padding-left: 4.8%;
    padding-right: 4.8%;
    background-color: rgba(153, 195, 29,0.7);
}

.kontakt-form-gruppe {
  display: flex;
  flex-direction: column;
}


/* Container für die 3 nebeneinander liegenden Felder */
.row-dreifach {
  display: flex;
  gap: 10px; /* Abstand zwischen den drei Feldern */
}

/* Verteilt den Platz gleichmäßig (jedes Feld kriegt 1/3 des Platzes) */
.row-dreifach .kontakt-form-gruppe {
  flex: 1; 
}

.radio-group-inline {
  display: flex;
  flex-flow: row wrap;  /* Richtet die Elemente horizontal aus */
  align-items: center; /* Zentriert Buttons und Text vertikal auf einer Linie */
  gap: 15px;           /* Erzeugt einen gleichmäßigen Abstand zwischen den Elementen */
  border: none !important;
  outline: none !important;
  margin-bottom: 20px;
}
.radio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;            /* Kleiner Abstand zwischen dem runden Button und der Schrift */
}

/* Vergrößert alle Radio-Buttons in der Gruppe */
.radio-item input[type="radio"] {
  transform: scale(2); /* 1.5 entspricht 150% der Originalgröße */
  margin: 5px;          /* Optional: Verhindert, dass der Button durch das Skalieren an das Label stößt */
  cursor: pointer;       /* Ändert den Mauszeiger zu einer Hand beim Drüberfahren */
}

/* Optional: Verhindert, dass das legend-Element das Layout bricht */
.radio-group-inline legend {
  /* float: left;  */
  width: 100%;
  margin-bottom: 10px;
}




.kontakt-form label {
    display: block;
}

.kontakt-form input[type="text"], input[type="email"] {
    display: block;
    margin: 5px 0 10px;
    width: 100%;
    background-color: rgb(242, 242, 242);
}
.kontakt-form-gruppe input[type="date"] {
    /* display: block; */
    margin: 5px 0 10px;
    /* width: 30%; */
    background-color: rgb(242, 242, 242);
}

.kontakt-form textarea {
    display: block;
    margin: 5px 0 10px;
    width: 100%;
    height: 130px;
    background-color: rgb(242, 242, 242);
}



.submit-button {
    border-radius: 64px;
    background-color: #3C64AD;
    display: inline-block;
    padding: 11px 0px;
    text-align: center;
    width: 340px;
}

.w-form-done, .w-form-fail {
    display: none;
}
.w-form-start {
    display: block;
}



/*
* Footer
*/

.main-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-header {
    margin: 43px 0 13px;
    display: inline-block;
}

.footer-link {
    text-decoration: underline;
}

.footer-button {
    background-color: white;
    width: 221px;
}

.footer-box {
    margin: 30px 0;
}


.footer--button-box {
    margin: 30px 0;
}

/*
* Responsivness
*/



.show_mobil{
	display: none;
}

@media screen and (max-width: 1240px) {
    .row-dreifach {
        flex-direction: column
    }
    
    .submit-button {
        margin: auto;
        width: 250px;
    }

}
