body {
  margin: 0;
  background-color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  color: var(--white);
  box-sizing: border-box;
  position: relative;
}

header {
  box-sizing: border-box;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(var(--header), transparent);
  padding: 0 5%;
  display: grid;
  grid-template-columns: 15% auto;
}
header > a {
  display: flex;
  justify-content: start;
  align-items: center;
}
header a img {
  padding-top: 10px;
  width: 100%;
}

header #links {
  width: 100%;
  padding-top: 1.5vw;
  display: grid;
  grid-template-columns: repeat(5, auto);
}

header #links a {
  font-size: 1.2vw;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  color: white;
}

header #links a:hover {
  color: var(--orange);
}

#mobile_dropdown {
  display: none;
}

.burger_svg {
  transition: 0.5s;
}

#center_div {
  display: none;
}

.active_site {
  color: var(--orange) !important;
}

.mobile_devider {
  height: 2px;
  width: 90%;
  margin: 0 auto;
  background-color: rgb(239, 239, 239);
}

@media only screen and (max-width: 980px) {
  #center_div {
    display: flex;
    height: 8vh;
    justify-content: center;
    align-items: center;
    float: right;
  }
  header {
    position: relative;
    background: none;
    background-color: white;
    box-shadow: 0 0 10px var(--shadow);
    height: 8vh;
    align-items: center;
    display: block;
  }
  header a img {
    width: auto;
    height: 7vh;
    float: left;
  }
  #burger {
    height: 6vh;
  }
  #links {
    display: none !important;
  }
  #mobile_dropdown {
    position: absolute;
    z-index: 998;
    background-color: white;
    top: 8vh;
    left: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    transition: max-height 1s;
    box-shadow: 0 0 10px var(--shadow);
  }
  #mobile_dropdown a {
    text-transform: uppercase;
    text-align: center;
    display: block;
    color: var(--darkgray);
    font-size: 4vw;
    padding: 5vw 0;
  }
}
