.services-container {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  align-items: center;
  justify-items: center;
  gap: 1em;
  overflow: scroll;
  position: absolute;
  top: 0;
}

.services-container > div {
  height: 33em !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
  gap: .5em;
  border-radius: .7em;
}

.services-container > div:first-child:hover {
  background-color: var(--color-alt-warning);
}

.services-container > div:nth-child(2):hover {
  background-color: var(--color-alt-success);
}

.services-container > :last-child:hover {
  background-color: var(--color-alt-info);
}

.services-container > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
}

.services-container > div > div img {
  width: 45%;
  border-radius: 3em;
}

.services-container > div > div .description {
  margin: 1em 0;
}

.services-container > div > a {
  width: 90%;
}
.services-container > div > a button {
  height: 3.05em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  border-radius: .7em;
}

.services-container > div:first-child > a button {
  background-color: var(--color-alt-warning);
  border: 2px solid var(--color-alt-warning);
}

.services-container > div:nth-child(2) > a button {
  background-color: var(--color-alt-success);
  border: 2px solid var(--color-alt-success);
}

.services-container > :last-child > a button {
  background-color: var(--color-alt-info);
  border: 2px solid var(--color-alt-info);
}

.services-container > div > a button:hover {
  animation: gapping 1000ms linear infinite;
  opacity: .7;
}

@keyframes gapping {
  0%,100% {
    gap: 1em;
  } 
  50% {
    gap: 2em;
  }
}