/* Vendor Prefixing */
/* extra */
/* Youtube Lazy Loader */
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
.lazy-yt {
  background-color: #000;
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.lazy-yt .play-button {
  position: absolute;
  width: 90px;
  height: 60px;
  background-color: #333;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
  cursor: pointer;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.lazy-yt .play-button:before {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.lazy-yt img {
  position: absolute;
  width: 100%;
  top: -16.82%;
  left: 0;
  opacity: 0.7;
  cursor: pointer;
}
.lazy-yt iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

/* custom */
.spacer-y-1 {
  display: block;
  height: 1em;
}

/* variables */
/* Font */
/* mixins */
.navbar {
  text-transform: uppercase;
}
.navbar .nav-link {
  color: #4d4d4d;
  font-weight: 500;
}
.navbar .navbar-toggler {
  padding-left: 0;
}
.navbar .navbar-toggler-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .navbar-toggler-icon i {
  font-size: 1.8rem;
}

header {
  margin-bottom: 56px;
  width: 100%;
  height: calc(100vh - 10vh);
  background-image: url(../img/Header_Bild_Webseite.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: contain;
  background-repeat: no-repeat;
  background-origin: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
header .logo {
  padding: 2em 1em;
  width: 100%;
  max-width: 40vw;
}
@media (max-width: 767px) {
  header .logo {
    max-width: 100%;
    padding: 2em 2em;
  }
}
@media (max-width: 767px) {
  header {
    background-size: cover;
  }
}

.socials {
  text-align: center;
  margin: 1rem 0 3rem 0;
}
.socials .social-item {
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 2.2;
  border: 2px solid #000000;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  color: inherit;
}
.socials .social-item:not(:last-child) {
  margin-right: 1rem;
}
.socials .social-item:hover {
  opacity: 0.5;
}

.bg-black {
  background-color: #000000;
  color: #ffffff;
}
.bg-black .title {
  color: #ffffff;
}
.bg-black .title::before {
  background-color: #ffffff;
}

#instafeed .instafeed-link-wrapper {
  border: 1px solid #ffffff;
}

.title {
  padding: 1em 0;
  margin-top: 1em;
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
  font-size: 2.5rem;
  position: relative;
  text-align: center;
  color: #000000;
}
.title::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #000000;
  top: 0;
  left: 50%;
}

.cta {
  display: inline-block;
  border: 1px solid;
  padding: 0.3em 1em;
  margin: 2em 0;
  background-color: #000000;
  color: #ffffff;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.cta:hover {
  background-color: #95999C;
  text-decoration: none;
  color: #000000;
  border-color: transparent;
}

main {
  background-color: #ffffff;
}

footer {
  margin-top: 0;
  padding: 2rem 0;
  color: #000000;
}

.bttop {
  text-align: center;
  display: inline-block;
  color: #000000;
  text-transform: uppercase;
  margin: 1em 0 2em 0;
  font-size: 0.9rem;
  font-weight: 500;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.bttop:hover {
  text-decoration: none;
  color: #666666;
}

body {
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  /*a {
      &:link,
      &:active,
      &:visited {
          text-decoration:none;
          color:$color-black;
          outline: none;

          @include transition(all 250ms ease);
      }

      &:hover {
          //text-decoration: underline;
          opacity: 0.7;
      }

      .no-hover-fx,
      &.no-hover-fx {
          &:hover {
              opacity:1;
          }
      }
  }*/
  /* ACCESSIBILITY */
  /* KLASSEN */
  /* ID */
}
body .sr-only-focusable:focus {
  overflow: visible;
  clip: auto;
  position: fixed !important;
  top: 100px;
  left: 40px;
  width: auto;
  height: auto;
  margin: 0;
  z-index: 3000;
  padding: 10px;
  opacity: 0.75;
  background-color: #ffffff;
}
body .sr-only {
  color: #000000 !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
body #copyright {
  color: #4d4d4d;
  font-size: 0.9rem;
}
body #copyright a {
  color: gray;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
body #copyright a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

/* Media Queries
xs = Extra small devices (phones, less than 33.9em)
sm = Small devices (tablets, 34em and up to 47.9em)
md = Medium devices (desktops, 48em and up to 61.9em)
lg = Large devices (large desktops, 62em and up)
*/
/* XS */
/* SM */
/* MD */
/* LG */
/* Device Media Queries
iOS portrait bg - approx. 768x1150 px
iOS landscape bg - approx. 1024x953 px
*/
/* iPhone4 - Portrait */
@media only screen and (min-device-width: 20em) and (max-device-width: 33.9em) and (orientation: portrait) {
  body {
    background-image: url(../img/bg-portrait.jpg);
    background-position: top center;
    background-size: contain;
  }
}
/* iPhone4 - Landscape */
@media only screen and (min-device-width: 20em) and (max-device-width: 33.9em) and (orientation: landscape) {
  body {
    background-image: url(../img/bg-landscape.jpg);
    background-position: top center;
    background-size: contain;
  }
}
/* iPhone5+ Portrait */
@media only screen and (min-device-width: 34em) and (max-device-width: 47.9em) and (orientation: portrait) {
  body {
    background-image: url(../img/bg-portrait.jpg);
    background-position: top center;
    background-size: contain;
  }
}
/* iPhone5+ Landscape */
@media only screen and (min-device-width: 34em) and (max-device-width: 47.9em) and (orientation: landscape) {
  body {
    background-image: url(../img/bg-landscape.jpg);
    background-position: top center;
    background-size: contain;
  }
}
/* iPad portrait */
@media only screen and (min-device-width: 48em) and (max-device-width: 61.9em) and (orientation: portrait) {
  body {
    background-image: url(../img/bg-portrait.jpg);
    background-position: top center;
    background-size: contain;
  }
}
/* iPad landscape */
@media only screen and (min-device-width: 48em) and (max-device-width: 61.9em) and (orientation: landscape) {
  body {
    background-image: url(../img/bg-landscape.jpg);
    background-position: top center;
    background-size: contain;
  }
}
/*# sourceMappingURL=main-style.css.map */