section.big-text {
  margin-top: 98px;
  margin-bottom: 152px;
}


section.big-text h1 {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 60px;
}

section.big-text h1 b {
  color: var(--gr);
  font-family: 'Syne';
}
section.big-text p {
  font-size: 25px;
  line-height: 35px;
  text-align: center;
}

section.experiences {
  height: 787px;
  margin-bottom: 200px;
}

section.experiences .container {
  position: absolute;
  left:0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(6, 235px);
  gap: 20px;
  justify-content: center;
  user-select: none;
  align-items: start;
  overflow: hidden;
  padding-top: 32px;
}

section.experiences .container > div {
  border-radius: 12px;
  overflow: hidden;
  --delay: 0s;
  transition: transform 300ms var(--delay), opacity 300ms var(--delay);
}

section.experiences .container > div.disappear {
  transform: translateY(10px);
  opacity: 0;
}
section.experiences .container > div.disappear2 {
  transform: translateY(-10px);
  opacity: 0;
}

section.experiences .container > div:hover img {
  transform: scale(1.025);
}

section.experiences .container img {
  margin-bottom: -6px;
  margin-top: -2px;
  pointer-events: none;
  user-select: none;
  transition: transform 200ms;
  width: 100%;
}




section.experiences .container > div:nth-child(2n + 1) {
  margin-top: -32px;
}



section > h2 {
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
  margin-top: 0px;
}

section.explanation h2 span {
  color: var(--gr);
  font-family: "Syne";
}

section.explanation .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  align-items: center;
  margin-bottom: 220px;
}

section.explanation img {
  user-select: none;
  pointer-events: none;
}

section.explanation .grid > div {
  max-width: 444px;
  padding: 0 56px;
}

section.explanation .grid h2 {
  color: var(--color);
  font-family: 'Syne', sans-serif;
  line-height: 89%;
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin: 0;
  margin-left: -4px;
  margin-bottom: 16px;
}

section.explanation h3 {
  color: var(--color);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 26px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
section.explanation p {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.2px;
  margin: 0;
  padding-right: 42px;
}
section.explanation a {
  color: var(--gr);
}
section.mosaic {
  margin-top: 0px;
}


@media screen and (max-width: 600px) {
  section.big-text {
    margin-top: 60px;
    margin-bottom: 67px;
  }
  section.big-text h1 {
    font-size: 36px;
    margin-bottom: 33px;
  }
  section.big-text p {
    font-size: 14.3px;
    line-height: 20px;
  }
  section.experiences {
    height: 420px;
    margin-bottom: 60px;
  }
  section.experiences .container {
    grid-template-columns: repeat(3, 126px);
    gap: 9px;
  }

  section.experiences .container > div:nth-child(2n + 1) {
    margin-top: 0px;
  }
  section.experiences .container > div:nth-child(1),
  section.experiences .container > div:nth-child(3),
  section.experiences .container > div:nth-child(4),
  section.experiences .container > div:nth-child(6) {
    margin-top: -13px;
  }

  section > h2 {
    font-size: 26px;
  }

  section.explanation .grid{
    transform: scaleX(-1);
  }
  section.explanation .grid > * {
    transform: scaleX(-1);
  }
  section.explanation .grid h2{
    font-size: 28px;
    margin-bottom: 6px;
    margin-left: -2px;
  }
  section.explanation .grid h3{
    font-size: 9px;
    margin-bottom: 2px;
    line-height: 9px;
  }
  section.explanation .grid p {
    font-size: 12px;
    line-height: 15px;
    padding: 0px;
  }
  section.explanation .grid div:last-of-type {
    padding-right: 12px;
    margin-top: 12px;
  }
  /* section:has(+ .mosaic) h2 {
    font-size: 24px;
    text-align: left;
    margin-bottom: 28px;
  } */

  section.mosaic {
    margin-bottom: 80px;
  }

  .cards.reduced h2 {
    font-size: 24px;
    text-align: left;
    margin-bottom: 32px;
  }
}


@media screen and (max-width: 1120px) {
  
  section.explanation .grid {
    grid-template-columns: 50% 50%;
    gap: 0;
    margin-bottom: 85px;
  }
  section.explanation .grid img {
    width: 100%;
  }
  section.explanation .grid div {
    padding: 0px 0 0 12px;
  }
  section.explanation .grid p {
    padding-right: 0px;
  }
}