@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  color: #3E3E3E;
  line-height: 1.4rem;
  font-weight: 400;
}

ul {
  list-style: none;
}

p, li {
  color: #666;
}

a {
  color: #5a5a5a;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

a:hover {
  color: black;
}

strong {
  font-weight: 700;
}

.btn {
  font-weight: 700;
  letter-spacing: .075rem;
  padding: 1rem 2rem;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background: #ffcc00;
  border-radius: .5rem;
  display: inline-block;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container.spacer {
  margin: 2rem auto;
}

.container.content h1 {
  margin-bottom: 2rem;
  line-height: 2.5rem;
}

.container.content h2 {
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 2rem;
}

.container.content h3 {
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 2rem;
}

.container.content p {
  margin: 1rem 0;
  line-height: 1.5rem;
}

.grid-75-25 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1fr;
      grid-template-columns: 3fr 1fr;
  gap: 1rem;
}

ul.list {
  list-style: disc;
}

ul.list li {
  padding-left: 1rem;
  margin-left: 2rem;
  margin-bottom: .5rem;
  line-height: 1.5rem;
}

.expander {
  width: 100%;
  border: 1px solid #8DA6AC;
}

.expander div {
  width: 100%;
}

.expander .header {
  background: #8DA6AC;
  color: white;
  padding: 1rem;
  cursor: pointer;
  font-weight: bold;
}

.expander svg {
  fill: white;
  margin-right: 1rem;
  position: relative;
  top: 4px;
}

.expander .content {
  display: none;
  padding: 1rem;
}

.batch {
  background: #8DA6AC;
  padding: .5rem 1.5rem .5rem 2.8rem;
  color: white;
  display: inline-block;
  border-radius: .5rem;
  position: relative;
  height: 2.5rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.batch svg {
  color: white;
  fill: white;
  margin-right: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 50px;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
  padding: .8rem;
}

#topbar {
  background: #8DA6AC;
  padding: .5rem;
  text-align: center;
  color: white;
}

#topbar a {
  color: inherit;
}

header#mainheader {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
      grid-template-columns: 1fr 3fr;
      grid-template-areas: logo nav;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 1rem 0;
}

header#mainheader img#logo {
  -o-object-fit: contain;
     object-fit: contain;
  height: 3rem;
  grid-area: logo;
}

header#mainheader input#openMenu {
  display: none;
}

header#mainheader input#openMenu:checked ~ nav {
  display: block !important;
}

header#mainheader nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header#mainheader nav ul li a {
  display: inline-block;
  padding: 1rem 0 1rem 1rem;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 400;
}

header#mainheader #burger {
  display: none;
  width: 35px;
  height: 30px;
  cursor: pointer;
  grid-area: burger;
  -ms-grid-column-align: end;
      justify-self: end;
}

header#mainheader #burger .line {
  background: #3E3E3E;
  height: 6px;
  margin-bottom: 6px;
  border-radius: 2px;
  cursor: pointer;
}

section#landing {
  background: url(img/bernard-hermant-KqOLr8OiQLU-unsplash.jpg) center 20%;
  background-size: cover;
  height: 50vh;
  padding-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
}

section#landing .bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(10%, rgba(255, 255, 255, 0.75)), color-stop(150%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0.75) 10%, rgba(255, 255, 255, 0) 150%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}

section#landing .glass {
  background: rgba(255, 255, 255, 0.35);
  padding: 2rem;
  width: 50%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid transprant;
  background-clip: padding-box;
  -webkit-box-shadow: 10px 10px 10px rgba(46, 54, 68, 0.03);
          box-shadow: 10px 10px 10px rgba(46, 54, 68, 0.03);
  position: relative;
  top: -3rem;
}

section#landing .glass h2 {
  font-weight: 600;
  line-height: 2.3rem;
  color: #848484 !important;
}

section#landing .glass p {
  margin: 1rem 0;
  font-weight: 300;
  font-size: .9rem;
  color: #6c6c6c;
}

section#landing .glass a {
  margin-top: 1.5rem;
  background: #8DA6AC;
  font-size: .8rem;
}

section#services {
  padding: 5rem 0 4rem 0;
}

section#services .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
}

section#services .container a {
  text-decoration: none;
}

section#services .container a .service {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: .3rem;
  text-align: center;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  -webkit-animation-name: slide-up;
          animation-name: slide-up;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

section#services .container a .service:hover {
  top: -5px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

section#services .container a .service h2 {
  font-size: .9rem;
  text-transform: uppercase;
  padding: 1rem;
  background: #8DA6AC;
  color: white;
  margin-bottom: 1rem;
}

section#services .container a .service p {
  font-size: .9rem;
  padding: 1rem 2rem 2rem 2rem;
  font-weight: 400;
}

footer .container {
  margin-top: 4rem;
  border-top: 1px solid #c8d4d7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4rem 0;
}

footer .container nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .container nav ul a {
  display: inline-block;
  text-decoration: none;
  padding: 0 .5rem;
  cursor: pointer;
}

@-moz-document url-prefix() {
  .glass {
    background: rgba(255, 255, 255, 0.75) !important;
  }
}

@media (max-width: 1060px) {
  html {
    font-size: 14px;
  }
  #mainheader {
        grid-template-areas: "logo burger" "nav nav";
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 1fr;
        grid-template-rows: auto 1fr;
    position: relative;
  }
  #mainheader nav {
    background: white;
    padding-bottom: 2rem;
    border-bottom: 1px solid lightgray;
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: nav;
    display: none;
    position: absolute;
    top: 1rem;
    left: -2rem;
    width: 100vw;
    z-index: 999;
  }
  #mainheader nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #mainheader nav ul a {
    width: 100%;
    text-align: center;
  }
  #mainheader #burger {
    display: block !important;
  }
  section#landing {
    height: 82vh;
  }
  section#landing .glass {
    width: 100% !important;
  }
  section#services .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  section#services .container .service h2 {
    font-size: 1.2rem;
  }
  section#services .container .service p {
    font-size: 1rem;
  }
  footer .container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  footer nav {
    margin-top: 1rem;
  }
  .grid-75-25 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

#kontaktformular {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[3];
      grid-template-columns: repeat(3, auto);
  gap: 1rem;
}

#kontaktformular .label {
  text-align: right;
  padding: .5rem 0;
}

#kontaktformular .input {
  width: 100%;
}

#kontaktformular .input input[type=text], #kontaktformular .input textarea, #kontaktformular .input input[type=submit] {
  width: 100%;
  border: 0;
  border-bottom: 1px solid lightgray;
  font-size: 1rem;
  padding: .5rem;
}

#kontaktformular .input input[type="radio"] {
  margin: .5rem  .5rem .5rem 1rem;
}

#kontaktformular .required {
  color: #962323;
}

#form-messages {
  padding: 1rem 0;
}

#form-messages.error {
  color: #962323;
}

#form-messages.success {
  color: #1c8e29;
}

@-webkit-keyframes slide-up {
  0% {
    top: 5px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}

@keyframes slide-up {
  0% {
    top: 5px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
/*# sourceMappingURL=app.css.map */