.mcla-subhero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
}
.mcla-subhero::before {
  content: "";
  background-color: var(--preset-color-brand-light-blue);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateY(100%);
  transition: transform 0.45s ease-out;
}
.mcla-subhero::after {
  content: "";
  background-color: var(--preset-color-brand-electric-yellow);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateY(100%);
  transition: transform 0.45s ease-out 0.15s;
}
.mcla-subhero .mcla-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.mcla-subhero__content {
  position: relative;
  padding: 60px 21px 30px 30px;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 9px;
  flex-grow: 1;
}
.mcla-subhero__content-title {
  font-family: Knockout48Featherweight;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 355;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s 0.3s;
}
.mcla-subhero__content-sub {
  font-family: "superclarendon", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  padding: 0;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s 0.45s;
}
.mcla-subhero__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 0 60px 0;
}
.mcla-subhero__controls-pause {
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 100%;
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.6s 0.45s;
  outline: none;
}
.mcla-subhero__controls-pause::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px dotted var(--preset-color-standard-white);
  border-radius: 100%;
  opacity: 0;
}
.mcla-subhero__controls-pause:focus::after {
  border-color: var(--preset-color-brand-electric-yellow);
}
.mcla-subhero__controls-pause span {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 62px;
  font-family: Knockout52Cruiserweight;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 375;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #FFFFFF;
  pointer-events: none;
}
.mcla-subhero__controls-pause svg {
  width: 24px;
  height: 24px;
}
.mcla-subhero__controls-pause svg rect {
  fill: var(--preset-color-standard-white);
  transition: all 0.15s;
}

.mcla-subhero__controls-pause.paused svg rect:nth-child(1) {
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 18px;
  transform: translateX(3px);
}
.mcla-subhero.in-view .mcla-subhero__controls-pause.paused::after {
  animation: none;
}
.mcla-subhero__controls-pause.paused svg rect:nth-child(2) {
  width: 0;
}

.mcla-subhero__media {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.mcla-subhero__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: 2;
  background-color: #002B49;
}
.mcla-subhero__media img {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.mcla-subhero__media video {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.mcla-subhero__media-item--desktop {
  display: none !important;
}
.mcla-subhero__media-item--mobile {
  display: block !important;
}

.mcla-subhero__line {
  position: absolute;
  z-index: 2;
  top: 125px;
  bottom: 0;
  left: 12px;
  width: 30px;
  border-bottom-left-radius: 0px;
  border: 4px dotted var(--preset-color-standard-white);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
}
.mcla-subhero__line::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  border: 2px solid var(--preset-color-standard-white);
  top: -18px;
  left: -8px;
}

.mcla-subhero::-moz-selection { /* Code for Firefox */
  color: var(--preset-color-brand-dark-blue);
  background: var(--preset-color-brand-electric-yellow);
}
.mcla-subhero::selection {
  color: var(--preset-color-brand-dark-blue);
  background: var(--preset-color-brand-electric-yellow);
}

/* Animation classes */
.mcla-subhero.in-view .mcla-subhero__content-title {
  opacity: 1;
  transform: translateY(0);
}
.mcla-subhero.in-view .mcla-subhero__content-sub {
  opacity: 1;
  transform: translateY(0);
}
.mcla-subhero.in-view .mcla-subhero__controls-pause {
  opacity: 1;
}
.mcla-subhero.in-view .mcla-subhero__controls-pause::after {
  opacity: 1;
  animation: infiniteRotate 20s linear infinite;
}
@keyframes infiniteRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mcla-subhero.in-view::before {
  transform: translateY(-100%);
}
.mcla-subhero.in-view::after {
  transform: translateY(-100%);
}

.mcla-subhero__breadcrumbs-holder {}
.mcla-subhero__breadcrumbs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 9px;
  row-gap: 3px;
}
.mcla-subhero__breadcrumbs-list-item {}
.mcla-subhero__breadcrumbs-list-item a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Knockout32JuniorCruiserweight, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 365;
  font-size: 14px;
  line-height: 21px;
  color: var(--preset-color-standard-white);
  text-decoration: none;
}
.mcla-subhero__breadcrumbs-list-item a span {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 750px) {
  .mcla-subhero {
    min-height: 500px;
  }
  .mcla-subhero .mcla-container {
    flex-direction: row;
  }

  .mcla-subhero__breadcrumbs-list-item a {
    font-size: 16px;
    line-height: 24px;
  }
  .mcla-subhero__content {
    max-width: 720px;
    padding: 240px 0 60px 90px;
    gap: 20px;
  }
  .mcla-subhero__content-title {
    font-size: 90px;
    line-height: 100px;
  }
  .mcla-subhero__content-sub {
    font-size: 21px;
    line-height: 33px;
  }

  .mcla-subhero__media-item--desktop {
    display: block !important;
  }
  .mcla-subhero__media-item--mobile {
    display: none !important;
  }

  .mcla-subhero__controls {
    flex-grow: 1;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 90px;
  }

  .mcla-subhero__line {
    top: 325px;
    left: 0;
    width: 54px;
    border-top-left-radius: 60px;
    border-top: 4px dotted var(--preset-color-standard-white);
  }
  .mcla-subhero__line::before {
    top: -8px;
    left: 54px;
  }
}
@media (min-width: 1025px) {}