.softwareServicesWrapper {
  width: 100%;
  display: flex;

  align-items: center;
  justify-content: center;
  padding: 90px 40px;
  position: relative;
}
.softwareServicesContainer {
  width: 100%;
  max-width: 1380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px
}

.cardContainer {
  display: flex;
  width: 100%;
  gap: 30px;
  align-items: stretch;
}

.cardArticle{
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:16px;
  border-radius: 32px;
  border: 1px solid #2E2B3B;
  background: linear-gradient(162deg, #0F0D1A 4.35%, #191436 95.68%);
  min-height: 361px;
  position: relative;
  overflow: visible;
}
.cardArticle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: rgba(77, 48, 255, 0.4);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}
.cardWrapper{
  position: relative;
  display: block;
  z-index: 1;
}
.cardWatermarkWrapper{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.watermark {
  object-fit: contain;
}

.cardLink.first {
  max-width: 55%;
}
.cardLink.second {
  max-width: 45%;
}
.cardLink.bottomFirst {
  max-width: 27%;
}
.cardLink.bottomSecond {
  max-width: 33%;
}
.cardLink.bottomThird {
  max-width: 40%;
}
.cardLink {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.cardLink .cardArticle {
  height: 100%;
}


.cardIconContainer{
  display: flex;
  width: 86px;
  height: 86px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, #8166FF 0%, #421AFE 100%), #FFF;
}
.cardContent{
  display: flex;
  flex-direction: column;

}
.cardTitle {
  color: #EEE;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.64px;
}

.cardDesc {
  max-height: 10em; /* или 15em */
  color: #EEE;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;}

@media (max-width: 1024px) {
  .softwareServicesWrapper{
    padding: 40px 20px;
  }
  .softwareServicesContainer{
  }
  .cardContainer{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .cardLink {
    width: 100%;
  }
  .cardArticle{
    padding: 20px;
  }
  .cardLink.first{
    max-width: 100%;
  }
  .cardLink.second{
    max-width: 100%;
  }
  .cardLink.bottomFirst{
    max-width: 100%;
  }
  .cardLink.bottomSecond{
    max-width: 100%;
  }
  .cardLink.bottomThird{
    max-width: 100%;
  }
}
