.video {
  margin: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.video .cover {
  position: relative;
  width: 560px;
  height: 315px;
}
.video .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.video .cover iframe {
  flex: 1;
}
.video .cover button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-color: transparent;
  border-color: #fff;
  border-radius: 50%;
}
.video .cover button i {
  font-size: 3rem;
  color: #fff;
}
.video .text {
  padding: 0 2rem;
  flex: 1;
}
.video .text h2 {
  text-align: left;
}
.video .text p {
  text-align: justify;
}

@media (max-width: 850px) {
  .video {
    margin: 1rem;
    flex-direction: column;
    justify-content: center;
  }
  .video .cover {
    position: relative;
    width: 100%;
  }
  .video .cover iframe {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .video .cover video {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .video .text {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .video .text h2 {
    text-align: center;
  }
  .video .text p {
    padding: 2rem 0;
    text-align: center;
  }
}/*# sourceMappingURL=videos.css.map */