.section-cards {
  padding: 0 30px;
}

.section-cards-content-card {
  position: relative;
  min-height: 530px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-cards-content-card:before {
  background-color: var(--accent-color);
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
}

.section-cards-content-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.section-cards-content-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 16px;
}

.section-cards-content-title,
.section-cards-content-card .section-cards-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.section-cards .section-btn {
  margin: 32px auto 0;
}

@media (min-width: 769px) {
  .glide__arrows {
    display: none;
  }
  .glide__slides {
    display: flex;
    gap: 16px;
  }
  .glide__slide {
    flex: 1 1 0;
  }
  .section-cards-content-card {
    padding: 40px;
  }
}
