.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

.body {
  background-color: #000;
}

.section {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.section.second {
  justify-content: center;
  align-items: stretch;
}

.image {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  width: 150px;
}

.image-2 {
  width: 150px;
}

.gif {
  width: 45%;
}

.second-section {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.second-section.second {
  justify-content: center;
  align-items: stretch;
}

.heading {
  color: #9e8565;
  font-family: Oswald, sans-serif;
}

.background-video, .background-video-2 {
  border-radius: 2rem;
  width: 45%;
}

.text-block {
  color: #82815f;
}

.play-pause-button, .play-pause-button-2 {
  display: none;
}

@media screen and (max-width: 991px) {
  .second-section {
    flex-flow: column;
    height: 70vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .background-video, .background-video-2 {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .second-section {
    flex-flow: row;
    height: 80vh;
    padding-top: 1rem;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding: 1rem;
  }

  .image, .image-2 {
    width: 100px;
  }

  .gif {
    width: 95%;
  }

  .second-section {
    flex-flow: column;
    height: 50vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .heading {
    text-align: center;
    font-size: 30px;
  }

  .background-video, .background-video-2 {
    border-radius: .5rem;
  }

  .play-pause-button, .play-pause-button-2 {
    display: none;
  }
}


