#forside{
    background-color: #817E6F;
}

body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif; 
  }
  
  .hero-image {
    background-image: url("billeder/forside.png");
    background-color: #817E6F;
    height: 1200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .hero-image::after{
      content: "";
      width: 100%;
      height: 400px;
      background-image: url("billeder/bolge.png");
      position: absolute;
      left: 0;
      bottom: 0;
      background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .hero-image::before{
      content: "";
      width: 100%;
      height: 100%;
      background-color: black;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0.3;
  }

  @media screen and (min-width: 601px){
    .hero-text h1 {font-size: 70px;}
}


  @media screen and (max-width: 600px){
      .hero-text h1 {font-size: 30px;}
  }


   /*Historie side*/
  .hero-image1 {
    background-image: url("billeder/historie.jpg");
    background-color: #817E6F;
    height: 1200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }



  .hero-image1::after{
    content: "";
    width: 100%;
    height: 400px;
    background-image: url("billeder/bolge.png");
    position: absolute;
    left: 0;
    bottom: 0;
    background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-image1::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}

/*Kontakt side*/
.hero-image2 {
    background-image: url("billeder/kontakt.jpg");
    background-color: #817E6F;
    height: 1200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }



  .hero-image2::after{
    content: "";
    width: 100%;
    height: 400px;
    background-image: url("billeder/bolge.png");
    position: absolute;
    left: 0;
    bottom: 0;
    background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-image2::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.3;
}
  
  .hero-text {
    text-align: center;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 230, 230);
  }
  .hero-text button{
      text-align: center;
      bottom: 15px;
      background-color: #c2581b;
      padding: 15px 20px;
      box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
      color: white;
      font-size: 25px;
      border: none;
      border-radius: 35px;
      font-family: Georgia, 'Times New Roman', Times, serif;
  }

/*Header*/
.logo{ 
    width: 150px;
    height: 210px;
    position: absolute;
    top: 25px;
    left: 25px;
    
}

  @media screen and (max-width: 600px){
       .logo {width: 70px;
    height: 110px;}
  }


/*Burger menu*/
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
  }
  
  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }
  
  @media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
  }



  /*forside paragraf*/
  .forside-paf{
      background-color: #817E6F;
      position: relative;
      width: 100%;
      height: 200px;
      align-items: center;
      text-align: center;
  }

  .forside-paf p{
      color: white;
      font-family: Georgia, 'Times New Roman', Times, serif;
      font-size: 20px;
      margin-top: 0;
      line-height: 1.8;
  }

  @media screen and (max-width: 600px){
.forside-paf{height: 100px;}
.forside-paf p{font-size: 8px;
    line-height: 1.5;
}
    }

  
  /*overskrifter*/
  h2{
      color: white;
      position: relative;
      width: 100%;
      height: 100px;
      font-size: 50px;
      align-items: center;
      text-align: center;
      font-family: Georgia, 'Times New Roman', Times, serif;
  }

  @media screen and (max-width: 600px){
h2{height: 50px;
font-size: 20px;}
    }

    /*Galleri af tegninger*/

    div.gallery {
        margin: 5px;
        float: right;
        width: 180px;
      }
      
      div.gallery img {
        width: 100%;
        height: 200px;
      }
      
      div.desc {
        padding: 15px;
        text-align: center;
        color: white;
      }

    @media screen and (max-width: 600px){
    div.gallery{width: 90px;}
    div.gallery img{height: 80px;}
    div.desc{font-size: 8px;}
            }

  /*Galleri*/
  * {box-sizing: border-box}
body {font-family: Georgia, 'Times New Roman', Times, serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}


/* Slideshow container */
.slideshow-container {
  width: 400px;
  height: 400px;
  position: relative;
  margin: auto;
}

.mySlides img{
    width: 100%;
    position: absolute;
    height: 400px;
    
}

@media screen and (max-width: 600px){
.slideshow-container{width: 150px;
height: 150px;}
.mySlides img{height: 150px;}
    }

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}


