.services {
  margin-bottom: 65px;
  position: relative;
}

.services__link {
  position: absolute;
  top: -110px;
}

.services__title {
  margin-bottom: 48px;
  position: ;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px; 
}

.services-list__card {
  width: 595px;
  height: 268px;
  padding: 50px 150px 35px 50px;
  border-radius: 3px;
  color: #2F2F51;
  cursor: default;
}

.services-list__card:nth-child(1) {
  background-image: url(../images/services/fon1.jpg);
}

.services-list__card:nth-child(2) {
  background-image: url(../images/services/fon2.jpg);
}

.services-list__card:nth-child(3) {
  background-image: url(../images/services/fon3.jpg);
}

.services-list__card:nth-child(4) {
  background-image: url(../images/services/fon4.jpg);
}

.services-list__card:hover {
  overflow: hidden;
  box-shadow: 8px 8px 2px 1px rgba(1, 1, 10, 0.2);
  transition: 0.4s ease-in;
}

.services-list__card:focus {
  overflow: hidden;
  box-shadow: 8px 8px 2px 1px rgba(1, 1, 10, 0.2);
  transition: 0.4s ease-in;
}

.card__top {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.card__top-img {
  margin-right: 20px;
}

.card__top-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  font-style: normal;
}

.card__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  width: 303px;
  height: 75px;
}

@media (max-width: 992px) {
  .services-list {
    justify-content: center;
    gap: 38px 0;
  }

  .services-list__card:hover {
    width: 595px;
    height: 268px;
  }
}