.tb-video-banner {
  background: #F1F1F1;
  display: flex;
  flex-direction: column-reverse;
  margin: 16px 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tb-video-banner {
    margin: 12px 0;
  }
}
@media only screen and (max-width: 767px) {
  .tb-video-banner {
    margin: 8px 0;
  }
}
@media screen and (min-width: 1250px) {
  .tb-video-banner {
    flex-direction: row;
  }
}
.tb-video-banner .tb-video-banner-content-container {
  padding: 16px 16px;
  font-family: "Libre Franklin", sans-serif;
}
@media screen and (min-width: 768px) {
  .tb-video-banner .tb-video-banner-content-container {
    padding: 24px 24px;
  }
}
@media screen and (min-width: 1250px) {
  .tb-video-banner .tb-video-banner-content-container {
    padding: 48px 32px;
    width: 33.3333333333%;
  }
}
.tb-video-banner .tb-video-banner-content-container .tb-video-banner-header {
  color: var(--Textcolors-color-text, #393939);
  font-size: 2.25em;
  font-style: normal;
  font-weight: 900;
  line-height: 48px;
  margin-bottom: 16px;
}
.tb-video-banner .tb-video-banner-content-container .tb-video-banner-subheader {
  color: var(--Textcolors-color-text, #393939);
  font-size: 1.25em;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.tb-video-banner .tb-video-banner-content-container .tb-video-banner-body {
  color: var(--Textcolors-color-text, #393939);
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.tb-video-banner .tb-video-banner-content-container .tb-video-banner-button-container {
  margin-top: 32px;
}
.tb-video-banner .video-container {
  position: relative;
}
@media screen and (min-width: 1250px) {
  .tb-video-banner .video-container {
    width: 66.6666666667%;
  }
}
.tb-video-banner .video-container .video-banner-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tb-video-banner .video-container video.video,
.tb-video-banner .video-container img.video-banner-error-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tb-video-banner .gradient-background {
  animation: loadingAnimation 2s infinite ease-in-out;
}

@keyframes loadingAnimation {
  0% {
    background: #F1F1F1;
  }
  50% {
    background: #DDDDDD;
  }
  100% {
    background: #F1F1F1;
  }
}