/*Job artikel*/
.job{
    width: 100%;
    display: flex;
    padding: 0 0px;
    justify-content: center;
    align-items: center;
}

.job p{
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
}

.jobleft{
    display: flex;
    align-items: center;
    width: 50%;
    margin-right: 100px;
    margin-bottom: 20px;
    line-height: 1.8;
}

#jobright{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

#jobrightny img{
    height: 400px;
    width: 300px;
    margin-bottom: 30px;
}

#jobrightny{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

#jobright img{
    border-radius: 50%;
    height: 300px;
    width: 300px;
    margin-bottom: 30px;
}

#læs{
    position: relative;
    width: 100%;
    height: 200px;
    align-items: center;
    text-align: center;
}

#læs button{
    text-align: center;
    bottom: 15px;
    background-color: #c2581b;
    padding: 15px 20px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.3);
    color: white;
    font-size: 25px;
    border: none;
    border-radius: 35px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
}



@media screen and (max-width: 600px){
    .job p{ font-size: 8px;}
  .jobleft{ margin-right: 50px;
    margin-bottom: 10px;
    line-height: 1.5;
      font-size: 8px;}
    #jobright img{ height: 100px;
    width: 100px;}
    #jobrightny img{height: 100px;
    width: 80px;}
    #læs{height: 50px;}
    #læs button{font-size: 10px;}
    }



/*Projekter*/
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Arial;
  }
  
  .header {
    text-align: center;
    padding: 32px;
  }
  
  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }




  /*Mail form*/
  section{
    padding:0; 
    margin:0; 
    box-sizing: border-box; 
    font-family:helvetica; 
    height:100%; 
    width:100%; 
    background-color: #817E6F; 
    display: flex; 
    align-items:center;
    justify-content: center; 
    flex-direction:column;
    }
     
    .container {
    width:90%;
    max-width:650px;
    margin: 0 auto;
    padding:20px; 
    background-color:white;
    border-radius: 8px; 
    margin-bottom:20px; 
    }
     
    .form-group {
    width:100%; 
    margin-top:25px;
    font-size:20px; 
    }
     
    .form-group input, .form-group textarea {
    width:100%; 
    padding:15px; 
    font-size:15px; 
    border:0.9px solid rgb(83, 80, 74); 
    }
    
    
     
    textarea{
    resize:vertical; 
    font-family:helvetica; 
     
    }
     
    #button2[type="submit"]{
    width: 100%; 
    border:none; 
    outline:none; 
    padding:20px; 
    font-size:24px; 
    border-radius:5px; 
    font-family:helvetica; 
    color:white;
    text-align:center; 
    cursor:pointer;
    margin-top:70px; 
    transition:.3s ease background-color;
    background-color:#53504A;
    }
     
    #button2[type="submit"]:hover{
    background-color: #8c816c;
    } 
     
    #status {
    width:90%; 
    max-width:500px; 
    text-align:center; 
    padding:10px;
    margin:0 auto;
    border-radius:8px; 
    }


    /*Footer*/
    footer {
        background-color: #545050;
        width: 100%;
        font-family: Verdana, sans-serif;
      }
      
      .footermenu {
        width: 100%;
        display: flex;
        flex-direction: row;
        padding: 0 0px;
        justify-content: center;
        align-items: center;
      }
      
      .footermenu div {
        width: 100%;
        padding-left: 30px;
      }
      
      
      .footermenu p {
        color: white;
        font-size: 20px;
      }
      
      #footerleft img {
        width: 200px;
        height: 260px;
      }

      #footerleft{
          display: flex;
          flex-direction: row;
          align-items: center;
      }
      
      #footerright{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-right: 30px;
      }

      #footerright img{
          height: 100px;
          width: 100px; 
          margin: 0px 20px;
      }
   
    
      @media screen and (max-width: 600px){
      #foorerright img{ height: 50px;
    width: 50px;}
    .footermenu p{
        font-size: 8px;}
    #footerleft img {
        width: 70px;
        height: 110px;
    }
    #footerright img {
        height: 10px;
        width: 10px;
        margin: 0px 5px;
    }
      }
      
  

