@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.a-title {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.a-title:nth-child(1) {
  animation-delay: 0s;
}

.a-projects {
  margin-top: 16px;
}
.a-projects :is(h1, h2).a-title {
  font-size: 2.5rem;
  text-align: center;
}
.a-projects :is(h1, h2).a-title + .a-project-list {
  margin: 48px 0 0 0;
}
.a-projects + .a-projects {
  margin-top: 48px;
}

@media only screen and (min-width: 1025px) {
  .a-project-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1px;
  }
}

.a-project {
  position: relative;
  height: 272px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.a-project + .a-project {
  margin: 1px 0 0 0;
}
@media only screen and (min-width: 1025px) {
  .a-project + .a-project {
    margin: 0;
  }
}
.a-project:before, .a-project:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.a-project:before {
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
}
.a-project:after {
  z-index: 3;
  background: rgba(64, 185, 60, 0.6);
  border: solid 8px white;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s;
}
.a-project:hover:after {
  opacity: 1;
}
.a-project__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.a-project__text {
  position: relative;
  z-index: 4;
  color: white;
  margin: 0 0 20px;
}
.a-project__name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5625rem;
}
.a-project__address {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8125rem;
}
.a-project__logo {
  max-width: 100%;
}
.a-project__logo-wrapper {
  position: relative;
  z-index: 4;
  margin: 20px 0 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}