body {
  background-image: url("../images/bg.png");
  background-attachment: fixed;
  width: 100%;
  background-size: cover;
  color: #222222;
}

.logo {
  position: fixed;
  top: 8px;
  left: 16px;
  width: 96px;
}

.menu {
  position: fixed;
  top: 24px;
  right: 24px;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.menu li {
  margin-right: 10px;
}

.menu a {
  color: #222222;
  text-decoration: none;
}

.menu a:hover {
  color: #666666;
}

.contact {
  color: #f9f9f9 !important;
  background-color: #00579d;
  border-radius: 24px;
  padding: 16px 24px;
}

.contact:hover {
  background-color: #337ab7;
}

.copyright {
  text-align: center;
  bottom: 0;
  width: 100%;
  font-size: small;
}

.hero {
  margin: 3em auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 95vh;
}

.hero h1 {
  margin-bottom: 2em;
}

.hero_message {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.skill_training_program {
  display: flex;
  width: calc(100% - 8em);
  margin: 4em auto 11em;
}

.skill_training_program_heading {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 1em;
  padding-left: 2em;
}

.skill_training_program_text {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em;
}

@media (max-width: 768px) {
  body {
    width: 90%;
    margin: 0 auto;
  }

  .logo {
    position: static;
    text-align: center;
    margin: 1em auto;
  }

  .menu {
    position: static;
    text-align: center;
    margin: 1em auto;
  }

  .menu button {
    background-color: #00579d;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: none;
  }

  .menu ul {
    flex-direction: column;
  }

  .menu li {
    margin: 0.5em 0;
  }

  .hero {
    margin: 1em auto 0;
    height: auto;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero_message {
    width: 90%;
  }

  .skill_training_program {
    flex-direction: column;
    width: 90%;
    margin: 2em auto;
  }

  .skill_training_program_heading {
    width: 100%;
    text-align: center;
  }

  .skill_training_program_text {
    width: 100%;
    text-align: center;
  }
}
