.explainer-video {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 80px;
  width: 50%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.explainer-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media screen and (max-width: 1024px) {
  .explainer-video {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
