.systeme {
  position: relative;
  padding-top: 55px;
  padding-bottom: 110px;
}

.systeme-title {
  margin-bottom: 70px;
}

.systeme-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 30px 60px;
}

.systeme-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.systeme-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 272px;
  height: 100vh;
  width: 100%;
  border-radius: 35px;
  overflow: hidden;
  margin-bottom: 66px;
}
.systeme-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.systeme-card__base {
  width: 100%;
  text-align: center;
}
.systeme-card__info {
  margin-top: auto;
  text-align: center;
}
.systeme-card__price-desc {
  font-size: 15px;
  line-height: 26px;
  margin-top: 35px;
  color: #333333;
}
.systeme-card__download {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.systeme-card a.button-download {
  position: relative;
  color: #979797;
  margin-top: 24px;
  display: block;
  line-height: 1;
  margin-top: auto;
}
.systeme-card a.button-download::after {
  font-family: "icomoon";
  content: "\e901";
  font-size: 8px;
  margin-left: 8px;
  position: relative;
  bottom: 2px;
}
@media (any-hover: hover) {
  .systeme-card a.button-download:hover {
    color: var(--highlight);
  }
}
.systeme-card__name {
  text-align: center;
  margin-bottom: 14px;
}
.systeme-card__price {
  margin-top: auto;
  margin-bottom: 30px;
}

.systeme-card__price b {
    font-size: 20px;
}

.systeme-card__content {
  margin-bottom: 40px;
}

.systeme-form {
    padding-top: 100px;
}

h2.form-title.section-title {
    align-items: center;
    margin-bottom: 90px;
}

@media screen and (max-width: 1024px) {
  .systeme {
    padding-top: 20px;
    padding-bottom: 50px;
  }
  .systeme-card__image {
    margin-bottom: 20px;
  }
}