#FullWidthHeader {
  width: 100vw;
  background-image: url("../Assets/BannerImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

#HeaderGradient {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh + 100px - 200px);
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgba(0, 0, 0, 0.4);
}

#Navbar {
  display: flex;
  justify-content: space-between;
  padding-left: 5vw;
  padding-right: 5vw;
  height: 60px;
  background-color: rgba(0, 0, 0, 1);
  position: fixed;
  top: 0px;
  z-index: 100;
  width: 90vw;
}

#primaryMenu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.PrimaryMenuButton {
  background-color: transparent;
  border: none;
  color: white !important;
  font-size: 22px;
  height: 100%;
  width: 100px;
  transition-duration: 200ms;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Deselected {
  text-decoration: none !important;
}

.PrimaryMenuButton:hover {
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.LogoImageWrapper {
  background-color: rgba(255, 255, 255, 0.7);
  width: 35vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 60px;
}

#Logo {
  height: 20vw;
}

.States {
  display: flex;
  justify-content: space-around;
  width: 70%;
  margin-bottom: 100px;
}

.NavImage {
  height: 60px;
}

@media (max-width: 1200px) {
  .LogoImageWrapper {
    width: 50vw;
  }

  #Logo {
    height: 35vw;
  }

  h1 {
    font-size: 3vw;
  }

  .HeaderH2 {
    font-size: 2vw;
  }
}

@media (max-width: 1000px) {
  .LogoImageWrapper {
    width: 80vw;
  }

  #Logo {
    height: 56vw;
  }

  .States {
    flex-direction: column;
  }

  .SpecialH2 {
    margin-bottom: 4vw;
  }
}

@media (max-width: 800px) {
  h1 {
    font-size: 4.5vw;
  }

  .SpecialH2 {
    font-size: 6vw !important;
  }

  .HeaderH2 {
    font-size: 3vw;
  }
}
