* {
  box-sizing: border-box;
}
body {
  background-color: #fff;
  font-family: Lato, Arial, Helvetica, sans-serif;
  color: rgb(86, 90, 92);
  padding-top: 64px;
  max-width: 100%;
}
.jobmapp {
  margin: auto;
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding: 0 21px 64px 21px;
}
.jobmapp img {
  width: 100%;
  max-width: 350px;
  margin: auto;
}
.jobmapp__title {
  font-size: 24px;
  font-weight: 700;
}
.jobmapp__subtitle {
  font-size: 20px;
}
.projects {
  display: block;
  text-align: center;
  width: 100%;
}
.projects ul {
  text-align: center;
  list-style: none;
  padding: 0;
}
.projects li {
  display: inline-block;
  vertical-align: top;
}
.projects__project {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  text-decoration: none;
  color: rgb(86, 90, 92);
  border: 1px solid rgba(86, 90, 92, 0.1);
  border-radius: 5px;
  padding: 16px;
  margin: 8px;
  transition: border-color ease-out .3s;
}
.projects__project:hover {
  border-color: rgba(86, 90, 92, 0.4);
}
.projects__project img {
  margin: auto;
  max-height: 150px;
  max-width: 100%;
}
.projects__project h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}
.projects__project h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}
.projects__project p {
  font-size: 16px;
  line-height: 1.5;
}

@media only screen and (max-width: 1000px) {
  .projects__project {

  }
}