html,
body {
  font-family: "Roboto", sans-serif;
}
a {
  text-decoration: none;
}

li {
  list-style: none;
}
hr {
  color: grey;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
#logo {
  transition: all 300ms;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
}
li {
  transition: all 300ms;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
}

header {
  width: 100%;
  height: 8%;
  position: fixed;
  top: 0;
  left: 0;
  background: whitesmoke;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 1.9);
  z-index: 1;
}

#logo {
  width: 7%;
  float: left;
  margin: 10px 0 0 40px;
}

#logo img {
  width: 200%;
}

#logo:hover {
  opacity: 0.5;
}

header nav {
  float: right;
  margin: 10px 30px 0 0;
}

header nav ul li {
  float: left;
  margin-right: 16px;
  margin-bottom: 0%;
}

header nav ul li a {
  font-size: 24px;
  color: darkslategray;
}

header nav ul li a img {
  width: 32px;
  position: relative;
  margin-top: 0%;
}

header nav ul li:hover {
  padding-top: 1px;
}

header nav ul li a:hover {
  color: rgb(49, 176, 226);
}

footer {
  height: 55px;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0%;
  width: 100%;
  background: whitesmoke !important;
  border: 0.5px;
  border-style: solid;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
}

footer p {
  font-size: 20px;
}

footer p a {
  font-size: 24px;
  color: darkslategray;
}

footer p a:hover {
  color: rgb(49, 176, 226);
  padding-bottom: 20px;
}

h1 {
  margin: 5%;
  margin-top: 7%;
  margin-bottom: 5%;
  margin-left: 1%;
  color: #969494;
  font-size: 34px;
}

.job-list-container {
  max-width: 100%;
  margin: 2%;
  margin-bottom: 5%;
  font-family: "Roboto", sans-serif;
}

.job-list-container h2 {
  font-size: 30px;
  border-left: 4px solid wheat;
  padding-left: 10px;
  font-family: "Roboto", sans-serif;
}

.job-list-container .jobs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-family: "Roboto", sans-serif;
}
.job-list-container .jobs img {
  width: 100px;
}

.job-list-container .job {
  box-shadow: 0 4px 24px rgba(2, 48, 71, 0.2);
  padding: 20px;
  margin: 1%;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 400ms ease;
  font-family: "Roboto", sans-serif;
}

.job-list-container .job:hover {
}

.job-list-container .open-positions {
  position: absolute;
  top: 40px;
  right: 24px;
  font-family: "Roboto", sans-serif;
}
.job-list-container .details {
  margin-top: 6px;
  font-size: 16px;
  color: rgb(32, 34, 33);
  flex: 1;
  font-family: "Roboto", sans-serif;
}

.job-list-container .details-btn {
  border: 1px solid #023047;
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}

.job-list-container .details-btn:hover {
  background-color: rgb(49, 176, 226);
  color: white;
  transition: all 400ms ease;
}

p {
  font-size: 20px;
}

.details-btn {
  background-color: whitesmoke;
}

h2 {
  color: #969494;
}

.job img:hover {
  opacity: 0.8;
  transition: all 300ms;
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  -o-transition: all 300ms;
}

@media (max-width: 1000px) {
  .job-list-container .jobs {
    margin-bottom: 10%;
    display: flex;
    flex-direction: column;
  }

  h1 {
    margin-top: 15%;
  }

  header {
    height: 13%;
  }

  footer p {
    font-size: 15px;
  }

  footer p a {
    font-size: 15px;
  }
  h1 {
    margin-top: 25%;
  }
  .job-list-container .details {
    font-size: 20px;
  }

  #logo {
    width: 15%;
    float: left;
    margin: 10px 0px 0 40px;
  }
  header {
    height: 12%;
  }
}

@media (max-width: 650px) {
  .job-list-container .jobs {
    margin-bottom: 20%;
    display: flex;
    flex-direction: column;
    font-size: 15px;
  }

  header nav ul li a {
    font-size: 18px;
  }

  h1 {
    margin-top: 38%;
    margin-bottom: 10%;
    font-size: 24px;
    align-items: center;
  }
  footer p {
    font-size: 15px;
  }

  footer p a {
    font-size: 15px;
  }

  header {
    height: 15%;
  }

  #logo {
    width: 15%;
    float: left;
    margin: 10px 0px 0 40px;
  }

  .job-list-container .details {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .job-list-container .jobs {
    margin-bottom: 20%;
    display: flex;
    flex-direction: column;
    font-size: 15px;
  }

  header nav ul li a {
    font-size: 18px;
  }

  h1 {
    margin-top: 50%;
    margin-bottom: 10%;
    font-size: 20px;
    align-items: center;
  }
  footer p {
    font-size: 12px;
  }

  footer p a {
    font-size: 12px;
  }

  header {
    height: 18%;
  }

  #logo {
    width: 15%;
    float: left;
    margin: 10px 0px 0 40px;
  }

  .job h2 {
    font-size: 22px;
  }
  p {
    font-size: 15px;
  }
  .job-list-container .details {
    font-size: 16px;
  }
}
