body {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 400;
  color: #515151;
  font-size: 19px;
  line-height: 1.5em;
  max-width: 1300px;
  min-width: 300px;
  padding: 3% 4%;
  margin: auto;
  overflow-y: scroll;
}

#header {
  display: flex;
  flex-direction: row;
  text-transform: uppercase;
  box-sizing: border-box;
}

#logo {
  font-size: 0.9rem;
  width: 40%;
}

#logo a {
  color: #515151;
  text-decoration: none;
}

#logo h1,
#logo h2 {
  margin: 0;
}

#logo h1 {
  font-weight: 500;
}

#logo h2 {
  font-weight: 400;
}

#logo img {
  width: 42%;
}

#menu-hamburger {
  display: none;
}

#menu-hamburger svg {
  fill: #515151;
}

#menu {
  width: 60%;
}

#menu-links {
  width: 100%;
  font-size: 1rem;
  display: inline-block;
  text-align: right;
}

#menu-links a:not(.active-link) {
  color: #515151;
  text-decoration: none;
}

#menu-links span {
  font-weight: 400;
  padding-left: 8%;
}

#menu-links span a:hover {
  font-weight: 500;
}

.active-link {
  font-weight: 500;
  color: #F58E23;
  text-decoration: none;
}

#menu.mobile-menu {
  z-index: 2;
  font-size: 2rem;
  width: 100%;
  height: 100%;
  background-color: white;
  overflow: hidden;
}

#menu-hamburger:not(.menu-closed) {
  margin: 0 0 20px 20px;
}

#menu.mobile-menu #menu-links {
  font-size: 2.5rem;
  line-height: 6rem;
  width: 100%;
  height: 80%;
}

#menu.mobile-menu #menu-links span {
  display: block;
  text-align: center;
  padding: 0;
}

.loading-icon {
  background-color: transparent;
  background-image: url("../img/placeholder.gif");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 40px;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}           

@media (max-width: 1200px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 700px) {
  #header {
    line-height: 1.5rem;
    margin: 10px 5px 0 5px;
  }

  #logo {
    width: 70%;
  }

  #menu {
    width: 30%;
  }

  #menu-hamburger {
    display: block;
    text-align: right;
  }

  #menu-links {
    display: none;
  }

  #menu-links span {
    text-align: right;
  }
}

@media (max-width: 500px) {
  #logo img {
    width: 65%;
  }
}

@media (max-width: 400px) {
  #menu.mobile-menu #menu-links {
    font-size: 2rem;
    line-height: 4rem;
  }
}
