
h1 {
  margin-bottom: 0;
  font-family: "Sport";
  font-size: 90px;
  text-align: center;
}

h3 {
  margin: 0;
  font-family: "Montserrat";
  font-weight: 900;
  text-align: center;
}

.start-hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5%;

  padding: 0 15%;
  max-width: 1400px;
  margin: 5em auto;

  aspect-ratio: 5 / 3;

  overflow: hidden;
}

.start-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  border-radius: 300px 300px 20px 20px;
}

.cta-button {
  display: block;
  margin: 20px auto;
  width: fit-content;
  padding: 15px 30px;

  text-decoration: none;
  font-family: "Sport";
  font-size: 20px;

  background-color: #F4AA4A;
  color: white;

  border-radius: 14px;

  transition: ease-in-out 0.3s;
}

.cta-button:hover {
  transform: translateY(-4px);
}


.karusell {
  display: flex;
  gap: 3em;

  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.karusell-viewport {
  width: 80%;
  overflow: hidden;
}

.karusell-track {
  display: flex;

  transition: transform 300ms ease;
  width: 100%;
}

.next, .prev {
  display: block;
  padding: 20px 20px;
  border-radius: 30px;
  border: 2px solid #F4AA4A;
  background-color: transparent;
}

.next:hover, .prev:hover {
  background-color: #F4AA4A;
  color: white;
  border-color: transparent;
}
.slide {
  box-sizing: border-box;
  background-color: white;
  flex: 0 0 calc(100% / 3 - 20px);

  margin: 10px;

  padding: 1em 3em;

  display: flex;
  align-items: center;
  justify-content: start;


  border-radius: 14px;
  border: 2px solid gray;

  font-family: "Montserrat";
  font-size: clamp(12px, 1.5vw, 20px);
  color: gray;
}

.karusell {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1300px) {
  .start-hero {
    padding: 0 5%;
  }
}

@media (max-width: 735px) {
  .start-hero {
    flex-direction: column;
    margin: 0 auto;
    width: 50%;
    align-items: center;
    padding: 0 8px;
    height: 60vh
  }

  .start-hero img:not(#keep) {
    display: none;
  }

  #keep {
    width: 100%;
    height: 100%;
  }

  .karusell {
    display: none;
  }

}

@media(max-width: 500px) {
  .start-hero {
    width: 90%;
    padding: 10px
  }
}
