.off-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.off-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url("../img/off-bg.jpg");
}

.off-hero,
.off-hero-mobile {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}

.off-hero {
  display: none;
}

.off-hero-mobile {
  display: flex;
}

@media only screen and (min-width: 768px) {
  .off-hero {
    display: flex;
  }

  .off-hero-mobile {
    display: none;
  }
}

.hero-fill {
  display: block;
}

.hero-stroke {
  display: none;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

.off-hero-image:hover .hero-fill {
  display: none;
}

.off-hero-image:hover .hero-stroke {
  display: block;
}

.off-footer {
  margin-bottom: 60px;
}

.footer-text {
  font-family: "Rubik", sans-serif;
  color: #fff;
  line-height: 24px;
}

.off-mail {
  text-decoration: none;
  color: #fff;
}
