@charset "UTF-8";
/* Der _ im Namen sagt SASS, dass es sich um ein Modul handelt, das woanders importiert wird. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Marlboro";
  src: url(./assets/fonts/Marlboro.ttf);
}
:root {
  --gold: silver;
  --light-shadow: rgb(130, 180, 180);
  --dark-shadow: rgb(220 , 200, 200);
  --font-logo: "Marlboro";
}

html, body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--text-color);
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  /* soll niemals kleiner sein als die Bildschirm-Grösse - vh = viewport height */
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  background: radial-gradient(ellipse, #02162e, #000418 100%);
  width: 100%;
  scrollbar-gutter: stable;
  gap: 100px;
}

div.stars1::after {
  top: 750px;
}

div.stars1::after {
  top: 1000px;
}

div.stars2::after {
  top: 750px;
}

div.stars3::after {
  top: 750px;
}

section {
  margin: 1vh 0 100px 0;
}

section > h1 {
  position: relative;
  color: rgb(255, 242, 181);
  background-image: linear-gradient(rgb(255, 255, 255) 45%, rgb(170, 170, 170) 60%, rgb(192, 192, 192) 84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 3em;
  text-align: center;
}

section div.grid-container-kontakt {
  position: relative;
  background: #010624;
  width: 80%;
  min-height: 85vh;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 100px;
  padding: 25px;
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: auto;
  grid-template-areas: "projekt kontakt";
  border-radius: 25px;
  opacity: 1;
  gap: 25px;
}

.grid-container-kontakt::before,
.grid-container-kontakt::after {
  content: "";
  position: absolute;
  width: 100.5%;
  height: 101%;
  background: conic-gradient(from var(--deg) at center, #00c3ff, #4d0199, #6300c6, #009dcd);
  border-radius: inherit;
  padding: 2px;
  z-index: -222;
  box-sizing: content-box;
  animation: autoRotate 30s linear infinite;
  left: -0.2em;
  top: -0.4em;
}

.grid-container-kontakt::after {
  filter: blur(5px);
  transform: translateX(-0.5%);
}

@keyframes autoRotate {
  to {
    --deg: 360deg;
  }
}
.card-projekt {
  grid-area: projekt;
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  border-radius: 50px;
  background: radial-gradient(ellipse, #02162e, #01082d 100%);
  padding: 0 25px 0 25px;
}

div.flex-container-zusammenarbeit {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: silver;
  font-size: 1.1em;
}

div.flex-container-zusammenarbeit > p {
  position: relative;
  color: silver;
}

div.flex-container-schritte {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-basis: 25px;
}
div.flex-container-schritte p.punkte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse, #1c9204, #01082d 100%);
  border-radius: 25px;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  text-align: center;
  color: rgba(185, 206, 206, 0.8);
  font-weight: 700;
  font-size: 0.75em;
}
div.flex-container-schritte p.text-schritte {
  padding: 2.5px 0 0 0;
}

.card-projekt > p.zeiten {
  color: rgba(96, 117, 222, 0.963);
  font-size: 0.9em;
  position: relative;
  bottom: 0px;
}

.card-kontakt {
  grid-area: kontakt;
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 50px;
  background: radial-gradient(ellipse, #02162e, #01082d 100%);
  padding: 0 25px 0 25px;
}

form > div > label {
  position: relative;
  display: inline-block;
  width: 150px;
  color: silver;
}

.kontakt-formular {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.label-grid-container-input {
  display: grid;
  background: #010624;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "picture input" ". error";
  border-radius: 15px;
  font-size: 1.5em;
  padding: 20px;
  gap: 15px;
}
.label-grid-container-input svg {
  background: transparent;
  flex-shrink: 0;
  grid-area: picture;
  height: 48px;
}
.label-grid-container-input input {
  background-color: #02162e;
  border: none;
  width: 100%;
  grid-area: input;
  padding: 5px;
  font-size: 0.8em;
}
.label-grid-container-input input:focus {
  color: silver;
  border: transparent;
  background-color: #02162e;
  outline: none;
}
.label-grid-container-input input:not(:focus) {
  color: silver;
  border: transparent;
  background-color: #02162e;
  outline: none;
}
.label-grid-container-input input:not(:empty) {
  color: green;
  border: transparent;
  background-color: #02162e;
  outline: none;
}

.label-border-red {
  border: 3px dashed red;
}

.label-border-green {
  border: 3px dashed green;
}

p.name-error {
  grid-area: error;
  font-size: 0.5em;
  color: red;
  padding: 5px;
  border: 0px transparent;
}

p.email-success {
  grid-area: error;
  font-size: 0.8em;
  color: green;
  padding: 5px;
  border: 0px transparent;
}

p.email-error {
  grid-area: error;
  font-size: 0.5em;
  color: red;
  padding: 5px;
  border: 0px transparent;
}

div.grid-container-textarea {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "picture textarea" ". error";
  background: #010624;
  padding: 20px;
  gap: 15px;
}
div.grid-container-textarea svg#message {
  grid-area: picture;
}
div.grid-container-textarea textarea.textarea-kontakt {
  position: relative;
  grid-area: textarea;
  width: 100%;
  height: 100px;
  background-color: #02162e;
  border: none;
  color: #999B9B;
  padding: 10px 15px;
  font-size: 1em;
  /*
  textarea.textarea-kontakt:focus,
  textarea.textarea-kontakt:active {
    border-color: transparent;
    border-bottom: 2px solid #1c87c9;
    outline: none;
  } */
}
div.grid-container-textarea textarea.textarea-kontakt textarea:focus {
  color: #fff;
  border: transparent;
  background-color: #02162e;
  outline: none;
}
div.grid-container-textarea textarea.textarea-kontakt textarea:not(:focus) {
  color: #fff;
  border: transparent;
  background-color: #02162e;
  outline: none;
}
div.grid-container-textarea textarea.textarea-kontakt textarea:not(:empty) {
  color: #fff;
  border: transparent;
  background-color: #02162e;
  outline: none;
}

p.message-error {
  grid-area: error;
  font-size: 0.8em;
  color: red;
  padding: 5px;
  border: 0px transparent;
}

p.message-success {
  grid-area: error;
  font-size: 0.8em;
  color: green;
  padding: 5px;
  border: 0px transparent;
}

.textarea-border-red {
  border: 3px dashed red;
}

.textarea-border-green {
  border: 3px dashed green;
}

div.flex-container-zustimmung {
  display: flex;
  align-items: center;
  gap: 35px;
}

label.checkbox-switch-zustimmung {
  display: flex;
  align-items: center;
  position: relative;
  width: 20px;
  height: 34px;
  flex-shrink: 0;
}

input#einwilligung {
  display: none;
  width: 0;
  height: 0;
  z-index: -1;
}

span.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(230, 73, 73, 0.7);
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

span.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 8px;
  bottom: 4px;
  background-color: red;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

input#einwilligung:checked + .slider {
  background-color: yellowgreen;
}

input#einwilligung:focus + .slider {
  box-shadow: 0 0 1px red;
}

