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

body {
  font-family: sans-serif;
}

.full-img {
  width: 100%;
}

.small-img {
  display: none;
}

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

  .big-img {
    display: none;
  }
}

.primary-heading {
  font-size: 2.6rem;
  font-weight: 700;
}

.secondary-heading {
  font-size: 2rem;
  font-weight: 700;
}

.tertiary-heading {
  font-size: 1.4rem;
  font-weight: 700;
}

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

.hero-text {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .section-hero video {
    aspect-ratio: 3/4;
    object-fit: cover;
  }

  .hero-text {
    text-align: left;
  }
}

.section-high {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.high-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

.high-cell img {
  border: 1px solid black;
}

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

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

.section-hot {
  background-color: black;
  color: white;
  padding-bottom: 3rem;
}

.hot-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.hot-text1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0;
  justify-content: center;
}

.hot-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
}

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

.hot-cell img {
  border: 1px solid white;
}

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

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

  .hot-text1 {
    grid-area: 2 / 1 / 3 / 2;
  }
}
