.video .bg-image {
  border-radius: 1.3rem;
  background: no-repeat center center;
  background-attachment: fixed !important;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.video .overlay-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(232, 123, 93, 0.8);
  z-index: -1;
  border-radius: 1.3rem;
}
.video .btn-circle {
  padding: 0;
  border-radius: 50%;
  width: 9rem;
  height: 9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  backface-visibility: hidden;
  border: 2px solid #fff;
  transition: all 0.35s ease-in-out;
}
.video .btn-circle.btn-play svg {
  color: #fff;
  margin-left: 0.3rem;
}
.video .btn-circle.btn-play:hover svg {
  color: #fff;
  margin-left: 0.3rem;
  animation: move-play-btn 1.2s infinite;
}
.video .btn-circle:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.video .btn-circle:hover svg {
  animation-direction: normal;
}
@keyframes move-play-btn {
  0%, 100% {
    width: 50px;
    height: 50px;
    opacity: 0;
  }
  50% {
    width: 80px;
    height: 80px;
    opacity: 1;
  }
}

.modal-video .modal-dialog {
  max-width: 800px;
}
.modal-video .modal-body {
  position: relative;
  padding: 0;
}
.modal-video .ratio {
  min-height: 500px;
}
.modal-video .btn-close {
  position: absolute;
  right: 0;
  top: -3rem;
  width: 2rem;
  height: 2rem;
  text-align: center;
  font-size: 1.25rem !important;
  display: inline-block;
  border: transparent;
}
@media (min-width: 768px) {
  .modal-video .btn-close {
    right: -3rem;
    top: 0;
  }
}