* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

img,
video {
  display: block;
}

.tertiary-heading {
  font-size: 1.2rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1rem;
}

.section-hero {
  background-color: #3d312a;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section-hero h1 {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.full-img {
  width: 100%;
}

.grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-radius: 20px;
  overflow: hidden;
}

.cell {
  position: relative;
}

.cell-text1 {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-shadow: 0 3px 3px white;
}

.cell-text2 {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cell-text3 {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: white;
  text-shadow: 0 3px 3px black;
}

@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cell-text1,
  .cell-text2,
  .cell-text3 {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    text-shadow: none;
    color: white;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
  }

  img {
    border-radius: 20px;
  }
}
