:root {
  --white: white;
  --black: black;
}

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

.main {
  margin-top: 40px;
  padding-bottom: 60px;
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.poster-box {
  width: 500px;
  height: auto;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.video-box {
  z-index: 1;
  border: 2px solid #000;
  position: relative;
}

.video-box-row {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-bottom: 40px;
  display: flex;
}

.video-wrap {
  margin-top: 100px;
}

.video-box-block {
  flex: 1;
  padding: 28px;
  position: relative;
}

.video-box-outer-bg {
  background-color: #f4f4f4;
  position: absolute;
  inset: 0%;
}

.address-box {
  width: 800px;
  height: auto;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

.address-image {
  object-fit: cover;
  border: 1px solid #000;
  width: 100%;
  height: 100%;
}

.heading {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: 60px;
  font-family: Lato, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}

.poster {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .container {
    margin-left: 60px;
    margin-right: 60px;
  }

  .video-box-row {
    flex-flow: column;
  }

  .address-box {
    width: 100%;
  }

  .heading {
    font-size: 60px;
    line-height: 68px;
  }
}

@media screen and (max-width: 767px) {
  .main {
    padding-bottom: 40px;
  }

  .container {
    margin-left: 40px;
    margin-right: 40px;
  }

  .poster-box {
    width: 100%;
  }

  .video-wrap, .address-box {
    margin-top: 80px;
  }

  .heading {
    font-size: 56px;
    line-height: 64px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    margin-left: 10px;
    margin-right: 10px;
  }

  .video-wrap {
    margin-top: 60px;
  }

  .video-box-block {
    padding: 10px;
  }

  .address-box {
    margin-top: 60px;
  }

  .heading {
    margin-bottom: 40px;
    font-size: 52px;
    line-height: 60px;
  }
}


