.z-index-up {
  z-index: 1;
}

* {
  box-sizing: border-box;
}

.block--banner {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: #093b66;
}
.block--banner .container {
  z-index: 1;
}
.block--banner.height--small {
  min-height: 175px;
}
@media only screen and (min-width: 768px) {
  .block--banner.height--small {
    min-height: 300px;
  }
}
.block--banner__text {
  max-width: 800px;
  padding: 30px 0;
}
.block--banner__image:after, .block--banner__video:after {
  content: "";
  background: linear-gradient(90deg, #093B66 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(90deg, #FFF 13.62%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block--banner__video {
  container-type: size;
}
.block--banner__video iframe {
  aspect-ratio: 16/9;
  width: auto;
  height: 100%;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}
@container (aspect-ratio >= 16/9) {
  .block--banner__video iframe {
    width: 100%;
    height: auto;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.text--white {
  color: #ffffff;
}
