@import url(https://fonts.googleapis.com/css?family=Raleway);

.navigation-header {
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.322);
  padding: 0 15px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: end;
  position: fixed;
  width: 100%;
  z-index: 100;
  margin-top: -1px !important;
}

nav {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container {
  width: 30%;
  margin-top: -16px;
}


.home-div a {
  font-weight: bold !important;
}

.navigation-items {
  display: flex;
  align-items: end;
}

.all-nav-links a {
  font-weight: 600 !important;
  color: #000000;
}

.navigation-items > a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold !important;
  font-size: 16px;
  transition: 0.4s ease-in-out;
}

.navigation-items > a:hover {
  color: rgb(0, 0, 0);
}

.home-div {
  padding: 15px 20px 13px 20px;
  background-color: #e30016;
}
.all-nav-links {
  padding: 15px 20px 13px 20px;
}
.all-nav-links:hover {
  background-color: #e30016;
}

.all-nav-links:hover a {
  color: white;
}

.hamburger {
  display: none;
  font-size: 20px;
  font-weight: bold;
  color: rgb(0, 0, 0);
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    cursor: pointer;
    margin-top: 8px;

  }
  p {
    font-size: 14px !important;
}
  .hamburger #closeHam {
    display: none;
  }
  .mobile-nav-links:active a{
    color: white !important;
  }

  .navigation-items {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 0;
    top: 58px;
    background-color: rgb(73, 51, 153);
    width: 100%;
    height: calc(100vh - 58px);
    padding-top: 60px;
  }
  .logo-container {
    width: 80%;
    margin-top: 0px !important;
  }
  .navigation-header {
    display: flex;
    align-items: center;
  }
}

h2 {
  vertical-align: center;
  text-align: center;
}

html,
body {
  margin: 0;
  height: 100%;
}

* {
  font-family: "Arial";
  box-sizing: border-box;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #00baf0;
  background: linear-gradient(to left, #f46b45, #eea849);
  color: #fff;
  height: 50px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 20px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #000000;
  position: absolute;
  height: 2px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
  background-color: #e30016;

}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
  background-color: #e30016;

}

@media (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 2px 5px 7px rgba(37, 37, 37, 0.298);
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 70%;
    color: rgb(0, 0, 0);
    background-color: white;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  .mobile-nav-links:active {
    background-color: #e30016;
  }
  .mobile-nav-links:active a {
    color: white;
  }
}
