.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 960px;
  padding-right: 50px;
  padding-left: 50px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.section.content {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  min-height: 80vh;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.section.content.center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.header {
  position: relative;
  min-height: 10vh;
  padding-top: 30px;
  padding-bottom: 30px;
}

.heading-header {
  margin-top: 0px;
  margin-bottom: 0px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 1.4em;
  line-height: 1.2em;
  font-weight: 400;
}

.linkblock {
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.linkblock:hover {
  text-decoration: underline;
}

.heading-body {
  margin-top: 0px;
  margin-bottom: 5px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 700;
    text-align: center;
}

.body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image {
  max-height: 90vh;
  margin-top: 20px;
  margin-bottom: 20px;
}

.video {
  margin-top: 20px;
  margin-bottom: 20px;
}

.div-text {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 20px;
}

.paragraph {
  font-size: 1.1em;
  line-height: 1.4em;
}

.heading-body-detail {
  margin-top: 0px;
  margin-bottom: 30px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 1.2em;
  line-height: 1.2em;
  font-style: italic;
  font-weight: 400;
}

.div-background {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  background-image: url('../images/baggrund_1.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.div-background._2 {
  background-image: url('../images/baggrund_2.jpg');
}

@media screen and (max-width: 991px) {
  .section {
    max-width: none;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-right: 15px;
    padding-left: 15px;
  }

  .body {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}