/**************************/
/* HERO SECTION */
/**************************/

.hero {
  position: relative;
}

/* BILDE */
.hero-background {
  height: 85vh;
  max-height: 100rem;
  width: 100%;
  background-image: url(/img/hero-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* GRADIENTS */
.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24rem;

  background: linear-gradient(
    to bottom,
    rgba(58, 58, 60, 0) 0%,
    rgba(58, 58, 60, 0.5) 50%,
    rgba(58, 58, 60, 0.3) 100%
  );
}

/* TEKSTS */

@media only screen and (min-width: 398px) {
.intro {
  /* padding-left: 5rem; */
  }
}

.intro {

  position: absolute;
  bottom: 6rem;
  /* left: 12rem; */
  left: 3.2rem;
  z-index: 10;

  width: 50%;

  color: #fff;
  font-weight: 300;
}

.intro-heading {
  font-size: 2.8rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.intro-text {
  line-height: 1.6;
  letter-spacing: 1px;
  font-weight: 400;
}

/* LOGO APLIS */
.logo-circle img {
  position: absolute;
  bottom: 16rem;
  /* right: 12rem; */
  right: 3.2rem;
  z-index: 10;

  width: 10rem;
  height: 10rem;
  border-radius: 100%;
}