* {
  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 {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
}

@media (max-width: 768px) {
  iframe {
    aspect-ratio: 1/1;
  }
}

.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: 400;
}

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

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

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

.imgs-cont {
  position: relative;
}

.imgs-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  text-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5);
}

.add-white {
  color: white;
}

.imgs-cb {
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2rem;
}

.imgs-rc {
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  width: 30%;
}

.imgs-lc {
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
}

.imgs-tl {
  top: 3rem;
  left: 3rem;
}

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

.imgs-bl {
  bottom: 3rem;
  left: 3rem;
}

@media (max-width: 768px) {
  .imgs-cb {
    top: 3rem;
    width: 80%;
  }

  .imgs-rc,
  .imgs-lc,
  .imgs-tr {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    top: 3rem;
    width: 80%;
  }

  .imgs-tl,
  .imgs-bl {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    bottom: 3rem;
    width: 80%;
  }
}

.hero {
  margin-top: 10rem;
}

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

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

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

.hero-logo {
  height: 6rem;
}

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

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

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

.section-text-hero {
  background-color: black;
  color: white;
  text-align: center;
  padding: 3rem;
  margin-bottom: 5rem;
}

.love {
  width: 90%;
  margin: 0 auto;
}

.love-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 10rem;
}

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

.love-img {
  width: 25rem;
  align-self: center;
}

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

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

.love-bt {
  border-bottom: 1px solid black;
  margin-bottom: 3rem;
}

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

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

.icon {
  height: 6rem;
}

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

@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;
  }
}
