.simplefast-mainsection {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
}

.simplefast-subsection {
  width: 70%;
}

.simplefast-box-content {
  position: relative;
  height: 100%;
  width: 100%;
}

.simplefast-box-content img {
  border-radius: 8px;
}

.simplefast-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.simplefast-box img {
  height: 8rem;
}

.simplefast-box h1 {
  color: white;
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 1154px) {
  .simplefast-subsection {
    width: 80%;
  }
  .simplefast-box img {
    height: 6rem;
  }
  .simplefast-box h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 954px) {
  .simplefast-subsection {
    width: 95%;
  }
}

@media (max-width: 700px) {
  .simplefast-subsection {
    width: 100%;
  }
  .simplefast-box img {
    height: 5rem;
  }
  .simplefast-box h1 {
    font-size: 1.3rem;
  }
}
