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

html {
  font-size: 62.5%;
}

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

body {
  font-family: sans-serif;
}

img,
video {
  display: block;
}

.full-img {
  width: 100%;
}

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

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

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

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

.add-gray {
  color: #555;
}

.add-blue {
  color: #2e63fd;
}

.section-hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #f7f7f7;
}

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

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

  .hero-text {
    padding: 5rem 0;
  }
}

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

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

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

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

.info {
  background-color: black;
  color: white;
}

.info-cont {
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

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

.info-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 0;
}

@media (max-width: 576px) {
  .info-cont {
    width: 90%;
  }

  .info-cell {
    text-align: left;
  }
}

.delivery {
  background-color: #f7f7f7;
}

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

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 5rem;
  padding-bottom: 5rem;
}

.delivery-cell {
  background-color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem;
}

.delivery-logo {
  height: 15rem;
  margin: 0 auto;
}

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

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

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  row-gap: 5rem;
  column-gap: 2rem;
  align-items: center;
}

.grid-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
}

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

  .move-grid {
    grid-row: 3/4;
  }
}

@media (max-width: 576px) {
  .section-grid {
    width: 90%;
  }
}
