body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: inherit;
}

ul {
  padding-left: 24px;
  list-style: initial;
}

span {
  text-decoration: inherit;
}

ol {
  padding-left: 24px;
  list-style: decimal;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.bdf-canvas-frame {
  padding-bottom: 36px;
}

.bdf-image {
  max-width: 100%;
}

.bdf-block-content {
  position: relative;
  z-index: 250;
}

.bdf-block-video-bg-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 200;
}

.bdf-block-video-bg-wrapper {
  position: relative;
  height: 100%;
  padding: 0;
}

.bdf-block-video-bg-element {
  position: absolute;
  width: 177.77777778vh;
  height: 56.25vw;
  min-width: 115%;
  min-height: 115%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.bdf-video-element {
  width: 100%;
  height: 350px;
}

.bdf-video-player-wrapper {
  display: flex;
}

.bdf-video-player {
  position: relative;
}

.bdf-video-element {
  max-width: 100%;
}

.bdf-video-player-play-button {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
}

.bdf-element-spacer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  color: gray;
  mix-blend-mode: difference;
}

.bdf-header-logo-image {
  max-width: 456px;
}

.bdf-logo-image-element {
  max-width: 100%;
}

.bdf-social-links-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.bdf-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.bdf-social-link {
  text-decoration: none;
}

.bdf-text-block-placeholder {
  position: relative;
  min-width: 100px;
  min-height: 32px;
}

.bdf-text-block-placeholder::after {
  pointer-events: none;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  content: 'Type here...';
  user-select: none;
  color: gray;
  mix-blend-mode: difference;
}

.bdf-loaders-spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: #6b6b6b;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
