nav {
  position: sticky;
  top: 0;
  height: 3.2rem;
  z-index: 99;
}
nav .menulist-desktop {
  display: none;
}
nav .navbar {
  padding: 0.5rem;
  z-index: 2;
  position: relative;
  background-color: #0D0D0D;
  /*box-shadow: $shadow_global;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .navbar a.logo {
  display: flex;
}
nav .navbar #logo {
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  fill: white;
}
nav .navbar #burgerbutton {
  height: 2rem;
  background: none;
  border: none;
  padding: 0.25rem;
}
nav .navbar #burgerbutton .burger {
  height: 100%;
  fill: #e3e3e3;
}
nav #list {
  padding: 1rem 0;
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  background-color: #0D0D0D;
  box-shadow: 0 0.35rem 0.5rem rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid #EA1B1B;
}
nav #list li {
  text-align: center;
  list-style: none;
  font-weight: 300;
}
nav #list a {
  text-decoration: none;
  padding: 1rem;
  color: #e3e3e3;
}

.hidden {
  transform: translateY(-100%);
  z-index: -1;
}

.push {
  transform: translateY(-100%);
  transition: all 500ms ease;
  z-index: -1;
}

.active {
  transform: translateY(0);
  transition: all 500ms ease;
}

@media screen and (min-width: 1024px) {
  #burgerbutton, #list {
    display: none;
  }
  nav .navbar {
    align-items: center;
  }
  nav .menulist-desktop {
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 3;
  }
  nav .menulist-desktop li {
    text-align: center;
    list-style: none;
  }
  nav .menulist-desktop a {
    text-decoration: none;
    margin: 0 2rem;
    padding: 0.5rem 1rem;
    color: #e3e3e3;
    font-size: 0.875rem;
    transition: 200ms;
    font-weight: 300;
  }
  nav .menulist-desktop .here {
    color: #EA1B1B;
  }
  nav .menulist-desktop a:hover {
    background-color: #e3e3e3;
    color: #151515;
  }
  nav .menulist-desktop .here:hover {
    background-color: #151515;
    color: #e3e3e3;
  }
}
section, footer {
  padding: 1rem;
  border: none;
}
section button, footer button {
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  background: linear-gradient(90deg, rgb(241, 82, 82) 0%, rgb(175, 0, 30) 100%);
  border: none;
  border-radius: 0.25rem;
  padding: 1rem;
  color: #F0F0F0;
  width: 100%;
}

article {
  margin: 2rem 1rem;
}

.hero {
  min-height: calc(100vh - 3.2rem);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #F0F0F0;
  position: relative;
  background: url("../media/web_pfenninger_titelbild_3.jpg");
  background-blend-mode: multiply;
  background-position: center;
  background-size: cover;
}
.hero img {
  width: 100%;
  margin-bottom: 2rem;
}
.hero .conbanner {
  display: none;
}
.hero h1 {
  text-shadow: 2px 2px 2px black;
}

.service {
  background: #e3e3e3;
  color: #151515;
  position: relative;
}
.service img {
  display: none;
}
.service .card {
  transition: all 200ms;
  z-index: 0;
  padding: 1rem;
  margin: 1rem auto;
  color: #151515;
  background-color: #F0F0F0;
  text-decoration: none;
  line-height: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  justify-content: space-around;
}
.service .card p {
  margin: 0;
  z-index: 3;
}
.service .card .mehr {
  margin-top: 1rem;
}
.service .card * {
  margin-top: 1rem;
}

h1, h2 {
  text-align: center;
  line-height: 1.5;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  line-height: 2;
}

.banner-wrapper {
  padding: 0;
}

.banner {
  padding: 2rem;
  margin: 0;
  background: linear-gradient(90deg, rgb(241, 82, 82) 0%, rgb(175, 0, 30) 100%);
  color: #F0F0F0;
}
.banner h2 {
  margin: 0;
  padding: 0;
}

.bullet {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1E1E1E;
  color: #F0F0F0;
  padding: 1rem;
  margin: 1rem;
}
.bullet p {
  margin: 0;
}
.bullet a {
  text-decoration: none;
  color: inherit;
}

.reference {
  background: #e3e3e3;
  color: #151515;
}

/*
.gallery{
    display: flex;
    flex-flow: wrap;
    justify-content: center;

    img{
        max-width: 100%;
        max-height: 340px;
        height: auto;
        width: auto;
        box-shadow: $shadow;

    }
}
*/
.gallery {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(99, calc(100% - 0.5rem));
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  align-items: center;
}
.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  padding-top: 4rem;
}
footer #logo {
  fill: grey;
  margin: 2rem;
}
footer .block {
  margin-bottom: 1.5rem;
}
footer p {
  margin: 0;
}
footer a {
  color: #e3e3e3;
  text-decoration: none;
}

.map {
  width: 100%;
}

.category {
  padding: 0;
}
.category header {
  height: 60vh;
  top: 3.2rem;
  background: url(../media/glasmontage.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: calc(1rem * 4);
}
.category header h1 {
  text-shadow: 0 0.35rem 0.5rem rgba(0, 0, 0, 0.35);
  margin-bottom: 0;
}
.category #legal {
  flex-direction: column;
}
.category #legal ul {
  margin-bottom: 1rem;
}
.category #legal ul li {
  list-style: none;
  font-weight: 300;
  font-size: 1rem;
}
.category #legal ul a {
  color: inherit;
}
.category #legal h3, .category #legal p {
  text-align: left;
}
.category #legal h3 {
  margin-bottom: 0.3rem;
}
.category #legal h4 {
  margin-bottom: 1rem;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
