a.services-wrapper {
  color: #fff;
}
a:hover.services-wrapper {
  color: #fff;
  text-decoration: none;
}
.services-item {
  border-radius: 25px;
  height: 317px;
  display: grid;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition-duration: 0.5s;
}
.services-item-overlay {
  grid-area: 1/1;
  z-index: 1;
  border-radius: 25px;
  background-color: #326df7;
  opacity: 0.3;
  transition-duration: 0.5s;
}
.services-item-content {
  grid-area: 1/1;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr 1fr;
  padding: 45px;
}
.services-title {
  font-size: 32px;
  line-height: 38px;
}
.services-description {
  /* margin-top: 16px; */
  margin-top: auto;
  width: 80%;
  font-size: 16px;
  line-height: 19px;
}
.services-external-link {
  transition-duration: 0.5s;
  padding-left: 10px;
}

.services-item-footer {
  background-color: #326df7;
  padding: 30px 20px;
  border-radius: 25px;
  margin-top: auto;
}
.services-footer-text {
  font-size: 16px;
  font-family: Montserrat;
  line-height: 19px;
}
.services-item:hover .services-item-overlay {
  opacity: 1;
}

.services-item:hover .services-external-link {
  /* font-size: 24px; */
  transform: scale(1.2);
}

@media (max-width: 450px) {
  .services-item-content {
    padding: 35px 20px 20px 20px;
  }
  .services-title {
    font-size: 24px;
    line-height: 1;
  }
  .services-item {
    height: auto;
    min-height: 317px;
  }
  .services-item-overlay {
    opacity: 0.5;
  }
}
