.banner {
  height: auto;
  position: relative;
}
.banner .mute-video {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #124D8BFF;
  width: 50px;
  height: 50px;
  transition: all 0.15s;
}
.banner .mute-video:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 2px;
  content: "";
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #FFFFFF;
  transition: all 0.15s;
}
.banner .mute-video:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 2px;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #FFFFFF;
  transition: all 0.15s;
}
.banner .mute-video.unmute-video:after, .banner .mute-video.unmute-video:before {
  width: 0;
}
.banner .mute-video svg {
  width: 35px;
  height: 35px;
}
.banner .replay {
  top: calc(50% - 52px);
  position: absolute;
  left: 0;
  transform: translate(0, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #124D8BFF;
  width: 50px;
  height: 50px;
  transition: all 0.15s;
}
.banner .replay svg {
  width: 35px;
  height: 35px;
}
.banner video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

@media (max-width: 576px) {
  .banner .mute-video {
    width: 30px;
    height: 30px;
  }
  .banner .mute-video svg {
    width: 20px;
    height: 20px;
  }
  .banner .replay {
    top: calc(50% - 31px);
    width: 30px;
    height: 30px;
  }
  .banner .replay svg {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1200px) {
  .banner video {
    height: 100vh;
  }
}

/*# sourceMappingURL=banner-video-client.css.map */