body {
  font-family: Poppins, sans-serif;
}

h1 {
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2rem;
}

h2 {
  font-weight: 600;
  font-size: 1.25rem;
}

h3 {
  font-weight: 500;
  font-size: 1rem;
}

p {
  font-weight: 300;
  font-size: 0.925rem;
  line-height: 2;
  margin-bottom: 2rem;
}

button {
  font-family: Poppins;
  font-size: 1.125rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  section, footer {
    padding: 4rem;
  }
  button {
    transition: 200ms;
    cursor: pointer;
  }
  button:hover {
    transform: translateY(-0.325rem);
  }
  .hero {
    min-height: calc(80vh - 3.2rem);
    padding: 8rem;
    justify-content: left;
    align-content: center;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 5fr 3r;
    grid-template-rows: repeat 5, 1fr;
    grid-template-areas: ". img" "heading img" "subheading img" "button img" ". img";
    /*
                img:hover{
                    transform: translateX(10px);
                }
    */
  }
  .hero h1 {
    grid-area: heading;
    text-align: left;
    font-size: 5rem;
    align-self: end;
    line-height: 1.25;
    font-size: 4rem;
  }
  .hero img {
    grid-area: img;
    width: 70%;
    margin: 6rem;
    justify-self: center;
    transition: 200ms;
  }
  .hero p {
    grid-area: subheading;
    text-align: left;
    align-self: end;
  }
  .hero .contactbtn {
    grid-area: button;
    max-width: -moz-max-content;
    max-width: max-content;
    align-self: start;
  }
  .hero .conbanner {
    display: flex;
    position: fixed;
    width: 240px;
    top: 6rem;
    right: 0;
    background: linear-gradient(90deg, rgb(241, 82, 82) 0%, rgb(175, 0, 30) 100%);
    padding: 0.75rem;
    transition: 200ms;
    text-align: center;
    z-index: 3;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    transform: translateX(180px);
    align-items: center;
    justify-content: space-between;
    border-radius: 0.25rem;
  }
  .hero .conbanner svg {
    width: 40px;
    fill: #e3e3e3;
  }
  .hero .conbanner a {
    width: 100%;
    font-size: 0.875rem;
    margin: 0;
    color: #e3e3e3;
    text-decoration: none;
  }
  .hero .conbanner:hover {
    transform: translateX(0);
  }
  .service {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service img {
    display: block;
    position: absolute;
    height: 800px;
    z-index: 0;
    max-width: 30%;
  }
  .service .form_right {
    bottom: 0;
    right: 0;
  }
  .service .form_left {
    top: 0;
    left: 0;
    transform: rotate(180deg);
  }
  .service h2 {
    font-size: 2rem;
  }
  .service article {
    width: 50%;
    z-index: 2;
  }
  .service .card-container {
    max-width: 66%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem;
    z-index: 1;
    /*
                .disabled{
                    pointer-events: none;
                    cursor: default;
                }
                    */
  }
  .service .card-container .card {
    padding: 1.5rem;
    margin: 1rem;
    display: flex;
    max-width: 320px;
  }
  .service .card-container .card:hover {
    background-color: rgb(241, 82, 82);
    color: white;
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
  }
  .banner-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
  }
  .banner-wrapper .banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 800px;
  }
  .banner-wrapper .banner h2 {
    font-size: 1.25rem;
  }
  .banner-wrapper .bullet {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;
    padding: auto;
  }
  .banner-wrapper #bullet_2 {
    width: 100%;
  }
  #servicebanner {
    width: 100%;
    margin: auto;
  }
  .team {
    display: flex;
  }
  .team button#teambtn {
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 1rem 3rem;
  }
  .team h2 {
    font-size: 2rem;
  }
  .team article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    max-width: 50%;
    margin: auto;
  }
  .reference article {
    width: 50%;
    margin: auto;
  }
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    overflow-x: hidden;
    grid-gap: 1rem;
    margin: 8rem auto;
    -o-object-fit: contain;
       object-fit: contain;
    /*
            img:hover{
                transform: translateY(-4px);
                box-shadow: $shadow_hover;
            }
    */
  }
  .gallery img {
    transition: 200ms;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  footer h3 {
    margin-bottom: 4rem;
  }
  footer .footprint {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  footer .footprint #logo {
    height: 4rem;
  }
  .content, .check {
    max-width: 66%;
    margin: 2.5rem auto;
    display: flex;
  }
  .content {
    max-width: 38%;
    margin: 120px auto;
  }
  .checkpoint {
    margin: 2.5rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #151515;
}

body {
  font-family: Poppins, sans-serif;
  color: #e3e3e3;
  margin: auto;
  box-sizing: border-box;
}

section, nav, footer {
  max-width: 1920px;
  margin: auto;
}

.check .checkpoint {
  margin: 1rem;
  display: grid;
  grid-template-columns: 10% 90%;
  grid-template-areas: "checkmark heading" ".. copy";
}
.check .checkpoint .checkmark {
  height: 1rem;
  grid-area: checkmark;
  position: relative;
  top: 0.25rem;
}
.check .checkpoint h3 {
  grid-area: heading;
  text-align: left;
}
.check .checkpoint p {
  grid-area: copy;
  text-align: left;
}/*# sourceMappingURL=main.css.map */