/* -- Heading Container -- */
@keyframes heading-container-animation {
    0% {
      max-height: calc(100vh - 340px);
    }
    100% {
      max-height: 10px;
      margin-top: 70px;
      margin-bottom: 100px;
    }
}

/* -- First -- */
@keyframes heading-first-animation {
    0% {
      transform: translateY(10px);
      opacity: 0;
    }
    30% {
        opacity: 0;
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
}

/* -- Second -- */
@keyframes heading-second-animation {
    0% {
      transform: translateY(20px);
      opacity: 0;
    }
    30% {
        opacity: 0;
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
}

.front-page-heading-container {
    height: calc(100vh - 340px);
    position: relative;
    animation: heading-container-animation 1.6s forwards 3.4s;
    margin-bottom: 85px;
}

.front-page-heading h1 {
    text-align: center;
    font-size: 2.9rem;
    /*animation: heading-animation 1.6s forwards 3.4s;*/
}

.heading-first {
    display: block;
    opacity: 0;
    animation: heading-first-animation 1.6s forwards 0.2s;
}

.heading-second {
    display: block;
    opacity: 0;
    animation: heading-second-animation 1.6s forwards 1.4s;
}

@media screen and (max-width: 880px) {

  /* -- Heading Container -- */
  @keyframes heading-container-animation {
    0% {
      max-height: calc(100vh - 256px);
      max-height: calc(100svh - 256px);
    }
    100% {
      max-height: 10px;
      margin-top: 55px;
      margin-bottom: 85px;
    }
  }

  .front-page-heading-container {
    height: calc(100vh - 256px);
    height: calc(100svh - 256px);
    margin-bottom: 80px;
    animation: heading-container-animation 1.6s forwards 3.4s;
  }

  .front-page-heading h1 {
    font-size: 1.8rem;
  }

}



/* -- Second -- */
@keyframes front-page-image {
    0% {
      opacity: 0;
    }
    70% {
        opacity: 0;
      }
    100% {
      opacity: 1;
    }
}

.front-page-image-background-color {
    background: transparent;
    position: relative;
    z-index: 999;
}

.front-page-image {
    height: 550px;
    opacity: 0;
    animation: heading-second-animation 1.6s forwards 3.4s;
}

.front-page-image img {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: 50% 46%;
}

.front-page-image-filter {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    /*background: linear-gradient(0deg, hsl(0deg 0% 0% / 20%) 0%, hsl(0deg 0% 99% / -57%) 74%);*/
}

@media screen and (min-width: 2010px) {

  .front-page-image {
    height: 780px;
  }

}

@media screen and (min-width: 880px) {

  .image-mobile {
    display: none;
  }

}

@media screen and (max-width: 880px) {

  .image-desktop {
    display: none;
  }

  .front-page-image {
    height: 230px;
  }

}

.front-page-grid {
  padding: 0px 60px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
}

/* -- Social Media -- */

.front-page-social-media {

}

.front-page-social-media ul {
  padding-left: 0px;
  list-style: none;
  display: flex;
}

.front-page-social-media ul li {
  margin-right: 22px;
}

.front-page-social-media ul li a svg {
  height: 30px;
}

@media screen and (max-width: 880px) {
  
  .front-page-grid {
    padding: 0px 25px;
    margin-bottom: 25px;
  }

  .front-page-social-media ul li a svg {
    height: 29px;
  }

}

/* -- Min historie -- */

.front-page-min-historie {
  text-align: right;
}

.front-page-min-historie a {
  font-weight: 500;
}

.front-page-min-historie a span svg {
  margin-top: -3px;
  margin-left: 8px;
}