.section.cards {
  background-color: var(--bg2);
  padding: 100px 0px 100px 0px;
}

.section.cards .container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 100px;
}


.section.cards .content {
  padding: 50px;
  background-color: var(--dune);
}

.section.cards h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.section.cards h3 {
  font-size: 2em;
  margin-bottom: 50px;
}

.section.cards .content .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}

.section.cards .content {
  margin-bottom: 50px;
  position: sticky;
  top: 100px;
}

.section.cards .tekst-content {
  position: sticky;
  top: 100px;
}


/* Tablet */
@media screen and (max-width: 1023px) {

  .section.cards .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 100px;
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .section.cards .content .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}