.header-image-projects {
  height: 450px;
  text-align: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  background-position: center center;
  margin-bottom: 20px;
}

.projects-button {
  font-size: 14px;
  text-transform: uppercase;
  padding: 7px 8px;
  letter-spacing: 1px;
  display: inline-block;
  border: 1px solid white;
  color: white;
  font-weight: 400;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: absolute;
  bottom: 8px;
  right: 8px;
}
@media only screen and (max-width: 1024px) {
  .projects-button {
    font-size: 12px;
    margin-top: 10px;
  }
}
.projects-button:hover {
  border: 1px solid #888;
  color: #888;
}