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

html {
  font-size: 62.5%;
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: sans-serif;
}

img,
video {
  display: block;
}

iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16/6;
}

.full-img {
  width: 100%;
}

.small-img {
  display: none;
}

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

  .big-img {
    display: none;
  }
}

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

.secondary-heading {
  font-size: 3.6rem;
  font-weight: 500;
}

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

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

.mini-text {
  font-size: 1.6rem;
}

.top-cell {
  position: relative;
}

.top-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
  position: absolute;
  width: 40%;
  text-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.4);
}

.top-text-tr {
  right: 3rem;
  top: 3rem;
  text-align: right;
}

.top-text-bl {
  bottom: 3rem;
  left: 3rem;
}

.top-text-br {
  bottom: 3rem;
  right: 3rem;
  text-align: right;
}

@media (max-width: 768px) {
  .top-text-tr {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    right: 0;
  }

  .top-text-bl,
  .top-text-br {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    right: 0;
  }

  iframe {
    aspect-ratio: 1/1;
  }
}

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

.venu-grid {
  width: 90%;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  text-align: center;
}

.venu-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.venu-logo1 {
  height: 6rem;
}

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

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

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

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

.venu-feat {
  height: 30rem;
  align-self: center;
}

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

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

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

.icons {
  width: 90%;
  margin: 10rem auto;
}

.icons-hero {
  border-bottom: 1px solid black;
}

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

.icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

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

.icons-logo {
  height: 6rem;
}

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

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

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