@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');


body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #212121;
}

html {
  scroll-behavior: smooth;
}
/* header */

.header {
  background-color: #212121;
  box-shadow: 0px 8px 10px -10px black; 
  position: fixed;
  width: 100%;
  z-index: 15;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #212121;
}

.header li a {
  display: block;
  padding: 20px 20px;
  color: white;
  text-decoration: none;
  text-align: center;
  font-family: 'Raleway', sans-serif;
}


.header li a:hover,
.header .menu-btn:hover {
  background-color: #169239;
}

.logo img {
  height: 30px;
  margin-top: 13px;
  margin-left: 110px;
}

.header li:nth-last-of-type(1) {
  background-color: #169239;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: white;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: white;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 768px) {
  .header li {
    float: left;  
  }
  .header li a {
    padding: 20px 20px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
    padding-right: 100px;
  }
  .header .menu-icon {
    display: none;
  }  
}

.background-img {
  background: url(../img/background_overlay.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.white-box{
  background: white;
  position: absolute;
  height: 20vh;
  width: 100%;
  bottom: 0;
  z-index: 1;
  box-shadow: 0px 6px 10px -10px black; 
}

.header-content{
  max-width: 1080px;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.header-content-text{
  width: 55%;
}

.header-content-image{
  width: 38%;
  z-index: 10;
  display: flex;
  justify-content: flex-end; 
}

.header-content-image img{
  height: auto;
  width: 85%;
  align-self: center;
}

.header-content-text img{
  height: 55px;
  padding: 10px 10px 0 0 ;
}

.header-content-om{
  height: 100%;
  width: 100%;
  display: flex;
  background: white; 
  align-items: center;
  justify-content: center;
}

.header-content-text-om{
  width: 40%;
    margin-left: -50px;
}

.header-content-text-om h1{
  color: #169239;
  font-size: 3em;
  font-weight: 800;
  
}
.header-content-text-om h2{
  color: #212121;
  font-weight: 700;
  font-size: 2.5em;
  line-height: 45px;
}
.header-content-text-om p{
  color: #212121;
  font-weight: 400;
  margin-top: 18px;
  font-size: 1.2em;
  line-height: 23px;
}

.header-content-image-om{
  width: 45%;
  z-index: 10;
  justify-content: flex-end; 
}

.header-content-image-om img{
  height: auto;
  width: 41%;
  align-self: center;
  padding: 0 0 0 150px;
}

.section-om{
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.header-content{
  max-width: 1080px;
  display: flex;
  align-items: center;
  margin-top: 40px;
}


.black-box{
  background: #169239;
  height: 60vh;
  width: 100%;
  bottom: 0;
  z-index: 13;
  box-shadow: 0px 6px 10px -10px black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}


.black-box-text {
  max-width: 1080px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.black-box-text h1{
  color: white;
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
}

.black-box-text h2{
  color: white;
  text-align: center;
  font-size: 2em;
  margin-top: 1px;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 40px;
}


.black-box img{
    margin-left: auto;
    margin-right: auto;
    height: 50px;
    justify-content: space-between;
    margin: 0 10px;
}

.section-kontakt{
  width: 100%;
  height: 75vh;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.kontakt-info{
  text-align: center;
  height: 300px;
  width: 700px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
}

.kontakt-info h1{
  font-size: 3em;
  font-weight: 800;
}

.kontakt-info h2{
  color: white;
  line-height: 40px;
  font-weight: 400;
}

.kontakt-info-oplysninger{
  color: red;
}

.header-content-black-box {
  bottom: 0;
  position: relative;
}

.header-content-black-box img {
  display: block;
  width: 550px;
  height: auto;
  margin-top: 35px;
  margin-bottom: -32px;
}

.footer-bottom{
  background: #212121;
  height: 7vh;
  width: 100%;
  bottom: 0;
  z-index: 13;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-bottom h1{
  color: white;
  text-align: center;
  font-size: 1em;
  font-weight: 400;
  padding-bottom: 0px;
}


h1{
 color: white; 
 font-size: 2.4em;
 padding-bottom: 12px;
 font-weight: 700;
 font-family: 'Raleway', sans-serif;
} 

h2{
  color: white;
  font-size: 1.2em;
  line-height: 26px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
}
p {
  margin-top: 50px;
  color: white;
  font-family: 'Raleway', sans-serif;
}






