:root {
    --blue: #10828c;
    --orange: #eba10c;
    --white: #ffffff;
    --black: #000000;
    --light-grey: #efefef;
    --light-blue: #aacfd3;
    --light-orange: rgba(235, 161, 12, 0.75);
    --medium-blue: #4ca1a9;
    --dark-grey: #676464;
    --body-fonts: "Roboto";
    --logo-fonts: "Sansation", sans-serif;
    --font-size-heading: 2.6vw;
    --font-size-subheading: 1.5vw;
    --font-size-bodytext: 1.2vw;
    --font-size-nav: 50px;
    --font-size-nav-active: 60px;
  }
  
  body {
    padding: 0;
    margin: 0;
  }
  /*HELP STYLING*/
  .construction-page {
    display: flex;
    flex-direction: row;
  }

  /*NAVIGATION*/
  .main-navigation {
    width: 22vw;
    height: 100vh;
    background-color: var(--blue);
    margin-top: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.navigation-dateandtime {
    font-family: var(--body-fonts);
    font-size: 1vw;
    color: var(--black);
    font-weight: 450;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 2vw;
    margin-right:2vw;
  }
  
  .logo-grundfos {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--logo-fonts);
    font-size: 1.95vw;
    font-weight: bold;
    letter-spacing: 0.5vw;
    color: var(--white);
    margin: 0vh 0px;
    margin-top: 4vh;

  }

  .logo-kollegiet {
    display: flex;
    flex-direction: column;
    font-family: var(--logo-fonts);
    font-weight: lighter;
    font-size: 2.45vw;
    letter-spacing: 0.22vw;
    color: var(--white);
    margin: 0vw 0.1vw;
    margin-left: 3.5vw;
  }

  .logo-link {
    text-decoration: none;
  }

  .navigation-link-list {
    font-size: 1.5vw;
    display: flex;
    flex-direction: column;
    margin-left: 3.5vw;
    margin-top: 4.5vw;
    top: 10vw;
    font-family: var(--body-fonts);
    line-height: 4vw;
    color:var(--light-grey)
  }

  .nav-link {
    color: var(--light-grey);
    text-decoration: none;
  }
  
  .nav-link:hover {
    color: white;
    text-decoration:none;
    font-size: 1.6vw;
    font-weight: bolder;
  }

  .navigation-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4vw;
  }
  
  .navigation-qr-code-description {
  font-family: var(--body-fonts);
  color:var(--light-grey);
  font-size: 0.99vw;
  line-height: 0vw;
  }
  
  .navigation-qr-code-image {
    width: 35%;
    height: auto;
  }

  .construction-content {
    width: 78vw;
    background-color: (var(--white))
  }
  
  .construction-search-icon {
    width: 2.8vw;
    height: auto;
    margin-left:74vw;
    margin-top:1vw;
  }

  .construction-middle {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: center;
  }

  .construction-heading {
    position: absolute;
    margin-top: 12vw;
    font-family: var(--body-fonts);
    font-size: var(--font-size-heading);
    font-weight: 500;
    letter-spacing: 0.2vw;
    z-index: 1;
  }

.construction-text {
  position: absolute;
  text-align: center;
  margin-top: 20vw;
  font-family: var(--body-fonts);
  font-size: var(--font-size-bodytext);
  font-weight: normal;
  letter-spacing: 0.2vw;
  z-index: 1;
}

.construction-button {
  background-color: var(--orange);
  color: var(--white);
  font-family: var(--body-fonts);
  font-size: var(--font-size-subheading);
  height:3vw;
  width: 10vw;
  padding: 1vw 1vw 0vw 1vw;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  margin-top: 28vw;
  position: absolute;

}
.construction-image {
  width: 28vw;
  height: auto;
  z-index:2;
  margin-left: 40.3vw;
  margin-top: -1vw;
}

/* Mobile Version*/
@media only screen and (max-width: 599px) {
  .mobile-logo {
    display: block;
    width: 100vw;
    position: fixed;
    background-color: var(--white);
    margin-bottom: 0vh;
  }

  .mobile-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .main-heading-grundfos {
    font-family: var(--logo-fonts);
    color: var(--blue);
    font-weight: bold;
    font-size: 1.8rem;
    padding: 0vw 2vw 0vw 0.5vw;
    margin-bottom: 0vw;
    margin-top: none;
  }
  .main-heading-text {
    font-family: var(--logo-fonts);
    font-weight: lighter;
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 0vw;
    margin-top: none;
  }
  .horizontal-line {
    border-bottom: 0.05vw solid var(--light-grey);
    width: 100vw;
    margin-top: 0.5rem;
  }

  /*MOBILE NAVIGATION*/
  .navigation-mobile {
    background-color: var(--blue);
    display: flex;
    width: 100vw;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    height: 8vh;
    margin: auto;
    justify-items: center;
  
    padding-right: 7.5vw;
    
    
  }

  /*mobile content*/
  .construction-image-mobile {
    margin-top: 7vh;
    height: 84.9vh;
    width: 100vw;
    position: relative;
    
  }

.main-navigation, .logo-grundfos, .logo-kollegiet{
  display: none;
}

.construction-content {
  display: none;
}

.construction-text-box {
  width: 50vw;
  height: 9vh;
  border: solid 1px;
  border-radius: 5px;
  margin-top: -25.9em;
  margin-left: 10em;
  
}

.puc-text-box {
  margin-top: 1vh;
}

.puc-text {
  font-family: var(--body-fonts);
  text-align: center;
  font-size: 24px;
  margin-top: auto;
  
}

.construction-text-mobile-box {
  font-family: var(--body-fonts);
  font-size: 26px;
  width: 60vw;
  text-align: center;
  margin-left: 36vw;
  margin-top: 4vh;
}

.construction-button-mobile-box {
  margin-top: 6vh;
}

.construction-button-mobile {
  background-color: var(--orange);
  color: var(--white);
  font-family: var(--body-fonts);
  font-size: 22px;
  height: 18vw;
  width: 48vw;
  padding: 1vw 1vw 1vw 1vw;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  margin-left: 45vw;
}

}
/*for larger devices*/
@media only screen and (min-width: 600px) {
  .mobile-logo {
    display: none;
  }

  .construction-content-mobile {
    display: none;
  }

}