input#einwilligung:checked + .slider:before {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  background-color: #1c9204;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

h2.kontakt-h2 {
  font-size: 2.2em;
  text-align: left;
  color: rgb(255, 242, 181);
  background-image: linear-gradient(silver 40%, rgb(64, 103, 201) 60%, silver 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
}

div.kontakt-h2-small {
  display: none;
}

h2.versenden-erfolgreich {
  font-size: 2.5em;
  text-align: center;
  margin-top: 10vh;
  color: rgb(255, 242, 181);
  background-image: linear-gradient(rgb(255, 255, 255) 40%, rgb(49, 56, 203) 65%, rgb(192, 192, 192) 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h2.versenden-fehler {
  font-size: 2.5em;
  text-align: center;
  margin-top: 10vh;
  color: rgb(255, 242, 181);
  background-image: linear-gradient(rgb(255, 255, 255) 40%, rgb(173, 12, 12) 60%, rgb(192, 192, 192) 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

footer.kontakt-php {
  margin-bottom: 0;
  position: relative;
  bottom: 0px;
}

div.flex-container-service {
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
  width: 100%;
  text-align: center;
  background-color: #01082d;
  padding: 15px 20px;
}

label.label-checkbox-programmierung {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 33.33%;
  font-size: 1.2em;
  font-weight: 600;
  color: #999B9B;
}

input#checkbox-programmierung {
  /*opacity: 0;*/
  display: none;
  width: 0;
  height: 0;
  z-index: -1;
}

span.span-checkbox-programmierung {
  position: relative;
  width: 2em;
  height: 2em;
  padding: 0.2em;
  border: 3px solid red;
  border-radius: 0 0.5em;
  margin-right: 0em;
  /*left: 50px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(230, 73, 73, 0.7);
  z-index: 1;
}

span.checked-programmierung {
  color: rgb(5, 69, 5);
  font-weight: bold;
  font-size: 1.5em;
}

span.checked-beratung {
  color: rgb(5, 69, 5);
  font-weight: bold;
  font-size: 1.5em;
}

span.checked-berechnung {
  color: rgb(5, 69, 5);
  font-weight: bold;
  font-size: 1.5em;
}

input:checked + span.span-checkbox-programmierung {
  background-color: rgba(0, 255, 0, 0.8);
  border: 5px solid green;
}

img.checkbox-code {
  color: #fff;
}

label.label-checkbox-beratung {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 33.33%;
  font-size: 1.2em;
  font-weight: 600;
  color: #999B9B;
}

input#checkbox-beratung {
  /*opacity: 0;*/
  display: none;
  width: 0;
  height: 0;
  z-index: -1;
}

span.span-checkbox-beratung {
  position: relative;
  width: 2em;
  height: 2em;
  padding: 0.2em;
  border: 3px solid red;
  border-radius: 0 0.5em;
  margin-right: 0em;
  /*left: 50px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(230, 73, 73, 0.7);
  z-index: 1;
}

input:checked + span.span-checkbox-beratung {
  background-color: rgba(0, 255, 0, 0.8);
  border: 5px solid green;
}

label.label-checkbox-berechnung {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 33.33%;
  font-size: 1.2em;
  font-weight: 600;
  color: #999B9B;
}

input#checkbox-berechnung {
  /*opacity: 0;*/
  display: none;
  width: 0;
  height: 0;
  z-index: -1;
}

span.span-checkbox-berechnung {
  position: relative;
  width: 2em;
  height: 2em;
  padding: 0.2em;
  border: 3px solid red;
  border-radius: 0 0.5em;
  margin-right: 0em;
  /*left: 50px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(230, 73, 73, 0.7);
  z-index: 1;
}

input:checked + span.span-checkbox-berechnung {
  background-color: rgba(0, 255, 0, 0.8);
  border: 5px solid green;
}

/*
div.checkbox-programmierung {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  label {
    color: silver;
  }
  border: dashed green 1px;
}

div.checkbox-beratung {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  label {
    color: silver;
  }
  border: dashed green 1px;
}

div.checkbox-berechnung {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  label {
    color: silver;
  }
  border: dashed green 1px;
}

input#programmieren {
  position: relative;
  width: 25px;
  height: 25px;
  color: silver;
  display: flex;
  flex-direction: column;
  align-self: center;
}

input#beratung {
  position: relative;
  width: 25px;
  height: 25px;
  color: silver;
  display: flex;
  flex-direction: column;
  align-self: center;
}

input#berechnung {
  position: relative;
  width: 25px;
  height: 25px;
  color: silver;
  display: flex;
  flex-direction: column;
  align-self: center;
}

*/
div.flex-container-budget {
  display: flex;
  flex-direction: row;
}

button.btn-minus {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 3em;
  color: rgb(130, 6, 6);
  font-weight: bold;
  background-color: rgb(182, 62, 62);
  border: transparent;
}

button.btn-plus {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 2em;
  color: rgb(4, 85, 4);
  font-weight: bold;
  background-color: rgba(0, 255, 0, 0.8);
  border: transparent;
}

div.display-budget {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 90%;
  text-align: center;
  background-color: #01082d;
}

label.budget-label {
  color: silver;
  font-size: 0.7em;
  padding: 5px 0 0 0;
}

div.budget-input {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0px 50px 0px 50px;
}

span.ungefähr {
  color: silver;
}

span.währung {
  color: silver;
  padding: 0 0 0 10px;
}

input.formular-budget {
  position: relative;
  text-decoration: none;
  border: none;
  color: silver;
  text-align: center;
  background-color: transparent;
  font-size: 1.2em;
  width: 150px;
}

input.formular-budget:focus {
  color: silver;
  border: transparent;
  background-color: #02162e;
  outline: none;
}

input.formular-budget:not(:focus) {
  color: silver;
  border: transparent;
  background-color: #02162e;
  outline: none;
}

input.formular-budget:not(:empty) {
  color: green;
  border: transparent;
  background-color: #02162e;
  outline: none;
}

p.einwilligung {
  color: #999B9B;
  font-size: 1.1em;
}

div.flex-container-submit-btn {
  padding: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
}
div.flex-container-submit-btn .container-submit-btn-breite {
  position: relative;
  width: 225px;
}
div.flex-container-submit-btn .container-submit-btn {
  position: relative;
  background-color: red;
  width: 2.5px;
  height: 4em;
  opacity: 1;
  border-radius: 15px;
  z-index: 10;
}
div.flex-container-submit-btn .container-submit-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 225px;
  height: 100%;
  background: rgb(182, 62, 62);
  border-radius: inherit;
  z-index: -222;
  opacity: 0.4;
  box-sizing: content-box;
  top: 0px;
}

input.submit-btn {
  position: relative;
  display: block;
  width: 225px;
  height: 100%;
  background-color: transparent;
  border: transparent;
  color: silver;
  font-weight: 700;
  font-size: 1.1em;
}

input.reset-btn {
  padding: 20px;
  position: relative;
  display: block;
  border-radius: 15px;
  border: transparent;
  color: #01082d;
  font-size: 1.1em;
  font-weight: 600;
  background: linear-gradient(to left, rgb(215, 16, 16) 33.33%, rgb(157, 168, 5) 66.67%, rgb(105, 227, 5) 100%);
  cursor: pointer;
}

div.text-bestätigung {
  position: relative;
  margin-top: 150px;
  height: 500px;
}

@media screen and (max-width: 1366px) {
  section {
    margin: 0px 0 50px 0;
  }
  section > h1 {
    font-size: 2.75em;
  }
  section div.grid-container-kontakt {
    width: 90%;
    margin-bottom: 50px;
    padding: 25px;
  }
  .card-projekt {
    padding: 20px 15px 15px 15px;
    margin: 5px;
  }
  div.flex-container-zusammenarbeit {
    font-size: 1.2em;
  }
  .card-kontakt {
    padding: 20px 15px 15px 15px;
    margin: 5px;
  }
  h2.kontakt-h2 {
    font-size: 1.8em;
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
  section {
    margin: 0px 0 50px 0;
  }
  section > h1 {
    font-size: 2.5em;
  }
  section div.grid-container-kontakt {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-bottom: 50px;
    padding: 25px;
  }
  .card-projekt {
    padding: 20px 15px 15px 15px;
    margin: 5px;
  }
  div.flex-container-zusammenarbeit {
    font-size: 1em;
  }
  .card-kontakt {
    padding: 20px 15px 15px 15px;
    margin: 5px;
  }
  h2.kontakt-h2 {
    font-size: 1.75em;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  section {
    margin: 50px 0 50px 0;
  }
  section > h1 {
    font-size: 2em;
  }
  section div.grid-container-kontakt {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-bottom: 50px;
    padding: 10px;
  }
  .card-projekt {
    padding: 20px 15px 15px 15px;
    margin: 5px;
  }
  div.flex-container-zusammenarbeit {
    font-size: 0.8em;
  }
  .card-kontakt {
    padding: 20px 15px 15px 15px;
    margin: 5px;
  }
  h2.kontakt-h2 {
    font-size: 1.2em;
    text-align: center;
  }
  h2.kontakt-h2.show-not {
    display: none;
  }
  div.kontakt-h2-small {
    display: block;
  }
  div.flex-container-submit-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}