@charset "UTF-8";

body {
  margin: 0;
  padding: 0;
}

picture,img {
  display: block;
  width: 100%;
}

.teaser__container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.teaser__wrap {
  position: relative;
  margin: 0 auto;
  height: auto;
  max-width: 750px;
  z-index: 2;
}

.teaser__title {
  position: absolute;
  width: 100%;
  top: 0;
  margin: 0;
  padding: 0;
  z-index: 2;
}

.teaser__img img {
  height: auto;
  object-fit: contain;
}

h1 img {
  width: 80%; 
  margin: 28px auto auto auto;
}

.teaser__bg {
  position: absolute;
  top: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  background: url(img/bg.jpg) no-repeat top center;
  background-size: 100% auto;
  filter: blur(12px) brightness(0.9);
  opacity: 0.7;
  z-index: 1;
}
.teaser__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 767px) {
  .teaser__wrap {
    max-width: none;
  }
  .teaser__bg {
    display: none;
  }
}
