.card-img {
  position: relative;
  overflow: hidden;
}

.card-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

body {
  background-image: url('../images/bg-body.png');
}

.scroll-wrapper {
      width: 100%;
      overflow: hidden;
      background-color: transparent; /* optional background */
      white-space: nowrap;
    }

    .scroll-text {
      display: inline-block;
      padding-left: 100%;
      animation: scroll-left 10s linear infinite;
      font-size: 70px;
      font-weight: bold;
      color: #ededed;
      font-family: 'Playwrite AU QLD', cursive;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    .bg-deep-red {
      background-color: #8B0000 !important;
    }
