* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: sans-serif;
}

img,
video,
iframe {
  display: block;
}

iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

.full-img {
  width: 100%;
}

.small-img {
  display: none;
}

@media (max-width: 768px) {
  .small-img {
    display: block;
  }

  .big-img {
    display: none;
  }
}

.primary-heading {
  font-weight: 600;
  font-size: 4rem;
}

.secondary-heading {
  font-weight: 400;
  font-size: 3rem;
}

.tertiary-heading {
  font-size: 2.4rem;
  font-weight: 400;
}

.text-shad {
  text-shadow: 0 2px 5px black;
}

.basic-text {
  font-size: 1.8rem;
}

.add-bold {
  font-weight: 600;
}

.adventure-text {
  width: 80%;
  margin: 5rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.adventure-grid {
  width: 90%;
  margin: 10rem auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

.adventure-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.adventure-logo {
  width: 6rem;
}

.adventure-grid2 {
  width: 90%;
  margin: 10rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.adventure-cell2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 992px) {
  .adventure-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .adventure-grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .adventure-grid2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .adventure-grid {
    grid-template-columns: 1fr;
  }
}

.section-hero {
  position: relative;
}

.right {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  color: white;
  right: 5rem;
  text-align: right;
  width: 30%;
}

.left {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  color: white;
  left: 5rem;
  width: 30%;
}

@media (max-width: 768px) {
  .right,
  .left {
    left: 50%;
    transform: translate(-50%, 0);
    top: 5rem;
    width: 90%;
    text-align: center;
    right: 0;
  }

  .bottom {
    top: auto;
    bottom: 5rem;
  }
}

.images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 90%;
  margin: 10rem auto;
}

.images-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 992px) {
  .images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .images-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
