:root {
  --color-primary: #ce011f;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: sans-serif;
}

.container {
  padding: 15px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.banner {
  position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.overlay h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.overlay p {
  font-size: 1.2rem;
  font-weight: 400;
  font-weight: bold;
}
.overlay a {
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-primary);
  cursor: pointer;
}

.video-container {
  height: 445px;
  width: 100%;
}
.video-container video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.reviews-container {
  display: grid;
  width: 100%;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}
.reviews {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.reviews-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  text-align: center;
}
.review {
  padding: 15px;
  text-align: center;
  border: 1px solid #aaaaaa;
}
.review-title {
  padding: 15px 0;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.reviews-footer {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}
.btn-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn {
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-primary);
  cursor: pointer;
}
.btn:hover {
  background-color: #777777;
}
.btn:hover span {
  display: none;
}

.btn:hover:before {
  content: 'Go!';
}
